|
1 /* |
|
2 * Hedgewars, a free turn based strategy game |
|
3 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 |
|
19 #ifndef PAGE_NETGAME_H |
|
20 #define PAGE_NETGAME_H |
|
21 |
|
22 #include "AbstractPage.h" |
|
23 #include "SDLs.h" |
|
24 |
|
25 class HWChatWidget; |
|
26 class TeamSelWidget; |
|
27 class GameCFGWidget; |
|
28 |
|
29 class PageNetGame : public AbstractPage |
|
30 { |
|
31 Q_OBJECT |
|
32 |
|
33 public: |
|
34 PageNetGame(QWidget* parent, QSettings * gameSettings, SDLInteraction * sdli); |
|
35 |
|
36 QPushButton *BtnGo; |
|
37 QPushButton *BtnMaster; |
|
38 QPushButton *BtnStart; |
|
39 QPushButton *BtnUpdate; |
|
40 |
|
41 QLineEdit * leRoomName; |
|
42 |
|
43 QAction * restrictJoins; |
|
44 QAction * restrictTeamAdds; |
|
45 |
|
46 HWChatWidget* pChatWidget; |
|
47 |
|
48 TeamSelWidget* pNetTeamsWidget; |
|
49 GameCFGWidget* pGameCFG; |
|
50 |
|
51 public slots: |
|
52 void setReadyStatus(bool isReady); |
|
53 void onUpdateClick(); |
|
54 void setMasterMode(bool isMaster); |
|
55 |
|
56 signals: |
|
57 void SetupClicked(); |
|
58 void askForUpdateRoomName(const QString &); |
|
59 |
|
60 private: |
|
61 QLayout * bodyLayoutDefinition(); |
|
62 QLayout * footerLayoutDefinition(); |
|
63 void connectSignals(); |
|
64 |
|
65 QSettings * m_gameSettings; |
|
66 SDLInteraction * m_sdli; |
|
67 |
|
68 QPushButton * btnSetup; |
|
69 }; |
|
70 |
|
71 #endif |