diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-15 10:43:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 10:43:29 +0200 |
commit | 7ba1e7d3569fcb04cb49d16247703bf2862172ba (patch) | |
tree | 9eb12949538323c2afa9545907057c4e575ce7c2 /launcher/Application.h | |
parent | f533173b9589a0c3bfca0845b0c3939f5131c018 (diff) | |
parent | 6ce7e426d2e3bbca74719da073eb46d05b001439 (diff) | |
download | PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.tar.gz PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.tar.bz2 PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.zip |
Merge pull request #1407 from TheKodeToad/icon-indexing
Diffstat (limited to 'launcher/Application.h')
-rw-r--r-- | launcher/Application.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/launcher/Application.h b/launcher/Application.h index cf7967a5..6bc33274 100644 --- a/launcher/Application.h +++ b/launcher/Application.h @@ -71,6 +71,7 @@ class TranslationsModel; class ITheme; class MCEditTool; class ThemeManager; +class IconTheme; namespace Meta { class Index; @@ -109,17 +110,7 @@ class Application : public QApplication { QIcon getThemedIcon(const QString& name); - void setIconTheme(const QString& name); - - void applyCurrentlySelectedTheme(bool initial = false); - - QList<ITheme*> getValidApplicationThemes(); - - void setApplicationTheme(const QString& name); - - QList<CatPack*> getValidCatPacks(); - - QString getCatPack(QString catName = ""); + ThemeManager* themeManager() { return m_themeManager.get(); } shared_qobject_ptr<ExternalUpdater> updater() { return m_updater; } |