Files
cbh/ElaWidgetTools/private/ElaRadioButtonPrivate.h
2025-09-20 01:41:33 +08:00

20 lines
482 B
C++

#ifndef ELARADIOBUTTONPRIVATE_H
#define ELARADIOBUTTONPRIVATE_H
#include <QObject>
#include "ElaDef.h"
class ElaRadioButton;
class ElaRadioButtonPrivate : public QObject {
Q_OBJECT
Q_D_CREATE(ElaRadioButton)
public:
explicit ElaRadioButtonPrivate(QObject *parent = nullptr);
~ElaRadioButtonPrivate() override;
Q_SLOT void onThemeChanged(ElaThemeType::ThemeMode themeMode);
private:
ElaThemeType::ThemeMode _themeMode;
};
#endif // ELARADIOBUTTONPRIVATE_H