author | szczur |
Sun, 28 Oct 2012 00:16:59 +0200 | |
changeset 7846 | 77a6abce92b5 |
parent 7235 | baa69bd025d9 |
child 8179 | a1ffcb559f99 |
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 |
||
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; |
|
6561 | 27 |
class PageFeedback; |
184 | 28 |
class PageNet; |
646 | 29 |
class PageNetServer; |
184 | 30 |
class PageNetChat; |
31 |
class PageNetGame; |
|
187 | 32 |
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
|
33 |
class PageDataDownload; |
306 | 34 |
class PageGameStats; |
586 | 35 |
class PageSinglePlayer; |
587 | 36 |
class PageTraining; |
3760 | 37 |
class PageCampaign; |
600 | 38 |
class PageSelectWeapon; |
686 | 39 |
class PageInGame; |
1311 | 40 |
class PageRoomsList; |
1800 | 41 |
class PageConnecting; |
1884 | 42 |
class PageScheme; |
1905 | 43 |
class PageAdmin; |
1950 | 44 |
class PageNetType; |
4500 | 45 |
class PageDrawMap; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
6952
diff
changeset
|
46 |
class PageVideos; |
471 | 47 |
class QStackedLayout; |
48 |
class QFont; |
|
49 |
class QWidget; |
|
50 |
class QMainWindow; |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
1950
diff
changeset
|
51 |
class HWForm; |
184 | 52 |
|
53 |
class Ui_HWForm |
|
54 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
55 |
public: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
56 |
QWidget *centralWidget; |
184 | 57 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
58 |
PageMain *pageMain; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
59 |
PageEditTeam *pageEditTeam; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
60 |
PageMultiplayer *pageMultiplayer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
61 |
PagePlayDemo *pagePlayDemo; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
62 |
PageOptions *pageOptions; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
63 |
PageFeedback *pageFeedback; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
64 |
PageNet *pageNet; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
65 |
PageNetServer * pageNetServer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
66 |
PageNetChat *pageNetChat; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
67 |
PageNetGame *pageNetGame; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
68 |
PageInfo *pageInfo; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
69 |
PageDataDownload *pageDataDownload; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
70 |
PageGameStats *pageGameStats; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
71 |
PageSinglePlayer *pageSinglePlayer; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
72 |
PageTraining *pageTraining; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
73 |
PageSelectWeapon *pageSelectWeapon; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
74 |
PageInGame *pageInGame; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
75 |
PageRoomsList *pageRoomsList; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
76 |
PageConnecting *pageConnecting; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
77 |
PageScheme *pageScheme; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
78 |
PageAdmin *pageAdmin; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
79 |
PageNetType *pageNetType; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
80 |
PageCampaign *pageCampaign; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
81 |
PageDrawMap *pageDrawMap; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
6952
diff
changeset
|
82 |
PageVideos *pageVideos; |
184 | 83 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
84 |
QStackedLayout *Pages; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
85 |
QFont *font14; |
184 | 86 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
87 |
void setupUi(HWForm *HWForm); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
88 |
void SetupFonts(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6561
diff
changeset
|
89 |
void SetupPages(QWidget *Parent, HWForm *HWForm); |
184 | 90 |
}; |
91 |
||
92 |
#endif // UI_HWFORM_H |