mirror-chatterino2/src/singletons/Theme.hpp

132 lines
2.6 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>
2023-03-17 20:53:03 +01:00
#include <QPixmap>
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;
class Theme final : public Singleton
2016-12-30 19:16:48 +01:00
{
public:
2018-06-28 20:03:04 +02:00
Theme();
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();
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;
2023-03-17 20:53:03 +01:00
void actuallyUpdate(double multiplier);
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