diff options
author | Zephyron <zephyron@citron-emu.org> | 2024-12-31 16:19:25 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2024-12-31 16:19:25 +1000 |
commit | 9427e27e24a7135880ee2881c3c44988e174b41a (patch) | |
tree | 83f0062a35be144f6b162eaa823c5b3c7620146e /src/yuzu/configuration/configure_system.h | |
parent | b35ae725d20960411e8588b11c12a2d55f86c9d0 (diff) |
chore: update project branding to citron
Diffstat (limited to 'src/yuzu/configuration/configure_system.h')
-rw-r--r-- | src/yuzu/configuration/configure_system.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h deleted file mode 100644 index a01c29dcf..000000000 --- a/src/yuzu/configuration/configure_system.h +++ /dev/null @@ -1,63 +0,0 @@ -// SPDX-FileCopyrightText: 2016 Citra Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include <functional> -#include <memory> -#include <vector> - -#include <QWidget> -#include "yuzu/configuration/configuration_shared.h" - -class QCheckBox; -class QLineEdit; -class QComboBox; -class QDateTimeEdit; -namespace Core { -class System; -} - -namespace Ui { -class ConfigureSystem; -} - -namespace ConfigurationShared { -class Builder; -} - -class ConfigureSystem : public ConfigurationShared::Tab { - Q_OBJECT - -public: - explicit ConfigureSystem(Core::System& system_, - std::shared_ptr<std::vector<ConfigurationShared::Tab*>> group, - const ConfigurationShared::Builder& builder, - QWidget* parent = nullptr); - ~ConfigureSystem() override; - - void ApplyConfiguration() override; - void SetConfiguration() override; - -private: - void changeEvent(QEvent* event) override; - void RetranslateUI(); - - void Setup(const ConfigurationShared::Builder& builder); - - void UpdateRtcTime(); - - std::vector<std::function<void(bool)>> apply_funcs{}; - - std::unique_ptr<Ui::ConfigureSystem> ui; - bool enabled = false; - - Core::System& system; - - QComboBox* combo_region; - QComboBox* combo_language; - QCheckBox* checkbox_rtc; - QDateTimeEdit* date_rtc; - QSpinBox* date_rtc_offset; - u64 previous_time; -}; |