Fixed a bug: the edit dialog fields were not cleared if an
[emufront] / src / dialogs / dataobjecteditdialog.h
index ffe74ce..cc2f517 100644 (file)
@@ -5,17 +5,17 @@
 //
 //
 // EmuFront 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.
+// it under the terms of the GNU General Public License version 2 as published by
+// the Free Software Foundation and appearing in the file gpl.txt included in the
+// packaging of this file.
 //
-// Foobar is distributed in the hope that it will be useful,
+// EmuFront 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
+// along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
 
 #ifndef DATAOBJECTEDITDIALOG_H
 #define DATAOBJECTEDITDIALOG_H
@@ -24,6 +24,7 @@
 #include "../dataobjects/emufrontobject.h"
 
 class QDialogButtonBox;
+class QComboBox;
 
 class DataObjectEditDialog : public EmuFrontDialog
 {
@@ -32,19 +33,25 @@ class DataObjectEditDialog : public EmuFrontDialog
 public:
     DataObjectEditDialog(QWidget *parent, EmuFrontObject *ob, Qt::Orientation orientation = Qt::Horizontal);
     virtual void setDataObject(EmuFrontObject *) = 0;
-
-signals:
-    void dataObjectUpdated();
-    void updateRejected();
+    virtual void updateData();
 
 protected:
     virtual void connectSignals();
     EmuFrontObject *efObject;
     QDialogButtonBox *buttonBox;
+    void setSelected(QComboBox*, const EmuFrontObject*, int idIndex);
+    virtual void closeEvent(QCloseEvent *);
+    virtual void clear() = 0;
+
+signals:
+    void updateRejected();
+    void dataObjectUpdated();
+    void test();
+    void dialogClosed();
 
 protected slots:
     virtual void acceptChanges() =0;
-    virtual void rejectChanges() =0;
+    virtual void rejectChanges();
 
 private:
     Qt::Orientation orientation;