summaryrefslogtreecommitdiffstats
path: root/src/yuzu/configuration/configure_system.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-05-06 05:30:59 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-21 16:56:07 +0200
commitd3b94d64d492407dcd43acf79cd1e94d57630109 (patch)
tree37c945f6aa9050c68fc8d15eabbc1049c556c3b9 /src/yuzu/configuration/configure_system.h
parentconfiguration_shared: Create Tab base class (diff)
downloadyuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar.gz
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar.bz2
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar.lz
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar.xz
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.tar.zst
yuzu-d3b94d64d492407dcd43acf79cd1e94d57630109.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/configuration/configure_system.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h
index ce1a91601..6064b5b40 100644
--- a/src/yuzu/configuration/configure_system.h
+++ b/src/yuzu/configuration/configure_system.h
@@ -6,28 +6,25 @@
#include <memory>
#include <QWidget>
+#include "yuzu/configuration/configuration_shared.h"
namespace Core {
class System;
}
-namespace ConfigurationShared {
-enum class CheckState;
-}
-
namespace Ui {
class ConfigureSystem;
}
-class ConfigureSystem : public QWidget {
- Q_OBJECT
-
+class ConfigureSystem : public ConfigurationShared::Tab {
public:
- explicit ConfigureSystem(Core::System& system_, QWidget* parent = nullptr);
+ explicit ConfigureSystem(Core::System& system_,
+ std::shared_ptr<std::forward_list<ConfigurationShared::Tab*>> group,
+ QWidget* parent = nullptr);
~ConfigureSystem() override;
- void ApplyConfiguration();
- void SetConfiguration();
+ void ApplyConfiguration() override;
+ void SetConfiguration() override;
private:
void changeEvent(QEvent* event) override;