author | displacer |
Mon, 21 Jan 2008 21:25:42 +0000 | |
changeset 747 | c7f67e90c3ee |
parent 686 | 494b5880989a |
child 788 | 00720357601f |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
486 | 3 |
* Copyright (c) 2006, 2007 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; |
|
585
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
486
diff
changeset
|
23 |
class PageSimpleGame; |
184 | 24 |
class PageEditTeam; |
25 |
class PageMultiplayer; |
|
26 |
class PagePlayDemo; |
|
27 |
class PageOptions; |
|
28 |
class PageNet; |
|
646 | 29 |
class PageNetServer; |
184 | 30 |
class PageNetChat; |
31 |
class PageNetGame; |
|
187 | 32 |
class PageInfo; |
306 | 33 |
class PageGameStats; |
586 | 34 |
class PageSinglePlayer; |
587 | 35 |
class PageTraining; |
600 | 36 |
class PageSelectWeapon; |
686 | 37 |
class PageInGame; |
471 | 38 |
class QStackedLayout; |
39 |
class QFont; |
|
40 |
class QWidget; |
|
41 |
class QMainWindow; |
|
184 | 42 |
|
43 |
class Ui_HWForm |
|
44 |
{ |
|
45 |
public: |
|
46 |
QWidget *centralWidget; |
|
47 |
||
48 |
PageMain *pageMain; |
|
585
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
486
diff
changeset
|
49 |
PageSimpleGame *pageSimpleGame; |
184 | 50 |
PageEditTeam *pageEditTeam; |
51 |
PageMultiplayer *pageMultiplayer; |
|
52 |
PagePlayDemo *pagePlayDemo; |
|
53 |
PageOptions *pageOptions; |
|
54 |
PageNet *pageNet; |
|
646 | 55 |
PageNetServer * pageNetServer; |
184 | 56 |
PageNetChat *pageNetChat; |
57 |
PageNetGame *pageNetGame; |
|
187 | 58 |
PageInfo *pageInfo; |
306 | 59 |
PageGameStats *pageGameStats; |
586 | 60 |
PageSinglePlayer *pageSinglePlayer; |
587 | 61 |
PageTraining *pageTraining; |
600 | 62 |
PageSelectWeapon *pageSelectWeapon; |
686 | 63 |
PageInGame *pageInGame; |
184 | 64 |
|
65 |
QStackedLayout *Pages; |
|
66 |
QFont *font14; |
|
67 |
||
68 |
void setupUi(QMainWindow *HWForm); |
|
69 |
void SetupFonts(); |
|
70 |
void SetupPages(QWidget *Parent); |
|
71 |
void SetupPageNetChat(QWidget *Parent); |
|
72 |
void SetupPageNetGame(QWidget *Parent); |
|
73 |
}; |
|
74 |
||
75 |
#endif // UI_HWFORM_H |