author | unc0rr |
Mon, 20 Aug 2007 17:49:39 +0000 | |
changeset 579 | 94db15de0392 |
parent 486 | 7ea71cd3acd5 |
child 585 | 7531ae5b146e |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
486 | 3 |
* Copyright (c) 2006, 2007 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 <QVBoxLayout> |
|
20 |
#include <QGridLayout> |
|
471 | 21 |
#include <QMainWindow> |
22 |
#include <QStackedLayout> |
|
23 |
||
184 | 24 |
#include "ui_hwform.h" |
25 |
#include "pages.h" |
|
579 | 26 |
#include "playrecordpage.h" |
184 | 27 |
|
28 |
void Ui_HWForm::setupUi(QMainWindow *HWForm) |
|
29 |
{ |
|
30 |
SetupFonts(); |
|
31 |
||
32 |
HWForm->setObjectName(QString::fromUtf8("HWForm")); |
|
485
defe001d490c
form size increased (network chat is now fit into window initially)
displacer
parents:
471
diff
changeset
|
33 |
HWForm->resize(QSize(640, 480).expandedTo(HWForm->minimumSizeHint())); |
184 | 34 |
HWForm->setMinimumSize(QSize(620, 430)); |
187 | 35 |
HWForm->setWindowTitle(QMainWindow::tr("Hedgewars")); |
184 | 36 |
centralWidget = new QWidget(HWForm); |
37 |
centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
|
38 |
||
39 |
SetupPages(centralWidget); |
|
40 |
||
41 |
HWForm->setCentralWidget(centralWidget); |
|
42 |
||
43 |
Pages->setCurrentIndex(0); |
|
44 |
||
45 |
QMetaObject::connectSlotsByName(HWForm); |
|
46 |
} |
|
47 |
||
48 |
void Ui_HWForm::SetupFonts() |
|
49 |
{ |
|
50 |
font14 = new QFont("MS Shell Dlg", 14); |
|
51 |
} |
|
52 |
||
53 |
void Ui_HWForm::SetupPages(QWidget *Parent) |
|
54 |
{ |
|
55 |
Pages = new QStackedLayout(Parent); |
|
56 |
||
57 |
pageLocalGame = new PageLocalGame(); |
|
58 |
Pages->addWidget(pageLocalGame); |
|
59 |
||
60 |
pageEditTeam = new PageEditTeam(); |
|
61 |
Pages->addWidget(pageEditTeam); |
|
62 |
||
63 |
pageOptions = new PageOptions(); |
|
64 |
Pages->addWidget(pageOptions); |
|
65 |
||
66 |
pageMultiplayer = new PageMultiplayer(); |
|
67 |
Pages->addWidget(pageMultiplayer); |
|
68 |
||
69 |
pagePlayDemo = new PagePlayDemo(); |
|
70 |
Pages->addWidget(pagePlayDemo); |
|
71 |
||
72 |
pageNet = new PageNet(); |
|
73 |
Pages->addWidget(pageNet); |
|
74 |
||
75 |
pageNetGame = new PageNetGame(); |
|
76 |
Pages->addWidget(pageNetGame); |
|
77 |
||
187 | 78 |
pageInfo = new PageInfo(); |
79 |
Pages->addWidget(pageInfo); |
|
80 |
||
184 | 81 |
pageMain = new PageMain(); |
82 |
Pages->addWidget(pageMain); |
|
306 | 83 |
|
84 |
pageGameStats = new PageGameStats(); |
|
85 |
Pages->addWidget(pageGameStats); |
|
184 | 86 |
} |