author | unc0rr |
Fri, 12 Jun 2009 08:52:31 +0000 | |
changeset 2157 | a2fa7f594842 |
parent 2155 | d897222d3339 |
child 2191 | 20c62f787a4d |
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> |
1377 | 36 |
#include <QTextBrowser> |
1399 | 37 |
#include <QTableWidget> |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
38 |
#include <QAction> |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
39 |
#include <QMenu> |
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
40 |
#include <QSound> |
1885 | 41 |
#include <QDataWidgetMapper> |
42 |
||
184 | 43 |
|
44 |
#include "pages.h" |
|
45 |
#include "sdlkeys.h" |
|
46 |
#include "hwconsts.h" |
|
47 |
#include "gamecfgwidget.h" |
|
48 |
#include "teamselect.h" |
|
49 |
#include "gamecfgwidget.h" |
|
50 |
#include "SquareLabel.h" |
|
51 |
#include "mapContainer.h" |
|
187 | 52 |
#include "about.h" |
297 | 53 |
#include "fpsedit.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
54 |
#include "netserverslist.h" |
412 | 55 |
#include "netudpwidget.h" |
461 | 56 |
#include "chatwidget.h" |
579 | 57 |
#include "playrecordpage.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
603
diff
changeset
|
58 |
#include "selectWeapon.h" |
1192 | 59 |
#include "igbox.h" |
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
60 |
#include "hats.h" |
1885 | 61 |
#include "misc.h" |
1932 | 62 |
#include "togglebutton.h" |
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
63 |
#include "hwform.h" |
184 | 64 |
|
684 | 65 |
PageMain::PageMain(QWidget* parent) : |
66 |
AbstractPage(parent) |
|
184 | 67 |
{ |
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
68 |
if(frontendEffects) setAttribute(Qt::WA_NoSystemBackground, true); |
184 | 69 |
QGridLayout * pageLayout = new QGridLayout(this); |
1148 | 70 |
//pageLayout->setColumnStretch(0, 1); |
71 |
//pageLayout->setColumnStretch(1, 2); |
|
72 |
//pageLayout->setColumnStretch(2, 1); |
|
184 | 73 |
|
1199 | 74 |
//QPushButton* btnLogo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
75 |
//pageLayout->setAlignment(btnLogo, Qt::AlignHCenter); |
|
1148 | 76 |
pageLayout->setRowStretch(0, 1); |
1150 | 77 |
pageLayout->setRowStretch(1, 1); |
78 |
pageLayout->setRowStretch(2, 0); |
|
79 |
pageLayout->setRowStretch(3, 1); |
|
1199 | 80 |
pageLayout->setRowStretch(4, 1); |
184 | 81 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
82 |
BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true); |
1450 | 83 |
BtnSinglePlayer->setToolTip(tr("Local Game (Play a game on a single computer)")); |
1150 | 84 |
pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter); |
184 | 85 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
86 |
BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true); |
1450 | 87 |
BtnNet->setToolTip(tr("Network Game (Play a game across a network)")); |
1150 | 88 |
pageLayout->setAlignment(BtnNet, Qt::AlignHCenter); |
579 | 89 |
|
1199 | 90 |
BtnSetup = addButton(":/res/Settings.png", pageLayout, 4, 3, true); |
184 | 91 |
|
1199 | 92 |
//BtnInfo = addButton(":/res/About.png", pageLayout, 3, 1, 1, 2, true); |
93 |
BtnInfo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
|
1212 | 94 |
BtnInfo->setStyleSheet("border: transparent;background: transparent;"); |
1150 | 95 |
pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
1199 | 96 |
//pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
184 | 97 |
|
1199 | 98 |
BtnExit = addButton(":/res/Exit.png", pageLayout, 4, 0, 1, 1, true); |
184 | 99 |
} |
100 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
730
diff
changeset
|
101 |
PageEditTeam::PageEditTeam(QWidget* parent) : |
692 | 102 |
AbstractPage(parent) |
184 | 103 |
{ |
104 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1252 | 105 |
QTabWidget * tbw = new QTabWidget(this); |
1389 | 106 |
QWidget * page1 = new QWidget(this); |
107 |
QWidget * page2 = new QWidget(this); |
|
1252 | 108 |
tbw->addTab(page1, tr("General")); |
109 |
tbw->addTab(page2, tr("Advanced")); |
|
110 |
pageLayout->addWidget(tbw, 0, 0, 1, 3); |
|
111 |
BtnTeamDiscard = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
|
112 |
BtnTeamSave = addButton(":/res/Save.png", pageLayout, 1, 2, true);; |
|
1443 | 113 |
BtnTeamSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
114 |
||
1252 | 115 |
QHBoxLayout * page1Layout = new QHBoxLayout(page1); |
116 |
page1Layout->setAlignment(Qt::AlignTop); |
|
117 |
QGridLayout * page2Layout = new QGridLayout(page2); |
|
118 |
||
119 |
// ====== Page 1 ====== |
|
120 |
QVBoxLayout * vbox1 = new QVBoxLayout(); |
|
121 |
QVBoxLayout * vbox2 = new QVBoxLayout(); |
|
122 |
QVBoxLayout * vbox3 = new QVBoxLayout(); |
|
123 |
page1Layout->addLayout(vbox1); |
|
124 |
page1Layout->addLayout(vbox2); |
|
125 |
page1Layout->addLayout(vbox3); |
|
126 |
||
588 | 127 |
GBoxHedgehogs = new QGroupBox(this); |
184 | 128 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
129 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
130 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
1840 | 131 |
|
132 |
signalMapper = new QSignalMapper(this); |
|
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
133 |
|
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
134 |
HatsModel * hatsModel = new HatsModel(GBoxHedgehogs); |
184 | 135 |
for(int i = 0; i < 8; i++) |
136 |
{ |
|
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
137 |
HHHats[i] = new QComboBox(GBoxHedgehogs); |
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
138 |
HHHats[i]->setModel(hatsModel); |
1282 | 139 |
HHHats[i]->setIconSize(QSize(32, 37)); |
140 |
//HHHats[i]->setSizeAdjustPolicy(QComboBox::AdjustToContents); |
|
1239 | 141 |
//HHHats[i]->setModelColumn(1); |
1240 | 142 |
//HHHats[i]->setMinimumWidth(132); |
1840 | 143 |
GBHLayout->addWidget(HHHats[i], i, 0); |
144 |
||
145 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
146 |
HHNameEdit[i]->setMaxLength(64); |
|
147 |
HHNameEdit[i]->setMinimumWidth(120); |
|
148 |
GBHLayout->addWidget(HHNameEdit[i], i, 1); |
|
149 |
||
150 |
randButton[i] = addButton(":/res/dice.png", GBHLayout, i, 3, true); |
|
151 |
||
152 |
connect(randButton[i], SIGNAL(clicked()), signalMapper, SLOT(map())); |
|
153 |
signalMapper->setMapping(randButton[i], i); |
|
154 |
||
184 | 155 |
} |
1840 | 156 |
|
157 |
randTeamButton = addButton("Random Team", GBHLayout, 9, false); |
|
158 |
||
1252 | 159 |
vbox1->addWidget(GBoxHedgehogs); |
160 |
||
161 |
||
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
162 |
GBoxTeam = new QGroupBox(this); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
163 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
164 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
165 |
QVBoxLayout * GBTLayout = new QVBoxLayout(GBoxTeam); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
166 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
167 |
TeamNameEdit->setMaxLength(64); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
168 |
GBTLayout->addWidget(TeamNameEdit); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
169 |
vbox2->addWidget(GBoxTeam); |
1252 | 170 |
|
1290 | 171 |
CBTeamLvl = new QComboBox(GBoxTeam); |
1440 | 172 |
CBTeamLvl->setIconSize(QSize(48, 48)); |
1287 | 173 |
CBTeamLvl->addItem(QIcon(":/res/botlevels/0.png"), QComboBox::tr("Human")); |
174 |
for(int i = 5; i > 0; i--) |
|
175 |
CBTeamLvl->addItem( |
|
176 |
QIcon(QString(":/res/botlevels/%1.png").arg(6 - i)), |
|
177 |
QString("%1 %2").arg(QComboBox::tr("Level")).arg(i) |
|
178 |
); |
|
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
179 |
GBTLayout->addWidget(CBTeamLvl); |
1287 | 180 |
|
1290 | 181 |
CBGrave = new QComboBox(GBoxTeam); |
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
182 |
CBGrave->setMaxCount(65535); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
183 |
CBGrave->setIconSize(QSize(32, 32)); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
184 |
GBTLayout->addWidget(CBGrave); |
1684 | 185 |
|
1659 | 186 |
{ |
1684 | 187 |
QHBoxLayout * hbox = new QHBoxLayout(); |
188 |
CBVoicepack = new QComboBox(GBoxTeam); |
|
189 |
{ |
|
190 |
QDir tmpdir; |
|
191 |
tmpdir.cd(datadir->absolutePath()); |
|
192 |
tmpdir.cd("Sounds/voices"); |
|
193 |
QStringList list = tmpdir.entryList(QDir::AllDirs | QDir::NoDotAndDotDot, QDir::Name); |
|
194 |
CBVoicepack->addItems(list); |
|
195 |
} |
|
196 |
hbox->addWidget(CBVoicepack, 100); |
|
1718 | 197 |
BtnTestSound = addButton(":/res/PlaySound.png", hbox, 1, true); |
1684 | 198 |
hbox->setStretchFactor(BtnTestSound, 1); |
199 |
connect(BtnTestSound, SIGNAL(clicked()), this, SLOT(testSound())); |
|
200 |
GBTLayout->addLayout(hbox); |
|
1659 | 201 |
} |
202 |
||
1252 | 203 |
GBoxFort = new QGroupBox(this); |
204 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
205 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
206 |
CBFort = new QComboBox(GBoxFort); |
|
207 |
CBFort->setMaxCount(65535); |
|
208 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
209 |
FortPreview = new SquareLabel(GBoxFort); |
|
210 |
FortPreview->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
211 |
FortPreview->setPixmap(QPixmap()); |
|
2072
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
2071
diff
changeset
|
212 |
// perhaps due to handling its own paintevents, SquareLabel doesn't play nice with the stars |
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
2071
diff
changeset
|
213 |
//FortPreview->setAttribute(Qt::WA_PaintOnScreen, true); |
1252 | 214 |
GBFLayout->addWidget(FortPreview, 1, 0); |
215 |
vbox3->addWidget(GBoxFort); |
|
216 |
||
217 |
QDir tmpdir; |
|
218 |
tmpdir.cd(datadir->absolutePath()); |
|
219 |
tmpdir.cd("Forts"); |
|
220 |
tmpdir.setFilter(QDir::Files); |
|
221 |
||
1287 | 222 |
connect(CBFort, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
1252 | 223 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); |
1287 | 224 |
|
1252 | 225 |
tmpdir.cd("../Graphics/Graves"); |
226 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
227 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
228 |
{ |
|
1287 | 229 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + *it); |
230 |
QIcon icon(pix.copy(0, 0, 32, 32)); |
|
231 |
CBGrave->addItem(icon, (*it).replace(QRegExp("^(.*)\\.png"), "\\1")); |
|
1252 | 232 |
} |
233 |
||
234 |
vbox1->addStretch(); |
|
235 |
vbox2->addStretch(); |
|
236 |
// vbox3->addStretch(); |
|
237 |
||
238 |
// ====== Page 2 ====== |
|
588 | 239 |
GBoxBinds = new QGroupBox(this); |
184 | 240 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
241 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
|
242 |
BindsBox = new QToolBox(GBoxBinds); |
|
243 |
BindsBox->setLineWidth(0); |
|
244 |
GBBLayout->addWidget(BindsBox); |
|
1389 | 245 |
page_A = new QWidget(this); |
184 | 246 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
1389 | 247 |
page_W = new QWidget(this); |
184 | 248 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
1389 | 249 |
page_WP = new QWidget(this); |
184 | 250 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
1389 | 251 |
page_O = new QWidget(this); |
184 | 252 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
1252 | 253 |
page2Layout->addWidget(GBoxBinds, 0, 0); |
184 | 254 |
|
255 |
QStringList binds; |
|
256 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
257 |
{ |
|
258 |
binds << sdlkeys[i][1]; |
|
259 |
} |
|
260 |
||
261 |
quint16 widind = 0, i = 0; |
|
262 |
while (i < BINDS_NUMBER) { |
|
263 |
quint16 num = 0; |
|
1389 | 264 |
QWidget * curW = BindsBox->widget(widind); |
265 |
QGridLayout * pagelayout = new QGridLayout(curW); |
|
184 | 266 |
do { |
1389 | 267 |
LBind[i] = new QLabel(curW); |
184 | 268 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
269 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
270 |
pagelayout->addWidget(LBind[i], num, 0); |
|
1389 | 271 |
CBBind[i] = new QComboBox(curW); |
184 | 272 |
CBBind[i]->addItems(binds); |
273 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
274 |
num++; |
|
275 |
} while (!cbinds[i++].chwidget); |
|
1389 | 276 |
pagelayout->addWidget(new QWidget(curW), num, 0, 1, 2); |
184 | 277 |
widind++; |
278 |
} |
|
279 |
} |
|
280 |
||
281 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
282 |
{ |
|
283 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
|
284 |
FortPreview->setPixmap(pix); |
|
285 |
} |
|
286 |
||
1684 | 287 |
void PageEditTeam::testSound() |
288 |
{ |
|
289 |
QDir tmpdir; |
|
290 |
tmpdir.cd(datadir->absolutePath()); |
|
291 |
tmpdir.cd("Sounds/voices"); |
|
292 |
tmpdir.cd(CBVoicepack->currentText()); |
|
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
293 |
QStringList list = tmpdir.entryList(QStringList() << "*.wav", QDir::Files); |
1684 | 294 |
if (list.size()) |
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
295 |
QSound::play(tmpdir.absolutePath() + "/" + list[rand() % list.size()]); |
1684 | 296 |
} |
297 |
||
1287 | 298 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : |
692 | 299 |
AbstractPage(parent) |
184 | 300 |
{ |
301 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
302 |
||
1218 | 303 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
187 | 304 |
|
184 | 305 |
gameCFG = new GameCFGWidget(this); |
306 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
696 | 307 |
|
1218 | 308 |
pageLayout->setRowStretch(1, 1); |
309 |
||
184 | 310 |
teamsSelect = new TeamSelWidget(this); |
1218 | 311 |
pageLayout->addWidget(teamsSelect, 0, 2, 2, 2); |
184 | 312 |
|
1218 | 313 |
BtnStartMPGame = addButton(tr("Start"), pageLayout, 2, 3); |
184 | 314 |
} |
315 |
||
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
|
316 |
PageOptions::PageOptions(QWidget* parent) : |
692 | 317 |
AbstractPage(parent) |
184 | 318 |
{ |
319 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
427 | 320 |
pageLayout->setColumnStretch(0, 100); |
321 |
pageLayout->setColumnStretch(1, 100); |
|
322 |
pageLayout->setColumnStretch(2, 100); |
|
323 |
pageLayout->setRowStretch(0, 0); |
|
1644 | 324 |
pageLayout->setRowStretch(1, 100); |
719 | 325 |
pageLayout->setRowStretch(2, 0); |
1644 | 326 |
pageLayout->setContentsMargins(7, 7, 7, 0); |
327 |
pageLayout->setSpacing(0); |
|
427 | 328 |
|
1198 | 329 |
|
330 |
QGroupBox * gbTwoBoxes = new QGroupBox(this); |
|
331 |
pageLayout->addWidget(gbTwoBoxes, 0, 0, 1, 3); |
|
1644 | 332 |
QGridLayout * gbTBLayout = new QGridLayout(gbTwoBoxes); |
333 |
gbTBLayout->setMargin(0); |
|
334 |
gbTBLayout->setSpacing(0); |
|
1198 | 335 |
{ |
336 |
teamsBox = new IconedGroupBox(this); |
|
2072
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
2071
diff
changeset
|
337 |
//teamsBox->setAttribute(Qt::WA_PaintOnScreen, true); |
1198 | 338 |
teamsBox->setIcon(QIcon(":/res/teamicon.png")); |
339 |
teamsBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
340 |
teamsBox->setTitle(QGroupBox::tr("Teams")); |
|
341 |
||
1644 | 342 |
QVBoxLayout * GBTlayout = new QVBoxLayout(teamsBox); |
1198 | 343 |
|
344 |
CBTeamName = new QComboBox(teamsBox); |
|
1644 | 345 |
GBTlayout->addWidget(CBTeamName); |
184 | 346 |
|
1644 | 347 |
QHBoxLayout * layout1 = new QHBoxLayout; |
348 |
GBTlayout->addLayout(layout1); |
|
349 |
BtnNewTeam = addButton(tr("New team"), layout1, 0); |
|
350 |
BtnEditTeam = addButton(tr("Edit team"), layout1, 1); |
|
351 |
layout1->setStretchFactor(BtnNewTeam, 100); |
|
352 |
layout1->setStretchFactor(BtnEditTeam, 100); |
|
353 |
||
354 |
QHBoxLayout * layout2 = new QHBoxLayout; |
|
355 |
GBTlayout->addLayout(layout2); |
|
1199 | 356 |
|
357 |
labelNN = new QLabel(teamsBox); |
|
358 |
labelNN->setText(QLabel::tr("Net nick")); |
|
1644 | 359 |
layout2->addWidget(labelNN); |
1199 | 360 |
|
361 |
editNetNick = new QLineEdit(teamsBox); |
|
362 |
editNetNick->setMaxLength(20); |
|
363 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
|
1644 | 364 |
layout2->addWidget(editNetNick); |
1199 | 365 |
|
1644 | 366 |
gbTBLayout->addWidget(teamsBox, 0, 0); |
1198 | 367 |
} |
184 | 368 |
|
1198 | 369 |
{ |
370 |
IconedGroupBox* groupWeapons = new IconedGroupBox(this); |
|
1810 | 371 |
groupWeapons->setContentTopPadding(0); |
1199 | 372 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
1198 | 373 |
groupWeapons->setIcon(QIcon(":/res/weaponsicon.png")); |
1199 | 374 |
//groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
1198 | 375 |
groupWeapons->setTitle(QGroupBox::tr("Weapons")); |
376 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
|
184 | 377 |
|
1198 | 378 |
WeaponsButt = addButton(tr("Weapons set"), WeaponsLayout, 1, 0); |
379 |
WeaponsName = new QComboBox(this); |
|
380 |
WeaponsLayout->addWidget(WeaponsName, 0, 0, 1, 2); |
|
381 |
WeaponEdit = addButton(tr("Edit"), WeaponsLayout, 1, 1); |
|
1644 | 382 |
gbTBLayout->addWidget(groupWeapons, 1, 0); |
1198 | 383 |
} |
184 | 384 |
|
1644 | 385 |
{ |
386 |
AGGroupBox = new IconedGroupBox(this); |
|
387 |
AGGroupBox->setIcon(QIcon(":/res/graphicsicon.png")); |
|
388 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
389 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
184 | 390 |
|
1644 | 391 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
392 |
QHBoxLayout * GBAreslayout = new QHBoxLayout(0); |
|
393 |
QLabel * resolution = new QLabel(AGGroupBox); |
|
394 |
resolution->setText(QLabel::tr("Resolution")); |
|
395 |
GBAreslayout->addWidget(resolution); |
|
427 | 396 |
|
1644 | 397 |
CBResolution = new QComboBox(AGGroupBox); |
398 |
GBAreslayout->addWidget(CBResolution); |
|
399 |
GBAlayout->addLayout(GBAreslayout); |
|
427 | 400 |
|
1644 | 401 |
QHBoxLayout * GBAfpslayout = new QHBoxLayout(0); |
402 |
QLabel * maxfps = new QLabel(AGGroupBox); |
|
403 |
maxfps->setText(QLabel::tr("FPS limit")); |
|
404 |
GBAfpslayout->addWidget(maxfps); |
|
405 |
GBAlayout->addLayout(GBAfpslayout); |
|
184 | 406 |
|
1812 | 407 |
CBReduceQuality = new QCheckBox(AGGroupBox); |
408 |
CBReduceQuality->setText(QCheckBox::tr("Reduce Quality")); |
|
409 |
GBAlayout->addWidget(CBReduceQuality); |
|
410 |
||
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
411 |
CBFrontendEffects = new QCheckBox(AGGroupBox); |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
412 |
CBFrontendEffects->setText(QCheckBox::tr("Frontend Effects (Requires Restart)")); |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
413 |
GBAlayout->addWidget(CBFrontendEffects); |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
2093
diff
changeset
|
414 |
|
1644 | 415 |
CBFullscreen = new QCheckBox(AGGroupBox); |
416 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
417 |
GBAlayout->addWidget(CBFullscreen); |
|
184 | 418 |
|
1644 | 419 |
CBFrontendFullscreen = new QCheckBox(AGGroupBox); |
420 |
CBFrontendFullscreen->setText(QCheckBox::tr("Frontend fullscreen")); |
|
421 |
GBAlayout->addWidget(CBFrontendFullscreen); |
|
1162 | 422 |
|
1644 | 423 |
CBEnableSound = new QCheckBox(AGGroupBox); |
424 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
|
425 |
GBAlayout->addWidget(CBEnableSound); |
|
184 | 426 |
|
1644 | 427 |
CBEnableMusic = new QCheckBox(AGGroupBox); |
428 |
CBEnableMusic->setText(QCheckBox::tr("Enable music")); |
|
429 |
GBAlayout->addWidget(CBEnableMusic); |
|
1129 | 430 |
|
1777 | 431 |
QHBoxLayout * GBAvollayout = new QHBoxLayout(0); |
432 |
QLabel * vol = new QLabel(AGGroupBox); |
|
433 |
vol->setText(QLabel::tr("Initial sound volume")); |
|
434 |
GBAvollayout->addWidget(vol); |
|
435 |
GBAlayout->addLayout(GBAvollayout); |
|
436 |
volumeBox = new QSpinBox(AGGroupBox); |
|
437 |
volumeBox->setRange(0, 100); |
|
438 |
volumeBox->setSingleStep(5); |
|
439 |
GBAvollayout->addWidget(volumeBox); |
|
440 |
||
441 |
||
1644 | 442 |
CBShowFPS = new QCheckBox(AGGroupBox); |
443 |
CBShowFPS->setText(QCheckBox::tr("Show FPS")); |
|
444 |
GBAlayout->addWidget(CBShowFPS); |
|
297 | 445 |
|
1644 | 446 |
CBAltDamage = new QCheckBox(AGGroupBox); |
447 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
|
448 |
GBAlayout->addWidget(CBAltDamage); |
|
529 | 449 |
|
1644 | 450 |
CBNameWithDate = new QCheckBox(AGGroupBox); |
451 |
CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name")); |
|
452 |
GBAlayout->addWidget(CBNameWithDate); |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1457
diff
changeset
|
453 |
|
1644 | 454 |
fpsedit = new FPSEdit(AGGroupBox); |
455 |
GBAfpslayout->addWidget(fpsedit); |
|
456 |
gbTBLayout->addWidget(AGGroupBox, 0, 1, 2, 1); |
|
457 |
} |
|
184 | 458 |
|
1644 | 459 |
BtnSaveOptions = addButton(":/res/Save.png", pageLayout, 2, 2, true); |
1443 | 460 |
BtnSaveOptions->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
184 | 461 |
|
1644 | 462 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
184 | 463 |
} |
464 |
||
1153 | 465 |
PageNet::PageNet(QWidget* parent) : AbstractPage(parent) |
184 | 466 |
{ |
467 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
468 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
469 |
pageLayout->setColumnStretch(0, 1); |
|
470 |
pageLayout->setColumnStretch(1, 1); |
|
617 | 471 |
pageLayout->setColumnStretch(2, 1); |
421 | 472 |
|
473 |
BtnNetSvrStart = new QPushButton(this); |
|
474 |
BtnNetSvrStart->setFont(*font14); |
|
475 |
BtnNetSvrStart->setText(QPushButton::tr("Start server")); |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1409
diff
changeset
|
476 |
BtnNetSvrStart->setVisible(haveServer); |
1395 | 477 |
pageLayout->addWidget(BtnNetSvrStart, 4, 2); |
478 |
||
479 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
|
1932 | 480 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
481 |
ConnGroupBox = new QGroupBox(this); |
421 | 482 |
ConnGroupBox->setTitle(QGroupBox::tr("Net game")); |
483 |
pageLayout->addWidget(ConnGroupBox, 2, 0, 1, 3); |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
484 |
GBClayout = new QGridLayout(ConnGroupBox); |
646 | 485 |
GBClayout->setColumnStretch(0, 1); |
421 | 486 |
GBClayout->setColumnStretch(1, 1); |
487 |
GBClayout->setColumnStretch(2, 1); |
|
184 | 488 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
489 |
BtnNetConnect = new QPushButton(ConnGroupBox); |
184 | 490 |
BtnNetConnect->setFont(*font14); |
491 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
646 | 492 |
GBClayout->addWidget(BtnNetConnect, 2, 2); |
416 | 493 |
|
665 | 494 |
tvServersList = new QTableView(ConnGroupBox); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
495 |
tvServersList->setSelectionBehavior(QAbstractItemView::SelectRows); |
665 | 496 |
GBClayout->addWidget(tvServersList, 1, 0, 1, 3); |
421 | 497 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
498 |
BtnUpdateSList = new QPushButton(ConnGroupBox); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
499 |
BtnUpdateSList->setFont(*font14); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
500 |
BtnUpdateSList->setText(QPushButton::tr("Update")); |
646 | 501 |
GBClayout->addWidget(BtnUpdateSList, 2, 0); |
314 | 502 |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
503 |
BtnSpecifyServer = new QPushButton(ConnGroupBox); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
504 |
BtnSpecifyServer->setFont(*font14); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
505 |
BtnSpecifyServer->setText(QPushButton::tr("Specify")); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
506 |
GBClayout->addWidget(BtnSpecifyServer, 2, 1); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
507 |
|
668 | 508 |
connect(BtnNetConnect, SIGNAL(clicked()), this, SLOT(slotConnect())); |
184 | 509 |
} |
510 |
||
646 | 511 |
void PageNet::updateServersList() |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
512 |
{ |
1310 | 513 |
tvServersList->setModel(new HWNetUdpModel(tvServersList)); |
659 | 514 |
|
673 | 515 |
tvServersList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
516 |
||
665 | 517 |
static_cast<HWNetServersModel *>(tvServersList->model())->updateList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
518 |
|
665 | 519 |
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
|
520 |
connect(tvServersList, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotConnect())); |
646 | 521 |
} |
522 |
||
523 |
void PageNet::slotConnect() |
|
524 |
{ |
|
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
525 |
HWNetServersModel * model = static_cast<HWNetServersModel *>(tvServersList->model()); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
526 |
QModelIndex mi = tvServersList->currentIndex(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
527 |
if(!mi.isValid()) |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
528 |
{ |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
529 |
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
|
530 |
return; |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
531 |
} |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
532 |
QString host = model->index(mi.row(), 1).data().toString(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
533 |
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
|
534 |
|
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
|
535 |
emit connectClicked(host, port); |
646 | 536 |
} |
537 |
||
1153 | 538 |
PageNetServer::PageNetServer(QWidget* parent) : AbstractPage(parent) |
646 | 539 |
{ |
540 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
541 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
542 |
pageLayout->setColumnStretch(0, 1); |
|
543 |
pageLayout->setColumnStretch(1, 1); |
|
544 |
pageLayout->setColumnStretch(2, 1); |
|
545 |
||
675 | 546 |
pageLayout->setRowStretch(0, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
547 |
pageLayout->setRowStretch(1, 0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
548 |
|
1153 | 549 |
BtnBack =addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
646 | 550 |
|
551 |
BtnStart = new QPushButton(this); |
|
552 |
BtnStart->setFont(*font14); |
|
553 |
BtnStart->setText(QPushButton::tr("Start")); |
|
675 | 554 |
pageLayout->addWidget(BtnStart, 1, 2); |
555 |
||
556 |
QWidget * wg = new QWidget(this); |
|
557 |
pageLayout->addWidget(wg, 0, 0, 1, 3); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
558 |
|
675 | 559 |
QGridLayout * wgLayout = new QGridLayout(wg); |
560 |
wgLayout->setColumnStretch(0, 1); |
|
561 |
wgLayout->setColumnStretch(1, 3); |
|
562 |
wgLayout->setColumnStretch(2, 1); |
|
563 |
||
564 |
wgLayout->setRowStretch(0, 0); |
|
565 |
wgLayout->setRowStretch(1, 1); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
566 |
|
675 | 567 |
QGroupBox * gb = new QGroupBox(wg); |
568 |
wgLayout->addWidget(gb, 0, 1); |
|
569 |
||
570 |
QGridLayout * gbLayout = new QGridLayout(gb); |
|
571 |
||
572 |
labelSD = new QLabel(gb); |
|
573 |
labelSD->setText(QLabel::tr("Server name:")); |
|
574 |
gbLayout->addWidget(labelSD, 0, 0); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
575 |
|
675 | 576 |
leServerDescr = new QLineEdit(gb); |
577 |
gbLayout->addWidget(leServerDescr, 0, 1); |
|
578 |
||
579 |
labelPort = new QLabel(gb); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
580 |
labelPort->setText(QLabel::tr("Server port:")); |
675 | 581 |
gbLayout->addWidget(labelPort, 1, 0); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
582 |
|
675 | 583 |
sbPort = new QSpinBox(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
584 |
sbPort->setMinimum(0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
585 |
sbPort->setMaximum(65535); |
675 | 586 |
gbLayout->addWidget(sbPort, 1, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
587 |
|
675 | 588 |
BtnDefault = new QPushButton(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
589 |
BtnDefault->setText(QPushButton::tr("default")); |
675 | 590 |
gbLayout->addWidget(BtnDefault, 1, 2); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
591 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
592 |
connect(BtnDefault, SIGNAL(clicked()), this, SLOT(setDefaultPort())); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
593 |
} |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
594 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
595 |
void PageNetServer::setDefaultPort() |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
596 |
{ |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
597 |
sbPort->setValue(46631); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
598 |
} |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
599 |
|
1153 | 600 |
PageNetGame::PageNetGame(QWidget* parent) : AbstractPage(parent) |
184 | 601 |
{ |
602 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
452 | 603 |
pageLayout->setSizeConstraint(QLayout::SetMinimumSize); |
461 | 604 |
//pageLayout->setSpacing(1); |
463 | 605 |
pageLayout->setColumnStretch(0, 50); |
606 |
pageLayout->setColumnStretch(1, 50); |
|
322 | 607 |
|
461 | 608 |
// chatwidget |
609 |
pChatWidget = new HWChatWidget(this); |
|
1647 | 610 |
pageLayout->addWidget(pChatWidget, 1, 0, 1, 2); |
464 | 611 |
pageLayout->setRowStretch(1, 100); |
453 | 612 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
613 |
pGameCFG = new GameCFGWidget(this); |
322 | 614 |
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
|
615 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
616 |
pNetTeamsWidget = new TeamSelWidget(this); |
373 | 617 |
pNetTeamsWidget->setAcceptOuter(true); |
1647 | 618 |
pageLayout->addWidget(pNetTeamsWidget, 0, 1); |
184 | 619 |
|
1649 | 620 |
|
621 |
QHBoxLayout * bottomLayout = new QHBoxLayout; |
|
622 |
pageLayout->addLayout(bottomLayout, 3, 0, 1, 2); |
|
623 |
||
624 |
BtnBack = addButton(":/res/Exit.png", bottomLayout, 0, true); |
|
625 |
||
646 | 626 |
BtnGo = new QPushButton(this); |
1677 | 627 |
BtnGo->setToolTip(QPushButton::tr("Ready")); |
1648 | 628 |
BtnGo->setIcon(QIcon(":/res/lightbulb_off.png")); |
629 |
BtnGo->setIconSize(QSize(25, 34)); |
|
1649 | 630 |
BtnGo->setMinimumWidth(50); |
631 |
BtnGo->setMinimumHeight(50); |
|
1951 | 632 |
bottomLayout->addWidget(BtnGo, 4); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
633 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
634 |
|
1951 | 635 |
BtnMaster = addButton(tr("Control"), bottomLayout, 2); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
636 |
QMenu * menu = new QMenu(BtnMaster); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
637 |
restrictJoins = new QAction(QAction::tr("Restrict Joins"), menu); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
638 |
restrictJoins->setCheckable(true); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
639 |
restrictTeamAdds = new QAction(QAction::tr("Restrict Team Additions"), menu); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
640 |
restrictTeamAdds->setCheckable(true); |
1951 | 641 |
//menu->addAction(startGame); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
642 |
menu->addAction(restrictJoins); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
643 |
menu->addAction(restrictTeamAdds); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
644 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
645 |
BtnMaster->setMenu(menu); |
1649 | 646 |
|
1951 | 647 |
BtnStart = addButton(QAction::tr("Start"), bottomLayout, 3); |
648 |
||
1649 | 649 |
bottomLayout->insertStretch(1, 100); |
184 | 650 |
} |
187 | 651 |
|
1648 | 652 |
void PageNetGame::setReadyStatus(bool isReady) |
653 |
{ |
|
654 |
if(isReady) |
|
655 |
BtnGo->setIcon(QIcon(":/res/lightbulb_on.png")); |
|
656 |
else |
|
657 |
BtnGo->setIcon(QIcon(":/res/lightbulb_off.png")); |
|
658 |
} |
|
659 |
||
1649 | 660 |
void PageNetGame::setMasterMode(bool isMaster) |
661 |
{ |
|
662 |
BtnMaster->setVisible(isMaster); |
|
1951 | 663 |
BtnStart->setVisible(isMaster); |
1649 | 664 |
} |
665 |
||
1153 | 666 |
PageInfo::PageInfo(QWidget* parent) : AbstractPage(parent) |
187 | 667 |
{ |
668 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
669 |
pageLayout->setColumnStretch(0, 1); |
|
670 |
pageLayout->setColumnStretch(1, 1); |
|
671 |
pageLayout->setColumnStretch(2, 1); |
|
672 |
||
1153 | 673 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
187 | 674 |
|
675 |
about = new About(this); |
|
676 |
pageLayout->addWidget(about, 0, 0, 1, 3); |
|
677 |
} |
|
306 | 678 |
|
1150 | 679 |
PageSinglePlayer::PageSinglePlayer(QWidget* parent) : AbstractPage(parent) |
586 | 680 |
{ |
1443 | 681 |
QVBoxLayout * vLayout = new QVBoxLayout(this); |
682 |
QHBoxLayout * topLine = new QHBoxLayout(); |
|
683 |
QHBoxLayout * middleLine = new QHBoxLayout(); |
|
684 |
QHBoxLayout * bottomLine = new QHBoxLayout(); |
|
1444 | 685 |
vLayout->addStretch(); |
1443 | 686 |
vLayout->addLayout(topLine); |
1457 | 687 |
vLayout->addSpacing(30); |
1443 | 688 |
vLayout->addLayout(middleLine); |
1444 | 689 |
vLayout->addStretch(); |
1443 | 690 |
vLayout->addLayout(bottomLine); |
586 | 691 |
|
1457 | 692 |
topLine->addStretch(); |
1443 | 693 |
BtnSimpleGamePage = addButton(":/res/SimpleGame.png", topLine, 0, true); |
1450 | 694 |
BtnSimpleGamePage->setToolTip(tr("Simple Game (a quick game against the computer, settings are chosen for you)")); |
1457 | 695 |
topLine->addSpacing(60); |
1443 | 696 |
BtnMultiplayer = addButton(":/res/Multiplayer.png", topLine, 1, true); |
1450 | 697 |
BtnMultiplayer->setToolTip(tr("Multiplayer (play a hotseat game against your friends, or AI teams)")); |
1457 | 698 |
topLine->addStretch(); |
699 |
||
700 |
||
1443 | 701 |
BtnTrainPage = addButton(":/res/Trainings.png", middleLine, 0, true); |
1450 | 702 |
BtnTrainPage->setToolTip(tr("Training Mode (Practice your skills in a range of training missions). IN DEVELOPMENT")); |
1443 | 703 |
|
704 |
BtnBack = addButton(":/res/Exit.png", bottomLine, 0, true); |
|
1444 | 705 |
bottomLine->addStretch(); |
706 |
||
1447 | 707 |
BtnDemos = addButton(":/res/Record.png", bottomLine, 1, true); |
1450 | 708 |
BtnDemos->setToolTip(tr("Demos (Watch recorded demos)")); |
1443 | 709 |
BtnLoad = addButton(":/res/Save.png", bottomLine, 2, true); |
710 |
BtnLoad->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
|
1450 | 711 |
BtnLoad->setToolTip(tr("Load (Load a previously saved game)")); |
586 | 712 |
} |
713 |
||
1153 | 714 |
PageTraining::PageTraining(QWidget* parent) : AbstractPage(parent) |
587 | 715 |
{ |
716 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
717 |
pageLayout->setColumnStretch(0, 1); |
|
718 |
pageLayout->setColumnStretch(1, 2); |
|
719 |
pageLayout->setColumnStretch(2, 1); |
|
720 |
||
721 |
BtnStartTrain = new QPushButton(this); |
|
722 |
BtnStartTrain->setFont(*font14); |
|
723 |
BtnStartTrain->setText(QPushButton::tr("Go!")); |
|
724 |
pageLayout->addWidget(BtnStartTrain, 1, 2); |
|
725 |
||
1153 | 726 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
587 | 727 |
} |
728 |
||
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
729 |
PageSelectWeapon::PageSelectWeapon(QWidget* parent) : |
684 | 730 |
AbstractPage(parent) |
600 | 731 |
{ |
732 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
733 |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1522
diff
changeset
|
734 |
pWeapons = new SelWeaponWidget(cDefaultAmmoStore->size(), this); |
718 | 735 |
pageLayout->addWidget(pWeapons, 0, 0, 1, 4); |
600 | 736 |
|
1168 | 737 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
730 | 738 |
BtnDefault = addButton(tr("Default"), pageLayout, 1, 1); |
739 |
BtnDelete = addButton(tr("Delete"), pageLayout, 1, 2); |
|
1168 | 740 |
BtnSave = addButton(":/res/Save.png", pageLayout, 1, 3, true); |
1443 | 741 |
BtnSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
600 | 742 |
} |
743 |
||
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
|
744 |
PageInGame::PageInGame(QWidget* parent) : |
686 | 745 |
AbstractPage(parent) |
746 |
{ |
|
747 |
QLabel * label = new QLabel(this); |
|
748 |
label->setText("In game..."); |
|
749 |
} |
|
1311 | 750 |
|
751 |
PageRoomsList::PageRoomsList(QWidget* parent) : |
|
752 |
AbstractPage(parent) |
|
753 |
{ |
|
1312 | 754 |
QGridLayout * pageLayout = new QGridLayout(this); |
1314 | 755 |
|
756 |
roomName = new QLineEdit(this); |
|
1334
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1315
diff
changeset
|
757 |
roomName->setMaxLength(60); |
1314 | 758 |
pageLayout->addWidget(roomName, 0, 0); |
1399 | 759 |
|
760 |
roomsList = new QTableWidget(this); |
|
761 |
roomsList->setColumnCount(3); |
|
762 |
roomsList->setSelectionBehavior(QAbstractItemView::SelectRows); |
|
763 |
roomsList->verticalHeader()->setVisible(false); |
|
764 |
roomsList->horizontalHeader()->setResizeMode(QHeaderView::Interactive); |
|
1894 | 765 |
roomsList->setAlternatingRowColors(true); |
1522 | 766 |
pageLayout->addWidget(roomsList, 1, 0, 3, 1); |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
767 |
pageLayout->setRowStretch(2, 100); |
1399 | 768 |
|
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
769 |
chatWidget = new HWChatWidget(this); |
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
770 |
pageLayout->addWidget(chatWidget, 4, 0, 1, 2); |
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
771 |
pageLayout->setRowStretch(4, 350); |
1522 | 772 |
|
1312 | 773 |
BtnCreate = addButton(tr("Create"), pageLayout, 0, 1); |
774 |
BtnJoin = addButton(tr("Join"), pageLayout, 1, 1); |
|
1522 | 775 |
BtnRefresh = addButton(tr("Refresh"), pageLayout, 3, 1); |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
776 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
777 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 5, 0, true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
778 |
BtnAdmin = addButton(tr("Admin features"), pageLayout, 5, 1); |
1314 | 779 |
|
780 |
connect(BtnCreate, SIGNAL(clicked()), this, SLOT(onCreateClick())); |
|
781 |
connect(BtnJoin, SIGNAL(clicked()), this, SLOT(onJoinClick())); |
|
1315 | 782 |
connect(BtnRefresh, SIGNAL(clicked()), this, SLOT(onRefreshClick())); |
1314 | 783 |
connect(roomsList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(onJoinClick())); |
1311 | 784 |
} |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
785 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
786 |
void PageRoomsList::setAdmin(bool flag) |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
787 |
{ |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
788 |
BtnAdmin->setVisible(flag); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
789 |
} |
1377 | 790 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
791 |
void PageRoomsList::setRoomsList(const QStringList & list) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
792 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
793 |
roomsList->clear(); |
1399 | 794 |
roomsList->setHorizontalHeaderLabels( |
795 |
QStringList() << |
|
796 |
QTableWidget::tr("Room name") << |
|
797 |
QTableWidget::tr("Players number") << |
|
798 |
QTableWidget::tr("Round in progress") |
|
799 |
); |
|
1893 | 800 |
|
801 |
roomsList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
|
802 |
roomsList->horizontalHeader()->setResizeMode(1, QHeaderView::ResizeToContents); |
|
803 |
roomsList->horizontalHeader()->setResizeMode(2, QHeaderView::ResizeToContents); |
|
804 |
||
1399 | 805 |
|
806 |
if (list.size() % 3) |
|
807 |
return; |
|
808 |
||
809 |
roomsList->setRowCount(list.size() / 3); |
|
810 |
for(int i = 0; i < list.size(); i += 3) |
|
811 |
for(int t = 0; t < 3; t++) |
|
812 |
{ |
|
813 |
QTableWidgetItem * item = new QTableWidgetItem(list[i + t]); |
|
1891 | 814 |
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); |
1400 | 815 |
roomsList->setItem(i / 3, t, item); |
1399 | 816 |
} |
817 |
//roomsList->resizeColumnsToContents(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
818 |
} |
1314 | 819 |
|
820 |
void PageRoomsList::onCreateClick() |
|
821 |
{ |
|
822 |
if (roomName->text().size()) |
|
823 |
emit askForCreateRoom(roomName->text()); |
|
824 |
else |
|
825 |
QMessageBox::critical(this, |
|
826 |
tr("Error"), |
|
1315 | 827 |
tr("Please, enter room name"), |
1314 | 828 |
tr("OK")); |
829 |
} |
|
830 |
||
831 |
void PageRoomsList::onJoinClick() |
|
832 |
{ |
|
1399 | 833 |
QTableWidgetItem * curritem = roomsList->item(roomsList->currentRow(), 0); |
1314 | 834 |
if (!curritem) |
835 |
{ |
|
836 |
QMessageBox::critical(this, |
|
837 |
tr("Error"), |
|
838 |
tr("Please, select room from the list"), |
|
839 |
tr("OK")); |
|
840 |
return ; |
|
841 |
} |
|
842 |
emit askForJoinRoom(curritem->data(Qt::DisplayRole).toString()); |
|
843 |
} |
|
844 |
||
1315 | 845 |
void PageRoomsList::onRefreshClick() |
846 |
{ |
|
847 |
emit askForRoomList(); |
|
848 |
} |
|
849 |
||
1800 | 850 |
|
851 |
PageConnecting::PageConnecting(QWidget* parent) : |
|
852 |
AbstractPage(parent) |
|
853 |
{ |
|
854 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1904 | 855 |
|
856 |
QLabel * lblConnecting = new QLabel(this); |
|
857 |
lblConnecting->setText(tr("Connecting...")); |
|
858 |
pageLayout->addWidget(lblConnecting); |
|
1800 | 859 |
} |
1884 | 860 |
|
861 |
PageScheme::PageScheme(QWidget* parent) : |
|
862 |
AbstractPage(parent) |
|
863 |
{ |
|
864 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1943 | 865 |
QGroupBox * gb = new QGroupBox(this); |
1932 | 866 |
|
867 |
QGridLayout * gl = new QGridLayout(); |
|
868 |
gb->setLayout(gl); |
|
1943 | 869 |
QSizePolicy sp; |
870 |
sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); |
|
871 |
sp.setHorizontalPolicy(QSizePolicy::Expanding); |
|
1885 | 872 |
|
1932 | 873 |
pageLayout->addWidget(gb, 1,0,13,4); |
874 |
||
1984 | 875 |
gbGameModes = new QGroupBox(QGroupBox::tr("Game Modifiers"), gb); |
876 |
gbBasicSettings = new QGroupBox(QGroupBox::tr("Basic Settings"), gb); |
|
1943 | 877 |
|
878 |
gbGameModes->setStyleSheet(".QGroupBox {" |
|
879 |
"background-color: #130f2c; background-image:url();" |
|
880 |
"}"); |
|
881 |
gbBasicSettings->setStyleSheet(".QGroupBox {" |
|
882 |
"background-color: #130f2c; background-image:url();" |
|
883 |
"}"); |
|
884 |
||
885 |
gbGameModes->setSizePolicy(sp); |
|
886 |
gbBasicSettings->setSizePolicy(sp); |
|
887 |
gl->addWidget(gbGameModes,0,0,1,3,Qt::AlignTop); |
|
888 |
gl->addWidget(gbBasicSettings,0,3,1,3,Qt::AlignTop); |
|
1932 | 889 |
|
890 |
QGridLayout * glGMLayout = new QGridLayout(gbGameModes); |
|
891 |
QGridLayout * glBSLayout = new QGridLayout(gbBasicSettings); |
|
892 |
gbGameModes->setLayout(glGMLayout); |
|
893 |
gbBasicSettings->setLayout(glBSLayout); |
|
894 |
// Left |
|
895 |
||
896 |
TBW_mode_Forts = new ToggleButtonWidget(gbGameModes, ":/res/btnForts.png"); |
|
897 |
TBW_mode_Forts->setText(ToggleButtonWidget::tr("Fort Mode")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
898 |
TBW_mode_Forts->setToolTip(tr("Defend your fort and destroy the opponents, two team colours max!")); |
1932 | 899 |
glGMLayout->addWidget(TBW_mode_Forts,0,0,1,1); |
1885 | 900 |
|
1932 | 901 |
TBW_teamsDivide = new ToggleButtonWidget(gbGameModes, ":/res/btnTeamsDivide.png"); |
902 |
TBW_teamsDivide->setText(ToggleButtonWidget::tr("Divide Teams")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
903 |
TBW_teamsDivide->setToolTip(tr("Teams will start on opposite sides of the terrain, two team colours max!")); |
1932 | 904 |
glGMLayout->addWidget(TBW_teamsDivide,0,1,1,1); |
1885 | 905 |
|
1932 | 906 |
TBW_solid = new ToggleButtonWidget(gbGameModes, ":/res/btnSolid.png"); |
907 |
TBW_solid->setText(ToggleButtonWidget::tr("Solid Land")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
908 |
TBW_solid->setToolTip(tr("Land can not be destroyed!")); |
1932 | 909 |
glGMLayout->addWidget(TBW_solid,0,2,1,1); |
1885 | 910 |
|
1932 | 911 |
TBW_border = new ToggleButtonWidget(gbGameModes, ":/res/btnBorder.png"); |
912 |
TBW_border->setText(ToggleButtonWidget::tr("Add Border")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
913 |
TBW_border->setToolTip(tr("Add an indestructable border around the terrain")); |
1932 | 914 |
glGMLayout->addWidget(TBW_border,0,3,1,1); |
1895 | 915 |
|
1932 | 916 |
TBW_lowGravity = new ToggleButtonWidget(gbGameModes, ":/res/btnLowGravity.png"); |
917 |
TBW_lowGravity->setText(ToggleButtonWidget::tr("Low Gravity")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
918 |
TBW_lowGravity->setToolTip(tr("Lower gravity")); |
1932 | 919 |
glGMLayout->addWidget(TBW_lowGravity,1,0,1,1); |
920 |
||
921 |
TBW_laserSight = new ToggleButtonWidget(gbGameModes, ":/res/btnLaserSight.png"); |
|
922 |
TBW_laserSight->setText(ToggleButtonWidget::tr("Laser Sight")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
923 |
TBW_laserSight->setToolTip(tr("Assisted aiming with laser sight")); |
1932 | 924 |
glGMLayout->addWidget(TBW_laserSight,1,1,1,1); |
1895 | 925 |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
926 |
TBW_invulnerable = new ToggleButtonWidget(gbGameModes, ":/res/btnInvulnerable.png"); |
1932 | 927 |
TBW_invulnerable->setText(ToggleButtonWidget::tr("Invulnerable")); |
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
928 |
TBW_invulnerable->setToolTip(tr("All hogs have a personal forcefield")); |
1932 | 929 |
glGMLayout->addWidget(TBW_invulnerable,1,2,1,1); |
930 |
||
931 |
TBW_mines = new ToggleButtonWidget(gbGameModes, ":/res/btnMines.png"); |
|
932 |
TBW_mines->setText(ToggleButtonWidget::tr("Add Mines")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
933 |
TBW_mines->setToolTip(tr("Enable random mines")); |
1932 | 934 |
glGMLayout->addWidget(TBW_mines,1,3,1,1); |
1895 | 935 |
|
2017 | 936 |
TBW_vampiric = new ToggleButtonWidget(gbGameModes, ":/res/btnVampiric.png"); |
937 |
TBW_vampiric->setText(ToggleButtonWidget::tr("Vampirism")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
938 |
TBW_vampiric->setToolTip(tr("Gain 80% of the damage you do back in health")); |
2017 | 939 |
glGMLayout->addWidget(TBW_vampiric,2,0,1,1); |
940 |
||
941 |
TBW_karma = new ToggleButtonWidget(gbGameModes, ":/res/btnKarma.png"); |
|
942 |
TBW_karma->setText(ToggleButtonWidget::tr("Karma")); |
|
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
943 |
TBW_karma->setToolTip(tr("Share your opponents pain, share their damage")); |
2017 | 944 |
glGMLayout->addWidget(TBW_karma,2,1,1,1); |
945 |
||
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
946 |
TBW_artillery = new ToggleButtonWidget(gbGameModes, ":/res/btnArtillery.png"); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
947 |
TBW_artillery->setText(ToggleButtonWidget::tr("Artillery")); |
2026
21c986c528ba
Descriptions for the tooltip buttons. Rename btnInvurnable to btnInvulnerable
nemo
parents:
2023
diff
changeset
|
948 |
TBW_artillery->setToolTip(tr("Your hogs are unable to move, put your artillery skills to the test")); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
949 |
glGMLayout->addWidget(TBW_artillery,2,2,1,1); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
950 |
|
1932 | 951 |
// Right |
952 |
QLabel * l; |
|
953 |
||
954 |
l = new QLabel(gbBasicSettings); |
|
955 |
l->setText(QLabel::tr("Damage Modifier")); |
|
1933 | 956 |
l->setWordWrap(true); |
1932 | 957 |
glBSLayout->addWidget(l,0,0,1,1); |
958 |
l = new QLabel(gbBasicSettings); |
|
959 |
l->setFixedSize(32,32); |
|
960 |
l->setPixmap(QPixmap(":/res/iconDamage.png")); |
|
1943 | 961 |
glBSLayout->addWidget(l,0,1,1,1); |
1932 | 962 |
|
963 |
SB_DamageModifier = new QSpinBox(gbBasicSettings); |
|
1895 | 964 |
SB_DamageModifier->setRange(10, 300); |
965 |
SB_DamageModifier->setValue(100); |
|
966 |
SB_DamageModifier->setSingleStep(25); |
|
1943 | 967 |
glBSLayout->addWidget(SB_DamageModifier,0,2,1,1); |
1932 | 968 |
|
969 |
l = new QLabel(gbBasicSettings); |
|
970 |
l->setText(QLabel::tr("Turn Time")); |
|
1933 | 971 |
l->setWordWrap(true); |
1932 | 972 |
glBSLayout->addWidget(l,1,0,1,1); |
973 |
l = new QLabel(gbBasicSettings); |
|
974 |
l->setFixedSize(32,32); |
|
975 |
l->setPixmap(QPixmap(":/res/iconTime.png")); |
|
1943 | 976 |
glBSLayout->addWidget(l,1,1,1,1); |
1895 | 977 |
|
1932 | 978 |
SB_TurnTime = new QSpinBox(gbBasicSettings); |
1885 | 979 |
SB_TurnTime->setRange(1, 99); |
980 |
SB_TurnTime->setValue(45); |
|
981 |
SB_TurnTime->setSingleStep(15); |
|
1943 | 982 |
glBSLayout->addWidget(SB_TurnTime,1,2,1,1); |
1885 | 983 |
|
1932 | 984 |
l = new QLabel(gbBasicSettings); |
985 |
l->setText(QLabel::tr("Initial Health")); |
|
1933 | 986 |
l->setWordWrap(true); |
1932 | 987 |
glBSLayout->addWidget(l,2,0,1,1); |
988 |
l = new QLabel(gbBasicSettings); |
|
989 |
l->setFixedSize(32,32); |
|
990 |
l->setPixmap(QPixmap(":/res/iconHealth.png")); |
|
1943 | 991 |
glBSLayout->addWidget(l,2,1,1,1); |
1932 | 992 |
|
993 |
SB_InitHealth = new QSpinBox(gbBasicSettings); |
|
1885 | 994 |
SB_InitHealth->setRange(50, 200); |
995 |
SB_InitHealth->setValue(100); |
|
996 |
SB_InitHealth->setSingleStep(25); |
|
1943 | 997 |
glBSLayout->addWidget(SB_InitHealth,2,2,1,1); |
1885 | 998 |
|
1932 | 999 |
l = new QLabel(gbBasicSettings); |
1000 |
l->setText(QLabel::tr("Sudden Death Timeout")); |
|
1933 | 1001 |
l->setWordWrap(true); |
1932 | 1002 |
glBSLayout->addWidget(l,3,0,1,1); |
1003 |
l = new QLabel(gbBasicSettings); |
|
1004 |
l->setFixedSize(32,32); |
|
1005 |
l->setPixmap(QPixmap(":/res/iconSuddenDeath.png")); |
|
1943 | 1006 |
glBSLayout->addWidget(l,3,1,1,1); |
1932 | 1007 |
|
1008 |
SB_SuddenDeath = new QSpinBox(gbBasicSettings); |
|
1885 | 1009 |
SB_SuddenDeath->setRange(0, 50); |
1010 |
SB_SuddenDeath->setValue(15); |
|
1011 |
SB_SuddenDeath->setSingleStep(3); |
|
1943 | 1012 |
glBSLayout->addWidget(SB_SuddenDeath,3,2,1,1); |
1885 | 1013 |
|
1932 | 1014 |
l = new QLabel(gbBasicSettings); |
1943 | 1015 |
l->setText(QLabel::tr("Crate Drops")); |
1933 | 1016 |
l->setWordWrap(true); |
1932 | 1017 |
glBSLayout->addWidget(l,4,0,1,1); |
1018 |
l = new QLabel(gbBasicSettings); |
|
1019 |
l->setFixedSize(32,32); |
|
1020 |
l->setPixmap(QPixmap(":/res/iconBox.png")); |
|
1943 | 1021 |
glBSLayout->addWidget(l,4,1,1,1); |
1932 | 1022 |
|
1023 |
SB_CaseProb = new FreqSpinBox(gbBasicSettings); |
|
1885 | 1024 |
SB_CaseProb->setRange(0, 9); |
1025 |
SB_CaseProb->setValue(5); |
|
1943 | 1026 |
glBSLayout->addWidget(SB_CaseProb,4,2,1,1); |
1932 | 1027 |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1028 |
l = new QLabel(gbBasicSettings); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1029 |
l->setText(QLabel::tr("Mines Time")); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1030 |
l->setWordWrap(true); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1031 |
glBSLayout->addWidget(l,5,0,1,1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1032 |
l = new QLabel(gbBasicSettings); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1033 |
l->setFixedSize(32,32); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1034 |
l->setPixmap(QPixmap(":/res/iconTime.png")); // TODO: icon |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1035 |
glBSLayout->addWidget(l,5,1,1,1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1036 |
SB_MinesTime = new QSpinBox(gbBasicSettings); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1037 |
SB_MinesTime->setRange(-1, 3); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1038 |
SB_MinesTime->setValue(3); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1039 |
SB_MinesTime->setSingleStep(1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1040 |
SB_MinesTime->setSpecialValueText(tr("Random")); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1041 |
SB_MinesTime->setSuffix(" "+ tr("Seconds")); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1042 |
glBSLayout->addWidget(SB_MinesTime,5,2,1,1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1043 |
|
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1044 |
l = new QLabel(gbBasicSettings); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1045 |
l->setText(QLabel::tr("Mines")); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1046 |
l->setWordWrap(true); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1047 |
glBSLayout->addWidget(l,6,0,1,1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1048 |
l = new QLabel(gbBasicSettings); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1049 |
l->setFixedSize(32,32); |
2036 | 1050 |
l->setPixmap(QPixmap(":/res/iconMine.png")); // TODO: icon |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1051 |
glBSLayout->addWidget(l,6,1,1,1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1052 |
SB_Mines = new QSpinBox(gbBasicSettings); |
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2072
diff
changeset
|
1053 |
SB_Mines->setRange(1, 50); |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1054 |
SB_Mines->setValue(1); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1055 |
SB_Mines->setSingleStep(5); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1056 |
glBSLayout->addWidget(SB_Mines,6,2,1,1); |
1932 | 1057 |
|
1058 |
l = new QLabel(gbBasicSettings); |
|
1059 |
l->setText(QLabel::tr("Scheme Name:")); |
|
1885 | 1060 |
|
1061 |
LE_name = new QLineEdit(this); |
|
1932 | 1062 |
|
1943 | 1063 |
gl->addWidget(LE_name,14,1,1,5); |
1932 | 1064 |
gl->addWidget(l,14,0,1,1); |
1885 | 1065 |
|
1066 |
mapper = new QDataWidgetMapper(this); |
|
1887 | 1067 |
|
1895 | 1068 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 15, 0, true); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1069 |
BtnNew = addButton(tr("New"), pageLayout, 15, 2); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1070 |
BtnDelete = addButton(tr("Delete"), pageLayout, 15, 3); |
1887 | 1071 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1072 |
selectScheme = new QComboBox(this); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1073 |
pageLayout->addWidget(selectScheme, 15, 1); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1074 |
|
1889 | 1075 |
connect(BtnNew, SIGNAL(clicked()), this, SLOT(newRow())); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1076 |
connect(BtnDelete, SIGNAL(clicked()), this, SLOT(deleteRow())); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1077 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), mapper, SLOT(setCurrentIndex(int))); |
1984 | 1078 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeSelected(int))); |
1887 | 1079 |
} |
1080 |
||
1081 |
void PageScheme::setModel(QAbstractItemModel * model) |
|
1082 |
{ |
|
1083 |
mapper->setModel(model); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1084 |
selectScheme->setModel(model); |
1887 | 1085 |
|
1885 | 1086 |
mapper->addMapping(LE_name, 0); |
1932 | 1087 |
mapper->addMapping(TBW_mode_Forts->button(), 1); |
1088 |
mapper->addMapping(TBW_teamsDivide->button(), 2); |
|
1089 |
mapper->addMapping(TBW_solid->button(), 3); |
|
1090 |
mapper->addMapping(TBW_border->button(), 4); |
|
1091 |
mapper->addMapping(TBW_lowGravity->button(), 5); |
|
1092 |
mapper->addMapping(TBW_laserSight->button(), 6); |
|
1093 |
mapper->addMapping(TBW_invulnerable->button(), 7); |
|
1094 |
mapper->addMapping(TBW_mines->button(), 8); |
|
2017 | 1095 |
mapper->addMapping(TBW_vampiric->button(), 9); |
1096 |
mapper->addMapping(TBW_karma->button(), 10); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1097 |
mapper->addMapping(TBW_artillery->button(), 11); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1098 |
mapper->addMapping(SB_DamageModifier, 12); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1099 |
mapper->addMapping(SB_TurnTime, 13); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1100 |
mapper->addMapping(SB_InitHealth, 14); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1101 |
mapper->addMapping(SB_SuddenDeath, 15); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1102 |
mapper->addMapping(SB_CaseProb, 16); |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1103 |
mapper->addMapping(SB_MinesTime, 17); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2026
diff
changeset
|
1104 |
mapper->addMapping(SB_Mines, 18); |
1887 | 1105 |
|
1106 |
mapper->toFirst(); |
|
1884 | 1107 |
} |
1889 | 1108 |
|
1109 |
void PageScheme::newRow() |
|
1110 |
{ |
|
1111 |
QAbstractItemModel * model = mapper->model(); |
|
1112 |
model->insertRow(model->rowCount()); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1113 |
selectScheme->setCurrentIndex(model->rowCount() - 1); |
1889 | 1114 |
} |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1115 |
|
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1116 |
void PageScheme::deleteRow() |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1117 |
{ |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1118 |
QAbstractItemModel * model = mapper->model(); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1119 |
model->removeRow(selectScheme->currentIndex()); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1120 |
} |
1905 | 1121 |
|
1984 | 1122 |
void PageScheme::schemeSelected(int n) |
1123 |
{ |
|
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2076
diff
changeset
|
1124 |
gbGameModes->setEnabled(n >= 5); // FIXME: derive number from model |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2076
diff
changeset
|
1125 |
gbBasicSettings->setEnabled(n >= 5); |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2076
diff
changeset
|
1126 |
LE_name->setEnabled(n >= 5); |
1984 | 1127 |
} |
1128 |
||
1905 | 1129 |
///////////////////////////////////////////////// |
1130 |
||
1131 |
PageAdmin::PageAdmin(QWidget* parent) : |
|
1132 |
AbstractPage(parent) |
|
1133 |
{ |
|
1134 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1135 |
||
1924 | 1136 |
QLabel * lblSM = new QLabel(this); |
1137 |
lblSM->setText(tr("Server message:")); |
|
1138 |
pageLayout->addWidget(lblSM, 0, 0); |
|
1139 |
||
1140 |
leServerMessage = new QLineEdit(this); |
|
1141 |
pageLayout->addWidget(leServerMessage, 0, 1); |
|
1142 |
||
1143 |
pbSetSM = addButton(tr("Set message"), pageLayout, 0, 2); |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2098
diff
changeset
|
1144 |
pbClearAccountsCache = addButton(tr("Clear Accounts Cache"), pageLayout, 1, 0); |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2098
diff
changeset
|
1145 |
|
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2098
diff
changeset
|
1146 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
1924 | 1147 |
|
1148 |
connect(pbSetSM, SIGNAL(clicked()), this, SLOT(smChanged())); |
|
1905 | 1149 |
} |
1924 | 1150 |
|
1151 |
void PageAdmin::smChanged() |
|
1152 |
{ |
|
1153 |
emit setServerMessage(leServerMessage->text()); |
|
1154 |
} |
|
1155 |
||
1156 |
void PageAdmin::serverMessage(const QString & str) |
|
1157 |
{ |
|
1158 |
leServerMessage->setText(str); |
|
1159 |
} |
|
1950 | 1160 |
|
1161 |
///////////////////////////////////////////////// |
|
1162 |
||
1163 |
PageNetType::PageNetType(QWidget* parent) : AbstractPage(parent) |
|
1164 |
{ |
|
1165 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1166 |
pageLayout->setRowStretch(0, 10); |
|
1977 | 1167 |
pageLayout->setRowStretch(3, 10); |
1168 |
||
1169 |
pageLayout->setColumnStretch(1, 10); |
|
1170 |
pageLayout->setColumnStretch(2, 20); |
|
1171 |
pageLayout->setColumnStretch(3, 10); |
|
1950 | 1172 |
|
1977 | 1173 |
BtnLAN = addButton(tr("LAN game"), pageLayout, 1, 2); |
1174 |
BtnOfficialServer = addButton(tr("Official server"), pageLayout, 2, 2); |
|
1950 | 1175 |
|
1977 | 1176 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
1950 | 1177 |
} |