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
|
// 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(Qt::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()==LeftButton)
emit estateClicked(m_estate);
}
|