1 | /* === This file is part of Calamares - <https://github.com/calamares> === |
---|
2 | * |
---|
3 | * Copyright 2014, Teo Mrnjavac <teo@kde.org> |
---|
4 | * |
---|
5 | * Calamares 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, either version 3 of the License, or |
---|
8 | * (at your option) any later version. |
---|
9 | * |
---|
10 | * Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | */ |
---|
18 | |
---|
19 | #ifndef PRETTYRADIOBUTTON_H |
---|
20 | #define PRETTYRADIOBUTTON_H |
---|
21 | |
---|
22 | #include <QRadioButton> |
---|
23 | |
---|
24 | class ClickableLabel; |
---|
25 | |
---|
26 | class PrettyRadioButton : public QWidget |
---|
27 | { |
---|
28 | Q_OBJECT |
---|
29 | public: |
---|
30 | explicit PrettyRadioButton( QWidget* parent = nullptr ); |
---|
31 | virtual ~PrettyRadioButton() {} |
---|
32 | |
---|
33 | virtual void setText( const QString& text ); |
---|
34 | |
---|
35 | virtual void setIconSize( const QSize& size ); |
---|
36 | |
---|
37 | virtual void setIcon( const QIcon& icon ); |
---|
38 | |
---|
39 | virtual QSize iconSize() const; |
---|
40 | |
---|
41 | virtual QRadioButton* buttonWidget() const; |
---|
42 | |
---|
43 | protected: |
---|
44 | ClickableLabel* m_label; |
---|
45 | QRadioButton* m_radio; |
---|
46 | }; |
---|
47 | |
---|
48 | #endif // PRETTYRADIOBUTTON_H |
---|