equal
deleted
inserted
replaced
18 |
18 |
19 #ifndef GAMECONFIGWIDGET_H |
19 #ifndef GAMECONFIGWIDGET_H |
20 #define GAMECONFIGWIDGET_H |
20 #define GAMECONFIGWIDGET_H |
21 |
21 |
22 #include <QWidget> |
22 #include <QWidget> |
23 #include <QCheckBox> |
|
24 #include <QVBoxLayout> |
|
25 |
23 |
26 #include "mapContainer.h" |
24 #include "mapContainer.h" |
|
25 |
|
26 class QCheckBox; |
|
27 class QVBoxLayout; |
|
28 class QSpinBox; |
|
29 class QLabel; |
27 |
30 |
28 class GameCFGWidget : public QWidget |
31 class GameCFGWidget : public QWidget |
29 { |
32 { |
30 Q_OBJECT |
33 Q_OBJECT |
31 |
34 |
40 |
43 |
41 private: |
44 private: |
42 QCheckBox * CB_mode_Forts; |
45 QCheckBox * CB_mode_Forts; |
43 QVBoxLayout mainLayout; |
46 QVBoxLayout mainLayout; |
44 HWMapContainer* pMapContainer; |
47 HWMapContainer* pMapContainer; |
|
48 QSpinBox * SB_TurnTime; |
|
49 QSpinBox * SB_InitHealth; |
|
50 QLabel * L_TurnTime; |
|
51 QLabel * L_InitHealth; |
45 }; |
52 }; |
46 |
53 |
47 #endif // GAMECONFIGWIDGET_H |
54 #endif // GAMECONFIGWIDGET_H |