qt-material-widgets/components/radiobutton.h

21 lines
414 B
C
Raw Normal View History

2016-04-14 13:47:27 +00:00
#ifndef RADIOBUTTON_H
#define RADIOBUTTON_H
#include <QWidget>
class RadioButton : public QWidget
{
Q_OBJECT
public:
explicit RadioButton(QWidget *parent = 0);
~RadioButton();
protected:
void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
};
#endif // RADIOBUTTON_H