QTfrontend/frameTeam.h
author unc0rr
Thu, 05 Oct 2006 17:02:09 +0000
changeset 184 f97a7a3dc8f6
parent 153 dc10da2a73f9
child 207 287077789132
permissions -rw-r--r--
- Update more headers - set svn:eol-style to native
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>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    23
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    24
#include "teamselect.h"
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    25
#include <map>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    26
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    27
class FrameTeams : public QWidget
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    28
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    29
  Q_OBJECT
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    30
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    31
 friend class CHedgehogerWidget;
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    32
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    33
 public:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    34
  FrameTeams(QWidget* parent=0);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    35
  QWidget* getTeamWidget(HWTeam team);
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    36
  bool isFullTeams() const;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    37
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    38
 public slots:
132
2d0f404cdf05 first hedgehogs number selection added
displacer
parents: 117
diff changeset
    39
  void addTeam(HWTeam team, bool willPlay);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    40
  void removeTeam(HWTeam team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    41
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    42
 private:
150
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    43
  const int maxHedgehogsPerGame;
d9e8a336195c team hedgehogs number improved
displacer
parents: 132
diff changeset
    44
  int overallHedgehogs;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    45
  QVBoxLayout mainLayout;
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    46
  typedef map<HWTeam, QWidget*> tmapTeamToWidget;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    47
  tmapTeamToWidget teamToWidget;
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    48
};
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    49
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    50
#endif // _FRAME_TAM_INCLUDED