mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
c17e1bd7a8
Also makes use of std::move, and performs a clang-format cleanup. This addresses review comments. Co-authored-by: LC <mathew1800@gmail.com>
48 lines
963 B
C++
48 lines
963 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <QWidget>
|
|
|
|
class ConfigureDialog;
|
|
|
|
namespace ConfigurationShared {
|
|
enum class CheckState;
|
|
}
|
|
|
|
class HotkeyRegistry;
|
|
|
|
namespace Ui {
|
|
class ConfigureGeneral;
|
|
}
|
|
|
|
class ConfigureGeneral : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureGeneral(QWidget* parent = nullptr);
|
|
~ConfigureGeneral() override;
|
|
|
|
void SetResetCallback(std::function<void()> callback);
|
|
void ResetDefaults();
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
|
|
|
void SetupPerGameUI();
|
|
|
|
std::function<void()> reset_callback;
|
|
|
|
std::unique_ptr<Ui::ConfigureGeneral> ui;
|
|
|
|
ConfigurationShared::CheckState use_frame_limit;
|
|
ConfigurationShared::CheckState use_multi_core;
|
|
};
|