2017-09-29 14:26:27 +00:00
|
|
|
#ifndef RADIOBUTTONSETTINGSEDITOR_H
|
|
|
|
#define RADIOBUTTONSETTINGSEDITOR_H
|
|
|
|
|
|
|
|
#include "ui_radiobuttonsettingsform.h"
|
2022-07-14 09:54:17 +00:00
|
|
|
#include <QWidget>
|
2017-09-29 14:26:27 +00:00
|
|
|
|
|
|
|
class QtMaterialRadioButton;
|
|
|
|
class RadioButton;
|
|
|
|
|
|
|
|
class RadioButtonSettingsEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit RadioButtonSettingsEditor(QWidget *parent = 0);
|
|
|
|
~RadioButtonSettingsEditor();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void setupForm();
|
|
|
|
void updateWidget();
|
|
|
|
void selectColor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::RadioButtonSettingsForm *const ui;
|
2022-07-14 09:54:17 +00:00
|
|
|
QtMaterialRadioButton *const m_radioButton1;
|
|
|
|
QtMaterialRadioButton *const m_radioButton2;
|
|
|
|
QtMaterialRadioButton *const m_radioButton3;
|
2017-09-29 14:26:27 +00:00
|
|
|
};
|
|
|
|
|
2022-07-14 09:54:17 +00:00
|
|
|
#endif // RADIOBUTTONSETTINGSEDITOR_H
|