author | unc0rr |
Wed, 06 May 2009 16:56:01 +0000 | |
changeset 2029 | 51e164a40b41 |
parent 1475 | bab5650fc894 |
child 4976 | 088d40d8aba2 |
permissions | -rw-r--r-- |
153 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 Ulyanov Igor <iulyanov@gmail.com> |
153 | 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 |
||
1424 | 22 |
#include <QFrame> |
207 | 23 |
#include <QList> |
24 |
#include <QColor> |
|
63 | 25 |
|
26 |
#include "teamselect.h" |
|
27 |
||
1424 | 28 |
class FrameTeams : public QFrame |
63 | 29 |
{ |
30 |
Q_OBJECT |
|
31 |
||
150 | 32 |
friend class CHedgehogerWidget; |
207 | 33 |
friend class TeamShowWidget; |
150 | 34 |
|
63 | 35 |
public: |
36 |
FrameTeams(QWidget* parent=0); |
|
117 | 37 |
QWidget* getTeamWidget(HWTeam team); |
150 | 38 |
bool isFullTeams() const; |
207 | 39 |
void resetColors(); |
383 | 40 |
void resetTeams(); |
352 | 41 |
void setHHNum(const HWTeam& team); |
372 | 42 |
void setTeamColor(const HWTeam& team); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1424
diff
changeset
|
43 |
void setInteractivity(bool interactive); |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
44 |
QColor getNextColor() const; |
63 | 45 |
|
372 | 46 |
signals: |
47 |
void teamColorChanged(const HWTeam&); |
|
48 |
||
63 | 49 |
public slots: |
132 | 50 |
void addTeam(HWTeam team, bool willPlay); |
117 | 51 |
void removeTeam(HWTeam team); |
63 | 52 |
|
53 |
private: |
|
150 | 54 |
const int maxHedgehogsPerGame; |
55 |
int overallHedgehogs; |
|
207 | 56 |
QList<QColor> availableColors; |
57 |
QList<QColor>::Iterator currentColor; |
|
240 | 58 |
|
372 | 59 |
void emitTeamColorChanged(const HWTeam& team); |
60 |
||
63 | 61 |
QVBoxLayout mainLayout; |
383 | 62 |
typedef QMap<HWTeam, QWidget*> tmapTeamToWidget; |
63 | 63 |
tmapTeamToWidget teamToWidget; |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
64 |
bool nonInteractive; |
63 | 65 |
}; |
66 |
||
67 |
#endif // _FRAME_TAM_INCLUDED |