author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 15 Sep 2019 15:42:50 +0200 | |
changeset 15402 | 1028f5606b5f |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
1192 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
1192 | 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) |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3236
diff
changeset
|
27 |
: QGroupBox(parent) |
1192 | 28 |
{ |
2072
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
1810
diff
changeset
|
29 |
// Has issues with border-radius on children |
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
1810
diff
changeset
|
30 |
// setAttribute(Qt::WA_PaintOnScreen, true); |
3019 | 31 |
titleLeftPadding = 49; |
7153
f0d055645ab2
minor tweaks for options page; should improve readability at small window size... a bit...
sheepluva
parents:
6952
diff
changeset
|
32 |
contentTopPadding = 5; |
1192 | 33 |
} |
34 |
||
35 |
void IconedGroupBox::setIcon(const QIcon & icon) |
|
36 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
37 |
if (this->icon.isNull()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
38 |
setStyleSheet(QString( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
39 |
"IconedGroupBox{" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
40 |
"margin-top: 46px;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
41 |
"margin-left: 12px;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
42 |
"padding: %1px 2px 5px 2px;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
43 |
"}" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
44 |
"IconedGroupBox::title{" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
45 |
"subcontrol-origin: margin;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
46 |
"subcontrol-position: top left;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
47 |
"padding-left: %2px;" |
7153
f0d055645ab2
minor tweaks for options page; should improve readability at small window size... a bit...
sheepluva
parents:
6952
diff
changeset
|
48 |
"padding-top: 15px;" |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
49 |
"text-align: left;" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
50 |
"}" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
51 |
).arg(contentTopPadding).arg(titleLeftPadding) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
52 |
); |
1424 | 53 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
54 |
this->icon = icon; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
55 |
repaint(); |
1192 | 56 |
} |
57 |
||
58 |
void IconedGroupBox::paintEvent(QPaintEvent * event) |
|
59 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3236
diff
changeset
|
60 |
Q_UNUSED(event); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3236
diff
changeset
|
61 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
62 |
QStylePainter painter(this); |
1192 | 63 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
64 |
QStyleOptionGroupBox option; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
65 |
initStyleOption(&option); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
66 |
painter.drawComplexControl(QStyle::CC_GroupBox, option); |
1193 | 67 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
68 |
icon.paint(&painter, QRect(QPoint(0, 0), icon.actualSize(size()))); |
1192 | 69 |
} |
1248 | 70 |
|
71 |
void IconedGroupBox::setTitleTextPadding(int px) |
|
72 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
73 |
titleLeftPadding = px; |
1248 | 74 |
} |
1810 | 75 |
|
76 |
void IconedGroupBox::setContentTopPadding(int px) |
|
77 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2072
diff
changeset
|
78 |
contentTopPadding = px; |
1810 | 79 |
} |