summaryrefslogtreecommitdiffstats
path: root/sigmodr/ObjectUI.h
diff options
context:
space:
mode:
Diffstat (limited to 'sigmodr/ObjectUI.h')
-rw-r--r--sigmodr/ObjectUI.h84
1 files changed, 84 insertions, 0 deletions
diff --git a/sigmodr/ObjectUI.h b/sigmodr/ObjectUI.h
new file mode 100644
index 00000000..7ccd9103
--- /dev/null
+++ b/sigmodr/ObjectUI.h
@@ -0,0 +1,84 @@
+/*
+ * 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 __POKEMODR_OBJECTUI__
+#define __POKEMODR_OBJECTUI__
+
+// Qt includes
+#include <QtGui/QWidget>
+
+// Forward declarations
+namespace Pokemod
+{
+class Object;
+class Pokemod;
+}
+
+namespace Pokemodr
+{
+class ValidationDialog;
+
+class ObjectUI : public QWidget
+{
+ Q_OBJECT
+
+ public:
+ ObjectUI(QWidget* parent);
+ virtual ~ObjectUI();
+
+ void reload();
+
+ bool isChanged() const;
+
+ const Pokemod::Pokemod* pokemod() const;
+
+ const Pokemod::Object* original() const;
+ Pokemod::Object* original();
+ const Pokemod::Object* modified() const;
+ Pokemod::Object* modified();
+ signals:
+ void changed(bool = true);
+ public slots:
+ virtual void apply() = 0;
+ virtual void discard() = 0;
+ protected slots:
+ void setChanged(const bool changed = true);
+ void errorMessage(const QString& message);
+ void warningMessage(const QString& message);
+
+ virtual void initGui();
+ virtual void refreshGui();
+ virtual void setGui() = 0;
+ private slots:
+ void contextMenu(const QPoint& pos);
+
+ void validate();
+ protected:
+ void setObjects(Pokemod::Object* original, Pokemod::Object* modified);
+
+ void init();
+ private:
+ bool m_changed;
+
+ ValidationDialog* m_validator;
+
+ Pokemod::Object* m_object;
+ Pokemod::Object* m_object_mod;
+};
+}
+
+#endif