QTfrontend/teamselhelper.h
author unc0rr
Fri, 15 Sep 2006 13:47:01 +0000
changeset 146 458f4f58c1b6
parent 140 50ccde437ea1
child 150 d9e8a336195c
permissions -rw-r--r--
- Fix AI not to damage self hedgehogs - Fix checking for winner - main.cpp shouldn't be changed without changing main.cpp.in

#ifndef _TEAMSEL_HELPER_INCLUDED
#define _TEAMSEL_HELPER_INCLUDED

#include <QLabel>
#include <QWidget>
#include <QString>

#include "teamselect.h"
#include "hedgehogerWidget.h"

class TeamLabel : public QLabel
{
 Q_OBJECT

 public:
 TeamLabel(const QString& inp_str) : QLabel(inp_str) {};

 signals:
 void teamActivated(QString team_name);

 public slots:
 void teamButtonClicked();

};

class TeamShowWidget : public QWidget
{
 Q_OBJECT

 private slots:
 void activateTeam();

 public:
 TeamShowWidget(HWTeam team, bool isPlaying, QWidget * parent = 0);
 void setPlaying(bool isPlaying);
 unsigned char getHedgehogsNum();
 
 private:
 QHBoxLayout mainLayout;
 HWTeam m_team;
 bool m_isPlaying;
 CHedgehogerWidget* phhoger;

 signals:
 void teamStatusChanged(HWTeam team);
};

#endif // _TEAMSEL_HELPER_INCLUDED