21 #include "commonlib/types.h" |
21 #include "commonlib/types.h" |
22 |
22 |
23 // |
23 // |
24 // ------------------------------------------------------------------------------------------------- |
24 // ------------------------------------------------------------------------------------------------- |
25 // |
25 // |
26 // A ZandronumVersion represented in the config window. |
|
27 // |
|
28 |
|
29 struct VersionGuiEntry |
|
30 { |
|
31 class QTableWidgetItem* labelItem; |
|
32 class QTableWidgetItem* pathItem; |
|
33 QString name; |
|
34 bool isRelease; |
|
35 |
|
36 ZandronumVersion toNonGuiVersion() const; |
|
37 }; |
|
38 |
|
39 // |
|
40 // ------------------------------------------------------------------------------------------------- |
|
41 // |
|
42 |
26 |
43 class ConfigWindow : public QDialog |
27 class ConfigWindow : public QDialog |
44 { |
28 { |
45 Q_OBJECT |
29 Q_OBJECT |
46 |
30 |