添加设置页面

This commit is contained in:
2022-12-09 19:02:36 +08:00
parent 73917eeeb1
commit 562b582f72
6 changed files with 527 additions and 100 deletions

23
src/pages/settingspage.h Normal file
View 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