author | nemo |
Wed, 05 Dec 2018 09:50:25 -0500 | |
branch | 0.9.25 |
changeset 14368 | c2a3d15df7d3 |
parent 13243 | 480dcc29391c |
permissions | -rw-r--r-- |
1932 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2009 Kristian Lehmann <email@thexception.net> |
|
11046 | 4 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
1932 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* 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
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
1932 | 18 |
*/ |
19 |
||
20 |
#ifndef TOGGLEBUTTONWIDGET_H |
|
21 |
#define TOGGLEBUTTONWIDGET_H |
|
22 |
||
23 |
#include <QWidget> |
|
24 |
#include <QPainter> |
|
25 |
#include <QPushButton> |
|
26 |
#include <QVBoxLayout> |
|
27 |
#include <QLabel> |
|
13243
480dcc29391c
Don't gray out images of disabled ToggleButtons as its a little too hard on the eyes
Wuzzy <Wuzzy2@mail.ru>
parents:
11046
diff
changeset
|
28 |
#include <QIcon> |
1932 | 29 |
|
3061 | 30 |
class ToggleButtonWidget : public QPushButton |
1932 | 31 |
{ |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
32 |
Q_OBJECT |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
33 |
public: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
34 |
ToggleButtonWidget(QWidget * parent, QString img); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
35 |
~ToggleButtonWidget(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
36 |
private: |
13243
480dcc29391c
Don't gray out images of disabled ToggleButtons as its a little too hard on the eyes
Wuzzy <Wuzzy2@mail.ru>
parents:
11046
diff
changeset
|
37 |
QIcon icoUnchecked; |
480dcc29391c
Don't gray out images of disabled ToggleButtons as its a little too hard on the eyes
Wuzzy <Wuzzy2@mail.ru>
parents:
11046
diff
changeset
|
38 |
QIcon icoChecked; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
39 |
private slots: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
40 |
void eventToggled(bool checked); |
1932 | 41 |
}; |
42 |
||
43 |
#endif // TOGGLEBUTTONWIDGET_H |