diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-18 22:50:43 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-07-18 22:51:34 +0100 |
commit | 97662f5c8ecdf32403939e427c74310f9175fb9e (patch) | |
tree | 1370d4efc8a2d8f03eaca33981f41d3f7a4877e7 /launcher/ui/widgets/ThemeCustomizationWidget.h | |
parent | e8c44e700d68078ec4242347b505ed2bddabbe06 (diff) | |
download | PrismLauncher-97662f5c8ecdf32403939e427c74310f9175fb9e.tar.gz PrismLauncher-97662f5c8ecdf32403939e427c74310f9175fb9e.tar.bz2 PrismLauncher-97662f5c8ecdf32403939e427c74310f9175fb9e.zip |
Multiple icon themes!
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/widgets/ThemeCustomizationWidget.h')
-rw-r--r-- | launcher/ui/widgets/ThemeCustomizationWidget.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/launcher/ui/widgets/ThemeCustomizationWidget.h b/launcher/ui/widgets/ThemeCustomizationWidget.h index 6c33c3c5..976ede43 100644 --- a/launcher/ui/widgets/ThemeCustomizationWidget.h +++ b/launcher/ui/widgets/ThemeCustomizationWidget.h @@ -31,7 +31,7 @@ class ThemeCustomizationWidget : public QWidget { public: explicit ThemeCustomizationWidget(QWidget* parent = nullptr); - ~ThemeCustomizationWidget(); + ~ThemeCustomizationWidget() override; void showFeatures(ThemeFields features); @@ -53,22 +53,7 @@ class ThemeCustomizationWidget : public QWidget { private: Ui::ThemeCustomizationWidget* ui; - //TODO finish implementing - QList<std::pair<QString, QString>> m_iconThemeOptions{ - { "pe_colored", QObject::tr("Simple (Colored Icons)") }, - { "pe_light", QObject::tr("Simple (Light Icons)") }, - { "pe_dark", QObject::tr("Simple (Dark Icons)") }, - { "pe_blue", QObject::tr("Simple (Blue Icons)") }, - { "breeze_light", QObject::tr("Breeze Light") }, - { "breeze_dark", QObject::tr("Breeze Dark") }, - { "OSX", QObject::tr("OSX") }, - { "iOS", QObject::tr("iOS") }, - { "flat", QObject::tr("Flat") }, - { "flat_white", QObject::tr("Flat (White)") }, - { "multimc", QObject::tr("Legacy") }, - { "custom", QObject::tr("Custom") } - }; - QList<std::pair<QString, QString>> m_catOptions{ + QList<std::pair<QString, QString>> m_catOptions{ { "kitteh", QObject::tr("Background Cat (from MultiMC)") }, { "rory", QObject::tr("Rory ID 11 (drawn by Ashtaka)") }, { "rory-flat", QObject::tr("Rory ID 11 (flat edition, drawn by Ashtaka)") }, |