1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* Hedgewars, a free turn based strategy game
* Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com>
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <QPixmap>
#include <QPainter>
#include <QStyleFactory>
#include <QDebug>
#include <algorithm>
#include "teamselhelper.h"
#include "hwconsts.h"
#include "frameTeam.h"
#include "colorwidget.h"
#include "DataManager.h"
void TeamLabel::teamButtonClicked()
{
emit teamActivated(text());
}
TeamShowWidget::TeamShowWidget(const HWTeam & team, bool isPlaying, FrameTeams * parent) :
QWidget(parent), mainLayout(this), m_team(team), m_isPlaying(isPlaying), phhoger(0),
colorWidget(0)
{
m_parentFrameTeams = parent;
QPalette newPalette = palette();
newPalette.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00));
setPalette(newPalette);
setAutoFillBackground(true);
mainLayout.setSpacing(3);
mainLayout.setMargin(0);
this->setMaximumHeight(38);
this->setMinimumHeight(38);
QIcon difficultyIcon=team.isNetTeam() ?
QIcon(QString(":/res/botlevels/net%1.png").arg(m_team.difficulty()))
: QIcon(QString(":/res/botlevels/%1.png").arg(m_team.difficulty()));
butt = new QPushButton(difficultyIcon, team.name().replace("&","&&"), this);
butt->setFlat(true);
butt->setToolTip(team.owner());
mainLayout.addWidget(butt);
if(m_isPlaying)
{
// team color
colorWidget = new ColorWidget(DataManager::instance().colorsModel(), this);
colorWidget->setMinimumWidth(26);
colorWidget->setMaximumWidth(26);
colorWidget->setMinimumHeight(26);
colorWidget->setMaximumHeight(26);
colorWidget->setColor(team.color());
connect(colorWidget, SIGNAL(colorChanged(int)), this, SLOT(onColorChanged(int)));
mainLayout.addWidget(colorWidget);
phhoger = new CHedgehogerWidget(QImage(":/res/hh25x25.png"), QImage(":/res/hh25x25grey.png"), this);
connect(phhoger, SIGNAL(hedgehogsNumChanged()), this, SLOT(hhNumChanged()));
phhoger->setHHNum(team.numHedgehogs());
mainLayout.addWidget(phhoger);
}
else
{
}
QObject::connect(butt, SIGNAL(clicked()), this, SLOT(activateTeam()));
//QObject::connect(bText, SIGNAL(clicked()), this, SLOT(activateTeam()));
}
void TeamShowWidget::setInteractivity(bool interactive)
{
if(m_team.isNetTeam())
{
butt->setEnabled(interactive);
}
colorWidget->setEnabled(interactive);
phhoger->setEnabled(interactive);
}
void TeamShowWidget::setHHNum(unsigned int num)
{
phhoger->setHHNum(num);
}
void TeamShowWidget::hhNumChanged()
{
m_team.setNumHedgehogs(phhoger->getHedgehogsNum());
emit hhNmChanged(m_team);
}
void TeamShowWidget::activateTeam()
{
emit teamStatusChanged(m_team);
}
/*HWTeamTempParams TeamShowWidget::getTeamParams() const
{
if(!phhoger) throw;
HWTeamTempParams params;
params.numHedgehogs=phhoger->getHedgehogsNum();
params.teamColor=colorButt->palette().color(QPalette::Button);
return params;
}*/
void TeamShowWidget::changeTeamColor(int color)
{
colorWidget->setColor(color);
}
void TeamShowWidget::onColorChanged(int color)
{
m_team.setColor(color);
emit teamColorChanged(m_team);
}
HWTeam TeamShowWidget::getTeam() const
{
return m_team;
}
|