author | unc0rr |
Wed, 09 Nov 2011 18:40:12 +0300 | |
changeset 6311 | 1f7af64d5565 |
parent 6165 | 6fe3e922246e |
child 6561 | b2165583cdf5 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2006-2011 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" |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
1950
diff
changeset
|
25 |
#include "hwform.h" |
5204 | 26 |
#include "pagenet.h" |
27 |
#include "pagetraining.h" |
|
28 |
#include "pagenetserver.h" |
|
29 |
#include "pageoptions.h" |
|
30 |
#include "pageingame.h" |
|
31 |
#include "pagescheme.h" |
|
32 |
#include "pagenettype.h" |
|
33 |
#include "pageroomslist.h" |
|
34 |
#include "pageinfo.h" |
|
35 |
#include "pagenetgame.h" |
|
36 |
#include "pageeditteam.h" |
|
37 |
#include "pagedrawmap.h" |
|
38 |
#include "pageadmin.h" |
|
39 |
#include "pageconnecting.h" |
|
40 |
#include "pagemultiplayer.h" |
|
41 |
#include "pagesingleplayer.h" |
|
42 |
#include "pageselectweapon.h" |
|
43 |
#include "pagecampaign.h" |
|
44 |
#include "pagemain.h" |
|
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
45 |
#include "pagegamestats.h" |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
46 |
#include "pageplayrecord.h" |
5567
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5205
diff
changeset
|
47 |
#include "pagedata.h" |
1542 | 48 |
#include "hwconsts.h" |
184 | 49 |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
1950
diff
changeset
|
50 |
void Ui_HWForm::setupUi(HWForm *HWForm) |
184 | 51 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
52 |
SetupFonts(); |
184 | 53 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
54 |
HWForm->setObjectName(QString::fromUtf8("HWForm")); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
55 |
HWForm->resize(QSize(640, 480).expandedTo(HWForm->minimumSizeHint())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
56 |
HWForm->setMinimumSize(QSize(720, 450)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
57 |
HWForm->setWindowTitle(QMainWindow::tr("Hedgewars %1").arg(*cVersionString)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
58 |
centralWidget = new QWidget(HWForm); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
59 |
centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
184 | 60 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
61 |
SetupPages(centralWidget, HWForm); |
184 | 62 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
63 |
HWForm->setCentralWidget(centralWidget); |
184 | 64 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
65 |
Pages->setCurrentIndex(0); |
184 | 66 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
67 |
QMetaObject::connectSlotsByName(HWForm); |
184 | 68 |
} |
69 |
||
70 |
void Ui_HWForm::SetupFonts() |
|
71 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
72 |
font14 = new QFont("MS Shell Dlg", 14); |
184 | 73 |
} |
74 |
||
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
1950
diff
changeset
|
75 |
void Ui_HWForm::SetupPages(QWidget *Parent, HWForm *HWForm) |
184 | 76 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
77 |
Pages = new QStackedLayout(Parent); |
184 | 78 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
5567
diff
changeset
|
79 |
pageEditTeam = new PageEditTeam(Parent); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
80 |
Pages->addWidget(pageEditTeam); |
184 | 81 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
82 |
pageOptions = new PageOptions(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
83 |
Pages->addWidget(pageOptions); |
184 | 84 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
85 |
pageMultiplayer = new PageMultiplayer(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
86 |
Pages->addWidget(pageMultiplayer); |
184 | 87 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
88 |
pagePlayDemo = new PagePlayDemo(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
89 |
Pages->addWidget(pagePlayDemo); |
184 | 90 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
91 |
pageNet = new PageNet(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
92 |
Pages->addWidget(pageNet); |
184 | 93 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
5567
diff
changeset
|
94 |
pageNetGame = new PageNetGame(Parent, HWForm->gameSettings); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
95 |
Pages->addWidget(pageNetGame); |
184 | 96 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
97 |
pageInfo = new PageInfo(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
98 |
Pages->addWidget(pageInfo); |
187 | 99 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
100 |
pageMain = new PageMain(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
101 |
Pages->addWidget(pageMain); |
306 | 102 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
103 |
pageGameStats = new PageGameStats(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
104 |
Pages->addWidget(pageGameStats); |
586 | 105 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
106 |
pageSinglePlayer = new PageSinglePlayer(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
107 |
Pages->addWidget(pageSinglePlayer); |
587 | 108 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
109 |
pageTraining = new PageTraining(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
110 |
Pages->addWidget(pageTraining); |
600 | 111 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
112 |
pageSelectWeapon = new PageSelectWeapon(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
113 |
Pages->addWidget(pageSelectWeapon); |
646 | 114 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
115 |
pageNetServer = new PageNetServer(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
116 |
Pages->addWidget(pageNetServer); |
686 | 117 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
118 |
pageInGame = new PageInGame(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
119 |
Pages->addWidget(pageInGame); |
1311 | 120 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
5567
diff
changeset
|
121 |
pageRoomsList = new PageRoomsList(Parent, HWForm->gameSettings); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
122 |
Pages->addWidget(pageRoomsList); |
1800 | 123 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
124 |
pageConnecting = new PageConnecting(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
125 |
Pages->addWidget(pageConnecting); |
1884 | 126 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
127 |
pageScheme = new PageScheme(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
128 |
Pages->addWidget(pageScheme); |
1905 | 129 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
130 |
pageAdmin = new PageAdmin(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
131 |
Pages->addWidget(pageAdmin); |
1950 | 132 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
133 |
pageNetType = new PageNetType(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2773
diff
changeset
|
134 |
Pages->addWidget(pageNetType); |
3760 | 135 |
|
136 |
pageCampaign = new PageCampaign(); |
|
137 |
Pages->addWidget(pageCampaign); |
|
4500 | 138 |
|
139 |
pageDrawMap = new PageDrawMap(); |
|
140 |
Pages->addWidget(pageDrawMap); |
|
5567
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5205
diff
changeset
|
141 |
|
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5205
diff
changeset
|
142 |
pageDataDownload = new PageDataDownload(); |
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5205
diff
changeset
|
143 |
Pages->addWidget(pageDataDownload); |
184 | 144 |
} |