forked from teamnwah/openmw-tes3coop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
817 B
C++
33 lines
817 B
C++
#ifndef ADVANCEDPAGE_H
|
|
#define ADVANCEDPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "ui_advancedpage.h"
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
namespace Files { struct ConfigurationManager; }
|
|
|
|
namespace Launcher
|
|
{
|
|
class AdvancedPage : public QWidget, private Ui::AdvancedPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AdvancedPage(Files::ConfigurationManager &cfg, Settings::Manager &engineSettings, QWidget *parent = 0);
|
|
|
|
bool loadSettings();
|
|
void saveSettings();
|
|
|
|
private:
|
|
Files::ConfigurationManager &mCfgMgr;
|
|
Settings::Manager &mEngineSettings;
|
|
|
|
void loadSettingBool(QCheckBox *checkbox, const std::string& setting, const std::string& group);
|
|
void saveSettingBool(QCheckBox *checkbox, const std::string& setting, const std::string& group);
|
|
};
|
|
}
|
|
#endif
|