QTfrontend/frameTeam.h
author unc0rr
Tue, 23 Jan 2007 22:48:08 +0000
changeset 361 c3eebac100c0
parent 352 4665bfe25470
child 362 b28e0dd48269
permissions -rw-r--r--
- Show sample line - Load() works
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
153
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     1
/*
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     2
 * Hedgewars, a worms-like game
dc10da2a73f9 license and copyright info added
displacer
parents: 150
diff changeset
     3
 * Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com>
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
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    22
#include <QWidget>
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>
348
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 240
diff changeset
    25
#include <QMultiMap>
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    26
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    27
#include "teamselect.h"
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    28
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    29
class FrameTeams : public QWidget
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    30
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    31
  Q_OBJECT
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    32
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    33
 friend class CHedgehogerWidget;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    34
 friend class TeamShowWidget;
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    35
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    36
 public:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    37
  FrameTeams(QWidget* parent=0);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    38
  QWidget* getTeamWidget(HWTeam team);
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    39
  bool isFullTeams() const;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    40
  void resetColors();
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    41
  void setHHNum(const HWTeam& team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    42
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    43
 public slots:
132
2d0f404cdf05 first hedgehogs number selection added
displacer
parents: 117
diff changeset
    44
  void addTeam(HWTeam team, bool willPlay);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    45
  void removeTeam(HWTeam team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    46
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    47
 private:
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    48
  const int maxHedgehogsPerGame;
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    49
  int overallHedgehogs;
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    50
  QList<QColor> availableColors;
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    51
  QList<QColor>::Iterator currentColor;
240
c7f0a4f7a54a Better-looking multiplayer page
unc0rr
parents: 207
diff changeset
    52
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    53
  QVBoxLayout mainLayout;
348
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 240
diff changeset
    54
  typedef QMultiMap<HWTeam, QWidget*> tmapTeamToWidget;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    55
  tmapTeamToWidget teamToWidget;
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    56
};
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    57
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    58
#endif // _FRAME_TAM_INCLUDED