summaryrefslogtreecommitdiffstats
path: root/pokescripting/SkinWrapper.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-08-04 03:27:13 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-08-04 03:27:13 +0000
commit373e686bf4ecaaabcf80544e74f017eebe05213f (patch)
treecddf7a223f16944b0380386e568f2606f634c366 /pokescripting/SkinWrapper.h
parent63417b1c5057d22bd853e92cd3a25aa812b8d917 (diff)
downloadsigen-373e686bf4ecaaabcf80544e74f017eebe05213f.tar.gz
sigen-373e686bf4ecaaabcf80544e74f017eebe05213f.tar.xz
sigen-373e686bf4ecaaabcf80544e74f017eebe05213f.zip
[FIX] Cleaned up the RC file
[FIX] Script editing is getting there (still a little weird...) [FIX] Cleaned up the main file a bit [FIX] Added the Skin class [FIX] All sprites and skins are internally linked now [FIX] No more image restraints (tiles are still enforced so that map editing works) [FIX] Cleaned up checking for valid values when setting in pokemod [FIX] Removed FileDialog files git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@233 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokescripting/SkinWrapper.h')
-rw-r--r--pokescripting/SkinWrapper.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/pokescripting/SkinWrapper.h b/pokescripting/SkinWrapper.h
new file mode 100644
index 00000000..46d4c2a2
--- /dev/null
+++ b/pokescripting/SkinWrapper.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __POKESCRIPTING_SKINWRAPPER__
+#define __POKESCRIPTING_SKINWRAPPER__
+
+// Pokescripting includes
+#include "ObjectWrapper.h"
+
+// Pokemod includes
+#include "../pokemod/Skin.h"
+
+namespace Pokescripting
+{
+class POKESCRIPTING_EXPORT SkinWrapper : public ObjectWrapper
+{
+ Q_OBJECT
+
+ public:
+ SkinWrapper(const Pokemod::Skin* skin, QObject* parent);
+ public slots:
+ QString name() const;
+ private:
+ SkinWrapper& operator=(const SkinWrapper& rhs);
+
+ const Pokemod::Skin* m_skin;
+};
+
+inline SkinWrapper::SkinWrapper(const Pokemod::Skin* skin, QObject* parent) :
+ ObjectWrapper(skin, parent),
+ m_skin(skin)
+{
+}
+
+inline QString SkinWrapper::name() const
+{
+ return m_skin->name();
+}
+
+}
+
+#endif