mirror-chatterino2/src/singletons/Theme.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

185 lines
3.9 KiB
C++
Raw Normal View History

#pragma once
2016-12-30 19:16:48 +01:00
#include "common/ChatterinoSetting.hpp"
2018-07-07 11:41:01 +02:00
#include "common/Singleton.hpp"
2018-08-10 19:00:14 +02:00
#include "util/RapidJsonSerializeQString.hpp"
#include <pajlada/settings/setting.hpp>
2017-01-11 18:52:09 +01:00
#include <QColor>
#include <QJsonObject>
2023-03-17 20:53:03 +01:00
#include <QPixmap>
#include <QString>
#include <QTimer>
#include <QVariant>
#include <memory>
#include <optional>
#include <vector>
2016-12-30 19:16:48 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-01-18 21:30:23 +01:00
class WindowManager;
struct ThemeDescriptor {
QString key;
// Path to the theme on disk
// Can be a Qt resource path
QString path;
// Name of the theme
QString name;
bool custom{};
};
class Theme final : public Singleton
2016-12-30 19:16:48 +01:00
{
public:
static const std::vector<ThemeDescriptor> builtInThemes;
// The built in theme that will be used if some theme parsing fails
static const ThemeDescriptor fallbackTheme;
static const int AUTO_RELOAD_INTERVAL_MS = 500;
void initialize(Settings &settings, Paths &paths) final;
2017-12-31 00:50:07 +01:00
bool isLightTheme() const;
struct TabColors {
QColor text;
struct {
2023-03-17 20:53:03 +01:00
QColor regular;
QColor hover;
QColor unfocused;
} backgrounds;
struct {
QColor regular;
QColor hover;
QColor unfocused;
} line;
};
QColor accent{"#00aeef"};
/// WINDOW
struct {
QColor background;
QColor text;
} window;
/// TABS
struct {
TabColors regular;
TabColors newMessage;
TabColors highlighted;
TabColors selected;
QColor dividerLine;
} tabs;
/// MESSAGES
struct {
struct {
QColor regular;
QColor caret;
QColor link;
QColor system;
QColor chatPlaceholder;
} textColors;
struct {
QColor regular;
QColor alternate;
} backgrounds;
QColor disabled;
QColor selection;
QColor highlightAnimationStart;
QColor highlightAnimationEnd;
} messages;
/// SCROLLBAR
struct {
QColor background;
QColor thumb;
QColor thumbSelected;
} scrollbars;
2018-04-05 23:44:46 +02:00
/// SPLITS
2018-01-02 02:21:38 +01:00
struct {
2018-01-02 02:15:11 +01:00
QColor messageSeperator;
QColor background;
QColor dropPreview;
2018-05-08 20:35:31 +02:00
QColor dropPreviewBorder;
2018-06-01 14:20:46 +02:00
QColor dropTargetRect;
QColor dropTargetRectBorder;
QColor resizeHandle;
QColor resizeHandleBackground;
2018-01-02 02:15:11 +01:00
2018-01-02 02:21:38 +01:00
struct {
2018-01-02 02:15:11 +01:00
QColor border;
QColor focusedBorder;
2018-01-02 02:15:11 +01:00
QColor background;
QColor focusedBackground;
2018-01-02 02:15:11 +01:00
QColor text;
2018-06-23 23:48:54 +02:00
QColor focusedText;
2018-01-02 02:15:11 +01:00
} header;
2018-01-02 02:21:38 +01:00
struct {
2018-01-02 02:15:11 +01:00
QColor background;
QColor text;
QString styleSheet;
} input;
} splits;
struct {
QPixmap copy;
QPixmap pin;
} buttons;
2023-03-17 20:53:03 +01:00
void normalizeColor(QColor &color) const;
void update();
bool isAutoReloading() const;
void setAutoReload(bool autoReload);
/**
* Return a list of available themes
**/
std::vector<std::pair<QString, QVariant>> availableThemes() const;
pajlada::Signals::NoArgSignal updated;
QStringSetting themeName{"/appearance/theme/name", "Dark"};
2017-01-18 01:04:54 +01:00
2018-01-12 23:09:05 +01:00
private:
bool isLight_ = false;
std::vector<ThemeDescriptor> availableThemes_;
QString currentThemePath_;
std::unique_ptr<QTimer> themeReloadTimer_;
// This will only be populated when auto-reloading themes
QJsonObject currentThemeJson_;
/**
* Figure out which themes are available in the Themes directory
*
* NOTE: This is currently not built to be reloadable
**/
void loadAvailableThemes();
std::optional<ThemeDescriptor> findThemeByKey(const QString &key);
void parseFrom(const QJsonObject &root);
2018-07-06 19:23:47 +02:00
pajlada::Signals::NoArgSignal repaintVisibleChatWidgets_;
2017-12-31 00:50:07 +01:00
friend class WindowManager;
2016-12-30 19:16:48 +01:00
};
Theme *getTheme();
} // namespace chatterino