184
|
1 |
/*
|
1066
|
2 |
* Hedgewars, a free turn based strategy game
|
883
|
3 |
* Copyright (c) 2006-2008 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;
|
306
|
32 |
class PageGameStats;
|
586
|
33 |
class PageSinglePlayer;
|
587
|
34 |
class PageTraining;
|
600
|
35 |
class PageSelectWeapon;
|
686
|
36 |
class PageInGame;
|
1311
|
37 |
class PageRoomsList;
|
1800
|
38 |
class PageConnecting;
|
1884
|
39 |
class PageScheme;
|
1905
|
40 |
class PageAdmin;
|
1950
|
41 |
class PageNetType;
|
471
|
42 |
class QStackedLayout;
|
|
43 |
class QFont;
|
|
44 |
class QWidget;
|
|
45 |
class QMainWindow;
|
184
|
46 |
|
|
47 |
class Ui_HWForm
|
|
48 |
{
|
|
49 |
public:
|
|
50 |
QWidget *centralWidget;
|
|
51 |
|
|
52 |
PageMain *pageMain;
|
|
53 |
PageEditTeam *pageEditTeam;
|
|
54 |
PageMultiplayer *pageMultiplayer;
|
|
55 |
PagePlayDemo *pagePlayDemo;
|
|
56 |
PageOptions *pageOptions;
|
|
57 |
PageNet *pageNet;
|
646
|
58 |
PageNetServer * pageNetServer;
|
184
|
59 |
PageNetChat *pageNetChat;
|
|
60 |
PageNetGame *pageNetGame;
|
187
|
61 |
PageInfo *pageInfo;
|
306
|
62 |
PageGameStats *pageGameStats;
|
586
|
63 |
PageSinglePlayer *pageSinglePlayer;
|
587
|
64 |
PageTraining *pageTraining;
|
600
|
65 |
PageSelectWeapon *pageSelectWeapon;
|
686
|
66 |
PageInGame *pageInGame;
|
1311
|
67 |
PageRoomsList *pageRoomsList;
|
1800
|
68 |
PageConnecting *pageConnecting;
|
1884
|
69 |
PageScheme *pageScheme;
|
1905
|
70 |
PageAdmin *pageAdmin;
|
1950
|
71 |
PageNetType *pageNetType;
|
184
|
72 |
|
|
73 |
QStackedLayout *Pages;
|
|
74 |
QFont *font14;
|
|
75 |
|
|
76 |
void setupUi(QMainWindow *HWForm);
|
|
77 |
void SetupFonts();
|
|
78 |
void SetupPages(QWidget *Parent);
|
|
79 |
void SetupPageNetChat(QWidget *Parent);
|
|
80 |
void SetupPageNetGame(QWidget *Parent);
|
|
81 |
};
|
|
82 |
|
|
83 |
#endif // UI_HWFORM_H
|