author | nemo |
Mon, 14 Nov 2011 16:17:58 -0500 | |
changeset 6377 | 3ce19204b14b |
parent 5268 | eedc0f8ed38b |
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 |
||
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; |
1950 | 43 |
class PageNetType; |
4500 | 44 |
class PageDrawMap; |
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 |
{ |
|
53 |
public: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
54 |
QWidget *centralWidget; |
184 | 55 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
56 |
PageMain *pageMain; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
57 |
PageEditTeam *pageEditTeam; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
58 |
PageMultiplayer *pageMultiplayer; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
59 |
PagePlayDemo *pagePlayDemo; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
60 |
PageOptions *pageOptions; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
61 |
PageNet *pageNet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
62 |
PageNetServer * pageNetServer; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
63 |
PageNetChat *pageNetChat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
64 |
PageNetGame *pageNetGame; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
65 |
PageInfo *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
|
66 |
PageDataDownload *pageDataDownload; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
67 |
PageGameStats *pageGameStats; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
68 |
PageSinglePlayer *pageSinglePlayer; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
69 |
PageTraining *pageTraining; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
70 |
PageSelectWeapon *pageSelectWeapon; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
71 |
PageInGame *pageInGame; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
72 |
PageRoomsList *pageRoomsList; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
73 |
PageConnecting *pageConnecting; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
74 |
PageScheme *pageScheme; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
75 |
PageAdmin *pageAdmin; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
76 |
PageNetType *pageNetType; |
3760 | 77 |
PageCampaign *pageCampaign; |
4500 | 78 |
PageDrawMap *pageDrawMap; |
184 | 79 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
80 |
QStackedLayout *Pages; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
81 |
QFont *font14; |
184 | 82 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
83 |
void setupUi(HWForm *HWForm); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
84 |
void SetupFonts(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2515
diff
changeset
|
85 |
void SetupPages(QWidget *Parent, HWForm *HWForm); |
184 | 86 |
}; |
87 |
||
88 |
#endif // UI_HWFORM_H |