author | edge_hog |
Fri, 01 Oct 2010 13:56:11 -0400 | |
changeset 3921 | 022dfe1431b7 |
parent 3236 | 4ab3917d7d44 |
child 4560 | 5d6c7f88db73 |
permissions | -rw-r--r-- |
1192 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3019
diff
changeset
|
3 |
* Copyright (c) 2008-2010 Andrey Korotaev <unC0Rr@gmail.com> |
1192 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QPainter> |
|
20 |
#include <QPoint> |
|
1193 | 21 |
#include <QStylePainter> |
22 |
#include <QStyleOptionGroupBox> |
|
23 |
||
1192 | 24 |
#include "igbox.h" |
25 |
||
26 |
IconedGroupBox::IconedGroupBox(QWidget * parent) |
|
27 |
{ |
|
2072
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
1810
diff
changeset
|
28 |
// Has issues with border-radius on children |
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
1810
diff
changeset
|
29 |
// setAttribute(Qt::WA_PaintOnScreen, true); |
3019 | 30 |
titleLeftPadding = 49; |
31 |
contentTopPadding = 15; |
|
1192 | 32 |
} |
33 |
||
34 |
void IconedGroupBox::setIcon(const QIcon & icon) |
|
35 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
36 |
if (this->icon.isNull()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
37 |
setStyleSheet(QString( |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
38 |
"IconedGroupBox{" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
39 |
"margin-top: 46px;" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
40 |
"margin-left: 12px;" |
1810 | 41 |
"padding: %1px 2px 5px 2px;" |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
42 |
"}" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
43 |
"IconedGroupBox::title{" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
44 |
"subcontrol-origin: margin;" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
45 |
"subcontrol-position: top left;" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
46 |
"padding-left: %2px;" |
3019 | 47 |
"padding-top: %1px;" |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
48 |
"text-align: left;" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
49 |
"}" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
50 |
).arg(contentTopPadding).arg(titleLeftPadding) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
51 |
); |
1424 | 52 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
53 |
this->icon = icon; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
54 |
repaint(); |
1192 | 55 |
} |
56 |
||
57 |
void IconedGroupBox::paintEvent(QPaintEvent * event) |
|
58 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
59 |
QStylePainter painter(this); |
1192 | 60 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
61 |
QStyleOptionGroupBox option; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
62 |
initStyleOption(&option); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
63 |
painter.drawComplexControl(QStyle::CC_GroupBox, option); |
1193 | 64 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
65 |
icon.paint(&painter, QRect(QPoint(0, 0), icon.actualSize(size()))); |
1192 | 66 |
} |
1248 | 67 |
|
68 |
void IconedGroupBox::setTitleTextPadding(int px) |
|
69 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
70 |
titleLeftPadding = px; |
1248 | 71 |
} |
1810 | 72 |
|
73 |
void IconedGroupBox::setContentTopPadding(int px) |
|
74 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
75 |
contentTopPadding = px; |
1810 | 76 |
} |