Added new ComboBox child classes. Updated SetupEditDialog to use these.
[emufront] / src / dialogs / dataobjecteditdialog.h
index e2bf3eb..af8f93e 100644 (file)
@@ -9,13 +9,13 @@
 // the Free Software Foundation, either version 3 of the License, or
 // (at your option) any later version.
 //
-// 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
@@ -33,10 +33,7 @@ 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();
@@ -44,6 +41,10 @@ protected:
     QDialogButtonBox *buttonBox;
     void setSelected(QComboBox*, const EmuFrontObject*, int idIndex);
 
+signals:
+    void updateRejected();
+    void dataObjectUpdated();
+
 protected slots:
     virtual void acceptChanges() =0;
     virtual void rejectChanges();