QTfrontend/ui/widget/togglebutton.h
author nemo
Fri, 23 Mar 2012 18:20:59 -0400
changeset 6810 5337f554480e
parent 6700 e04da46ee43c
child 6952 7f70f37bbf08
permissions -rw-r--r--
This has bugged me for a while. Since we are missing the source SVGs for this theme, removed the leaves crudely in GIMP. Also added some basic roots. Someone more artistic is encouraged to try and improve it.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1932
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     1
/*
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2009 Kristian Lehmann <email@thexception.net>
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     4
 * Copyright (c) 2009-2012 Andrey Korotaev <unC0Rr@gmail.com>
1932
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     5
 *
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
     9
 *
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    13
 * GNU General Public License for more details.
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    14
 *
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    16
 * along with this program; if not, write to the Free Software
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    18
 */
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    19
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    20
#ifndef TOGGLEBUTTONWIDGET_H
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    21
#define TOGGLEBUTTONWIDGET_H
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    22
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    23
#include <QWidget>
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    24
#include <QPainter>
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    25
#include <QPushButton>
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    26
#include <QVBoxLayout>
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    27
#include <QLabel>
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    28
3061
e129e4c3f30e Frontend:
smxx
parents: 2948
diff changeset
    29
class ToggleButtonWidget : public QPushButton
1932
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    30
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    31
        Q_OBJECT
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    32
    public:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    33
        ToggleButtonWidget(QWidget * parent, QString img);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    34
        ~ToggleButtonWidget();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    35
    private:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    36
        QPixmap pmChecked;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    37
        QPixmap pmDisabled;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    38
    private slots:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    39
        void eventToggled(bool checked);
1932
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    40
};
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    41
f586d75c8b6a New schemes page look by TheXception
unc0rr
parents:
diff changeset
    42
#endif // TOGGLEBUTTONWIDGET_H