2016-01-24 18:34:05 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
#pragma once
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <memory>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <QWidget>
|
2016-01-24 18:34:05 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ConfigureGeneral;
|
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
class ConfigureGeneral : public QWidget {
|
2016-01-24 18:34:05 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-09-18 02:38:01 +02:00
|
|
|
explicit ConfigureGeneral(QWidget* parent = nullptr);
|
2016-01-24 18:34:05 +01:00
|
|
|
~ConfigureGeneral();
|
|
|
|
|
|
|
|
void applyConfiguration();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setConfiguration();
|
|
|
|
|
|
|
|
private:
|
2016-01-24 21:54:04 +01:00
|
|
|
std::unique_ptr<Ui::ConfigureGeneral> ui;
|
2016-01-24 18:34:05 +01:00
|
|
|
};
|