summaryrefslogtreecommitdiff
path: root/noncore/games/backgammon/themedialog.h
Unidiff
Diffstat (limited to 'noncore/games/backgammon/themedialog.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/backgammon/themedialog.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/noncore/games/backgammon/themedialog.h b/noncore/games/backgammon/themedialog.h
new file mode 100644
index 0000000..45a61f2
--- a/dev/null
+++ b/noncore/games/backgammon/themedialog.h
@@ -0,0 +1,42 @@
1#ifndef THEMEDIALOG_H
2#define THEMEDIALOG_H
3
4#include <qcombobox.h>
5#include <qdialog.h>
6#include <qlineedit.h>
7
8struct ImageNames
9{
10 QString theme;
11 QString board;
12 QString pieces1;
13 QString pieces2;
14 QString dice1;
15 QString dice2;
16 QString odds;
17 QString table;
18};
19
20class ThemeDialog : public QDialog
21{
22 Q_OBJECT
23private:
24 QLineEdit* lineName;
25 QComboBox* boxboard;
26 QComboBox* boxpiecesA;
27 QComboBox* boxpiecesB;
28 QComboBox* boxdiceA;
29 QComboBox* boxdiceB;
30 QComboBox* boxodds;
31 QComboBox* boxtable;
32public:
33 ThemeDialog(QWidget* parent=0,const char* name=0,bool modal=TRUE,WFlags f=0);
34 ~ThemeDialog();
35public:
36 ImageNames getNames();
37 void setCurrent(const ImageNames& current);
38private:
39 void fillBox(QString dirname,QComboBox* thebox);
40};
41
42#endif //THEMEDIALOG_H