author | sheepluva |
Mon, 12 Sep 2011 14:56:24 +0200 | |
changeset 5876 | 7d52d7174619 |
parent 5259 | 926958e3e87b |
child 6009 | 14f6fc9869f2 |
permissions | -rw-r--r-- |
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
1 |
/* |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
3 |
* Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com> |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
4 |
* |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
8 |
* |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
12 |
* GNU General Public License for more details. |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
13 |
* |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
17 |
*/ |
5204 | 18 |
|
19 |
#ifndef PAGE_ROOMLIST_H |
|
20 |
#define PAGE_ROOMLIST_H |
|
21 |
||
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
22 |
#include "AbstractPage.h" |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
23 |
#include "SDLs.h" |
5204 | 24 |
|
25 |
class HWChatWidget; |
|
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
26 |
class AmmoSchemeModel; |
5204 | 27 |
|
28 |
class PageRoomsList : public AbstractPage |
|
29 |
{ |
|
30 |
Q_OBJECT |
|
31 |
||
32 |
public: |
|
33 |
PageRoomsList(QWidget* parent, QSettings * config, SDLInteraction * sdli); |
|
34 |
||
35 |
QLineEdit * roomName; |
|
36 |
QLineEdit * searchText; |
|
37 |
QTableWidget * roomsList; |
|
38 |
QPushButton * BtnBack; |
|
39 |
QPushButton * BtnCreate; |
|
40 |
QPushButton * BtnJoin; |
|
41 |
QPushButton * BtnRefresh; |
|
42 |
QPushButton * BtnAdmin; |
|
43 |
QPushButton * BtnClear; |
|
44 |
QComboBox * CBState; |
|
45 |
QComboBox * CBRules; |
|
46 |
QComboBox * CBWeapons; |
|
47 |
HWChatWidget * chatWidget; |
|
5259
926958e3e87b
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P
sheepluva
parents:
5205
diff
changeset
|
48 |
QLabel * lblCount; |
5204 | 49 |
|
50 |
private: |
|
51 |
bool gameInLobby; |
|
52 |
QString gameInLobbyName; |
|
53 |
QStringList listFromServer; |
|
54 |
AmmoSchemeModel * ammoSchemeModel; |
|
55 |
||
56 |
public slots: |
|
57 |
void setRoomsList(const QStringList & list); |
|
58 |
void setAdmin(bool); |
|
5259
926958e3e87b
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P
sheepluva
parents:
5205
diff
changeset
|
59 |
void updateNickCounter(int cnt); |
5204 | 60 |
|
61 |
private slots: |
|
62 |
void onCreateClick(); |
|
63 |
void onJoinClick(); |
|
64 |
void onRefreshClick(); |
|
65 |
void onClearClick(); |
|
66 |
void onJoinConfirmation(const QString &); |
|
67 |
||
68 |
signals: |
|
69 |
void askForCreateRoom(const QString &); |
|
70 |
void askForJoinRoom(const QString &); |
|
71 |
void askForRoomList(); |
|
72 |
void askJoinConfirmation(const QString &); |
|
73 |
}; |
|
74 |
||
75 |
#endif |