diff options
author | FearlessTobi <thm.frey@gmail.com> | 2020-01-24 00:15:51 +0100 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2020-01-24 00:15:51 +0100 |
commit | d0e4f1c6f43f51df8fdc8a056801a297c2706d56 (patch) | |
tree | ef6ada4ab6f44ce4e1203b9b5450bd71d82cbf04 /src/yuzu/configuration/configure_ui.h | |
parent | a167da4278df6d864a8990f846cf3ede1158f3db (diff) |
yuzu/configuration: create UI tab and move gamelist settings there
Diffstat (limited to 'src/yuzu/configuration/configure_ui.h')
-rw-r--r-- | src/yuzu/configuration/configure_ui.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_ui.h b/src/yuzu/configuration/configure_ui.h new file mode 100644 index 000000000..d471afe99 --- /dev/null +++ b/src/yuzu/configuration/configure_ui.h @@ -0,0 +1,38 @@ +// 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> + +namespace Ui { +class ConfigureUi; +} + +class ConfigureUi : public QWidget { + Q_OBJECT + +public: + explicit ConfigureUi(QWidget* parent = nullptr); + ~ConfigureUi() override; + + void ApplyConfiguration(); + +private: + void RequestGameListUpdate(); + + void SetConfiguration(); + + void changeEvent(QEvent*) override; + void RetranslateUI(); + + void InitializeIconSizeComboBox(); + void InitializeRowComboBoxes(); + + void UpdateFirstRowComboBox(bool init = false); + void UpdateSecondRowComboBox(bool init = false); + + std::unique_ptr<Ui::ConfigureUi> ui; +}; |