QTfrontend/frameTeam.h
author smxx
Thu, 04 Mar 2010 16:20:07 +0000
changeset 2931 97f75507e1cb
parent 1475 bab5650fc894
child 4976 088d40d8aba2
permissions -rw-r--r--
Engine: * Reverted position selection pulsing
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 486
diff changeset
     2
 * Hedgewars, a free turn based strategy game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 471
diff changeset
     3
 * Copyright (c) 2006, 2007 Ulyanov Igor <iulyanov@gmail.com>
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     4
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     8
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    12
 * GNU General Public License for more details.
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    13
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    17
 */
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
    18
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    19
#ifndef _FRAME_TEAM_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    20
#define _FRAME_TEAM_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    21
1424
2b45d88716b0 - Some work on team select widget look
unc0rr
parents: 1066
diff changeset
    22
#include <QFrame>
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    23
#include <QList>
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    24
#include <QColor>
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    25
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    26
#include "teamselect.h"
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    27
1424
2b45d88716b0 - Some work on team select widget look
unc0rr
parents: 1066
diff changeset
    28
class FrameTeams : public QFrame
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    29
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    30
  Q_OBJECT
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    31
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    32
 friend class CHedgehogerWidget;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    33
 friend class TeamShowWidget;
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    34
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    35
 public:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    36
  FrameTeams(QWidget* parent=0);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    37
  QWidget* getTeamWidget(HWTeam team);
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    38
  bool isFullTeams() const;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    39
  void resetColors();
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    40
  void resetTeams();
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    41
  void setHHNum(const HWTeam& team);
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    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
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    45
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    46
 signals:
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    47
  void teamColorChanged(const HWTeam&);
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    48
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    49
 public slots:
132
2d0f404cdf05 first hedgehogs number selection added
displacer
parents: 117
diff changeset
    50
  void addTeam(HWTeam team, bool willPlay);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    51
  void removeTeam(HWTeam team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    52
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    53
 private:
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    54
  const int maxHedgehogsPerGame;
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    55
  int overallHedgehogs;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    56
  QList<QColor> availableColors;
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    57
  QList<QColor>::Iterator currentColor;
240
c7f0a4f7a54a Better-looking multiplayer page
unc0rr
parents: 207
diff changeset
    58
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    59
  void emitTeamColorChanged(const HWTeam& team);
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    60
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    61
  QVBoxLayout mainLayout;
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    62
  typedef QMap<HWTeam, QWidget*> tmapTeamToWidget;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    63
  tmapTeamToWidget teamToWidget;
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    64
  bool nonInteractive;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    65
};
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    66
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    67
#endif // _FRAME_TAM_INCLUDED