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_gamelist.h | |
parent | a167da4278df6d864a8990f846cf3ede1158f3db (diff) |
yuzu/configuration: create UI tab and move gamelist settings there
Diffstat (limited to 'src/yuzu/configuration/configure_gamelist.h')
-rw-r--r-- | src/yuzu/configuration/configure_gamelist.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/yuzu/configuration/configure_gamelist.h b/src/yuzu/configuration/configure_gamelist.h deleted file mode 100644 index ecd3fa174..000000000 --- a/src/yuzu/configuration/configure_gamelist.h +++ /dev/null @@ -1,38 +0,0 @@ -// 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 ConfigureGameList; -} - -class ConfigureGameList : public QWidget { - Q_OBJECT - -public: - explicit ConfigureGameList(QWidget* parent = nullptr); - ~ConfigureGameList() 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::ConfigureGameList> ui; -}; |