From 373e686bf4ecaaabcf80544e74f017eebe05213f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 4 Aug 2008 03:27:13 +0000 Subject: [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 --- pokescripting/SkinWrapper.h | 56 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 pokescripting/SkinWrapper.h (limited to 'pokescripting/SkinWrapper.h') 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 + * + * 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 . + */ + +#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 -- cgit