// Copyright 2016 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include class HotkeyRegistry; namespace Ui { class ConfigureGeneral; } class ConfigureGeneral : public QWidget { Q_OBJECT public: explicit ConfigureGeneral(QWidget* parent = nullptr); ~ConfigureGeneral() override; void ResetDefaults(); void ApplyConfiguration(); void RetranslateUI(); void SetConfiguration(); void SetupPerGameUI(); private: std::unique_ptr ui; };