QTfrontend/ui/widget/frameTeam.h
changeset 6060 fdfc01419815
parent 4976 088d40d8aba2
child 6616 f77bb02b669f
equal deleted inserted replaced
6059:ddf020d0941a 6060:fdfc01419815
       
     1 /*
       
     2  * Hedgewars, a free turn based strategy game
       
     3  * Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com>
       
     4  * Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com>
       
     5  *
       
     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
       
     9  *
       
    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.
       
    14  *
       
    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
       
    18  */
       
    19 
       
    20 #ifndef _FRAME_TEAM_INCLUDED
       
    21 #define _FRAME_TEAM_INCLUDED
       
    22 
       
    23 #include <QFrame>
       
    24 #include <QList>
       
    25 #include <QColor>
       
    26 
       
    27 #include "teamselect.h"
       
    28 
       
    29 class FrameTeams : public QFrame
       
    30 {
       
    31   Q_OBJECT
       
    32 
       
    33  friend class CHedgehogerWidget;
       
    34  friend class TeamShowWidget;
       
    35 
       
    36  public:
       
    37   FrameTeams(QWidget* parent=0);
       
    38   QWidget* getTeamWidget(HWTeam team);
       
    39   bool isFullTeams() const;
       
    40   void resetColors();
       
    41   void resetTeams();
       
    42   void setHHNum(const HWTeam& team);
       
    43   void setTeamColor(const HWTeam& team);
       
    44   void setInteractivity(bool interactive);
       
    45   QColor getNextColor() const;
       
    46 
       
    47  signals:
       
    48   void teamColorChanged(const HWTeam&);
       
    49 
       
    50  public slots:
       
    51   void addTeam(HWTeam team, bool willPlay);
       
    52   void removeTeam(HWTeam team);
       
    53 
       
    54  private:
       
    55   const int maxHedgehogsPerGame;
       
    56   int overallHedgehogs;
       
    57   QList<QColor> availableColors;
       
    58   QList<QColor>::Iterator currentColor;
       
    59 
       
    60   void emitTeamColorChanged(const HWTeam& team);
       
    61 
       
    62   QVBoxLayout mainLayout;
       
    63   typedef QMap<HWTeam, QWidget*> tmapTeamToWidget;
       
    64   tmapTeamToWidget teamToWidget;
       
    65   bool nonInteractive;
       
    66 };
       
    67 
       
    68 #endif // _FRAME_TAM_INCLUDED