Files
cbh/ElaWidgetTools/private/ElaRadioButtonPrivate.h
2025-09-19 22:40:52 +08:00

21 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