author | unc0rr |
Tue, 25 Jul 2006 20:19:46 +0000 | |
changeset 86 | 664b536a1c27 |
parent 84 | 0f6669da2fcb |
child 116 | 00d3d6d2e699 |
permissions | -rw-r--r-- |
80 | 1 |
#include "teamselhelper.h" |
2 |
||
3 |
#include <QPixmap> |
|
4 |
#include <QPushButton> |
|
5 |
||
6 |
void TeamLabel::teamButtonClicked() |
|
7 |
{ |
|
8 |
emit teamActivated(text()); |
|
9 |
} |
|
10 |
||
11 |
TeamShowWidget::TeamShowWidget(tmprop team, QWidget * parent) : |
|
12 |
QWidget(parent), mainLayout(this), m_team(team) |
|
13 |
{ |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
84
diff
changeset
|
14 |
this->setMaximumHeight(40); |
80 | 15 |
QLabel* pixlbl=new QLabel(); |
16 |
pixlbl->setPixmap(QPixmap("./Data/Graphics/thinking.png")); |
|
17 |
mainLayout.addWidget(pixlbl); |
|
18 |
||
19 |
TeamLabel* lbl=new TeamLabel(team.teamName); |
|
20 |
mainLayout.addWidget(lbl); |
|
21 |
||
22 |
QPushButton* butt=new QPushButton("o"); |
|
84 | 23 |
butt->setGeometry(0, 0, 25, 25); |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
84
diff
changeset
|
24 |
butt->setMaximumWidth(30); |
80 | 25 |
mainLayout.addWidget(butt); |
26 |
||
27 |
QObject::connect(butt, SIGNAL(clicked()), this, SLOT(activateTeam())); |
|
28 |
} |
|
29 |
||
30 |
void TeamShowWidget::activateTeam() |
|
31 |
{ |
|
32 |
emit teamStatusChanged(m_team); |
|
33 |
} |