mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 00:55:09 -07:00
* Add scheme-variant theme asset resolution (#7209-1) ThemeManager::assetPath() and schemeVariantPath() resolve a theme asset to its scheme-variant file (prefix-light/dark.png) with fallback to the plain asset, and themePixmap()/loadBrush()/loadExtraBrush() use them. CSS files load style-dark.css or style-light.css when present. Home widget re-resolves its background on theme change. Link pixel_map_generator.cpp into the oracle target, which needs Qt6::Xml for QDomDocument. * Fix clang-format wrap of theme format probe lists --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
128 lines
4.8 KiB
C++
128 lines
4.8 KiB
C++
/**
|
|
* @file theme_manager.h
|
|
* @ingroup CoreSettings
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef THEMEMANAGER_H
|
|
#define THEMEMANAGER_H
|
|
|
|
#include "theme_config.h"
|
|
|
|
#include <QBrush>
|
|
#include <QDir>
|
|
#include <QLoggingCategory>
|
|
#include <QMap>
|
|
#include <QObject>
|
|
#include <QPixmap>
|
|
#include <QString>
|
|
#include <array>
|
|
|
|
inline Q_LOGGING_CATEGORY(ThemeManagerLog, "theme_manager");
|
|
|
|
typedef QMap<QString, QString> QStringMap;
|
|
typedef QMap<int, QBrush> QBrushMap;
|
|
|
|
class QApplication;
|
|
|
|
class ThemeManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ThemeManager(QObject *parent = nullptr);
|
|
|
|
enum Role
|
|
{
|
|
MinRole = 0,
|
|
Hand = MinRole,
|
|
Stack,
|
|
Table,
|
|
Player,
|
|
MaxRole = Player,
|
|
};
|
|
|
|
private:
|
|
QString defaultStyleName;
|
|
// Pristine application palette captured at startup, before any custom theme
|
|
// palette is applied. Used as the base when a theme supplies no palette, so
|
|
// switching away from a custom palette restores the original colours.
|
|
QPalette defaultPalette;
|
|
QString currentThemePath;
|
|
std::array<QBrush, Role::MaxRole + 1> brushes;
|
|
QStringMap availableThemes;
|
|
/*
|
|
Internal cache for multiple backgrounds
|
|
*/
|
|
std::array<QBrushMap, Role::MaxRole + 1> brushesCache;
|
|
|
|
protected:
|
|
void ensureThemeDirectoryExists();
|
|
QBrush loadBrush(QString fileName, QColor fallbackColor);
|
|
QBrush loadExtraBrush(QString fileName, QBrush &fallbackBrush);
|
|
void applyStyleAndPalette(const QString &themeName,
|
|
const ThemeConfig &themeCfg,
|
|
const PaletteConfig &palCfg,
|
|
const QString &activeScheme);
|
|
|
|
public:
|
|
bool isBuiltInTheme();
|
|
// Explicit color scheme of the theme: theme.cfg's ColorScheme setting
|
|
// (Dark/Light), falling back to the OS color scheme when it is "System".
|
|
bool isDarkMode(const QString &themeDirPath) const;
|
|
// The resolved scheme of the currently active theme.
|
|
bool isDarkModeActive() const
|
|
{
|
|
return isDarkMode(currentThemePath);
|
|
}
|
|
QStringMap &getAvailableThemes();
|
|
// Returns the path to the currently active theme directory (empty = default)
|
|
QString getCurrentThemePath() const
|
|
{
|
|
return currentThemePath;
|
|
}
|
|
// Load the global theme settings (style + color scheme preference)
|
|
static ThemeConfig loadGlobalConfig(const QString &themeDirPath);
|
|
static bool saveGlobalConfig(const QString &themeDirPath, const ThemeConfig &cfg);
|
|
|
|
// Load/save per-scheme palette colors
|
|
static PaletteConfig loadPaletteConfig(const QString &themeDirPath, const QString &colorScheme);
|
|
static bool savePaletteConfig(const QString &themeDirPath, const QString &colorScheme, const PaletteConfig &cfg);
|
|
// Resolve prefix to a scheme-qualified "theme:" path. Existence is probed
|
|
// internally across the formats themes may ship (.png/.jpg/.svg), so
|
|
// callers load the returned path directly. Prefers "<prefix>-<dark|light>"
|
|
// when a file exists at that stem, otherwise the plain "<prefix>" as the
|
|
// super fallback. The resolved scheme covers explicit light/dark as well
|
|
// as OS-resolved "system". Returns the path with its file extension when a
|
|
// match is found; unqualified assets keep working unchanged.
|
|
QString assetPath(QStringView prefix) const;
|
|
// Like assetPath, but resolves only the scheme-qualified variant
|
|
// ("<prefix>-<dark|light>.<ext>") and returns an empty string when no
|
|
// variant exists — it never falls back to the plain "<prefix>" asset.
|
|
// Callers that must distinguish "no authored variant" (e.g. to keep a
|
|
// legacy runtime fallback alive) should use this instead of assetPath.
|
|
QString schemeVariantPath(QStringView prefix) const;
|
|
// Load the theme's shipped default palette, falling back to the system
|
|
// theme directory when it is absent from the resolved (user) directory.
|
|
static PaletteConfig
|
|
loadDefaultPaletteConfig(const QString &themeDirPath, const QString &themeName, const QString &colorScheme);
|
|
/** @brief Writes cfg to disk as the theme's palette-<scheme>.toml and updates the
|
|
* theme's stored colour scheme to match. Shared by PaletteEditorDialog::onSave
|
|
* and FirstRunWizard's theme step so the two "generate + keep" paths can't drift. */
|
|
static bool commitPalette(const QString &themeDirPath, const QString &colorScheme, const PaletteConfig &cfg);
|
|
void setColorScheme(const QString &scheme);
|
|
void setStyleName(const QString &styleName);
|
|
|
|
void reloadCurrentTheme();
|
|
void previewPalette(const PaletteConfig &cfg, const QString &scheme);
|
|
|
|
QBrush &getBgBrush(Role zone);
|
|
QBrush getExtraBgBrush(Role zone, int zoneId = 0);
|
|
protected slots:
|
|
void themeChangedSlot();
|
|
signals:
|
|
void themeChanged();
|
|
};
|
|
|
|
extern ThemeManager *themeManager;
|
|
|
|
#endif
|