mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-01-27 11:06:50 +01:00
0d462f5608
One less global variable.
40 lines
830 B
C++
40 lines
830 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
#include "yuzu/configuration/configuration_shared.h"
|
|
|
|
class HotkeyRegistry;
|
|
|
|
namespace Ui {
|
|
class ConfigureGeneral;
|
|
}
|
|
|
|
class ConfigureGeneral : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureGeneral(QWidget* parent = nullptr);
|
|
~ConfigureGeneral() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
|
|
|
void SetupPerGameUI();
|
|
|
|
std::unique_ptr<Ui::ConfigureGeneral> ui;
|
|
|
|
struct Trackers {
|
|
ConfigurationShared::CheckState use_frame_limit;
|
|
ConfigurationShared::CheckState use_multi_core;
|
|
} trackers;
|
|
};
|