QTfrontend/igbox.cpp
author unc0rr
Tue, 12 Aug 2008 08:48:44 +0000
changeset 1192 63b7961f68de
child 1193 2911384169b4
permissions -rw-r--r--
Add iconed groupbox class
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
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com>
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>
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    21
#include "igbox.h"
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    22
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    23
IconedGroupBox::IconedGroupBox(QWidget * parent)
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    24
{
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    25
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    26
}
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    27
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    28
void IconedGroupBox::setIcon(const QIcon & icon)
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    29
{
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    30
	this->icon = icon;
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    31
}
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    32
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    33
void IconedGroupBox::paintEvent(QPaintEvent * event)
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    34
{
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    35
	QPainter painter(this);
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    36
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    37
	icon.paint(&painter, QRect(QPoint(0, 0), size()));
63b7961f68de Add iconed groupbox class
unc0rr
parents:
diff changeset
    38
}