QTfrontend/igbox.cpp
author mikade
Sat, 17 Sep 2011 04:09:05 +0200
changeset 5947 d1e9fa699f57
parent 4976 088d40d8aba2
permissions -rw-r--r--
change the changelog
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1192
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     1
/*
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4560
diff changeset
     3
 * Copyright (c) 2008-2011 Andrey Korotaev <unC0Rr@gmail.com>
1192
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     4
 *
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     8
 *
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    13
 *
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    17
 */
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    18
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    19
#include <QPainter>
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    20
#include <QPoint>
1193
2911384169b4 Finish iconed groupbox implementation
unc0rr
parents: 1192
diff changeset
    21
#include <QStylePainter>
2911384169b4 Finish iconed groupbox implementation
unc0rr
parents: 1192
diff changeset
    22
#include <QStyleOptionGroupBox>
2911384169b4 Finish iconed groupbox implementation
unc0rr
parents: 1192
diff changeset
    23
1192
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    24
#include "igbox.h"
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    25
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    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
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    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
d6e19f35d98d Frontend:
smxx
parents: 2948
diff changeset
    31
    titleLeftPadding = 49;
d6e19f35d98d Frontend:
smxx
parents: 2948
diff changeset
    32
    contentTopPadding = 15;
1192
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    33
}
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    34
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    35
void IconedGroupBox::setIcon(const QIcon & icon)
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    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(
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    39
            "IconedGroupBox{"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    40
                "margin-top: 46px;"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    41
                "margin-left: 12px;"
1810
4059cafd1da7 Frontend look fixes
unc0rr
parents: 1424
diff changeset
    42
                "padding: %1px 2px 5px 2px;"
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    43
                "}"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    44
            "IconedGroupBox::title{"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    45
                "subcontrol-origin: margin;"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    46
                "subcontrol-position: top left;"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    47
                "padding-left: %2px;"
3019
d6e19f35d98d Frontend:
smxx
parents: 2948
diff changeset
    48
                "padding-top: %1px;"
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    49
                "text-align: left;"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    50
                "}"
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    51
                ).arg(contentTopPadding).arg(titleLeftPadding)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    52
        );
1424
2b45d88716b0 - Some work on team select widget look
unc0rr
parents: 1248
diff changeset
    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
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    56
}
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    57
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    58
void IconedGroupBox::paintEvent(QPaintEvent * event)
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    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
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    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
2911384169b4 Finish iconed groupbox implementation
unc0rr
parents: 1192
diff changeset
    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
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    69
}
1248
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1209
diff changeset
    70
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1209
diff changeset
    71
void IconedGroupBox::setTitleTextPadding(int px)
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1209
diff changeset
    72
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    73
    titleLeftPadding = px;
1248
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1209
diff changeset
    74
}
1810
4059cafd1da7 Frontend look fixes
unc0rr
parents: 1424
diff changeset
    75
4059cafd1da7 Frontend look fixes
unc0rr
parents: 1424
diff changeset
    76
void IconedGroupBox::setContentTopPadding(int px)
4059cafd1da7 Frontend look fixes
unc0rr
parents: 1424
diff changeset
    77
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2072
diff changeset
    78
    contentTopPadding = px;
1810
4059cafd1da7 Frontend look fixes
unc0rr
parents: 1424
diff changeset
    79
}