author | unc0rr |
Sun, 08 Nov 2015 12:06:13 +0300 | |
changeset 11321 | 71a46315c2d4 |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
184 | 17 |
*/ |
18 |
||
471 | 19 |
#ifndef UI_HWFORM_H |
184 | 20 |
#define UI_HWFORM_H |
21 |
||
22 |
class PageMain; |
|
23 |
class PageEditTeam; |
|
24 |
class PageMultiplayer; |
|
25 |
class PagePlayDemo; |
|
26 |
class PageOptions; |
|
27 |
class PageNet; |
|
646 | 28 |
class PageNetServer; |
184 | 29 |
class PageNetChat; |
30 |
class PageNetGame; |
|
187 | 31 |
class PageInfo; |
5268
eedc0f8ed38b
Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents:
4976
diff
changeset
|
32 |
class PageDataDownload; |
306 | 33 |
class PageGameStats; |
586 | 34 |
class PageSinglePlayer; |
587 | 35 |
class PageTraining; |
3760 | 36 |
class PageCampaign; |
600 | 37 |
class PageSelectWeapon; |
686 | 38 |
class PageInGame; |
1311 | 39 |
class PageRoomsList; |
1800 | 40 |
class PageConnecting; |
1884 | 41 |
class PageScheme; |
1905 | 42 |
class PageAdmin; |
4500 | 43 |
class PageDrawMap; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
6952
diff
changeset
|
44 |
class PageVideos; |
471 | 45 |
class QStackedLayout; |
46 |
class QFont; |
|
47 |
class QWidget; |
|
48 |
class QMainWindow; |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
1950
diff
changeset
|
49 |
class HWForm; |
184 | 50 |
|
51 |
class Ui_HWForm |
|
52 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
53 |
public: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
54 |
QWidget *centralWidget; |
184 | 55 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
56 |
PageMain *pageMain; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
57 |
PageEditTeam *pageEditTeam; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
58 |
PageMultiplayer *pageMultiplayer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
59 |
PagePlayDemo *pagePlayDemo; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
60 |
PageOptions *pageOptions; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
61 |
PageNet *pageNet; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
62 |
PageNetServer * pageNetServer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
63 |
PageNetChat *pageNetChat; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
64 |
PageNetGame *pageNetGame; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
65 |
PageInfo *pageInfo; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
66 |
PageDataDownload *pageDataDownload; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
67 |
PageGameStats *pageGameStats; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
68 |
PageSinglePlayer *pageSinglePlayer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
69 |
PageTraining *pageTraining; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
70 |
PageSelectWeapon *pageSelectWeapon; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
71 |
PageInGame *pageInGame; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
72 |
PageRoomsList *pageRoomsList; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
73 |
PageConnecting *pageConnecting; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
74 |
PageScheme *pageScheme; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
75 |
PageAdmin *pageAdmin; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
76 |
PageCampaign *pageCampaign; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
77 |
PageDrawMap *pageDrawMap; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
6952
diff
changeset
|
78 |
PageVideos *pageVideos; |
184 | 79 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
80 |
QStackedLayout *Pages; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
81 |
QFont *font14; |
184 | 82 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
83 |
void setupUi(HWForm *HWForm); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
84 |
void SetupFonts(); |
8179
a1ffcb559f99
Refactor: get rid of excessive QSettings instances on the same poor hedgewars.ini file
unc0rr
parents:
7235
diff
changeset
|
85 |
void SetupPages(QWidget *Parent); |
184 | 86 |
}; |
87 |
||
88 |
#endif // UI_HWFORM_H |