2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2016-12-30 19:16:48 +01:00
|
|
|
|
2018-12-02 19:20:14 +01:00
|
|
|
#include "BaseTheme.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"
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2017-01-01 02:30:42 +01:00
|
|
|
#include <QBrush>
|
2017-01-11 18:52:09 +01:00
|
|
|
#include <QColor>
|
2017-07-02 12:36:50 +02:00
|
|
|
#include <pajlada/settings/setting.hpp>
|
2018-10-01 13:05:50 +02:00
|
|
|
#include <singletons/Settings.hpp>
|
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
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
class WindowManager;
|
|
|
|
|
2018-12-02 19:20:14 +01:00
|
|
|
class Theme final : public Singleton, public BaseTheme
|
2016-12-30 19:16:48 +01:00
|
|
|
{
|
2018-04-28 15:20:18 +02:00
|
|
|
public:
|
2018-06-28 20:03:04 +02:00
|
|
|
Theme();
|
2017-12-31 00:50:07 +01:00
|
|
|
|
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 background;
|
|
|
|
QColor text;
|
2018-06-23 23:48:54 +02:00
|
|
|
QColor focusedText;
|
2018-01-02 02:15:11 +01:00
|
|
|
// int margin;
|
|
|
|
} header;
|
|
|
|
|
2018-01-02 02:21:38 +01:00
|
|
|
struct {
|
2018-01-02 02:15:11 +01:00
|
|
|
QColor border;
|
|
|
|
QColor background;
|
|
|
|
QColor selection;
|
2018-06-06 13:35:06 +02:00
|
|
|
QColor focusedLine;
|
2018-01-02 02:15:11 +01:00
|
|
|
QColor text;
|
|
|
|
QString styleSheet;
|
|
|
|
// int margin;
|
|
|
|
} input;
|
|
|
|
} splits;
|
|
|
|
|
2017-01-18 01:04:54 +01:00
|
|
|
void normalizeColor(QColor &color);
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
private:
|
2018-11-25 15:02:48 +01:00
|
|
|
void actuallyUpdate(double hue, double multiplier) override;
|
2018-08-06 21:17:03 +02:00
|
|
|
void fillLookupTableValues(double (&array)[360], double from, double to,
|
|
|
|
double fromValue, double toValue);
|
2017-01-18 01:04:54 +01:00
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
double middleLookupTable_[360] = {};
|
|
|
|
double minLookupTable_[360] = {};
|
|
|
|
|
|
|
|
pajlada::Signals::NoArgSignal repaintVisibleChatWidgets_;
|
2017-12-31 00:50:07 +01:00
|
|
|
|
|
|
|
friend class WindowManager;
|
2016-12-30 19:16:48 +01:00
|
|
|
};
|
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace chatterino
|