You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/atlantik/libatlantikui/portfolioestate.cpp

95 lines
2.5 KiB

// Copyright (c) 2002 Rob Kaper <cap@capsi.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License version 2.1 as published by the Free Software Foundation.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; see the file COPYING.LIB. If not, write to
// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA 02110-1301, USA.
#include <tqcolor.h>
#include <tqpainter.h>
#include <tqrect.h>
#include "portfolioestate.moc"
#include "estate.h"
PortfolioEstate::PortfolioEstate(Estate *estate, Player *player, bool alwaysOwned, TQWidget *parent, const char *name) : TQWidget(parent, name)
{
m_estate = estate;
m_player = player;
m_alwaysOwned = alwaysOwned;
TQSize s(PE_WIDTH, PE_HEIGHT);
setFixedSize(s);
b_recreate = true;
}
void PortfolioEstate::estateChanged()
{
b_recreate = true;
update();
}
TQPixmap PortfolioEstate::drawPixmap(Estate *estate, Player *player, bool alwaysOwned)
{
TQColor lightGray(204, 204, 204), darkGray(153, 153, 153);
TQPixmap qpixmap(PE_WIDTH, PE_HEIGHT);
TQPainter painter;
painter.begin(&qpixmap);
painter.setPen(lightGray);
painter.setBrush(white);
painter.drawRect(TQRect(0, 0, PE_WIDTH, PE_HEIGHT));
if (alwaysOwned || (estate && estate->isOwned() && player == estate->owner()))
{
painter.setPen(darkGray);
for (int y=5;y<=13;y+=2)
painter.drawLine(2, y, 10, y);
painter.setPen(TQt::white);
painter.drawPoint(8, 5);
painter.drawPoint(8, 7);
painter.drawPoint(8, 9);
painter.drawPoint(5, 11);
painter.drawPoint(9, 11);
painter.drawPoint(3, 13);
painter.drawPoint(10, 13);
painter.setPen(estate->color());
painter.setBrush(estate->color());
}
else
{
painter.setPen(lightGray);
painter.setBrush(lightGray);
}
painter.drawRect(0, 0, PE_WIDTH, 3);
return qpixmap;
}
void PortfolioEstate::paintEvent(TQPaintEvent *)
{
if (b_recreate)
{
m_pixmap = drawPixmap(m_estate, m_player, m_alwaysOwned);
b_recreate = false;
}
bitBlt(this, 0, 0, &m_pixmap);
}
void PortfolioEstate::mousePressEvent(TQMouseEvent *e)
{
if (e->button()==Qt::LeftButton)
emit estateClicked(m_estate);
}