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