mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-02 15:28:25 -05:00
49 lines
963 B
C++
Executable File
49 lines
963 B
C++
Executable File
// 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_speed_limit;
|
|
ConfigurationShared::CheckState use_multi_core;
|
|
};
|