This commit is contained in:
Misaki
2026-06-10 00:57:54 +08:00
commit 7551a85abe
2805 changed files with 373529 additions and 0 deletions
+25
View File
@@ -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