#pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include "emulator.hpp" #include "frontend_settings.hpp" class ConfigWindow : public QDialog { Q_OBJECT private: using ConfigCallback = std::function; using IconCallback = std::function; using Theme = FrontendSettings::Theme; using WindowIcon = FrontendSettings::WindowIcon; QTextEdit* helpText = nullptr; QListWidget* widgetList = nullptr; QStackedWidget* widgetContainer = nullptr; static constexpr size_t settingWidgetCount = 6; std::array helpTexts; // The config class holds a copy of the emulator config which it edits and sends // over to the emulator in a thread-safe manner EmulatorConfig config; ConfigCallback updateConfig; IconCallback updateIcon; void addWidget(QWidget* widget, QString title, QString icon, QString helpText); void setTheme(FrontendSettings::Theme theme); void setIcon(FrontendSettings::WindowIcon icon); public: ConfigWindow(ConfigCallback configCallback, IconCallback iconCallback, const EmulatorConfig& config, QWidget* parent = nullptr); ~ConfigWindow(); EmulatorConfig& getConfig() { return config; } private: Emulator* emu; };