QTfrontend/frameTeam.h
author displacer
Fri, 18 Aug 2006 20:37:50 +0000
changeset 117 d21a48200772
parent 63 27e2b5bb6d4b
child 132 2d0f404cdf05
permissions -rw-r--r--
HWTeam integration in team select widget
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     1
#ifndef _FRAME_TEAM_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     2
#define _FRAME_TEAM_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     3
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     4
#include <QWidget>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     5
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     6
#include "teamselect.h"
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     7
#include <map>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     8
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     9
class FrameTeams : public QWidget
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    10
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    11
  Q_OBJECT
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    12
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    13
 public:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    14
  FrameTeams(QWidget* parent=0);
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    15
  QWidget* getTeamWidget(HWTeam team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    16
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    17
 public slots:
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    18
  void addTeam(HWTeam team);
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    19
  void removeTeam(HWTeam team);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    20
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    21
 private:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    22
  QVBoxLayout mainLayout;
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    23
  typedef map<HWTeam, QWidget*> tmapTeamToWidget;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    24
  tmapTeamToWidget teamToWidget;
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    25
};
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    26
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    27
#endif // _FRAME_TAM_INCLUDED