author | unc0rr |
Tue, 18 Sep 2007 18:24:02 +0000 | |
changeset 596 | 38bdde6a54c1 |
parent 587 | 74db4115064a |
child 600 | f6e5f4e122db |
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; |
|
29 |
class PageNetChat; |
|
30 |
class PageNetGame; |
|
187 | 31 |
class PageInfo; |
306 | 32 |
class PageGameStats; |
586 | 33 |
class PageSinglePlayer; |
587 | 34 |
class PageTraining; |
471 | 35 |
class QStackedLayout; |
36 |
class QFont; |
|
37 |
class QWidget; |
|
38 |
class QMainWindow; |
|
184 | 39 |
|
40 |
class Ui_HWForm |
|
41 |
{ |
|
42 |
public: |
|
43 |
QWidget *centralWidget; |
|
44 |
||
45 |
PageMain *pageMain; |
|
585
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
486
diff
changeset
|
46 |
PageSimpleGame *pageSimpleGame; |
184 | 47 |
PageEditTeam *pageEditTeam; |
48 |
PageMultiplayer *pageMultiplayer; |
|
49 |
PagePlayDemo *pagePlayDemo; |
|
50 |
PageOptions *pageOptions; |
|
51 |
PageNet *pageNet; |
|
52 |
PageNetChat *pageNetChat; |
|
53 |
PageNetGame *pageNetGame; |
|
187 | 54 |
PageInfo *pageInfo; |
306 | 55 |
PageGameStats *pageGameStats; |
586 | 56 |
PageSinglePlayer *pageSinglePlayer; |
587 | 57 |
PageTraining *pageTraining; |
184 | 58 |
|
59 |
QStackedLayout *Pages; |
|
60 |
QFont *font14; |
|
61 |
||
62 |
void setupUi(QMainWindow *HWForm); |
|
63 |
void SetupFonts(); |
|
64 |
void SetupPages(QWidget *Parent); |
|
65 |
void SetupPageNetChat(QWidget *Parent); |
|
66 |
void SetupPageNetGame(QWidget *Parent); |
|
67 |
}; |
|
68 |
||
69 |
#endif // UI_HWFORM_H |