2023-01-09 16:01:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* Prism Launcher - Minecraft Launcher
|
2023-06-28 22:02:34 +01:00
|
|
|
* Copyright (C) 2022 Tayou <git@tayou.org>
|
2023-07-19 12:29:51 +01:00
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
2023-01-09 16:01:33 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2023-07-18 22:50:43 +01:00
|
|
|
#include "IconTheme.h"
|
2023-01-09 16:01:33 +00:00
|
|
|
#include "ui/MainWindow.h"
|
|
|
|
#include "ui/themes/ITheme.h"
|
|
|
|
|
|
|
|
inline auto themeDebugLog()
|
|
|
|
{
|
|
|
|
return qDebug() << "[Theme]";
|
|
|
|
}
|
|
|
|
inline auto themeWarningLog()
|
|
|
|
{
|
|
|
|
return qWarning() << "[Theme]";
|
|
|
|
}
|
|
|
|
|
|
|
|
class ThemeManager {
|
|
|
|
public:
|
2023-07-19 20:57:08 +01:00
|
|
|
ThemeManager();
|
2023-01-09 16:01:33 +00:00
|
|
|
|
2023-07-18 22:50:43 +01:00
|
|
|
QList<IconTheme*> getValidIconThemes();
|
2023-07-20 11:51:44 +01:00
|
|
|
QList<ITheme*> getValidApplicationThemes();
|
2023-07-19 20:57:08 +01:00
|
|
|
bool isValidIconTheme(const QString& id);
|
2023-07-20 11:51:44 +01:00
|
|
|
bool isValidApplicationTheme(const QString& id);
|
|
|
|
QDir getIconThemesFolder();
|
|
|
|
QDir getApplicationThemesFolder();
|
2023-04-08 17:48:02 +01:00
|
|
|
void applyCurrentlySelectedTheme(bool initial = false);
|
2023-07-19 20:57:08 +01:00
|
|
|
void setIconTheme(const QString& name);
|
|
|
|
void setApplicationTheme(const QString& name, bool initial = false);
|
2023-01-09 16:01:33 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Returns the cat based on selected cat and with events (Birthday, XMas, etc.)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="catName">Optional, if you need a specific cat.</param>
|
|
|
|
/// <returns></returns>
|
|
|
|
static QString getCatImage(QString catName = "");
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::map<QString, std::unique_ptr<ITheme>> m_themes;
|
2023-07-19 14:12:39 +01:00
|
|
|
std::map<QString, IconTheme> m_icons;
|
2023-07-20 11:51:44 +01:00
|
|
|
QDir m_iconThemeFolder{ "iconthemes" };
|
|
|
|
QDir m_applicationThemeFolder{ "themes" };
|
2023-01-09 16:01:33 +00:00
|
|
|
|
|
|
|
void initializeThemes();
|
|
|
|
QString addTheme(std::unique_ptr<ITheme> theme);
|
|
|
|
ITheme* getTheme(QString themeId);
|
2023-07-19 14:12:39 +01:00
|
|
|
QString addIconTheme(IconTheme theme);
|
2023-07-18 22:50:43 +01:00
|
|
|
void initializeIcons();
|
|
|
|
void initializeWidgets();
|
|
|
|
|
|
|
|
const QStringList builtinIcons{ "pe_colored", "pe_light", "pe_dark", "pe_blue", "breeze_light", "breeze_dark",
|
|
|
|
"OSX", "iOS", "flat", "flat_white", "multimc" };
|
2023-01-09 16:01:33 +00:00
|
|
|
};
|