mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-16 05:42:04 +08:00
添加设置页面
This commit is contained in:
23
src/pages/settingspage.h
Normal file
23
src/pages/settingspage.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef SETTINGSPAGE_H
|
||||
#define SETTINGSPAGE_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class SettingsPage;
|
||||
}
|
||||
|
||||
class SettingsPage : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SettingsPage(QWidget *parent = nullptr);
|
||||
void setTheme(bool dark);
|
||||
~SettingsPage();
|
||||
|
||||
private:
|
||||
Ui::SettingsPage *ui;
|
||||
};
|
||||
|
||||
#endif // SETTINGSPAGE_H
|
||||
Reference in New Issue
Block a user