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