mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-12-05 01:33:47 +01:00
ad645c29a4
This gets rid of some repeated code and sets us up to send more information to the new widget.
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
#include "yuzu/configuration/configuration_shared.h"
|
|
#include "yuzu/configuration/shared_translation.h"
|
|
|
|
class QComboBox;
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Ui {
|
|
class ConfigureCpu;
|
|
}
|
|
|
|
namespace ConfigurationShared {
|
|
class Builder;
|
|
}
|
|
|
|
class ConfigureCpu : public ConfigurationShared::Tab {
|
|
public:
|
|
explicit ConfigureCpu(const Core::System& system_,
|
|
std::shared_ptr<std::forward_list<ConfigurationShared::Tab*>> group,
|
|
const ConfigurationShared::Builder& builder, QWidget* parent = nullptr);
|
|
~ConfigureCpu() override;
|
|
|
|
void ApplyConfiguration() override;
|
|
void SetConfiguration() override;
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void UpdateGroup(int index);
|
|
|
|
void Setup(const ConfigurationShared::Builder& builder);
|
|
|
|
std::unique_ptr<Ui::ConfigureCpu> ui;
|
|
|
|
const Core::System& system;
|
|
|
|
const ConfigurationShared::ComboboxTranslationMap& combobox_translations;
|
|
std::forward_list<std::function<void(bool)>> apply_funcs{};
|
|
|
|
QComboBox* accuracy_combobox;
|
|
};
|