author | displacer |
Wed, 24 Jan 2007 20:00:03 +0000 | |
changeset 362 | b28e0dd48269 |
parent 352 | 4665bfe25470 |
child 372 | 4bac77f8cd38 |
permissions | -rw-r--r-- |
153 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com> |
|
4 |
* |
|
184 | 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 |
|
153 | 8 |
* |
184 | 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. |
|
153 | 13 |
* |
184 | 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 |
|
153 | 17 |
*/ |
18 |
||
63 | 19 |
#ifndef _FRAME_TEAM_INCLUDED |
20 |
#define _FRAME_TEAM_INCLUDED |
|
21 |
||
22 |
#include <QWidget> |
|
207 | 23 |
#include <QList> |
24 |
#include <QColor> |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
240
diff
changeset
|
25 |
#include <QMultiMap> |
63 | 26 |
|
27 |
#include "teamselect.h" |
|
28 |
||
29 |
class FrameTeams : public QWidget |
|
30 |
{ |
|
31 |
Q_OBJECT |
|
32 |
||
150 | 33 |
friend class CHedgehogerWidget; |
207 | 34 |
friend class TeamShowWidget; |
150 | 35 |
|
63 | 36 |
public: |
37 |
FrameTeams(QWidget* parent=0); |
|
117 | 38 |
QWidget* getTeamWidget(HWTeam team); |
150 | 39 |
bool isFullTeams() const; |
207 | 40 |
void resetColors(); |
352 | 41 |
void setHHNum(const HWTeam& team); |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
42 |
void setNonInteractive(); |
63 | 43 |
|
44 |
public slots: |
|
132 | 45 |
void addTeam(HWTeam team, bool willPlay); |
117 | 46 |
void removeTeam(HWTeam team); |
63 | 47 |
|
48 |
private: |
|
150 | 49 |
const int maxHedgehogsPerGame; |
50 |
int overallHedgehogs; |
|
207 | 51 |
QList<QColor> availableColors; |
52 |
QList<QColor>::Iterator currentColor; |
|
240 | 53 |
|
63 | 54 |
QVBoxLayout mainLayout; |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
240
diff
changeset
|
55 |
typedef QMultiMap<HWTeam, QWidget*> tmapTeamToWidget; |
63 | 56 |
tmapTeamToWidget teamToWidget; |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
57 |
bool nonInteractive; |
63 | 58 |
}; |
59 |
||
60 |
#endif // _FRAME_TAM_INCLUDED |