mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
20 lines
310 B
C
20 lines
310 B
C
|
#ifndef INCLUDE_BUTTONSWITCH_H
|
||
|
#define INCLUDE_BUTTONSWITCH_H
|
||
|
|
||
|
#include <QToolButton>
|
||
|
|
||
|
class ButtonSwitch : public QToolButton {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ButtonSwitch(QWidget* parent = NULL);
|
||
|
|
||
|
private slots:
|
||
|
void onToggled(bool checked);
|
||
|
|
||
|
private:
|
||
|
QPalette m_originalPalette;
|
||
|
};
|
||
|
|
||
|
#endif // INCLUDE_BUTTONSWITCH_H
|