author | unc0rr |
Sun, 27 Aug 2006 13:38:05 +0000 | |
changeset 129 | 313f3d0ee7fa |
parent 113 | d975a426ebf7 |
child 133 | c79cb5e5b24a |
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" |
87 | 52 |
|
53 |
PageMain::PageMain(QWidget* parent) : QWidget(parent) |
|
54 |
{ |
|
55 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
56 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
57 |
pageLayout->setMargin(25); |
|
58 |
pageLayout->setColumnStretch(0, 1); |
|
59 |
pageLayout->setColumnStretch(1, 2); |
|
60 |
pageLayout->setColumnStretch(2, 1); |
|
61 |
||
62 |
BtnSinglePlayer = new QPushButton(this); |
|
63 |
BtnSinglePlayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
64 |
BtnSinglePlayer->setFont(*font14); |
|
65 |
BtnSinglePlayer->setText(QPushButton::tr("Single Player")); |
|
66 |
pageLayout->addWidget(BtnSinglePlayer, 1, 1); |
|
67 |
||
68 |
BtnMultiplayer = new QPushButton(this); |
|
69 |
BtnMultiplayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
70 |
BtnMultiplayer->setFont(*font14); |
|
71 |
BtnMultiplayer->setText(QPushButton::tr("Multiplayer")); |
|
72 |
pageLayout->addWidget(BtnMultiplayer, 2, 1); |
|
73 |
||
74 |
BtnNet = new QPushButton(this); |
|
75 |
BtnNet->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
76 |
BtnNet->setFont(*font14); |
|
77 |
BtnNet->setText(QPushButton::tr("Net game")); |
|
78 |
pageLayout->addWidget(BtnNet, 3, 1); |
|
79 |
||
80 |
BtnDemos = new QPushButton(this); |
|
81 |
BtnDemos->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
82 |
BtnDemos->setFont(*font14); |
|
83 |
BtnDemos->setText(QPushButton::tr("Demos")); |
|
84 |
pageLayout->addWidget(BtnDemos, 4, 1); |
|
85 |
||
86 |
BtnSetup = new QPushButton(this); |
|
87 |
BtnSetup->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
88 |
BtnSetup->setFont(*font14); |
|
89 |
BtnSetup->setText(QPushButton::tr("Setup")); |
|
90 |
pageLayout->addWidget(BtnSetup, 5, 1); |
|
91 |
||
92 |
BtnExit = new QPushButton(parent); |
|
93 |
BtnExit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
94 |
BtnExit->setFont(*font14); |
|
95 |
BtnExit->setText(QPushButton::tr("Exit")); |
|
96 |
pageLayout->addWidget(BtnExit, 6, 1); |
|
97 |
} |
|
98 |
||
99 |
PageLocalGame::PageLocalGame(QWidget* parent) : QWidget(parent) |
|
100 |
{ |
|
101 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
102 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
103 |
BtnBack = new QPushButton(this); |
|
104 |
BtnBack->setFont(*font14); |
|
105 |
BtnBack->setText(QPushButton::tr("Back")); |
|
106 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
107 |
BtnSimpleGame = new QPushButton(this); |
|
108 |
BtnSimpleGame->setFont(*font14); |
|
109 |
BtnSimpleGame->setText(QPushButton::tr("Simple Game")); |
|
110 |
pageLayout->addWidget(BtnSimpleGame, 1, 3); |
|
111 |
gameCFG = new GameCFGWidget(this); |
|
112 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
113 |
} |
|
114 |
||
115 |
PageEditTeam::PageEditTeam(QWidget* parent) : QWidget(parent) |
|
116 |
{ |
|
117 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
90 | 118 |
QGridLayout * pageLayout = new QGridLayout(this); |
119 |
pageLayout->setColumnStretch(0, 100); |
|
120 |
pageLayout->setColumnMinimumWidth(0, 150); |
|
121 |
pageLayout->setColumnStretch(1, 100); |
|
122 |
pageLayout->setColumnMinimumWidth(1, 200); |
|
123 |
pageLayout->setColumnStretch(2, 250); |
|
124 |
pageLayout->setColumnMinimumWidth(2, 250); |
|
125 |
||
87 | 126 |
GBoxTeam = new QGroupBox(this); |
127 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
|
90 | 128 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
129 |
QGridLayout * GBTLayout = new QGridLayout(GBoxTeam); |
|
130 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
|
131 |
TeamNameEdit->setMaxLength(15); |
|
132 |
GBTLayout->addWidget(TeamNameEdit); |
|
133 |
pageLayout->addWidget(GBoxTeam, 0, 0); |
|
134 |
||
135 |
GBoxHedgehogs = new QGroupBox(this); |
|
136 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
|
137 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
138 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
139 |
for(int i = 0; i < 8; i++) |
|
140 |
{ |
|
141 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
142 |
HHNameEdit[i]->setGeometry(QRect(10, 20 + i * 30, 141, 20)); |
|
143 |
HHNameEdit[i]->setMaxLength(15); |
|
144 |
GBHLayout->addWidget(HHNameEdit[i]); |
|
145 |
} |
|
146 |
pageLayout->addWidget(GBoxHedgehogs, 1, 0, 2, 1); |
|
147 |
||
148 |
BtnTeamDiscard = new QPushButton(this); |
|
149 |
BtnTeamDiscard->setFont(*font14); |
|
150 |
BtnTeamDiscard->setText(QPushButton::tr("Discard")); |
|
151 |
pageLayout->addWidget(BtnTeamDiscard, 4, 0); |
|
152 |
||
87 | 153 |
GBoxBinds = new QGroupBox(this); |
154 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
|
90 | 155 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
87 | 156 |
BindsBox = new QToolBox(GBoxBinds); |
157 |
BindsBox->setLineWidth(0); |
|
90 | 158 |
GBBLayout->addWidget(BindsBox); |
87 | 159 |
page_A = new QWidget(); |
160 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
|
161 |
page_W = new QWidget(); |
|
162 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
|
163 |
page_WP = new QWidget(); |
|
164 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
|
165 |
page_O = new QWidget(); |
|
166 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
|
90 | 167 |
pageLayout->addWidget(GBoxBinds, 0, 1, 5, 1); |
87 | 168 |
|
169 |
QStringList binds; |
|
170 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
171 |
{ |
|
172 |
binds << sdlkeys[i][1]; |
|
173 |
} |
|
174 |
||
90 | 175 |
quint16 widind = 0, i = 0; |
176 |
while (i < BINDS_NUMBER) { |
|
177 |
quint16 num = 0; |
|
178 |
QGridLayout * pagelayout = new QGridLayout(BindsBox->widget(widind)); |
|
179 |
do { |
|
180 |
LBind[i] = new QLabel(BindsBox->widget(widind)); |
|
181 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
|
182 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
183 |
pagelayout->addWidget(LBind[i], num, 0); |
|
184 |
CBBind[i] = new QComboBox(BindsBox->widget(widind)); |
|
185 |
CBBind[i]->addItems(binds); |
|
186 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
187 |
num++; |
|
188 |
} while (!cbinds[i++].chwidget); |
|
189 |
pagelayout->addWidget(new QWidget(BindsBox->widget(widind)), num, 0, 1, 2); |
|
190 |
widind++; |
|
87 | 191 |
} |
192 |
||
90 | 193 |
GBoxGrave = new QGroupBox(this); |
194 |
GBoxGrave->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
195 |
GBoxGrave->setTitle(QGroupBox::tr("Grave")); |
|
196 |
QGridLayout * GBGLayout = new QGridLayout(GBoxGrave); |
|
197 |
CBGrave = new QComboBox(GBoxGrave); |
|
198 |
CBGrave->setMaxCount(65535); |
|
199 |
GBGLayout->addWidget(CBGrave, 0, 0, 1, 3); |
|
200 |
GravePreview = new QLabel(GBoxGrave); |
|
201 |
GravePreview->setScaledContents(false); |
|
202 |
GBGLayout->addWidget(GravePreview, 1, 1); |
|
203 |
pageLayout->addWidget(GBoxGrave, 0, 2, 2, 1); |
|
204 |
||
205 |
GBoxFort = new QGroupBox(this); |
|
206 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
207 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
208 |
CBFort = new QComboBox(GBoxFort); |
|
209 |
CBFort->setMaxCount(65535); |
|
210 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
93 | 211 |
FortPreview = new SquareLabel(GBoxFort); |
90 | 212 |
FortPreview->setPixmap(QPixmap()); |
213 |
FortPreview->setScaledContents(true); |
|
214 |
GBFLayout->addWidget(FortPreview, 1, 0); |
|
215 |
pageLayout->addWidget(GBoxFort, 2, 2, 1, 1); |
|
216 |
||
217 |
BtnTeamSave = new QPushButton(this); |
|
218 |
BtnTeamSave->setFont(*font14); |
|
219 |
BtnTeamSave->setText(QPushButton::tr("Save")); |
|
220 |
pageLayout->addWidget(BtnTeamSave, 4, 2); |
|
221 |
||
222 |
||
87 | 223 |
QDir tmpdir; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
224 |
tmpdir.cd(datadir->absolutePath()); |
87 | 225 |
tmpdir.cd("Forts"); |
226 |
tmpdir.setFilter(QDir::Files); |
|
227 |
||
228 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L.png"), "\\1")); |
|
229 |
tmpdir.cd("../Graphics/Graves"); |
|
230 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
231 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
232 |
{ |
|
233 |
CBGrave->addItem((*it).replace(QRegExp("^(.*).png"), "\\1")); |
|
234 |
} |
|
235 |
||
236 |
connect(CBGrave, SIGNAL(activated(const QString &)), this, SLOT(CBGrave_activated(const QString &))); |
|
237 |
connect(CBFort, SIGNAL(activated(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
|
238 |
} |
|
239 |
||
240 |
void PageEditTeam::CBGrave_activated(const QString & gravename) |
|
241 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
242 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + gravename + ".png"); |
87 | 243 |
GravePreview->setPixmap(pix.copy(0, 0, 32, 32)); |
244 |
} |
|
245 |
||
246 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
247 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
94
diff
changeset
|
248 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
87 | 249 |
FortPreview->setPixmap(pix); |
250 |
} |
|
251 |
||
252 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : QWidget(parent) |
|
253 |
{ |
|
254 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
255 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
256 |
BtnBack = new QPushButton(this); |
|
257 |
BtnBack->setFont(*font14); |
|
258 |
BtnBack->setText(QPushButton::tr("Back")); |
|
259 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
260 |
gameCFG = new GameCFGWidget(this); |
|
261 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
262 |
teamsSelect = new TeamSelWidget(this); |
|
263 |
pageLayout->addWidget(teamsSelect, 0, 2, 1, 2); |
|
264 |
} |
|
265 |
||
266 |
PagePlayDemo::PagePlayDemo(QWidget* parent) : QWidget(parent) |
|
267 |
{ |
|
268 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
269 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
270 |
pageLayout->setColumnStretch(0, 1); |
|
271 |
pageLayout->setColumnStretch(1, 2); |
|
272 |
pageLayout->setColumnStretch(2, 1); |
|
273 |
||
274 |
BtnBack = new QPushButton(this); |
|
275 |
BtnBack->setFont(*font14); |
|
276 |
BtnBack->setText(QPushButton::tr("Back")); |
|
277 |
pageLayout->addWidget(BtnBack, 1, 0); |
|
278 |
||
279 |
BtnPlayDemo = new QPushButton(this); |
|
280 |
BtnPlayDemo->setGeometry(QRect(240, 330, 161, 41)); |
|
281 |
BtnPlayDemo->setFont(*font14); |
|
282 |
BtnPlayDemo->setText(QPushButton::tr("Play demo")); |
|
283 |
pageLayout->addWidget(BtnPlayDemo, 1, 2); |
|
284 |
||
285 |
DemosList = new QListWidget(this); |
|
286 |
DemosList->setGeometry(QRect(170, 10, 311, 311)); |
|
287 |
pageLayout->addWidget(DemosList, 0, 1); |
|
288 |
} |
|
289 |
||
290 |
PageOptions::PageOptions(QWidget* parent) : QWidget(parent) |
|
291 |
{ |
|
292 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
94 | 293 |
QGridLayout * pageLayout = new QGridLayout(this); |
87 | 294 |
groupBox = new QGroupBox(this); |
94 | 295 |
groupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
87 | 296 |
groupBox->setTitle(QGroupBox::tr("Teams")); |
94 | 297 |
pageLayout->addWidget(groupBox, 0, 0, 1, 3); |
87 | 298 |
|
94 | 299 |
QGridLayout * GBTlayout = new QGridLayout(groupBox); |
87 | 300 |
BtnNewTeam = new QPushButton(groupBox); |
301 |
BtnNewTeam->setFont(*font14); |
|
302 |
BtnNewTeam->setText(QPushButton::tr("New team")); |
|
94 | 303 |
GBTlayout->addWidget(BtnNewTeam, 0, 0); |
304 |
||
305 |
CBTeamName = new QComboBox(groupBox); |
|
306 |
GBTlayout->addWidget(CBTeamName, 0, 1); |
|
87 | 307 |
|
308 |
BtnEditTeam = new QPushButton(groupBox); |
|
309 |
BtnEditTeam->setFont(*font14); |
|
310 |
BtnEditTeam->setText(QPushButton::tr("Edit team")); |
|
94 | 311 |
GBTlayout->addWidget(BtnEditTeam, 0, 2); |
87 | 312 |
|
94 | 313 |
AGGroupBox = new QGroupBox(this); |
314 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
315 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
316 |
pageLayout->addWidget(AGGroupBox, 1, 0, 1, 3); |
|
317 |
||
318 |
QGridLayout * GBAlayout = new QGridLayout(AGGroupBox); |
|
319 |
CBResolution = new QComboBox(AGGroupBox); |
|
87 | 320 |
CBResolution->addItem("640x480"); |
321 |
CBResolution->addItem("800x600"); |
|
322 |
CBResolution->addItem("1024x768"); |
|
323 |
CBResolution->addItem("1280x1024"); |
|
94 | 324 |
GBAlayout->addWidget(CBResolution, 0, 0); |
87 | 325 |
|
94 | 326 |
CBFullscreen = new QCheckBox(AGGroupBox); |
327 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
328 |
GBAlayout->addWidget(CBFullscreen, 0, 1); |
|
329 |
||
330 |
CBEnableSound = new QCheckBox(AGGroupBox); |
|
87 | 331 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
94 | 332 |
GBAlayout->addWidget(CBEnableSound, 0, 2); |
87 | 333 |
|
94 | 334 |
pageLayout->addWidget(new QWidget(), 3, 0, 1, 3); |
87 | 335 |
|
336 |
BtnSaveOptions = new QPushButton(this); |
|
337 |
BtnSaveOptions->setFont(*font14); |
|
338 |
BtnSaveOptions->setText(QPushButton::tr("Save")); |
|
94 | 339 |
pageLayout->addWidget(BtnSaveOptions, 4, 2); |
87 | 340 |
|
341 |
BtnBack = new QPushButton(this); |
|
342 |
BtnBack->setFont(*font14); |
|
343 |
BtnBack->setText(QPushButton::tr("Back")); |
|
94 | 344 |
pageLayout->addWidget(BtnBack, 4, 0); |
87 | 345 |
} |
346 |
||
347 |
PageNet::PageNet(QWidget* parent) : QWidget(parent) |
|
348 |
{ |
|
349 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
350 |
QGridLayout * pageLayout = new QGridLayout(this); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
351 |
pageLayout->setColumnStretch(0, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
352 |
pageLayout->setColumnStretch(1, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
353 |
pageLayout->setColumnStretch(2, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
354 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
355 |
NNGroupBox = new QGroupBox(this); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
356 |
NNGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
357 |
NNGroupBox->setTitle(QGroupBox::tr("Net options")); |
113 | 358 |
pageLayout->addWidget(NNGroupBox, 0, 1); |
359 |
||
360 |
pageLayout->addWidget(new QWidget(), 1, 1); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
361 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
362 |
QGridLayout * GBNlayout = new QGridLayout(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
363 |
labelNN = new QLabel(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
364 |
labelNN->setText(QLabel::tr("Net nick")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
365 |
GBNlayout->addWidget(labelNN, 0, 0); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
366 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
367 |
editNetNick = new QLineEdit(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
368 |
editNetNick->setMaxLength(20); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
369 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
370 |
GBNlayout->addWidget(editNetNick, 0, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
371 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
372 |
labelIP = new QLabel(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
373 |
labelIP->setText(QLabel::tr("Server address")); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
374 |
GBNlayout->addWidget(labelIP, 1, 0); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
375 |
|
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
376 |
editIP = new QLineEdit(NNGroupBox); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
377 |
editIP->setMaxLength(50); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
378 |
GBNlayout->addWidget(editIP, 1, 1); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
379 |
|
87 | 380 |
BtnNetConnect = new QPushButton(this); |
381 |
BtnNetConnect->setFont(*font14); |
|
382 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
383 |
pageLayout->addWidget(BtnNetConnect, 2, 2); |
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
384 |
|
87 | 385 |
BtnBack = new QPushButton(this); |
386 |
BtnBack->setFont(*font14); |
|
387 |
BtnBack->setText(QPushButton::tr("Back")); |
|
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
97
diff
changeset
|
388 |
pageLayout->addWidget(BtnBack, 2, 0); |
87 | 389 |
} |
390 |
||
391 |
PageNetChat::PageNetChat(QWidget* parent) : QWidget(parent) |
|
392 |
{ |
|
393 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
129 | 394 |
QGridLayout * pageLayout = new QGridLayout(this); |
395 |
pageLayout->setColumnStretch(0, 1); |
|
396 |
pageLayout->setColumnStretch(1, 1); |
|
397 |
pageLayout->setColumnStretch(2, 1); |
|
398 |
||
87 | 399 |
BtnDisconnect = new QPushButton(this); |
400 |
BtnDisconnect->setFont(*font14); |
|
401 |
BtnDisconnect->setText(QPushButton::tr("Disconnect")); |
|
129 | 402 |
pageLayout->addWidget(BtnDisconnect, 2, 0); |
403 |
||
87 | 404 |
ChannelsList = new QListWidget(this); |
129 | 405 |
pageLayout->addWidget(ChannelsList, 0, 1); |
406 |
||
87 | 407 |
BtnJoin = new QPushButton(this); |
408 |
BtnJoin->setFont(*font14); |
|
409 |
BtnJoin->setText(QPushButton::tr("Join")); |
|
129 | 410 |
pageLayout->addWidget(BtnJoin, 2, 2); |
411 |
||
87 | 412 |
BtnCreate = new QPushButton(this); |
413 |
BtnCreate->setFont(*font14); |
|
414 |
BtnCreate->setText(QPushButton::tr("Create")); |
|
129 | 415 |
pageLayout->addWidget(BtnCreate, 1, 2); |
87 | 416 |
} |
417 |
||
418 |
||
419 |
PageNetGame::PageNetGame(QWidget* parent) : QWidget(parent) |
|
420 |
{ |
|
421 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
129 | 422 |
QGridLayout * pageLayout = new QGridLayout(this); |
423 |
pageLayout->setColumnStretch(0, 1); |
|
424 |
pageLayout->setColumnStretch(1, 1); |
|
425 |
pageLayout->setColumnStretch(2, 1); |
|
426 |
||
87 | 427 |
BtnBack = new QPushButton(this); |
428 |
BtnBack->setFont(*font14); |
|
429 |
BtnBack->setText(QPushButton::tr("Back")); |
|
129 | 430 |
pageLayout->addWidget(BtnBack, 2, 0); |
87 | 431 |
|
432 |
BtnAddTeam = new QPushButton(this); |
|
433 |
BtnAddTeam->setFont(*font14); |
|
434 |
BtnAddTeam->setText(QPushButton::tr("Add Team")); |
|
129 | 435 |
pageLayout->addWidget(BtnAddTeam, 1, 1); |
87 | 436 |
|
437 |
BtnGo = new QPushButton(this); |
|
438 |
BtnGo->setFont(*font14); |
|
439 |
BtnGo->setText(QPushButton::tr("Go!")); |
|
129 | 440 |
pageLayout->addWidget(BtnGo, 2, 2); |
87 | 441 |
|
442 |
listNetTeams = new QListWidget(this); |
|
129 | 443 |
pageLayout->addWidget(listNetTeams, 0, 1); |
87 | 444 |
} |