QTfrontend/frameTeam.h
author unc0rr
Wed, 16 Aug 2006 11:41:00 +0000
changeset 111 30ca06092a64
parent 63 27e2b5bb6d4b
child 117 d21a48200772
permissions -rw-r--r--
- 'net nickname' and 'server address' options are on PageNet - Don't set bots process thread pointer to nil

#ifndef _FRAME_TEAM_INCLUDED
#define _FRAME_TEAM_INCLUDED

#include <QWidget>

#include "teamselect.h"
#include <map>

class FrameTeams : public QWidget
{
  Q_OBJECT

 public:
  FrameTeams(QWidget* parent=0);
  QWidget* getTeamWidget(tmprop team);

 public slots:
  void addTeam(tmprop team);
  void removeTeam(tmprop team);

 private:
  QVBoxLayout mainLayout;
  typedef map<tmprop, QWidget*> tmapTeamToWidget;
  tmapTeamToWidget teamToWidget;
};

#endif // _FRAME_TAM_INCLUDED