Added setup edit dialog and a string list widget. WARNING: The changes
[emufront] / src / dialogs / mediaimagepathdialog.h
1 // EmuFront
2 // Copyright 2010 Mikko Keinänen
3 //
4 // This file is part of EmuFront.
5 //
6 //
7 // EmuFront is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // Foobar is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
19
20 #ifndef MEDIAIMAGEPATHDIALOG_H
21 #define MEDIAIMAGEPATHDIALOG_H
22
23 #include "dataobjecteditdialog.h"
24
25 class QDialogButtonBox;
26 class QComboBox;
27 class QLabel;
28 class QPushButton;
29 class QSqlTableModel;
30 class DbSetup;
31 class Setup;
32 class DbMediaType;
33 class DbPlatform;
34 /* class MediaType;
35 class Platform;*/
36
37 class MediaImagePathDialog : public DataObjectEditDialog
38 {
39     Q_OBJECT
40
41 public:
42     MediaImagePathDialog(QWidget *parent, EmuFrontObject*);
43     ~MediaImagePathDialog();
44     virtual void setDataObject(EmuFrontObject *);
45
46 protected slots:
47     virtual void acceptChanges();
48     virtual void rejectChanges();
49     void browseFilePath();
50
51 private:
52     //QComboBox *mediaTypeComBox;
53     //QComboBox *platformComBox;
54     QComboBox *setupComBox;
55     QLabel *filePathLabel;
56     QPushButton *filePathButton;
57     DbSetup *dbSetup;
58     DbMediaType *dbMediaType;
59     DbPlatform *dbPlatform;
60
61     void initWidgets();
62     void layout();
63     void connectSignals();
64     void populateSetupComBox();
65     //void populateMediaTypeComBox();
66     //void populatePlatformComBox();
67     void setSelectedSetup(const Setup *);
68     //void setSelectedMediaType(const MediaType *);
69     //void setSelectedPlatform(const Platform *);
70     Setup* getSelectedSetup();
71     //Platform* getSelectedPlatform() const;
72     //MediaType* getSelectedMediaType() const;
73
74 };
75
76 #endif // MEDIAIMAGEPATHDIALOG_H