author | unc0rr |
Tue, 25 Jul 2006 13:32:11 +0000 | |
changeset 85 | 44d9045b26ff |
parent 84 | 0f6669da2fcb |
child 87 | ff213e443336 |
permissions | -rw-r--r-- |
84 | 1 |
#include "ui_hwform.h" |
2 |
#include <QVBoxLayout> |
|
3 |
#include <QGridLayout> |
|
4 |
||
5 |
void Ui_HWForm::setupUi(QMainWindow *HWForm) |
|
6 |
{ |
|
7 |
SetupFonts(); |
|
8 |
||
9 |
HWForm->setObjectName(QString::fromUtf8("HWForm")); |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
10 |
HWForm->resize(QSize(620, 430).expandedTo(HWForm->minimumSizeHint())); |
84 | 11 |
HWForm->setMinimumSize(QSize(620, 430)); |
12 |
||
13 |
centralWidget = new QWidget(HWForm); |
|
14 |
centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
|
15 |
||
16 |
SetupPages(centralWidget); |
|
17 |
||
18 |
HWForm->setCentralWidget(centralWidget); |
|
19 |
retranslateUi(HWForm); |
|
20 |
QObject::connect(BtnExit, SIGNAL(clicked()), HWForm, SLOT(close())); |
|
21 |
||
22 |
Pages->setCurrentIndex(0); |
|
23 |
CBFort->setCurrentIndex(-1); |
|
24 |
CBGrave->setCurrentIndex(-1); |
|
25 |
BindsBox->setCurrentIndex(0); |
|
26 |
||
27 |
||
28 |
QMetaObject::connectSlotsByName(HWForm); |
|
29 |
} |
|
30 |
||
31 |
void Ui_HWForm::SetupFonts() |
|
32 |
{ |
|
33 |
font14 = new QFont(); |
|
34 |
font14->setFamily(QString::fromUtf8("MS Shell Dlg")); |
|
35 |
font14->setPointSize(14); |
|
36 |
font14->setBold(false); |
|
37 |
font14->setItalic(false); |
|
38 |
font14->setUnderline(false); |
|
39 |
font14->setWeight(50); |
|
40 |
font14->setStrikeOut(false); |
|
41 |
} |
|
42 |
||
43 |
void Ui_HWForm::SetupPages(QWidget *Parent) |
|
44 |
{ |
|
45 |
Pages = new QStackedLayout(Parent); |
|
46 |
||
47 |
pageLG = new QWidget(); |
|
48 |
SetupPageLocalGame(pageLG); |
|
49 |
Pages->addWidget(pageLG); |
|
50 |
||
51 |
pageET = new QWidget(); |
|
52 |
SetupPageEditTeam(pageET); |
|
53 |
Pages->addWidget(pageET); |
|
54 |
||
55 |
pageOpt = new QWidget(); |
|
56 |
SetupPageOptions(pageOpt); |
|
57 |
Pages->addWidget(pageOpt); |
|
58 |
||
59 |
pageMP = new QWidget(); |
|
60 |
SetupPageMultiplayer(pageMP); |
|
61 |
Pages->addWidget(pageMP); |
|
62 |
||
63 |
pagePDemo = new QWidget(); |
|
64 |
SetupPagePlayDemo(pagePDemo); |
|
65 |
Pages->addWidget(pagePDemo); |
|
66 |
||
67 |
pageNet = new QWidget(); |
|
68 |
SetupPageNet(pageNet); |
|
69 |
Pages->addWidget(pageNet); |
|
70 |
||
71 |
pageNetChat = new QWidget(); |
|
72 |
SetupPageNetChat(pageNetChat); |
|
73 |
Pages->addWidget(pageNetChat); |
|
74 |
||
75 |
pageNetGame = new QWidget(); |
|
76 |
SetupPageNetGame(pageNetGame); |
|
77 |
Pages->addWidget(pageNetGame); |
|
78 |
||
79 |
pageMain = new QWidget(); |
|
80 |
SetupPageMain(pageMain); |
|
81 |
Pages->addWidget(pageMain); |
|
82 |
} |
|
83 |
||
84 |
void Ui_HWForm::SetupPageLocalGame(QWidget *Parent) |
|
85 |
{ |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
86 |
QGridLayout * PageLGLayout = new QGridLayout(Parent); |
84 | 87 |
BtnSPBack = new QPushButton(Parent); |
88 |
BtnSPBack->setFont(*font14); |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
89 |
PageLGLayout->addWidget(BtnSPBack, 1, 0); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
90 |
BtnSimpleGame = new QPushButton(Parent); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
91 |
BtnSimpleGame->setFont(*font14); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
92 |
PageLGLayout->addWidget(BtnSimpleGame, 1, 3); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
93 |
pageLGGameCFG = new GameCFGWidget(Parent); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
94 |
PageLGLayout->addWidget(pageLGGameCFG, 0, 0, 1, 2); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
95 |
PageLGTeamsSelect = new TeamSelWidget(Parent); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
96 |
PageLGLayout->addWidget(PageLGTeamsSelect, 0, 2, 1, 2); |
84 | 97 |
} |
98 |
||
99 |
void Ui_HWForm::SetupPageEditTeam(QWidget *Parent) |
|
100 |
{ |
|
101 |
GBoxHedgehogs = new QGroupBox(Parent); |
|
102 |
GBoxHedgehogs->setGeometry(QRect(20, 70, 161, 261)); |
|
103 |
GBoxTeam = new QGroupBox(Parent); |
|
104 |
GBoxTeam->setGeometry(QRect(20, 10, 161, 51)); |
|
105 |
GBoxFort = new QGroupBox(Parent); |
|
106 |
GBoxFort->setGeometry(QRect(420, 110, 181, 221)); |
|
107 |
CBFort = new QComboBox(GBoxFort); |
|
108 |
CBFort->setGeometry(QRect(10, 20, 161, 21)); |
|
109 |
CBFort->setMaxCount(65535); |
|
110 |
FortPreview = new QLabel(GBoxFort); |
|
111 |
FortPreview->setGeometry(QRect(10, 50, 161, 161)); |
|
112 |
FortPreview->setPixmap(QPixmap()); |
|
113 |
FortPreview->setScaledContents(true); |
|
114 |
GBoxGrave = new QGroupBox(Parent); |
|
115 |
GBoxGrave->setGeometry(QRect(420, 10, 181, 91)); |
|
116 |
CBGrave = new QComboBox(GBoxGrave); |
|
117 |
CBGrave->setGeometry(QRect(10, 20, 161, 21)); |
|
118 |
CBGrave->setMaxCount(65535); |
|
119 |
GravePreview = new QLabel(GBoxGrave); |
|
120 |
GravePreview->setGeometry(QRect(80, 50, 32, 32)); |
|
121 |
GravePreview->setScaledContents(true); |
|
122 |
GBoxBinds = new QGroupBox(Parent); |
|
123 |
GBoxBinds->setGeometry(QRect(200, 10, 201, 431)); |
|
124 |
BindsBox = new QToolBox(GBoxBinds); |
|
125 |
BindsBox->setGeometry(QRect(10, 20, 181, 401)); |
|
126 |
BindsBox->setLineWidth(0); |
|
127 |
page_A = new QWidget(); |
|
128 |
page_A->setGeometry(QRect(0, 0, 96, 26)); |
|
129 |
BindsBox->addItem(page_A, QApplication::translate("HWForm", "Actions", 0, QApplication::UnicodeUTF8)); |
|
130 |
page_W = new QWidget(); |
|
131 |
page_W->setObjectName(QString::fromUtf8("page_W")); |
|
132 |
BindsBox->addItem(page_W, QApplication::translate("HWForm", "Weapons", 0, QApplication::UnicodeUTF8)); |
|
133 |
page_WP = new QWidget(); |
|
134 |
page_WP->setObjectName(QString::fromUtf8("page_WP")); |
|
135 |
BindsBox->addItem(page_WP, QApplication::translate("HWForm", "Weapon properties", 0, QApplication::UnicodeUTF8)); |
|
136 |
page_O = new QWidget(); |
|
137 |
page_O->setObjectName(QString::fromUtf8("page_O")); |
|
138 |
page_O->setGeometry(QRect(0, 0, 96, 26)); |
|
139 |
BindsBox->addItem(page_O, QApplication::translate("HWForm", "Other", 0, QApplication::UnicodeUTF8)); |
|
140 |
BtnTeamDiscard = new QPushButton(pageET); |
|
141 |
BtnTeamDiscard->setGeometry(QRect(440, 380, 161, 41)); |
|
142 |
BtnTeamDiscard->setFont(*font14); |
|
143 |
BtnTeamDiscard->setCheckable(false); |
|
144 |
BtnTeamDiscard->setChecked(false); |
|
145 |
BtnTeamSave = new QPushButton(Parent); |
|
146 |
BtnTeamSave->setGeometry(QRect(20, 380, 161, 41)); |
|
147 |
BtnTeamSave->setFont(*font14); |
|
148 |
BtnTeamSave->setCheckable(false); |
|
149 |
BtnTeamSave->setChecked(false); |
|
150 |
} |
|
151 |
||
152 |
void Ui_HWForm::SetupPageOptions(QWidget *Parent) |
|
153 |
{ |
|
154 |
groupBox = new QGroupBox(Parent); |
|
155 |
groupBox->setGeometry(QRect(20, 10, 591, 71)); |
|
156 |
BtnNewTeam = new QPushButton(groupBox); |
|
157 |
BtnNewTeam->setGeometry(QRect(10, 20, 160, 40)); |
|
158 |
BtnNewTeam->setFont(*font14); |
|
159 |
BtnEditTeam = new QPushButton(groupBox); |
|
160 |
BtnEditTeam->setGeometry(QRect(400, 20, 160, 40)); |
|
161 |
BtnEditTeam->setFont(*font14); |
|
162 |
CBTeamName = new QComboBox(groupBox); |
|
163 |
CBTeamName->setGeometry(QRect(200, 30, 171, 22)); |
|
164 |
CBResolution = new QComboBox(Parent); |
|
165 |
CBResolution->setGeometry(QRect(20, 120, 151, 22)); |
|
166 |
CBEnableSound = new QCheckBox(Parent); |
|
167 |
CBEnableSound->setGeometry(QRect(20, 180, 101, 18)); |
|
168 |
CBFullscreen = new QCheckBox(Parent); |
|
169 |
CBFullscreen->setGeometry(QRect(20, 160, 101, 18)); |
|
170 |
label = new QLabel(Parent); |
|
171 |
label->setGeometry(QRect(10, 233, 47, 13)); |
|
172 |
editNetNick = new QLineEdit(Parent); |
|
173 |
editNetNick->setGeometry(QRect(60, 230, 113, 20)); |
|
174 |
editNetNick->setMaxLength(30); |
|
175 |
BtnSaveOptions = new QPushButton(Parent); |
|
176 |
BtnSaveOptions->setGeometry(QRect(20, 380, 161, 41)); |
|
177 |
BtnSaveOptions->setFont(*font14); |
|
178 |
BtnSaveOptions->setCheckable(false); |
|
179 |
BtnSaveOptions->setChecked(false); |
|
180 |
BtnSetupBack = new QPushButton(Parent); |
|
181 |
BtnSetupBack->setGeometry(QRect(440, 380, 161, 41)); |
|
182 |
BtnSetupBack->setFont(*font14); |
|
183 |
BtnSetupBack->setCheckable(false); |
|
184 |
BtnSetupBack->setChecked(false); |
|
185 |
} |
|
186 |
||
187 |
void Ui_HWForm::SetupPageMultiplayer(QWidget *Parent) |
|
188 |
{ |
|
189 |
BtnMPBack = new QPushButton(Parent); |
|
190 |
BtnMPBack->setGeometry(QRect(240, 340, 161, 41)); |
|
191 |
BtnMPBack->setFont(*font14); |
|
192 |
BtnMPBack->setCheckable(false); |
|
193 |
BtnMPBack->setChecked(false); |
|
194 |
listWidget = new QListWidget(Parent); |
|
195 |
listWidget->setGeometry(QRect(160, 50, 221, 211)); |
|
196 |
listWidget->setModelColumn(0); |
|
197 |
} |
|
198 |
||
199 |
void Ui_HWForm::SetupPagePlayDemo(QWidget *Parent) |
|
200 |
{ |
|
201 |
BtnPlayDemo = new QPushButton(Parent); |
|
202 |
BtnPlayDemo->setGeometry(QRect(240, 330, 161, 41)); |
|
203 |
BtnPlayDemo->setFont(*font14); |
|
204 |
BtnPlayDemo->setCheckable(false); |
|
205 |
BtnPlayDemo->setChecked(false); |
|
206 |
DemosList = new QListWidget(Parent); |
|
207 |
DemosList->setGeometry(QRect(170, 10, 311, 311)); |
|
208 |
BtnDemosBack = new QPushButton(Parent); |
|
209 |
BtnDemosBack->setGeometry(QRect(240, 380, 161, 41)); |
|
210 |
BtnDemosBack->setFont(*font14); |
|
211 |
BtnDemosBack->setCheckable(false); |
|
212 |
BtnDemosBack->setChecked(false); |
|
213 |
} |
|
214 |
||
215 |
void Ui_HWForm::SetupPageNet(QWidget *Parent) |
|
216 |
{ |
|
217 |
BtnNetConnect = new QPushButton(Parent); |
|
218 |
BtnNetConnect->setGeometry(QRect(250, 140, 161, 41)); |
|
219 |
BtnNetConnect->setFont(*font14); |
|
220 |
BtnNetConnect->setCheckable(false); |
|
221 |
BtnNetConnect->setChecked(false); |
|
222 |
BtnNetBack = new QPushButton(Parent); |
|
223 |
BtnNetBack->setGeometry(QRect(250, 390, 161, 41)); |
|
224 |
BtnNetBack->setFont(*font14); |
|
225 |
BtnNetBack->setCheckable(false); |
|
226 |
BtnNetBack->setChecked(false); |
|
227 |
} |
|
228 |
||
229 |
void Ui_HWForm::SetupPageNetChat(QWidget *Parent) |
|
230 |
{ |
|
231 |
BtnNetChatDisconnect = new QPushButton(Parent); |
|
232 |
BtnNetChatDisconnect->setGeometry(QRect(460, 390, 161, 41)); |
|
233 |
BtnNetChatDisconnect->setFont(*font14); |
|
234 |
BtnNetChatDisconnect->setCheckable(false); |
|
235 |
BtnNetChatDisconnect->setChecked(false); |
|
236 |
ChannelsList = new QListWidget(Parent); |
|
237 |
ChannelsList->setGeometry(QRect(20, 10, 201, 331)); |
|
238 |
BtnNetChatJoin = new QPushButton(Parent); |
|
239 |
BtnNetChatJoin->setGeometry(QRect(460, 290, 161, 41)); |
|
240 |
BtnNetChatJoin->setFont(*font14); |
|
241 |
BtnNetChatJoin->setCheckable(false); |
|
242 |
BtnNetChatJoin->setChecked(false); |
|
243 |
BtnNetChatCreate = new QPushButton(Parent); |
|
244 |
BtnNetChatCreate->setGeometry(QRect(460, 340, 161, 41)); |
|
245 |
BtnNetChatCreate->setFont(*font14); |
|
246 |
BtnNetChatCreate->setCheckable(false); |
|
247 |
BtnNetChatCreate->setChecked(false); |
|
248 |
} |
|
249 |
||
250 |
void Ui_HWForm::SetupPageNetGame(QWidget *Parent) |
|
251 |
{ |
|
252 |
BtnNetCFGBack = new QPushButton(Parent); |
|
253 |
BtnNetCFGBack->setGeometry(QRect(260, 390, 161, 41)); |
|
254 |
BtnNetCFGBack->setFont(*font14); |
|
255 |
BtnNetCFGBack->setCheckable(false); |
|
256 |
BtnNetCFGBack->setChecked(false); |
|
257 |
BtnNetCFGAddTeam = new QPushButton(Parent); |
|
258 |
BtnNetCFGAddTeam->setGeometry(QRect(260, 290, 161, 41)); |
|
259 |
BtnNetCFGAddTeam->setFont(*font14); |
|
260 |
BtnNetCFGAddTeam->setCheckable(false); |
|
261 |
BtnNetCFGAddTeam->setChecked(false); |
|
262 |
BtnNetCFGGo = new QPushButton(Parent); |
|
263 |
BtnNetCFGGo->setGeometry(QRect(260, 340, 161, 41)); |
|
264 |
BtnNetCFGGo->setFont(*font14); |
|
265 |
BtnNetCFGGo->setCheckable(false); |
|
266 |
BtnNetCFGGo->setChecked(false); |
|
267 |
listNetTeams = new QListWidget(Parent); |
|
268 |
listNetTeams->setGeometry(QRect(270, 30, 120, 80)); |
|
269 |
} |
|
270 |
||
271 |
void Ui_HWForm::SetupPageMain(QWidget *Parent) |
|
272 |
{ |
|
273 |
QGridLayout * PageMainLayout = new QGridLayout(Parent); |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
274 |
PageMainLayout->setMargin(25); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
275 |
PageMainLayout->setColumnStretch(0, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
276 |
PageMainLayout->setColumnStretch(1, 2); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
277 |
PageMainLayout->setColumnStretch(2, 1); |
84 | 278 |
BtnSinglePlayer = new QPushButton(Parent); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
279 |
BtnSinglePlayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
84 | 280 |
BtnSinglePlayer->setFont(*font14); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
281 |
PageMainLayout->addWidget(BtnSinglePlayer, 1, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
282 |
|
84 | 283 |
BtnMultiplayer = new QPushButton(Parent); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
284 |
BtnMultiplayer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
84 | 285 |
BtnMultiplayer->setFont(*font14); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
286 |
PageMainLayout->addWidget(BtnMultiplayer, 2, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
287 |
|
84 | 288 |
BtnNet = new QPushButton(Parent); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
289 |
BtnNet->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
84 | 290 |
BtnNet->setFont(*font14); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
291 |
PageMainLayout->addWidget(BtnNet, 3, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
292 |
|
84 | 293 |
BtnDemos = new QPushButton(Parent); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
294 |
BtnDemos->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
84 | 295 |
BtnDemos->setFont(*font14); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
296 |
PageMainLayout->addWidget(BtnDemos, 4, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
297 |
|
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
298 |
BtnSetup = new QPushButton(Parent); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
299 |
BtnSetup->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
300 |
BtnSetup->setFont(*font14); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
301 |
PageMainLayout->addWidget(BtnSetup, 5, 1); |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
302 |
|
84 | 303 |
BtnExit = new QPushButton(Parent); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
304 |
BtnExit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
84 | 305 |
BtnExit->setFont(*font14); |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
306 |
PageMainLayout->addWidget(BtnExit, 6, 1); |
84 | 307 |
} |
308 |
||
309 |
void Ui_HWForm::retranslateUi(QMainWindow *HWForm) |
|
310 |
{ |
|
311 |
HWForm->setWindowTitle(QApplication::translate("HWForm", "-= by unC0Rr =-", 0, QApplication::UnicodeUTF8)); |
|
312 |
BtnSimpleGame->setText(QApplication::translate("HWForm", "Simple Game", 0, QApplication::UnicodeUTF8)); |
|
313 |
BtnSPBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
314 |
GBoxHedgehogs->setTitle(QApplication::translate("HWForm", "Team Members", 0, QApplication::UnicodeUTF8)); |
|
315 |
GBoxTeam->setTitle(QApplication::translate("HWForm", "Team", 0, QApplication::UnicodeUTF8)); |
|
316 |
GBoxFort->setTitle(QApplication::translate("HWForm", "Fort", 0, QApplication::UnicodeUTF8)); |
|
317 |
FortPreview->setText(QApplication::translate("HWForm", "", 0, QApplication::UnicodeUTF8)); |
|
318 |
GBoxGrave->setTitle(QApplication::translate("HWForm", "Grave", 0, QApplication::UnicodeUTF8)); |
|
319 |
GravePreview->setText(QApplication::translate("HWForm", "", 0, QApplication::UnicodeUTF8)); |
|
320 |
GBoxBinds->setTitle(QApplication::translate("HWForm", "Key binds", 0, QApplication::UnicodeUTF8)); |
|
321 |
BindsBox->setItemText(BindsBox->indexOf(page_A), QApplication::translate("HWForm", "Actions", 0, QApplication::UnicodeUTF8)); |
|
322 |
BindsBox->setItemText(BindsBox->indexOf(page_W), QApplication::translate("HWForm", "Weapons", 0, QApplication::UnicodeUTF8)); |
|
323 |
BindsBox->setItemText(BindsBox->indexOf(page_WP), QApplication::translate("HWForm", "Weapon properties", 0, QApplication::UnicodeUTF8)); |
|
324 |
BindsBox->setItemText(BindsBox->indexOf(page_O), QApplication::translate("HWForm", "Other", 0, QApplication::UnicodeUTF8)); |
|
325 |
BtnTeamDiscard->setText(QApplication::translate("HWForm", "Discard", 0, QApplication::UnicodeUTF8)); |
|
326 |
BtnTeamSave->setText(QApplication::translate("HWForm", "Save", 0, QApplication::UnicodeUTF8)); |
|
327 |
groupBox->setTitle(QApplication::translate("HWForm", "Teams", 0, QApplication::UnicodeUTF8)); |
|
328 |
BtnNewTeam->setText(QApplication::translate("HWForm", "New team", 0, QApplication::UnicodeUTF8)); |
|
329 |
BtnEditTeam->setText(QApplication::translate("HWForm", "Edit team", 0, QApplication::UnicodeUTF8)); |
|
330 |
CBResolution->addItem(QApplication::translate("HWForm", "640x480", 0, QApplication::UnicodeUTF8)); |
|
331 |
CBResolution->addItem(QApplication::translate("HWForm", "800x600", 0, QApplication::UnicodeUTF8)); |
|
332 |
CBResolution->addItem(QApplication::translate("HWForm", "1024x768", 0, QApplication::UnicodeUTF8)); |
|
333 |
CBResolution->addItem(QApplication::translate("HWForm", "1280x1024", 0, QApplication::UnicodeUTF8)); |
|
334 |
CBEnableSound->setText(QApplication::translate("HWForm", "Enable sound", 0, QApplication::UnicodeUTF8)); |
|
335 |
CBFullscreen->setText(QApplication::translate("HWForm", "Fullscreen", 0, QApplication::UnicodeUTF8)); |
|
336 |
label->setText(QApplication::translate("HWForm", "Net nick", 0, QApplication::UnicodeUTF8)); |
|
337 |
editNetNick->setText(QApplication::translate("HWForm", "unnamed", 0, QApplication::UnicodeUTF8)); |
|
338 |
BtnSaveOptions->setText(QApplication::translate("HWForm", "Save", 0, QApplication::UnicodeUTF8)); |
|
339 |
BtnSetupBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
340 |
BtnMPBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
341 |
BtnPlayDemo->setText(QApplication::translate("HWForm", "Play demo", 0, QApplication::UnicodeUTF8)); |
|
342 |
BtnDemosBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
343 |
BtnNetConnect->setText(QApplication::translate("HWForm", "Connect", 0, QApplication::UnicodeUTF8)); |
|
344 |
BtnNetBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
345 |
BtnNetChatDisconnect->setText(QApplication::translate("HWForm", "Disconnect", 0, QApplication::UnicodeUTF8)); |
|
346 |
BtnNetChatJoin->setText(QApplication::translate("HWForm", "Join", 0, QApplication::UnicodeUTF8)); |
|
347 |
BtnNetChatCreate->setText(QApplication::translate("HWForm", "Create", 0, QApplication::UnicodeUTF8)); |
|
348 |
BtnNetCFGBack->setText(QApplication::translate("HWForm", "Back", 0, QApplication::UnicodeUTF8)); |
|
349 |
BtnNetCFGAddTeam->setText(QApplication::translate("HWForm", "Add Team", 0, QApplication::UnicodeUTF8)); |
|
350 |
BtnNetCFGGo->setText(QApplication::translate("HWForm", "Go!", 0, QApplication::UnicodeUTF8)); |
|
351 |
BtnSinglePlayer->setText(QApplication::translate("HWForm", "Single Player", 0, QApplication::UnicodeUTF8)); |
|
352 |
BtnMultiplayer->setText(QApplication::translate("HWForm", "Multiplayer", 0, QApplication::UnicodeUTF8)); |
|
353 |
BtnSetup->setText(QApplication::translate("HWForm", "Setup", 0, QApplication::UnicodeUTF8)); |
|
354 |
BtnExit->setText(QApplication::translate("HWForm", "Exit", 0, QApplication::UnicodeUTF8)); |
|
355 |
BtnDemos->setText(QApplication::translate("HWForm", "Demos", 0, QApplication::UnicodeUTF8)); |
|
356 |
BtnNet->setText(QApplication::translate("HWForm", "Net game", 0, QApplication::UnicodeUTF8)); |
|
357 |
Q_UNUSED(HWForm); |
|
358 |
} |