author | sheepluva |
Sat, 03 Sep 2011 20:36:08 +0200 | |
changeset 5749 | 134d57761f3d |
parent 4976 | 088d40d8aba2 |
permissions | -rw-r--r-- |
153 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com> |
4 |
* Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
153 | 5 |
* |
184 | 6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
153 | 9 |
* |
184 | 10 |
* This program is distributed in the hope that it will be useful, |
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
153 | 14 |
* |
184 | 15 |
* You should have received a copy of the GNU General Public License |
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
153 | 18 |
*/ |
19 |
||
63 | 20 |
#ifndef _FRAME_TEAM_INCLUDED |
21 |
#define _FRAME_TEAM_INCLUDED |
|
22 |
||
1424 | 23 |
#include <QFrame> |
207 | 24 |
#include <QList> |
25 |
#include <QColor> |
|
63 | 26 |
|
27 |
#include "teamselect.h" |
|
28 |
||
1424 | 29 |
class FrameTeams : public QFrame |
63 | 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(); |
383 | 41 |
void resetTeams(); |
352 | 42 |
void setHHNum(const HWTeam& team); |
372 | 43 |
void setTeamColor(const HWTeam& team); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1424
diff
changeset
|
44 |
void setInteractivity(bool interactive); |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
45 |
QColor getNextColor() const; |
63 | 46 |
|
372 | 47 |
signals: |
48 |
void teamColorChanged(const HWTeam&); |
|
49 |
||
63 | 50 |
public slots: |
132 | 51 |
void addTeam(HWTeam team, bool willPlay); |
117 | 52 |
void removeTeam(HWTeam team); |
63 | 53 |
|
54 |
private: |
|
150 | 55 |
const int maxHedgehogsPerGame; |
56 |
int overallHedgehogs; |
|
207 | 57 |
QList<QColor> availableColors; |
58 |
QList<QColor>::Iterator currentColor; |
|
240 | 59 |
|
372 | 60 |
void emitTeamColorChanged(const HWTeam& team); |
61 |
||
63 | 62 |
QVBoxLayout mainLayout; |
383 | 63 |
typedef QMap<HWTeam, QWidget*> tmapTeamToWidget; |
63 | 64 |
tmapTeamToWidget teamToWidget; |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
65 |
bool nonInteractive; |
63 | 66 |
}; |
67 |
||
68 |
#endif // _FRAME_TAM_INCLUDED |