mirror of
https://github.com/oguzhaninan/Stacer.git
synced 2025-12-23 23:18:31 -05:00
35 lines
509 B
C++
35 lines
509 B
C++
#ifndef SETTINGS_PAGE_H
|
|
#define SETTINGS_PAGE_H
|
|
|
|
#include <QWidget>
|
|
#include <QMapIterator>
|
|
|
|
#include "Managers/app_manager.h"
|
|
|
|
namespace Ui {
|
|
class SettingsPage;
|
|
}
|
|
|
|
class SettingsPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsPage(QWidget *parent = 0);
|
|
~SettingsPage();
|
|
|
|
private slots:
|
|
void init();
|
|
|
|
void themesCmbChanged(int index);
|
|
void languagesCmbChanged(int index);
|
|
|
|
private:
|
|
Ui::SettingsPage *ui;
|
|
|
|
private:
|
|
AppManager *apm;
|
|
};
|
|
|
|
#endif // SETTINGS_PAGE_H
|