author | nemo |
Tue, 08 Sep 2009 19:44:49 +0000 | |
changeset 2357 | babe1a55e284 |
parent 2261 | 57e99c908e7c |
child 2377 | f3fab2b09e0c |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1395 | 3 |
* Copyright (c) 2006-2008 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef PAGES_H |
|
20 |
#define PAGES_H |
|
21 |
||
22 |
#include <QWidget> |
|
684 | 23 |
#include <QPushButton> |
24 |
#include <QFont> |
|
25 |
#include <QGridLayout> |
|
1840 | 26 |
#include <QSignalMapper> |
184 | 27 |
|
28 |
#include "binds.h" |
|
322 | 29 |
#include "mapContainer.h" |
1932 | 30 |
#include "togglebutton.h" |
184 | 31 |
|
32 |
class QPushButton; |
|
33 |
class QGroupBox; |
|
34 |
class QComboBox; |
|
35 |
class QLabel; |
|
36 |
class QToolBox; |
|
37 |
class QLineEdit; |
|
665 | 38 |
class QListWidget; |
39 |
class QCheckBox; |
|
40 |
class QSpinBox; |
|
41 |
class QTextEdit; |
|
42 |
class QRadioButton; |
|
43 |
class QTableView; |
|
1377 | 44 |
class QTextBrowser; |
1399 | 45 |
class QTableWidget; |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
46 |
class QAction; |
1885 | 47 |
class QDataWidgetMapper; |
1887 | 48 |
class QAbstractItemModel; |
665 | 49 |
|
50 |
class GameCFGWidget; |
|
184 | 51 |
class TeamSelWidget; |
52 |
class DemosList; |
|
53 |
class SquareLabel; |
|
187 | 54 |
class About; |
297 | 55 |
class FPSEdit; |
461 | 56 |
class HWChatWidget; |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
600
diff
changeset
|
57 |
class SelWeaponWidget; |
1192 | 58 |
class IconedGroupBox; |
1885 | 59 |
class FreqSpinBox; |
184 | 60 |
|
684 | 61 |
class AbstractPage : public QWidget |
62 |
{ |
|
1885 | 63 |
Q_OBJECT |
64 |
||
684 | 65 |
public: |
66 |
||
67 |
protected: |
|
68 |
AbstractPage(QWidget* parent = 0) { |
|
69 |
font14 = new QFont("MS Shell Dlg", 14); |
|
70 |
} |
|
71 |
virtual ~AbstractPage() {}; |
|
72 |
||
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
73 |
QPushButton* addButton(QString btname, QGridLayout* grid, int wy, int wx, bool iconed = false) { |
684 | 74 |
QPushButton* butt = new QPushButton(this); |
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
75 |
if (!iconed) { |
1148 | 76 |
butt->setFont(*font14); |
77 |
butt->setText(btname); |
|
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
78 |
//butt->setStyleSheet("background-color: #0d0544"); |
1148 | 79 |
} else { |
80 |
const QIcon& lp=QIcon(btname); |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
81 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
1148 | 82 |
butt->setIcon(lp); |
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
83 |
butt->setFixedSize(sz); |
1148 | 84 |
butt->setIconSize(sz); |
85 |
butt->setFlat(true); |
|
1149 | 86 |
butt->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
1148 | 87 |
} |
684 | 88 |
grid->addWidget(butt, wy, wx); |
89 |
return butt; |
|
90 |
}; |
|
91 |
||
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
92 |
QPushButton* addButton(QString btname, QGridLayout* grid, int wy, int wx, int rowSpan, int columnSpan, bool iconed = false) { |
692 | 93 |
QPushButton* butt = new QPushButton(this); |
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
94 |
if (!iconed) { |
1148 | 95 |
butt->setFont(*font14); |
96 |
butt->setText(btname); |
|
97 |
} else { |
|
98 |
const QIcon& lp=QIcon(btname); |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
99 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
1148 | 100 |
butt->setIcon(lp); |
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1150
diff
changeset
|
101 |
butt->setFixedSize(sz); |
1148 | 102 |
butt->setIconSize(sz); |
103 |
butt->setFlat(true); |
|
1149 | 104 |
butt->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
1148 | 105 |
} |
692 | 106 |
grid->addWidget(butt, wy, wx, rowSpan, columnSpan); |
107 |
return butt; |
|
108 |
}; |
|
109 |
||
1443 | 110 |
QPushButton* addButton(QString btname, QBoxLayout* box, int where, bool iconed = false) { |
684 | 111 |
QPushButton* butt = new QPushButton(this); |
1443 | 112 |
if (!iconed) { |
113 |
butt->setFont(*font14); |
|
114 |
butt->setText(btname); |
|
115 |
} else { |
|
116 |
const QIcon& lp=QIcon(btname); |
|
117 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
|
118 |
butt->setIcon(lp); |
|
119 |
butt->setFixedSize(sz); |
|
120 |
butt->setIconSize(sz); |
|
121 |
butt->setFlat(true); |
|
122 |
butt->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
|
123 |
} |
|
684 | 124 |
box->addWidget(butt, where); |
125 |
return butt; |
|
126 |
}; |
|
127 |
||
128 |
QFont * font14; |
|
129 |
}; |
|
130 |
||
131 |
class PageMain : public AbstractPage |
|
184 | 132 |
{ |
133 |
Q_OBJECT |
|
134 |
||
135 |
public: |
|
136 |
PageMain(QWidget* parent = 0); |
|
137 |
||
138 |
QPushButton *BtnSinglePlayer; |
|
139 |
QPushButton *BtnNet; |
|
140 |
QPushButton *BtnSetup; |
|
187 | 141 |
QPushButton *BtnInfo; |
184 | 142 |
QPushButton *BtnExit; |
143 |
}; |
|
144 |
||
692 | 145 |
class PageEditTeam : public AbstractPage |
184 | 146 |
{ |
147 |
Q_OBJECT |
|
148 |
||
149 |
public: |
|
150 |
PageEditTeam(QWidget* parent = 0); |
|
1840 | 151 |
QSignalMapper* signalMapper; |
184 | 152 |
QGroupBox *GBoxHedgehogs; |
153 |
QGroupBox *GBoxTeam; |
|
154 |
QGroupBox *GBoxFort; |
|
155 |
QComboBox *CBFort; |
|
156 |
SquareLabel *FortPreview; |
|
157 |
QComboBox *CBGrave; |
|
336 | 158 |
QComboBox *CBTeamLvl; |
1659 | 159 |
QComboBox *CBVoicepack; |
184 | 160 |
QGroupBox *GBoxBinds; |
161 |
QToolBox *BindsBox; |
|
162 |
QWidget *page_A; |
|
163 |
QWidget *page_W; |
|
164 |
QWidget *page_WP; |
|
165 |
QWidget *page_O; |
|
166 |
QPushButton *BtnTeamDiscard; |
|
167 |
QPushButton *BtnTeamSave; |
|
1684 | 168 |
QPushButton * BtnTestSound; |
184 | 169 |
QLineEdit * TeamNameEdit; |
170 |
QLineEdit * HHNameEdit[8]; |
|
1236 | 171 |
QComboBox * HHHats[8]; |
1840 | 172 |
QPushButton * randButton[8]; |
184 | 173 |
QComboBox * CBBind[BINDS_NUMBER]; |
1840 | 174 |
QPushButton * randTeamButton; |
184 | 175 |
|
176 |
public slots: |
|
177 |
void CBFort_activated(const QString & gravename); |
|
178 |
||
179 |
private: |
|
180 |
QLabel * LBind[BINDS_NUMBER]; |
|
1684 | 181 |
|
182 |
private slots: |
|
183 |
void testSound(); |
|
184 | 184 |
}; |
185 |
||
692 | 186 |
class PageMultiplayer : public AbstractPage |
184 | 187 |
{ |
188 |
Q_OBJECT |
|
189 |
||
190 |
public: |
|
191 |
PageMultiplayer(QWidget* parent = 0); |
|
192 |
||
193 |
QPushButton *BtnBack; |
|
194 |
GameCFGWidget *gameCFG; |
|
195 |
TeamSelWidget *teamsSelect; |
|
196 |
QPushButton *BtnStartMPGame; |
|
197 |
}; |
|
198 |
||
692 | 199 |
class PageOptions : public AbstractPage |
184 | 200 |
{ |
201 |
Q_OBJECT |
|
202 |
||
203 |
public: |
|
204 |
PageOptions(QWidget* parent = 0); |
|
205 |
||
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
587
diff
changeset
|
206 |
QPushButton* WeaponsButt; |
693 | 207 |
QPushButton* WeaponEdit; |
208 |
QComboBox* WeaponsName; |
|
209 |
||
184 | 210 |
QPushButton *BtnBack; |
1194 | 211 |
IconedGroupBox *teamsBox; |
184 | 212 |
QPushButton *BtnNewTeam; |
213 |
QPushButton *BtnEditTeam; |
|
214 |
QComboBox *CBTeamName; |
|
1193 | 215 |
IconedGroupBox *AGGroupBox; |
184 | 216 |
QComboBox *CBResolution; |
217 |
QCheckBox *CBEnableSound; |
|
1129 | 218 |
QCheckBox *CBEnableMusic; |
184 | 219 |
QCheckBox *CBFullscreen; |
1162 | 220 |
QCheckBox *CBFrontendFullscreen; |
297 | 221 |
QCheckBox *CBShowFPS; |
529 | 222 |
QCheckBox *CBAltDamage; |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1443
diff
changeset
|
223 |
QCheckBox *CBNameWithDate; |
2261 | 224 |
#ifdef __APPLE__ |
225 |
QCheckBox *CBAutoUpdate; |
|
226 |
#endif |
|
227 |
||
297 | 228 |
FPSEdit *fpsedit; |
184 | 229 |
QPushButton *BtnSaveOptions; |
647 | 230 |
QLabel *labelNN; |
1777 | 231 |
QSpinBox * volumeBox; |
647 | 232 |
QLineEdit *editNetNick; |
1812 | 233 |
QCheckBox *CBReduceQuality; |
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2031
diff
changeset
|
234 |
QCheckBox *CBFrontendEffects; |
184 | 235 |
}; |
236 |
||
1153 | 237 |
class PageNet : public AbstractPage |
184 | 238 |
{ |
239 |
Q_OBJECT |
|
240 |
||
241 |
public: |
|
242 |
PageNet(QWidget* parent = 0); |
|
243 |
||
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
244 |
QPushButton* BtnUpdateSList; |
665 | 245 |
QTableView * tvServersList; |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
246 |
QPushButton * BtnBack; |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
247 |
QPushButton * BtnNetConnect; |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
248 |
QPushButton * BtnNetSvrStart; |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
249 |
QPushButton * BtnSpecifyServer; |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
250 |
|
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
251 |
private: |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
252 |
QGroupBox * ConnGroupBox; |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
253 |
QGridLayout * GBClayout; |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
254 |
|
646 | 255 |
private slots: |
256 |
void slotConnect(); |
|
257 |
||
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
612
diff
changeset
|
258 |
public slots: |
646 | 259 |
void updateServersList(); |
260 |
||
261 |
signals: |
|
665 | 262 |
void connectClicked(const QString & host, quint16 port); |
646 | 263 |
}; |
264 |
||
1153 | 265 |
class PageNetServer : public AbstractPage |
646 | 266 |
{ |
267 |
Q_OBJECT |
|
268 |
||
269 |
public: |
|
270 |
PageNetServer(QWidget* parent = 0); |
|
271 |
||
272 |
QPushButton *BtnBack; |
|
273 |
QPushButton *BtnStart; |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
274 |
QPushButton *BtnDefault; |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
275 |
QLabel *labelSD; |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
276 |
QLineEdit *leServerDescr; |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
277 |
QLabel *labelPort; |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
278 |
QSpinBox *sbPort; |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
279 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
280 |
private slots: |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
281 |
void setDefaultPort(); |
184 | 282 |
}; |
283 |
||
1153 | 284 |
class PageNetGame : public AbstractPage |
184 | 285 |
{ |
286 |
Q_OBJECT |
|
287 |
||
288 |
public: |
|
289 |
PageNetGame(QWidget* parent = 0); |
|
290 |
||
291 |
QPushButton *BtnBack; |
|
292 |
QPushButton *BtnGo; |
|
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
293 |
QPushButton *BtnMaster; |
1951 | 294 |
QPushButton *BtnStart; |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
295 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
296 |
QAction * restrictJoins; |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1399
diff
changeset
|
297 |
QAction * restrictTeamAdds; |
461 | 298 |
|
299 |
HWChatWidget* pChatWidget; |
|
322 | 300 |
|
301 |
TeamSelWidget* pNetTeamsWidget; |
|
302 |
GameCFGWidget* pGameCFG; |
|
1648 | 303 |
|
304 |
public slots: |
|
305 |
void setReadyStatus(bool isReady); |
|
1649 | 306 |
void setMasterMode(bool isMaster); |
184 | 307 |
}; |
308 |
||
1153 | 309 |
class PageInfo : public AbstractPage |
187 | 310 |
{ |
311 |
Q_OBJECT |
|
312 |
||
313 |
public: |
|
314 |
PageInfo(QWidget* parent = 0); |
|
315 |
||
316 |
QPushButton *BtnBack; |
|
317 |
About *about; |
|
318 |
}; |
|
319 |
||
1150 | 320 |
class PageSinglePlayer : public AbstractPage |
586 | 321 |
{ |
322 |
Q_OBJECT |
|
323 |
||
324 |
public: |
|
325 |
PageSinglePlayer(QWidget* parent = 0); |
|
326 |
||
327 |
QPushButton *BtnSimpleGamePage; |
|
328 |
QPushButton *BtnTrainPage; |
|
1150 | 329 |
QPushButton *BtnMultiplayer; |
330 |
QPushButton *BtnLoad; |
|
331 |
QPushButton *BtnDemos; |
|
586 | 332 |
QPushButton *BtnBack; |
333 |
GameCFGWidget *gameCFG; |
|
334 |
}; |
|
335 |
||
1153 | 336 |
class PageTraining : public AbstractPage |
587 | 337 |
{ |
338 |
Q_OBJECT |
|
339 |
||
340 |
public: |
|
341 |
PageTraining(QWidget* parent = 0); |
|
342 |
||
343 |
QPushButton *BtnStartTrain; |
|
344 |
QPushButton *BtnBack; |
|
345 |
}; |
|
346 |
||
684 | 347 |
class PageSelectWeapon : public AbstractPage |
600 | 348 |
{ |
349 |
Q_OBJECT |
|
350 |
||
351 |
public: |
|
352 |
PageSelectWeapon(QWidget* parent = 0); |
|
353 |
||
683 | 354 |
QPushButton *BtnSave; |
355 |
QPushButton *BtnDefault; |
|
718 | 356 |
QPushButton *BtnDelete; |
600 | 357 |
QPushButton *BtnBack; |
1312 | 358 |
SelWeaponWidget* pWeapons; |
600 | 359 |
}; |
306 | 360 |
|
686 | 361 |
class PageInGame : public AbstractPage |
362 |
{ |
|
363 |
Q_OBJECT |
|
364 |
||
365 |
public: |
|
366 |
PageInGame(QWidget* parent = 0); |
|
367 |
}; |
|
368 |
||
1311 | 369 |
class PageRoomsList : public AbstractPage |
370 |
{ |
|
371 |
Q_OBJECT |
|
372 |
||
373 |
public: |
|
374 |
PageRoomsList(QWidget* parent = 0); |
|
1312 | 375 |
|
1314 | 376 |
QLineEdit * roomName; |
1399 | 377 |
QTableWidget * roomsList; |
1312 | 378 |
QPushButton * BtnBack; |
379 |
QPushButton * BtnCreate; |
|
380 |
QPushButton * BtnJoin; |
|
381 |
QPushButton * BtnRefresh; |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
382 |
QPushButton * BtnAdmin; |
1522 | 383 |
HWChatWidget * chatWidget; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
384 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
385 |
public slots: |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
386 |
void setRoomsList(const QStringList & list); |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
387 |
void setAdmin(bool); |
1314 | 388 |
|
389 |
private slots: |
|
390 |
void onCreateClick(); |
|
391 |
void onJoinClick(); |
|
1315 | 392 |
void onRefreshClick(); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
393 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
394 |
signals: |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
395 |
void askForCreateRoom(const QString &); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
396 |
void askForJoinRoom(const QString &); |
1315 | 397 |
void askForRoomList(); |
1311 | 398 |
}; |
399 |
||
1800 | 400 |
class PageConnecting : public AbstractPage |
401 |
{ |
|
402 |
Q_OBJECT |
|
403 |
||
404 |
public: |
|
405 |
PageConnecting(QWidget* parent = 0); |
|
406 |
}; |
|
407 |
||
1884 | 408 |
class PageScheme : public AbstractPage |
409 |
{ |
|
410 |
Q_OBJECT |
|
411 |
||
412 |
public: |
|
413 |
PageScheme(QWidget* parent = 0); |
|
1885 | 414 |
|
1887 | 415 |
QPushButton * BtnBack; |
1889 | 416 |
QPushButton * BtnNew; |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
417 |
QPushButton * BtnDelete; |
1887 | 418 |
QPushButton * BtnSave; |
419 |
||
420 |
void setModel(QAbstractItemModel * model); |
|
1885 | 421 |
|
422 |
private: |
|
1887 | 423 |
QDataWidgetMapper * mapper; |
1932 | 424 |
ToggleButtonWidget * TBW_mode_Forts; |
425 |
ToggleButtonWidget * TBW_teamsDivide; |
|
426 |
ToggleButtonWidget * TBW_solid; |
|
427 |
ToggleButtonWidget * TBW_border; |
|
428 |
ToggleButtonWidget * TBW_lowGravity; |
|
429 |
ToggleButtonWidget * TBW_laserSight; |
|
430 |
ToggleButtonWidget * TBW_invulnerable; |
|
431 |
ToggleButtonWidget * TBW_mines; |
|
2017 | 432 |
ToggleButtonWidget * TBW_vampiric; |
433 |
ToggleButtonWidget * TBW_karma; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
434 |
ToggleButtonWidget * TBW_artillery; |
1895 | 435 |
|
436 |
QSpinBox * SB_DamageModifier; |
|
1885 | 437 |
QSpinBox * SB_TurnTime; |
438 |
QSpinBox * SB_InitHealth; |
|
439 |
QSpinBox * SB_SuddenDeath; |
|
440 |
FreqSpinBox * SB_CaseProb; |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2023
diff
changeset
|
441 |
QSpinBox * SB_MinesTime; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2023
diff
changeset
|
442 |
QSpinBox * SB_Mines; |
1885 | 443 |
QLineEdit * LE_name; |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
444 |
QComboBox * selectScheme; |
1889 | 445 |
|
1984 | 446 |
QGroupBox * gbGameModes; |
447 |
QGroupBox * gbBasicSettings; |
|
448 |
||
1889 | 449 |
private slots: |
450 |
void newRow(); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
451 |
void deleteRow(); |
1984 | 452 |
void schemeSelected(int); |
1884 | 453 |
}; |
454 |
||
1905 | 455 |
class PageAdmin : public AbstractPage |
456 |
{ |
|
457 |
Q_OBJECT |
|
458 |
||
459 |
public: |
|
460 |
PageAdmin(QWidget* parent = 0); |
|
461 |
||
462 |
QPushButton * BtnBack; |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2098
diff
changeset
|
463 |
QPushButton * pbClearAccountsCache; |
1924 | 464 |
|
465 |
private: |
|
466 |
QLineEdit * leServerMessage; |
|
467 |
QPushButton * pbSetSM; |
|
468 |
||
469 |
private slots: |
|
470 |
void smChanged(); |
|
471 |
||
472 |
public slots: |
|
473 |
void serverMessage(const QString & str); |
|
474 |
||
475 |
signals: |
|
476 |
void setServerMessage(const QString & str); |
|
1905 | 477 |
}; |
478 |
||
1950 | 479 |
|
480 |
class PageNetType : public AbstractPage |
|
481 |
{ |
|
482 |
Q_OBJECT |
|
483 |
||
484 |
public: |
|
485 |
PageNetType(QWidget* parent = 0); |
|
486 |
||
487 |
QPushButton * BtnBack; |
|
488 |
QPushButton * BtnLAN; |
|
489 |
QPushButton * BtnOfficialServer; |
|
490 |
}; |
|
491 |
||
184 | 492 |
#endif // PAGES_H |