mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.3 KiB
C++
129 lines
4.3 KiB
C++
/*
|
|
* Copyright (C) 2021 CutefishOS Team.
|
|
*
|
|
* Author: revenmartin <revenmartin@gmail.com>
|
|
*
|
|
* 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, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef THEMEMANAGER_H
|
|
#define THEMEMANAGER_H
|
|
|
|
#include <QObject>
|
|
#include <QSettings>
|
|
|
|
class ThemeManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool isDarkMode READ isDarkMode WRITE setDarkMode NOTIFY darkModeChanged)
|
|
Q_PROPERTY(bool darkModeDimsWallpaer READ darkModeDimsWallpaer WRITE setDarkModeDimsWallpaer NOTIFY darkModeDimsWallpaerChanged)
|
|
Q_PROPERTY(bool backgroundVisible READ backgroundVisible WRITE setBackgroundVisible NOTIFY backgroundVisibleChanged)
|
|
Q_PROPERTY(QString systemFont READ systemFont WRITE setSystemFont NOTIFY systemFontChanged)
|
|
Q_PROPERTY(QString systemFixedFont READ systemFixedFont WRITE setSystemFixedFont)
|
|
Q_PROPERTY(qreal systemFontPointSize READ systemFontPointSize WRITE setSystemFontPointSize NOTIFY systemFontPointSizeChanged)
|
|
Q_PROPERTY(qreal devicePixelRatio READ devicePixelRatio WRITE setDevicePixelRatio)
|
|
Q_PROPERTY(QString wallpaper READ wallpaper WRITE setWallpaper NOTIFY wallpaperChanged)
|
|
Q_PROPERTY(int accentColor READ accentColor WRITE setAccentColor NOTIFY accentColorChanged)
|
|
Q_PROPERTY(int backgroundType READ backgroundType WRITE setBackgroundType NOTIFY backgroundTypeChanged)
|
|
Q_PROPERTY(QString backgroundColor READ backgroundColor WRITE setBackgroundColor NOTIFY backgroundColorChanged)
|
|
Q_PROPERTY(QString cursorTheme READ cursorTheme WRITE setCursorTheme NOTIFY cursorThemeChanged)
|
|
Q_PROPERTY(int cursorSize READ cursorSize WRITE setCursorSize NOTIFY cursorSizeChanged)
|
|
Q_PROPERTY(QString iconTheme READ iconTheme WRITE setIconTheme NOTIFY iconThemeChanged)
|
|
|
|
public:
|
|
static ThemeManager *self();
|
|
|
|
ThemeManager(QObject *parent = nullptr);
|
|
|
|
bool isDarkMode();
|
|
void setDarkMode(bool darkMode);
|
|
|
|
bool darkModeDimsWallpaer() const;
|
|
void setDarkModeDimsWallpaer(bool value);
|
|
|
|
QString systemFont();
|
|
bool backgroundVisible() const;
|
|
void setBackgroundVisible(bool value);
|
|
void setSystemFont(const QString &fontFamily);
|
|
|
|
QString systemFixedFont();
|
|
void setSystemFixedFont(const QString &fontFamily);
|
|
|
|
qreal systemFontPointSize();
|
|
void setSystemFontPointSize(qreal fontSize);
|
|
|
|
qreal devicePixelRatio();
|
|
void setDevicePixelRatio(qreal ratio);
|
|
|
|
QString wallpaper();
|
|
void setWallpaper(const QString &path);
|
|
|
|
int backgroundType();
|
|
void setBackgroundType(int type);
|
|
|
|
QString backgroundColor();
|
|
void setBackgroundColor(QString color);
|
|
|
|
int accentColor();
|
|
void setAccentColor(int accentColor);
|
|
|
|
QString cursorTheme() const;
|
|
void setCursorTheme(const QString &theme);
|
|
|
|
int cursorSize() const;
|
|
void setCursorSize(int size);
|
|
|
|
void updateGtk2Config();
|
|
void updateGtk3Config();
|
|
void applyXResources();
|
|
void applyCursor();
|
|
|
|
QString iconTheme() const;
|
|
void setIconTheme(const QString &iconTheme);
|
|
|
|
void updateFontConfig();
|
|
|
|
signals:
|
|
void darkModeChanged(bool darkMode);
|
|
void wallpaperChanged(QString path);
|
|
void darkModeDimsWallpaerChanged();
|
|
void accentColorChanged(int accentColor);
|
|
void backgroundVisibleChanged();
|
|
void backgroundTypeChanged();
|
|
void backgroundColorChanged();
|
|
void cursorThemeChanged();
|
|
void cursorSizeChanged();
|
|
void iconThemeChanged();
|
|
void systemFontPointSizeChanged();
|
|
void systemFontChanged();
|
|
|
|
private:
|
|
QSettings *m_settings;
|
|
|
|
bool m_isDarkMode;
|
|
bool m_darkModeDimsWallpaer;
|
|
QString m_wallpaperPath;
|
|
bool m_backgroundVisible;
|
|
int m_backgroundType;
|
|
QString m_backgroundColor;
|
|
int m_accentColor;
|
|
|
|
QString m_cursorTheme;
|
|
int m_cursorSize;
|
|
|
|
QString m_iconTheme;
|
|
};
|
|
|
|
#endif
|