author | unc0rr |
Sun, 28 Sep 2008 08:26:18 +0000 | |
changeset 1287 | 4a0cbcbe3521 |
parent 1282 | 76533d0e76e3 |
child 1288 | cea4a8f52f5a |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1236 | 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 |
#include <QGridLayout> |
|
20 |
#include <QPushButton> |
|
21 |
#include <QGroupBox> |
|
22 |
#include <QComboBox> |
|
311 | 23 |
#include <QCheckBox> |
184 | 24 |
#include <QLabel> |
25 |
#include <QToolBox> |
|
26 |
#include <QLineEdit> |
|
27 |
#include <QListWidget> |
|
28 |
#include <QApplication> |
|
231 | 29 |
#include <QSpinBox> |
452 | 30 |
#include <QTextEdit> |
636 | 31 |
#include <QRadioButton> |
665 | 32 |
#include <QTableView> |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
33 |
#include <QMessageBox> |
673 | 34 |
#include <QHeaderView> |
1252 | 35 |
#include <QTabWidget> |
184 | 36 |
|
37 |
#include "pages.h" |
|
38 |
#include "sdlkeys.h" |
|
39 |
#include "hwconsts.h" |
|
40 |
#include "gamecfgwidget.h" |
|
41 |
#include "teamselect.h" |
|
42 |
#include "gamecfgwidget.h" |
|
43 |
#include "SquareLabel.h" |
|
44 |
#include "mapContainer.h" |
|
187 | 45 |
#include "about.h" |
297 | 46 |
#include "fpsedit.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
47 |
#include "netserverslist.h" |
412 | 48 |
#include "netudpwidget.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
49 |
#include "netwwwwidget.h" |
461 | 50 |
#include "chatwidget.h" |
579 | 51 |
#include "playrecordpage.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
603
diff
changeset
|
52 |
#include "selectWeapon.h" |
1192 | 53 |
#include "igbox.h" |
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
54 |
#include "hats.h" |
184 | 55 |
|
684 | 56 |
PageMain::PageMain(QWidget* parent) : |
57 |
AbstractPage(parent) |
|
184 | 58 |
{ |
59 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1148 | 60 |
//pageLayout->setColumnStretch(0, 1); |
61 |
//pageLayout->setColumnStretch(1, 2); |
|
62 |
//pageLayout->setColumnStretch(2, 1); |
|
184 | 63 |
|
1199 | 64 |
//QPushButton* btnLogo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
65 |
//pageLayout->setAlignment(btnLogo, Qt::AlignHCenter); |
|
1148 | 66 |
pageLayout->setRowStretch(0, 1); |
1150 | 67 |
pageLayout->setRowStretch(1, 1); |
68 |
pageLayout->setRowStretch(2, 0); |
|
69 |
pageLayout->setRowStretch(3, 1); |
|
1199 | 70 |
pageLayout->setRowStretch(4, 1); |
184 | 71 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
72 |
BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true); |
1150 | 73 |
pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter); |
184 | 74 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
75 |
BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true); |
1150 | 76 |
pageLayout->setAlignment(BtnNet, Qt::AlignHCenter); |
579 | 77 |
|
1199 | 78 |
BtnSetup = addButton(":/res/Settings.png", pageLayout, 4, 3, true); |
184 | 79 |
|
1199 | 80 |
//BtnInfo = addButton(":/res/About.png", pageLayout, 3, 1, 1, 2, true); |
81 |
BtnInfo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
|
1212 | 82 |
BtnInfo->setStyleSheet("border: transparent;background: transparent;"); |
1150 | 83 |
pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
1199 | 84 |
//pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
184 | 85 |
|
1199 | 86 |
BtnExit = addButton(":/res/Exit.png", pageLayout, 4, 0, 1, 1, true); |
184 | 87 |
} |
88 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
730
diff
changeset
|
89 |
PageEditTeam::PageEditTeam(QWidget* parent) : |
692 | 90 |
AbstractPage(parent) |
184 | 91 |
{ |
92 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1252 | 93 |
QTabWidget * tbw = new QTabWidget(this); |
94 |
QWidget * page1 = new QWidget(); |
|
95 |
QWidget * page2 = new QWidget(); |
|
96 |
tbw->addTab(page1, tr("General")); |
|
97 |
tbw->addTab(page2, tr("Advanced")); |
|
98 |
pageLayout->addWidget(tbw, 0, 0, 1, 3); |
|
99 |
BtnTeamDiscard = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
|
100 |
BtnTeamSave = addButton(":/res/Save.png", pageLayout, 1, 2, true);; |
|
184 | 101 |
|
1252 | 102 |
QHBoxLayout * page1Layout = new QHBoxLayout(page1); |
103 |
page1Layout->setAlignment(Qt::AlignTop); |
|
104 |
QGridLayout * page2Layout = new QGridLayout(page2); |
|
105 |
||
106 |
// ====== Page 1 ====== |
|
107 |
QVBoxLayout * vbox1 = new QVBoxLayout(); |
|
108 |
QVBoxLayout * vbox2 = new QVBoxLayout(); |
|
109 |
QVBoxLayout * vbox3 = new QVBoxLayout(); |
|
110 |
page1Layout->addLayout(vbox1); |
|
111 |
page1Layout->addLayout(vbox2); |
|
112 |
page1Layout->addLayout(vbox3); |
|
113 |
||
184 | 114 |
GBoxTeam = new QGroupBox(this); |
115 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
|
116 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
117 |
QGridLayout * GBTLayout = new QGridLayout(GBoxTeam); |
|
118 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
|
1216
df1b19976e28
Allow team and hh name length be up to 64 letters length
unc0rr
parents:
1212
diff
changeset
|
119 |
TeamNameEdit->setMaxLength(64); |
231 | 120 |
GBTLayout->addWidget(TeamNameEdit, 0, 0, 1, 0); |
1252 | 121 |
vbox1->addWidget(GBoxTeam); |
184 | 122 |
|
588 | 123 |
GBoxHedgehogs = new QGroupBox(this); |
184 | 124 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
125 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
126 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
127 |
|
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
128 |
HatsModel * hatsModel = new HatsModel(GBoxHedgehogs); |
184 | 129 |
for(int i = 0; i < 8; i++) |
130 |
{ |
|
131 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
1216
df1b19976e28
Allow team and hh name length be up to 64 letters length
unc0rr
parents:
1212
diff
changeset
|
132 |
HHNameEdit[i]->setMaxLength(64); |
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
133 |
HHNameEdit[i]->setMinimumWidth(120); |
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
134 |
GBHLayout->addWidget(HHNameEdit[i], i, 0); |
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
135 |
|
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
136 |
HHHats[i] = new QComboBox(GBoxHedgehogs); |
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
137 |
HHHats[i]->setModel(hatsModel); |
1282 | 138 |
HHHats[i]->setIconSize(QSize(32, 37)); |
139 |
//HHHats[i]->setSizeAdjustPolicy(QComboBox::AdjustToContents); |
|
1239 | 140 |
//HHHats[i]->setModelColumn(1); |
1240 | 141 |
//HHHats[i]->setMinimumWidth(132); |
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
142 |
GBHLayout->addWidget(HHHats[i], i, 1); |
184 | 143 |
} |
1252 | 144 |
vbox1->addWidget(GBoxHedgehogs); |
145 |
||
146 |
||
147 |
GBoxGrave = new QGroupBox(this); |
|
148 |
GBoxGrave->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
149 |
GBoxGrave->setTitle(QGroupBox::tr("Grave")); |
|
150 |
QGridLayout * GBGLayout = new QGridLayout(GBoxGrave); |
|
151 |
CBGrave = new QComboBox(GBoxGrave); |
|
152 |
CBGrave->setMaxCount(65535); |
|
1287 | 153 |
CBGrave->setIconSize(QSize(32, 32)); |
1252 | 154 |
GBGLayout->addWidget(CBGrave, 0, 0, 1, 3); |
155 |
vbox2->addWidget(GBoxGrave); |
|
156 |
||
157 |
//page1Layout->addWidget(new QWidget(), 3, 1, 1, 1); |
|
184 | 158 |
|
1252 | 159 |
GBoxTeamLvl = new QGroupBox(this); |
160 |
GBoxTeamLvl->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
161 |
GBoxTeamLvl->setTitle(QGroupBox::tr("Team level")); |
|
162 |
QGridLayout * GBTLLayout = new QGridLayout(GBoxTeamLvl); |
|
163 |
CBTeamLvl = new QComboBox(GBoxTeamLvl); |
|
1287 | 164 |
CBTeamLvl->setIconSize(QSize(32, 32)); |
165 |
CBTeamLvl->addItem(QIcon(":/res/botlevels/0.png"), QComboBox::tr("Human")); |
|
166 |
for(int i = 5; i > 0; i--) |
|
167 |
CBTeamLvl->addItem( |
|
168 |
QIcon(QString(":/res/botlevels/%1.png").arg(6 - i)), |
|
169 |
QString("%1 %2").arg(QComboBox::tr("Level")).arg(i) |
|
170 |
); |
|
171 |
||
1252 | 172 |
GBTLLayout->addWidget(CBTeamLvl, 0, 0, 1, 3); |
173 |
vbox2->addWidget(GBoxTeamLvl); |
|
184 | 174 |
|
1252 | 175 |
GBoxFort = new QGroupBox(this); |
176 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
177 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
178 |
CBFort = new QComboBox(GBoxFort); |
|
179 |
CBFort->setMaxCount(65535); |
|
180 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
181 |
FortPreview = new SquareLabel(GBoxFort); |
|
182 |
FortPreview->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
183 |
FortPreview->setPixmap(QPixmap()); |
|
184 |
GBFLayout->addWidget(FortPreview, 1, 0); |
|
185 |
vbox3->addWidget(GBoxFort); |
|
186 |
||
187 |
QDir tmpdir; |
|
188 |
tmpdir.cd(datadir->absolutePath()); |
|
189 |
tmpdir.cd("Forts"); |
|
190 |
tmpdir.setFilter(QDir::Files); |
|
191 |
||
1287 | 192 |
connect(CBFort, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
1252 | 193 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); |
1287 | 194 |
|
1252 | 195 |
tmpdir.cd("../Graphics/Graves"); |
196 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
197 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
198 |
{ |
|
1287 | 199 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + *it); |
200 |
QIcon icon(pix.copy(0, 0, 32, 32)); |
|
201 |
CBGrave->addItem(icon, (*it).replace(QRegExp("^(.*)\\.png"), "\\1")); |
|
1252 | 202 |
} |
203 |
||
204 |
vbox1->addStretch(); |
|
205 |
vbox2->addStretch(); |
|
206 |
// vbox3->addStretch(); |
|
207 |
||
208 |
// ====== Page 2 ====== |
|
588 | 209 |
GBoxBinds = new QGroupBox(this); |
184 | 210 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
211 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
|
212 |
BindsBox = new QToolBox(GBoxBinds); |
|
213 |
BindsBox->setLineWidth(0); |
|
214 |
GBBLayout->addWidget(BindsBox); |
|
215 |
page_A = new QWidget(); |
|
216 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
|
217 |
page_W = new QWidget(); |
|
218 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
|
219 |
page_WP = new QWidget(); |
|
220 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
|
221 |
page_O = new QWidget(); |
|
222 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
|
1252 | 223 |
page2Layout->addWidget(GBoxBinds, 0, 0); |
184 | 224 |
|
225 |
QStringList binds; |
|
226 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
227 |
{ |
|
228 |
binds << sdlkeys[i][1]; |
|
229 |
} |
|
230 |
||
231 |
quint16 widind = 0, i = 0; |
|
232 |
while (i < BINDS_NUMBER) { |
|
233 |
quint16 num = 0; |
|
234 |
QGridLayout * pagelayout = new QGridLayout(BindsBox->widget(widind)); |
|
235 |
do { |
|
236 |
LBind[i] = new QLabel(BindsBox->widget(widind)); |
|
237 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
|
238 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
239 |
pagelayout->addWidget(LBind[i], num, 0); |
|
240 |
CBBind[i] = new QComboBox(BindsBox->widget(widind)); |
|
241 |
CBBind[i]->addItems(binds); |
|
242 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
243 |
num++; |
|
244 |
} while (!cbinds[i++].chwidget); |
|
245 |
pagelayout->addWidget(new QWidget(BindsBox->widget(widind)), num, 0, 1, 2); |
|
246 |
widind++; |
|
247 |
} |
|
248 |
} |
|
249 |
||
250 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
251 |
{ |
|
252 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
|
253 |
FortPreview->setPixmap(pix); |
|
254 |
} |
|
255 |
||
1287 | 256 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : |
692 | 257 |
AbstractPage(parent) |
184 | 258 |
{ |
259 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
260 |
||
1218 | 261 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
187 | 262 |
|
184 | 263 |
gameCFG = new GameCFGWidget(this); |
264 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
696 | 265 |
|
1218 | 266 |
pageLayout->setRowStretch(1, 1); |
267 |
||
184 | 268 |
teamsSelect = new TeamSelWidget(this); |
1218 | 269 |
pageLayout->addWidget(teamsSelect, 0, 2, 2, 2); |
184 | 270 |
|
1218 | 271 |
BtnStartMPGame = addButton(tr("Start"), pageLayout, 2, 3); |
184 | 272 |
} |
273 |
||
1249
b6670a6ea2d0
Remove 25pix margin on every page, so exit button is almost in the same place on all pages
unc0rr
parents:
1240
diff
changeset
|
274 |
PageOptions::PageOptions(QWidget* parent) : |
692 | 275 |
AbstractPage(parent) |
184 | 276 |
{ |
277 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
427 | 278 |
pageLayout->setColumnStretch(0, 100); |
279 |
pageLayout->setColumnStretch(1, 100); |
|
280 |
pageLayout->setColumnStretch(2, 100); |
|
281 |
pageLayout->setRowStretch(0, 0); |
|
282 |
pageLayout->setRowStretch(1, 0); |
|
719 | 283 |
pageLayout->setRowStretch(2, 0); |
284 |
pageLayout->setRowStretch(3, 100); |
|
285 |
pageLayout->setRowStretch(4, 0); |
|
427 | 286 |
|
1198 | 287 |
|
288 |
QGroupBox * gbTwoBoxes = new QGroupBox(this); |
|
289 |
pageLayout->addWidget(gbTwoBoxes, 0, 0, 1, 3); |
|
290 |
QHBoxLayout * gbTBLayout = new QHBoxLayout(gbTwoBoxes); |
|
291 |
{ |
|
292 |
teamsBox = new IconedGroupBox(this); |
|
293 |
teamsBox->setIcon(QIcon(":/res/teamicon.png")); |
|
294 |
teamsBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
295 |
teamsBox->setTitle(QGroupBox::tr("Teams")); |
|
296 |
||
297 |
QGridLayout * GBTlayout = new QGridLayout(teamsBox); |
|
298 |
||
299 |
BtnNewTeam = addButton(tr("New team"), GBTlayout, 1, 0); |
|
300 |
||
301 |
CBTeamName = new QComboBox(teamsBox); |
|
302 |
GBTlayout->addWidget(CBTeamName, 0, 0, 1, 2); |
|
184 | 303 |
|
1198 | 304 |
BtnEditTeam = addButton(tr("Edit team"), GBTlayout, 1, 1); |
1199 | 305 |
|
306 |
labelNN = new QLabel(teamsBox); |
|
307 |
labelNN->setText(QLabel::tr("Net nick")); |
|
308 |
GBTlayout->addWidget(labelNN, 2, 0, 1, 2); |
|
309 |
||
310 |
editNetNick = new QLineEdit(teamsBox); |
|
311 |
editNetNick->setMaxLength(20); |
|
312 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
|
313 |
GBTlayout->addWidget(editNetNick, 3, 0, 1, 2); |
|
314 |
||
1198 | 315 |
gbTBLayout->addWidget(teamsBox); |
316 |
} |
|
184 | 317 |
|
1198 | 318 |
{ |
319 |
IconedGroupBox* groupWeapons = new IconedGroupBox(this); |
|
1199 | 320 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
1198 | 321 |
groupWeapons->setIcon(QIcon(":/res/weaponsicon.png")); |
1199 | 322 |
//groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
1198 | 323 |
groupWeapons->setTitle(QGroupBox::tr("Weapons")); |
324 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
|
184 | 325 |
|
1198 | 326 |
WeaponsButt = addButton(tr("Weapons set"), WeaponsLayout, 1, 0); |
327 |
WeaponsName = new QComboBox(this); |
|
328 |
WeaponsLayout->addWidget(WeaponsName, 0, 0, 1, 2); |
|
329 |
WeaponEdit = addButton(tr("Edit"), WeaponsLayout, 1, 1); |
|
330 |
gbTBLayout->addWidget(groupWeapons); |
|
331 |
} |
|
184 | 332 |
|
1193 | 333 |
AGGroupBox = new IconedGroupBox(this); |
334 |
AGGroupBox->setIcon(QIcon(":/res/graphicsicon.png")); |
|
184 | 335 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
336 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
693 | 337 |
pageLayout->addWidget(AGGroupBox, 2, 1); |
184 | 338 |
|
427 | 339 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
436 | 340 |
QHBoxLayout * GBAreslayout = new QHBoxLayout(0); |
427 | 341 |
QLabel * resolution = new QLabel(AGGroupBox); |
342 |
resolution->setText(QLabel::tr("Resolution")); |
|
343 |
GBAreslayout->addWidget(resolution); |
|
344 |
||
184 | 345 |
CBResolution = new QComboBox(AGGroupBox); |
427 | 346 |
GBAreslayout->addWidget(CBResolution); |
347 |
GBAlayout->addLayout(GBAreslayout); |
|
348 |
||
436 | 349 |
QHBoxLayout * GBAfpslayout = new QHBoxLayout(0); |
427 | 350 |
QLabel * maxfps = new QLabel(AGGroupBox); |
351 |
maxfps->setText(QLabel::tr("FPS limit")); |
|
352 |
GBAfpslayout->addWidget(maxfps); |
|
353 |
GBAlayout->addLayout(GBAfpslayout); |
|
184 | 354 |
|
355 |
CBFullscreen = new QCheckBox(AGGroupBox); |
|
356 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
427 | 357 |
GBAlayout->addWidget(CBFullscreen); |
184 | 358 |
|
1162 | 359 |
CBFrontendFullscreen = new QCheckBox(AGGroupBox); |
360 |
CBFrontendFullscreen->setText(QCheckBox::tr("Frontend fullscreen")); |
|
361 |
GBAlayout->addWidget(CBFrontendFullscreen); |
|
362 |
||
1157 | 363 |
CBEnableSound = new QCheckBox(AGGroupBox); |
184 | 364 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
427 | 365 |
GBAlayout->addWidget(CBEnableSound); |
184 | 366 |
|
1157 | 367 |
CBEnableMusic = new QCheckBox(AGGroupBox); |
1129 | 368 |
CBEnableMusic->setText(QCheckBox::tr("Enable music")); |
369 |
GBAlayout->addWidget(CBEnableMusic); |
|
370 |
||
297 | 371 |
CBShowFPS = new QCheckBox(AGGroupBox); |
372 |
CBShowFPS->setText(QCheckBox::tr("Show FPS")); |
|
427 | 373 |
GBAlayout->addWidget(CBShowFPS); |
297 | 374 |
|
529 | 375 |
CBAltDamage = new QCheckBox(AGGroupBox); |
376 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
|
377 |
GBAlayout->addWidget(CBAltDamage); |
|
378 |
||
297 | 379 |
fpsedit = new FPSEdit(AGGroupBox); |
427 | 380 |
GBAfpslayout->addWidget(fpsedit); |
184 | 381 |
|
1157 | 382 |
BtnSaveOptions = addButton(":/res/Save.png", pageLayout, 4, 2, true); |
184 | 383 |
|
1153 | 384 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
184 | 385 |
} |
386 |
||
1153 | 387 |
PageNet::PageNet(QWidget* parent) : AbstractPage(parent) |
184 | 388 |
{ |
389 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
390 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
391 |
pageLayout->setColumnStretch(0, 1); |
|
392 |
pageLayout->setColumnStretch(1, 1); |
|
617 | 393 |
pageLayout->setColumnStretch(2, 1); |
421 | 394 |
|
395 |
BtnNetSvrStart = new QPushButton(this); |
|
396 |
BtnNetSvrStart->setFont(*font14); |
|
397 |
BtnNetSvrStart->setText(QPushButton::tr("Start server")); |
|
617 | 398 |
pageLayout->addWidget(BtnNetSvrStart, 3, 2); |
184 | 399 |
|
636 | 400 |
QGroupBox * NetTypeGroupBox = new QGroupBox(this); |
401 |
NetTypeGroupBox->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
|
668 | 402 |
NetTypeGroupBox->setTitle(QGroupBox::tr("Servers list")); |
636 | 403 |
pageLayout->addWidget(NetTypeGroupBox, 0, 1); |
404 |
||
405 |
QVBoxLayout * GBTlayout = new QVBoxLayout(NetTypeGroupBox); |
|
406 |
rbLocalGame = new QRadioButton(NetTypeGroupBox); |
|
668 | 407 |
rbLocalGame->setText(tr("Local")); |
636 | 408 |
rbLocalGame->setChecked(true); |
409 |
GBTlayout->addWidget(rbLocalGame); |
|
410 |
rbInternetGame = new QRadioButton(NetTypeGroupBox); |
|
668 | 411 |
rbInternetGame->setText(tr("Internet")); |
636 | 412 |
GBTlayout->addWidget(rbInternetGame); |
413 |
||
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
414 |
ConnGroupBox = new QGroupBox(this); |
421 | 415 |
ConnGroupBox->setTitle(QGroupBox::tr("Net game")); |
416 |
pageLayout->addWidget(ConnGroupBox, 2, 0, 1, 3); |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
417 |
GBClayout = new QGridLayout(ConnGroupBox); |
646 | 418 |
GBClayout->setColumnStretch(0, 1); |
421 | 419 |
GBClayout->setColumnStretch(1, 1); |
420 |
GBClayout->setColumnStretch(2, 1); |
|
184 | 421 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
422 |
BtnNetConnect = new QPushButton(ConnGroupBox); |
184 | 423 |
BtnNetConnect->setFont(*font14); |
424 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
646 | 425 |
GBClayout->addWidget(BtnNetConnect, 2, 2); |
416 | 426 |
|
665 | 427 |
tvServersList = new QTableView(ConnGroupBox); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
428 |
tvServersList->setSelectionBehavior(QAbstractItemView::SelectRows); |
665 | 429 |
GBClayout->addWidget(tvServersList, 1, 0, 1, 3); |
421 | 430 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
431 |
BtnUpdateSList = new QPushButton(ConnGroupBox); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
432 |
BtnUpdateSList->setFont(*font14); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
433 |
BtnUpdateSList->setText(QPushButton::tr("Update")); |
646 | 434 |
GBClayout->addWidget(BtnUpdateSList, 2, 0); |
314 | 435 |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
436 |
BtnSpecifyServer = new QPushButton(ConnGroupBox); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
437 |
BtnSpecifyServer->setFont(*font14); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
438 |
BtnSpecifyServer->setText(QPushButton::tr("Specify")); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
439 |
GBClayout->addWidget(BtnSpecifyServer, 2, 1); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
440 |
|
1153 | 441 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 3, 0, true); |
636 | 442 |
|
646 | 443 |
connect(rbLocalGame, SIGNAL(toggled(bool)), this, SLOT(updateServersList())); |
668 | 444 |
connect(BtnNetConnect, SIGNAL(clicked()), this, SLOT(slotConnect())); |
184 | 445 |
} |
446 |
||
646 | 447 |
void PageNet::updateServersList() |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
448 |
{ |
636 | 449 |
if (rbLocalGame->isChecked()) |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
450 |
tvServersList->setModel(new HWNetUdpModel(tvServersList)); |
667 | 451 |
else |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
452 |
tvServersList->setModel(new HWNetWwwModel(tvServersList)); |
659 | 453 |
|
673 | 454 |
tvServersList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
455 |
||
665 | 456 |
static_cast<HWNetServersModel *>(tvServersList->model())->updateList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
457 |
|
665 | 458 |
connect(BtnUpdateSList, SIGNAL(clicked()), static_cast<HWNetServersModel *>(tvServersList->model()), SLOT(updateList())); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
459 |
connect(tvServersList, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotConnect())); |
646 | 460 |
} |
461 |
||
462 |
void PageNet::slotConnect() |
|
463 |
{ |
|
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
464 |
HWNetServersModel * model = static_cast<HWNetServersModel *>(tvServersList->model()); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
465 |
QModelIndex mi = tvServersList->currentIndex(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
466 |
if(!mi.isValid()) |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
467 |
{ |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
468 |
QMessageBox::information(this, tr("Error"), tr("Please, select server from the list above")); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
469 |
return; |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
470 |
} |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
471 |
QString host = model->index(mi.row(), 1).data().toString(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
472 |
quint16 port = model->index(mi.row(), 2).data().toUInt(); |
672
08ed55ea1e2a
- Fix a bug when server fails to start, and then connecting to another server on the same host (strange, the fix won't work on my machine)
unc0rr
parents:
671
diff
changeset
|
473 |
|
08ed55ea1e2a
- Fix a bug when server fails to start, and then connecting to another server on the same host (strange, the fix won't work on my machine)
unc0rr
parents:
671
diff
changeset
|
474 |
emit connectClicked(host, port); |
646 | 475 |
} |
476 |
||
1153 | 477 |
PageNetServer::PageNetServer(QWidget* parent) : AbstractPage(parent) |
646 | 478 |
{ |
479 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
480 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
481 |
pageLayout->setColumnStretch(0, 1); |
|
482 |
pageLayout->setColumnStretch(1, 1); |
|
483 |
pageLayout->setColumnStretch(2, 1); |
|
484 |
||
675 | 485 |
pageLayout->setRowStretch(0, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
486 |
pageLayout->setRowStretch(1, 0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
487 |
|
1153 | 488 |
BtnBack =addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
646 | 489 |
|
490 |
BtnStart = new QPushButton(this); |
|
491 |
BtnStart->setFont(*font14); |
|
492 |
BtnStart->setText(QPushButton::tr("Start")); |
|
675 | 493 |
pageLayout->addWidget(BtnStart, 1, 2); |
494 |
||
495 |
QWidget * wg = new QWidget(this); |
|
496 |
pageLayout->addWidget(wg, 0, 0, 1, 3); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
497 |
|
675 | 498 |
QGridLayout * wgLayout = new QGridLayout(wg); |
499 |
wgLayout->setColumnStretch(0, 1); |
|
500 |
wgLayout->setColumnStretch(1, 3); |
|
501 |
wgLayout->setColumnStretch(2, 1); |
|
502 |
||
503 |
wgLayout->setRowStretch(0, 0); |
|
504 |
wgLayout->setRowStretch(1, 1); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
505 |
|
675 | 506 |
QGroupBox * gb = new QGroupBox(wg); |
507 |
wgLayout->addWidget(gb, 0, 1); |
|
508 |
||
509 |
QGridLayout * gbLayout = new QGridLayout(gb); |
|
510 |
||
511 |
labelSD = new QLabel(gb); |
|
512 |
labelSD->setText(QLabel::tr("Server name:")); |
|
513 |
gbLayout->addWidget(labelSD, 0, 0); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
514 |
|
675 | 515 |
leServerDescr = new QLineEdit(gb); |
516 |
gbLayout->addWidget(leServerDescr, 0, 1); |
|
517 |
||
518 |
labelPort = new QLabel(gb); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
519 |
labelPort->setText(QLabel::tr("Server port:")); |
675 | 520 |
gbLayout->addWidget(labelPort, 1, 0); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
521 |
|
675 | 522 |
sbPort = new QSpinBox(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
523 |
sbPort->setMinimum(0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
524 |
sbPort->setMaximum(65535); |
675 | 525 |
gbLayout->addWidget(sbPort, 1, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
526 |
|
675 | 527 |
BtnDefault = new QPushButton(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
528 |
BtnDefault->setText(QPushButton::tr("default")); |
675 | 529 |
gbLayout->addWidget(BtnDefault, 1, 2); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
530 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
531 |
connect(BtnDefault, SIGNAL(clicked()), this, SLOT(setDefaultPort())); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
532 |
} |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
533 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
534 |
void PageNetServer::setDefaultPort() |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
535 |
{ |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
536 |
sbPort->setValue(46631); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
537 |
} |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
538 |
|
1153 | 539 |
PageNetGame::PageNetGame(QWidget* parent) : AbstractPage(parent) |
184 | 540 |
{ |
541 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
542 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
452 | 543 |
pageLayout->setSizeConstraint(QLayout::SetMinimumSize); |
461 | 544 |
//pageLayout->setSpacing(1); |
463 | 545 |
pageLayout->setColumnStretch(0, 50); |
546 |
pageLayout->setColumnStretch(1, 50); |
|
322 | 547 |
|
461 | 548 |
// chatwidget |
549 |
pChatWidget = new HWChatWidget(this); |
|
550 |
pageLayout->addWidget(pChatWidget, 1, 0); |
|
464 | 551 |
pageLayout->setRowStretch(1, 100); |
453 | 552 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
553 |
pGameCFG = new GameCFGWidget(this); |
322 | 554 |
pageLayout->addWidget(pGameCFG, 0, 0); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
555 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
556 |
pNetTeamsWidget = new TeamSelWidget(this); |
373 | 557 |
pNetTeamsWidget->setAcceptOuter(true); |
461 | 558 |
pageLayout->addWidget(pNetTeamsWidget, 0, 1, 2, 1); |
184 | 559 |
|
1153 | 560 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
184 | 561 |
|
646 | 562 |
BtnGo = new QPushButton(this); |
184 | 563 |
BtnGo->setFont(*font14); |
564 |
BtnGo->setText(QPushButton::tr("Go!")); |
|
492 | 565 |
BtnGo->setEnabled(false); |
461 | 566 |
pageLayout->addWidget(BtnGo, 2, 1); |
184 | 567 |
} |
187 | 568 |
|
1153 | 569 |
PageInfo::PageInfo(QWidget* parent) : AbstractPage(parent) |
187 | 570 |
{ |
571 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
572 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
573 |
pageLayout->setColumnStretch(0, 1); |
|
574 |
pageLayout->setColumnStretch(1, 1); |
|
575 |
pageLayout->setColumnStretch(2, 1); |
|
576 |
||
1153 | 577 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
187 | 578 |
|
579 |
about = new About(this); |
|
580 |
pageLayout->addWidget(about, 0, 0, 1, 3); |
|
581 |
} |
|
306 | 582 |
|
1153 | 583 |
PageGameStats::PageGameStats(QWidget* parent) : AbstractPage(parent) |
306 | 584 |
{ |
585 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
586 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
587 |
pageLayout->setColumnStretch(0, 1); |
|
588 |
pageLayout->setColumnStretch(1, 1); |
|
589 |
pageLayout->setColumnStretch(2, 1); |
|
590 |
||
1153 | 591 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
306 | 592 |
|
307 | 593 |
labelGameStats = new QLabel(this); |
594 |
labelGameStats->setTextFormat(Qt::RichText); |
|
595 |
pageLayout->addWidget(labelGameStats, 0, 0, 1, 3); |
|
306 | 596 |
} |
586 | 597 |
|
1150 | 598 |
PageSinglePlayer::PageSinglePlayer(QWidget* parent) : AbstractPage(parent) |
586 | 599 |
{ |
600 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
601 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1252 | 602 |
// pageLayout->setColumnStretch(0, 1); |
603 |
// pageLayout->setColumnStretch(1, 2); |
|
604 |
// pageLayout->setColumnStretch(2, 1); |
|
588 | 605 |
pageLayout->setRowStretch(0, 1); |
1150 | 606 |
pageLayout->setRowStretch(6, 1); |
586 | 607 |
|
1150 | 608 |
BtnSimpleGamePage = addButton(tr("Simple Game"), pageLayout, 1, 1); |
609 |
BtnTrainPage = addButton(tr("Training"), pageLayout, 2, 1); |
|
610 |
BtnMultiplayer = addButton(tr("Multiplayer"), pageLayout, 3, 1); |
|
611 |
BtnLoad = addButton(tr("Saved games"), pageLayout, 4, 1); |
|
612 |
BtnDemos = addButton(tr("Demos"), pageLayout, 5, 1); |
|
586 | 613 |
|
1153 | 614 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 7, 0, true); |
586 | 615 |
} |
616 |
||
1153 | 617 |
PageTraining::PageTraining(QWidget* parent) : AbstractPage(parent) |
587 | 618 |
{ |
619 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
620 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
621 |
pageLayout->setColumnStretch(0, 1); |
|
622 |
pageLayout->setColumnStretch(1, 2); |
|
623 |
pageLayout->setColumnStretch(2, 1); |
|
624 |
||
625 |
BtnStartTrain = new QPushButton(this); |
|
626 |
BtnStartTrain->setFont(*font14); |
|
627 |
BtnStartTrain->setText(QPushButton::tr("Go!")); |
|
628 |
pageLayout->addWidget(BtnStartTrain, 1, 2); |
|
629 |
||
1153 | 630 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
587 | 631 |
} |
632 |
||
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
633 |
PageSelectWeapon::PageSelectWeapon(QWidget* parent) : |
684 | 634 |
AbstractPage(parent) |
600 | 635 |
{ |
636 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
637 |
|
1168 | 638 |
pWeapons = new SelWeaponWidget(cDefaultAmmoStore->size() - 10, this); |
718 | 639 |
pageLayout->addWidget(pWeapons, 0, 0, 1, 4); |
600 | 640 |
|
1168 | 641 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
730 | 642 |
BtnDefault = addButton(tr("Default"), pageLayout, 1, 1); |
643 |
BtnDelete = addButton(tr("Delete"), pageLayout, 1, 2); |
|
1168 | 644 |
BtnSave = addButton(":/res/Save.png", pageLayout, 1, 3, true); |
600 | 645 |
} |
646 |
||
1249
b6670a6ea2d0
Remove 25pix margin on every page, so exit button is almost in the same place on all pages
unc0rr
parents:
1240
diff
changeset
|
647 |
PageInGame::PageInGame(QWidget* parent) : |
686 | 648 |
AbstractPage(parent) |
649 |
{ |
|
650 |
QLabel * label = new QLabel(this); |
|
651 |
label->setText("In game..."); |
|
652 |
} |