Add transparent overlay window (#4746)
This commit is contained in:
+24
-12
@@ -62,6 +62,19 @@ public:
|
||||
} line;
|
||||
};
|
||||
|
||||
struct TextColors {
|
||||
QColor regular;
|
||||
QColor caret;
|
||||
QColor link;
|
||||
QColor system;
|
||||
QColor chatPlaceholder;
|
||||
};
|
||||
|
||||
struct MessageBackgrounds {
|
||||
QColor regular;
|
||||
QColor alternate;
|
||||
};
|
||||
|
||||
QColor accent{"#00aeef"};
|
||||
|
||||
/// WINDOW
|
||||
@@ -84,18 +97,8 @@ public:
|
||||
|
||||
/// MESSAGES
|
||||
struct {
|
||||
struct {
|
||||
QColor regular;
|
||||
QColor caret;
|
||||
QColor link;
|
||||
QColor system;
|
||||
QColor chatPlaceholder;
|
||||
} textColors;
|
||||
|
||||
struct {
|
||||
QColor regular;
|
||||
QColor alternate;
|
||||
} backgrounds;
|
||||
TextColors textColors;
|
||||
MessageBackgrounds backgrounds;
|
||||
|
||||
QColor disabled;
|
||||
QColor selection;
|
||||
@@ -104,6 +107,15 @@ public:
|
||||
QColor highlightAnimationEnd;
|
||||
} messages;
|
||||
|
||||
struct {
|
||||
TextColors textColors;
|
||||
MessageBackgrounds backgrounds;
|
||||
|
||||
QColor disabled;
|
||||
QColor selection;
|
||||
QColor background;
|
||||
} overlayMessages;
|
||||
|
||||
/// SCROLLBAR
|
||||
struct {
|
||||
QColor background;
|
||||
|
||||
Reference in New Issue
Block a user