first
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#ifndef T_SETTING_H
|
||||
#define T_SETTING_H
|
||||
|
||||
#include "T_BasePage.h"
|
||||
class ElaRadioButton;
|
||||
class ElaToggleSwitch;
|
||||
class ElaComboBox;
|
||||
class T_Setting : public T_BasePage
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE explicit T_Setting(QWidget* parent = nullptr);
|
||||
~T_Setting();
|
||||
|
||||
private:
|
||||
ElaComboBox* _themeComboBox{nullptr};
|
||||
ElaToggleSwitch* _micaSwitchButton{nullptr};
|
||||
ElaToggleSwitch* _logSwitchButton{nullptr};
|
||||
ElaRadioButton* _minimumButton{nullptr};
|
||||
ElaRadioButton* _compactButton{nullptr};
|
||||
ElaRadioButton* _maximumButton{nullptr};
|
||||
ElaRadioButton* _autoButton{nullptr};
|
||||
};
|
||||
|
||||
#endif // T_SETTING_H
|
||||
Reference in New Issue
Block a user