You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
377 B
C
26 lines
377 B
C
3 weeks ago
|
#ifndef CUIRADIOBUTTON_H
|
||
|
#define CUIRADIOBUTTON_H
|
||
|
|
||
|
#include <QRadioButton>
|
||
|
#include <QVector>
|
||
|
|
||
|
class CUIConfig;
|
||
|
class CUI;
|
||
|
|
||
|
|
||
|
class CUIRadioButton : public QRadioButton
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CUIRadioButton(CUIConfig* conf, QVector<CUI*> subCUI, QWidget *parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
void iniUI();
|
||
|
CUIConfig* conf;
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CUIRADIOBUTTON_H
|