author | displacer |
Tue, 26 Sep 2006 19:45:47 +0000 | |
changeset 169 | a78d4a552500 |
parent 164 | 92cff18a3ab6 |
child 183 | 57c2ef19f719 |
permissions | -rw-r--r-- |
87 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*/ |
|
33 |
||
34 |
#include <QGridLayout> |
|
35 |
#include <QDir> |
|
36 |
#include <QPushButton> |
|
37 |
#include <QGroupBox> |
|
38 |
#include <QComboBox> |
|
39 |
#include <QLabel> |
|
40 |
#include <QToolBox> |
|
41 |
#include <QLineEdit> |
|
42 |
#include <QListWidget> |
|
88 | 43 |
#include <QApplication> |
87 | 44 |
|
45 |
#include "pages.h" |
|
46 |
#include "sdlkeys.h" |
|
47 |
#include "hwconsts.h" |
|
48 |
#include "gamecfgwidget.h" |
|
49 |
#include "teamselect.h" |
|
50 |
#include "gamecfgwidget.h" |
|
93 | 51 |
#include "SquareLabel.h" |
164 | 52 |
#include "mapContainer.h" |
87 | 53 |
|
54 |
PageMain::PageMain(QWidget* parent) : QWidget(parent) |
|
55 |
{ |
|
56 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
57 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
58 |
pageLayout->setMargin(25); |
|
59 |
pageLayout->setColumnStretch(0, 1); |
|
60 |
pageLayout->setColumnStretch(1, 2); |
|
61 |
pageLayout->setColumnStretch(2, 1); |
|
62 |
||
63 |
BtnSinglePlayer = new QPushButton(this); |
|
64 |
BtnSinglePlayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
65 |
BtnSinglePlayer->setFont(*font14); |
|
66 |
BtnSinglePlayer->setText(QPushButton::tr("Single Player")); |
|
67 |
pageLayout->addWidget(BtnSinglePlayer, 1, 1); |
|
68 |
||
69 |
BtnMultiplayer = new QPushButton(this); |
|
70 |
BtnMultiplayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
71 |
BtnMultiplayer->setFont(*font14); |
|
72 |
BtnMultiplayer->setText(QPushButton::tr("Multiplayer")); |
|
73 |
pageLayout->addWidget(BtnMultiplayer, 2, 1); |
|
74 |
||
75 |
BtnNet = new QPushButton(this); |
|
76 |
BtnNet->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
77 |
BtnNet->setFont(*font14); |
|
78 |
BtnNet->setText(QPushButton::tr("Net game")); |
|
79 |
pageLayout->addWidget(BtnNet, 3, 1); |
|
80 |
||
81 |
BtnDemos = new QPushButton(this); |
|
82 |
BtnDemos->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
83 |
BtnDemos->setFont(*font14); |
|
84 |
BtnDemos->setText(QPushButton::tr("Demos")); |
|
85 |
pageLayout->addWidget(BtnDemos, 4, 1); |
|
86 |
||
87 |
BtnSetup = new QPushButton(this); |
|
88 |
BtnSetup->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
89 |
BtnSetup->setFont(*font14); |
|
90 |
BtnSetup->setText(QPushButton::tr("Setup")); |
|
91 |
pageLayout->addWidget(BtnSetup, 5, 1); |
|
92 |
||
93 |
BtnExit = new QPushButton(parent); |
|
94 |
BtnExit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
95 |
BtnExit->setFont(*font14); |
|
96 |
BtnExit->setText(QPushButton::tr("Exit")); |
|
97 |
pageLayout->addWidget(BtnExit, 6, 1); |
|
98 |
} |
|
99 |
||
100 |
PageLocalGame::PageLocalGame(QWidget* parent) : QWidget(parent) |
|
101 |
{ |
|
102 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
103 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
104 |
BtnBack = new QPushButton(this); |
|
105 |
BtnBack->setFont(*font14); |
|
106 |
BtnBack->setText(QPushButton::tr("Back")); |
|
107 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
108 |
BtnSimpleGame = new QPushButton(this); |
|
109 |
BtnSimpleGame->setFont(*font14); |
|
110 |
BtnSimpleGame->setText(QPushButton::tr("Simple Game")); |
|
111 |
pageLayout->addWidget(BtnSimpleGame, 1, 3); |
|
112 |
gameCFG = new GameCFGWidget(this); |
|
113 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
114 |
} |
|
115 |
||
116 |
PageEditTeam::PageEditTeam(QWidget* parent) : QWidget(parent) |
|
117 |
{ |
|
118 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
90 | 119 |
QGridLayout * pageLayout = new QGridLayout(this); |
120 |
pageLayout->setColumnStretch(0, 100); |
|
121 |
pageLayout->setColumnMinimumWidth(0, 150); |
|
122 |
pageLayout->setColumnStretch(1, 100); |
|
123 |
pageLayout->setColumnMinimumWidth(1, 200); |
|
124 |
pageLayout->setColumnStretch(2, 250); |
|
125 |
pageLayout->setColumnMinimumWidth(2, 250); |
|
126 |
||
87 | 127 |
GBoxTeam = new QGroupBox(this); |
128 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
|
90 | 129 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
130 |
QGridLayout * GBTLayout = new QGridLayout(GBoxTeam); |
|
131 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
|
132 |
TeamNameEdit->setMaxLength(15); |
|
133 |
GBTLayout->addWidget(TeamNameEdit); |
|
134 |
pageLayout->addWidget(GBoxTeam, 0, 0); |
|
135 |
||
136 |
GBoxHedgehogs = new QGroupBox(this); |
|
137 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
|
138 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
139 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
140 |
for(int i = 0; i < 8; i++) |
|
141 |
{ |
|
142 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
143 |
HHNameEdit[i]->setGeometry(QRect(10, 20 + i * 30, 141, 20)); |
|
144 |
HHNameEdit[i]->setMaxLength(15); |
|
145 |
GBHLayout->addWidget(HHNameEdit[i]); |
|
146 |
} |
|
147 |
pageLayout->addWidget(GBoxHedgehogs, 1, 0, 2, 1); |
|
148 |
||
149 |
BtnTeamDiscard = new QPushButton(this); |
|
150 |
BtnTeamDiscard->setFont(*font14); |
|
151 |
BtnTeamDiscard->setText(QPushButton::tr("Discard")); |
|
152 |
pageLayout->addWidget(BtnTeamDiscard, 4, 0); |
|
153 |
||
87 | 154 |
GBoxBinds = new QGroupBox(this); |
155 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
|
90 | 156 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
87 | 157 |
BindsBox = new QToolBox(GBoxBinds); |
158 |
BindsBox->setLineWidth(0); |
|
90 | 159 |
GBBLayout->addWidget(BindsBox); |
87 | 160 |
page_A = new QWidget(); |
161 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
|
162 |
page_W = new QWidget(); |
|
163 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
|
164 |
page_WP = new QWidget(); |
|
165 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
|
166 |
page_O = new QWidget(); |
|
167 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
|
90 | 168 |
pageLayout->addWidget(GBoxBinds, 0, 1, 5, 1); |
87 | 169 |
|
170 |
QStringList binds; |
|
171 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
172 |
{ |
|
173 |
binds << sdlkeys[i][1]; |
|
174 |
} |
|
175 |
||
90 | 176 |
quint16 widind = 0, i = 0; |
177 |
while (i < BINDS_NUMBER) { |
|
178 |
quint16 num = 0; |
|
179 |
QGridLayout * pagelayout = new QGridLayout(BindsBox->widget(widind)); |
|
180 |
do { |
|
181 |
LBind[i] = new QLabel(BindsBox->widget(widind)); |
|
182 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
|
183 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
184 |
pagelayout->addWidget(LBind[i], num, 0); |
|
185 |
CBBind[i] = new QComboBox(BindsBox->widget(widind)); |
|
186 |
CBBind[i]->addItems(binds); |
|
187 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
188 |
num++; |
|
189 |
} while (!cbinds[i++].chwidget); |
|
190 |
pagelayout->addWidget(new QWidget(BindsBox->widget(widind)), num, 0, 1, 2); |
|
191 |
widind++; |
|
87 | 192 |
} |
193 |
||
90 | 194 |
GBoxGrave = new QGroupBox(this); |
195 |
GBoxGrave->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
196 |
GBoxGrave->setTitle(QGroupBox::tr("Grave")); |
|
197 |
QGridLayout * GBGLayout = new QGridLayout(GBoxGrave); |
|
198 |
CBGrave = new QComboBox(GBoxGrave); |
|
199 |
CBGrave->setMaxCount(65535); |
|
200 |
GBGLayout->addWidget(CBGrave, 0, 0, 1, 3); |
|
201 |
GravePreview = new QLabel(GBoxGrave); |
|
202 |
GravePreview->setScaledContents(false); |
|
203 |
GBGLayout->addWidget(GravePreview, 1, 1); |
|
204 |
pageLayout->addWidget(GBoxGrave, 0, 2, 2, 1); |
|
205 |
||
206 |
GBoxFort = new QGroupBox(this); |
|
207 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
208 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
209 |
CBFort = new QComboBox(GBoxFort); |
|
210 |
CBFort->setMaxCount(65535); |
|
211 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
93 | 212 |
FortPreview = new SquareLabel(GBoxFort); |
90 | 213 |
FortPreview->setPixmap(QPixmap()); |
214 |
FortPreview->setScaledContents(true); |
|
215 |
GBFLayout->addWidget(FortPreview, 1, 0); |
|
216 |
pageLayout->addWidget(GBoxFort, 2, 2, 1, 1); |
|
217 |
||
218 |
BtnTeamSave = new QPushButton(this); |
|
219 |
BtnTeamSave->setFont(*font14); |
|
220 |
BtnTeamSave->setText(QPushButton::tr("Save")); |
|
221 |
pageLayout->addWidget(BtnTeamSave, 4, 2); |
|
222 |
||
223 |
||
87 | 224 |
QDir tmpdir; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
225 |
tmpdir.cd(datadir->absolutePath()); |
87 | 226 |
tmpdir.cd("Forts"); |
227 |
tmpdir.setFilter(QDir::Files); |
|
228 |
||
229 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L.png"), "\\1")); |
|
230 |
tmpdir.cd("../Graphics/Graves"); |
|
231 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
232 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
233 |
{ |
|
234 |
CBGrave->addItem((*it).replace(QRegExp("^(.*).png"), "\\1")); |
|
235 |
} |
|
236 |
||
237 |
connect(CBGrave, SIGNAL(activated(const QString &)), this, SLOT(CBGrave_activated(const QString &))); |
|
238 |
connect(CBFort, SIGNAL(activated(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
|
239 |
} |
|
240 |
||
241 |
void PageEditTeam::CBGrave_activated(const QString & gravename) |
|
242 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
243 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + gravename + ".png"); |
87 | 244 |
GravePreview->setPixmap(pix.copy(0, 0, 32, 32)); |
245 |
} |
|
246 |
||
247 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
248 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
249 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
87 | 250 |
FortPreview->setPixmap(pix); |
251 |
} |
|
252 |
||
253 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : QWidget(parent) |
|
254 |
{ |
|
255 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
256 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
133 | 257 |
|
87 | 258 |
BtnBack = new QPushButton(this); |
259 |
BtnBack->setFont(*font14); |
|
260 |
BtnBack->setText(QPushButton::tr("Back")); |
|
261 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
164 | 262 |
|
263 |
//HWMapContainer* pMapContainer=new HWMapContainer(this); |
|
264 |
//pageLayout->addWidget(pMapContainer, 1, 1); |
|
133 | 265 |
|
87 | 266 |
gameCFG = new GameCFGWidget(this); |
267 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
268 |
teamsSelect = new TeamSelWidget(this); |
|
269 |
pageLayout->addWidget(teamsSelect, 0, 2, 1, 2); |
|
133 | 270 |
|
271 |
BtnStartMPGame = new QPushButton(this); |
|
272 |
BtnStartMPGame->setFont(*font14); |
|
273 |
BtnStartMPGame->setText(QPushButton::tr("Start")); |
|
274 |
pageLayout->addWidget(BtnStartMPGame, 1, 3); |
|
87 | 275 |
} |
276 |
||
277 |
PagePlayDemo::PagePlayDemo(QWidget* parent) : QWidget(parent) |
|
278 |
{ |
|
279 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
280 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
281 |
pageLayout->setColumnStretch(0, 1); |
|
282 |
pageLayout->setColumnStretch(1, 2); |
|
283 |
pageLayout->setColumnStretch(2, 1); |
|
284 |
||
285 |
BtnBack = new QPushButton(this); |
|
286 |
BtnBack->setFont(*font14); |
|
287 |
BtnBack->setText(QPushButton::tr("Back")); |
|
288 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
289 |
||
290 |
BtnPlayDemo = new QPushButton(this); |
|
291 |
BtnPlayDemo->setGeometry(QRect(240, 330, 161, 41)); |
|
292 |
BtnPlayDemo->setFont(*font14); |
|
293 |
BtnPlayDemo->setText(QPushButton::tr("Play demo")); |
|
294 |
pageLayout->addWidget(BtnPlayDemo, 1, 2); |
|
295 |
||
296 |
DemosList = new QListWidget(this); |
|
297 |
DemosList->setGeometry(QRect(170, 10, 311, 311)); |
|
298 |
pageLayout->addWidget(DemosList, 0, 1); |
|
299 |
} |
|
300 |
||
301 |
PageOptions::PageOptions(QWidget* parent) : QWidget(parent) |
|
302 |
{ |
|
303 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
94 | 304 |
QGridLayout * pageLayout = new QGridLayout(this); |
87 | 305 |
groupBox = new QGroupBox(this); |
94 | 306 |
groupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
87 | 307 |
groupBox->setTitle(QGroupBox::tr("Teams")); |
94 | 308 |
pageLayout->addWidget(groupBox, 0, 0, 1, 3); |
87 | 309 |
|
94 | 310 |
QGridLayout * GBTlayout = new QGridLayout(groupBox); |
87 | 311 |
BtnNewTeam = new QPushButton(groupBox); |
312 |
BtnNewTeam->setFont(*font14); |
|
313 |
BtnNewTeam->setText(QPushButton::tr("New team")); |
|
94 | 314 |
GBTlayout->addWidget(BtnNewTeam, 0, 0); |
315 |
||
316 |
CBTeamName = new QComboBox(groupBox); |
|
317 |
GBTlayout->addWidget(CBTeamName, 0, 1); |
|
87 | 318 |
|
319 |
BtnEditTeam = new QPushButton(groupBox); |
|
320 |
BtnEditTeam->setFont(*font14); |
|
321 |
BtnEditTeam->setText(QPushButton::tr("Edit team")); |
|
94 | 322 |
GBTlayout->addWidget(BtnEditTeam, 0, 2); |
87 | 323 |
|
94 | 324 |
AGGroupBox = new QGroupBox(this); |
325 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
326 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
327 |
pageLayout->addWidget(AGGroupBox, 1, 0, 1, 3); |
|
328 |
||
329 |
QGridLayout * GBAlayout = new QGridLayout(AGGroupBox); |
|
330 |
CBResolution = new QComboBox(AGGroupBox); |
|
87 | 331 |
CBResolution->addItem("640x480"); |
332 |
CBResolution->addItem("800x600"); |
|
333 |
CBResolution->addItem("1024x768"); |
|
334 |
CBResolution->addItem("1280x1024"); |
|
94 | 335 |
GBAlayout->addWidget(CBResolution, 0, 0); |
87 | 336 |
|
94 | 337 |
CBFullscreen = new QCheckBox(AGGroupBox); |
338 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
339 |
GBAlayout->addWidget(CBFullscreen, 0, 1); |
|
340 |
||
341 |
CBEnableSound = new QCheckBox(AGGroupBox); |
|
87 | 342 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
94 | 343 |
GBAlayout->addWidget(CBEnableSound, 0, 2); |
87 | 344 |
|
94 | 345 |
pageLayout->addWidget(new QWidget(), 3, 0, 1, 3); |
87 | 346 |
|
347 |
BtnSaveOptions = new QPushButton(this); |
|
348 |
BtnSaveOptions->setFont(*font14); |
|
349 |
BtnSaveOptions->setText(QPushButton::tr("Save")); |
|
94 | 350 |
pageLayout->addWidget(BtnSaveOptions, 4, 2); |
87 | 351 |
|
352 |
BtnBack = new QPushButton(this); |
|
353 |
BtnBack->setFont(*font14); |
|
354 |
BtnBack->setText(QPushButton::tr("Back")); |
|
94 | 355 |
pageLayout->addWidget(BtnBack, 4, 0); |
87 | 356 |
} |
357 |
||
358 |
PageNet::PageNet(QWidget* parent) : QWidget(parent) |
|
359 |
{ |
|
360 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
361 |
QGridLayout * pageLayout = new QGridLayout(this); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
362 |
pageLayout->setColumnStretch(0, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
363 |
pageLayout->setColumnStretch(1, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
364 |
pageLayout->setColumnStretch(2, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
365 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
366 |
NNGroupBox = new QGroupBox(this); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
367 |
NNGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
368 |
NNGroupBox->setTitle(QGroupBox::tr("Net options")); |
113 | 369 |
pageLayout->addWidget(NNGroupBox, 0, 1); |
370 |
||
371 |
pageLayout->addWidget(new QWidget(), 1, 1); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
372 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
373 |
QGridLayout * GBNlayout = new QGridLayout(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
374 |
labelNN = new QLabel(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
375 |
labelNN->setText(QLabel::tr("Net nick")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
376 |
GBNlayout->addWidget(labelNN, 0, 0); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
377 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
378 |
editNetNick = new QLineEdit(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
379 |
editNetNick->setMaxLength(20); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
380 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
381 |
GBNlayout->addWidget(editNetNick, 0, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
382 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
383 |
labelIP = new QLabel(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
384 |
labelIP->setText(QLabel::tr("Server address")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
385 |
GBNlayout->addWidget(labelIP, 1, 0); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
386 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
387 |
editIP = new QLineEdit(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
388 |
editIP->setMaxLength(50); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
389 |
GBNlayout->addWidget(editIP, 1, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
390 |
|
87 | 391 |
BtnNetConnect = new QPushButton(this); |
392 |
BtnNetConnect->setFont(*font14); |
|
393 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
394 |
pageLayout->addWidget(BtnNetConnect, 2, 2); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
395 |
|
87 | 396 |
BtnBack = new QPushButton(this); |
397 |
BtnBack->setFont(*font14); |
|
398 |
BtnBack->setText(QPushButton::tr("Back")); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
399 |
pageLayout->addWidget(BtnBack, 2, 0); |
87 | 400 |
} |
401 |
||
402 |
PageNetChat::PageNetChat(QWidget* parent) : QWidget(parent) |
|
403 |
{ |
|
404 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
129 | 405 |
QGridLayout * pageLayout = new QGridLayout(this); |
406 |
pageLayout->setColumnStretch(0, 1); |
|
407 |
pageLayout->setColumnStretch(1, 1); |
|
408 |
pageLayout->setColumnStretch(2, 1); |
|
409 |
||
87 | 410 |
BtnDisconnect = new QPushButton(this); |
411 |
BtnDisconnect->setFont(*font14); |
|
412 |
BtnDisconnect->setText(QPushButton::tr("Disconnect")); |
|
129 | 413 |
pageLayout->addWidget(BtnDisconnect, 2, 0); |
414 |
||
87 | 415 |
ChannelsList = new QListWidget(this); |
129 | 416 |
pageLayout->addWidget(ChannelsList, 0, 1); |
417 |
||
87 | 418 |
BtnJoin = new QPushButton(this); |
419 |
BtnJoin->setFont(*font14); |
|
420 |
BtnJoin->setText(QPushButton::tr("Join")); |
|
129 | 421 |
pageLayout->addWidget(BtnJoin, 2, 2); |
422 |
||
87 | 423 |
BtnCreate = new QPushButton(this); |
424 |
BtnCreate->setFont(*font14); |
|
425 |
BtnCreate->setText(QPushButton::tr("Create")); |
|
129 | 426 |
pageLayout->addWidget(BtnCreate, 1, 2); |
87 | 427 |
} |
428 |
||
429 |
||
430 |
PageNetGame::PageNetGame(QWidget* parent) : QWidget(parent) |
|
431 |
{ |
|
432 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
129 | 433 |
QGridLayout * pageLayout = new QGridLayout(this); |
434 |
pageLayout->setColumnStretch(0, 1); |
|
435 |
pageLayout->setColumnStretch(1, 1); |
|
436 |
pageLayout->setColumnStretch(2, 1); |
|
437 |
||
87 | 438 |
BtnBack = new QPushButton(this); |
439 |
BtnBack->setFont(*font14); |
|
440 |
BtnBack->setText(QPushButton::tr("Back")); |
|
129 | 441 |
pageLayout->addWidget(BtnBack, 2, 0); |
87 | 442 |
|
443 |
BtnAddTeam = new QPushButton(this); |
|
444 |
BtnAddTeam->setFont(*font14); |
|
445 |
BtnAddTeam->setText(QPushButton::tr("Add Team")); |
|
129 | 446 |
pageLayout->addWidget(BtnAddTeam, 1, 1); |
87 | 447 |
|
448 |
BtnGo = new QPushButton(this); |
|
449 |
BtnGo->setFont(*font14); |
|
450 |
BtnGo->setText(QPushButton::tr("Go!")); |
|
129 | 451 |
pageLayout->addWidget(BtnGo, 2, 2); |
87 | 452 |
|
453 |
listNetTeams = new QListWidget(this); |
|
129 | 454 |
pageLayout->addWidget(listNetTeams, 0, 1); |
87 | 455 |
} |