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
|
|
|
|
2018-08-07 06:43:07 +02:00
|
|
|
class HotkeyRegistry;
|
|
|
|
|
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);
|
2018-12-07 16:44:37 +01:00
|
|
|
~ConfigureGeneral() override;
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2018-10-27 22:43:29 +02:00
|
|
|
void ResetDefaults();
|
2016-01-24 18:34:05 +01:00
|
|
|
void applyConfiguration();
|
2017-09-23 15:13:59 +02:00
|
|
|
void retranslateUi();
|
2016-01-24 18:34:05 +01:00
|
|
|
void setConfiguration();
|
|
|
|
|
2018-11-02 15:40:58 +01:00
|
|
|
private:
|
2016-01-24 21:54:04 +01:00
|
|
|
std::unique_ptr<Ui::ConfigureGeneral> ui;
|
2016-01-24 18:34:05 +01:00
|
|
|
};
|