Add transparent overlay window (#4746)

This commit is contained in:
nerix
2024-10-06 12:54:24 +02:00
committed by GitHub
parent 9ba7ef324d
commit afa8067a20
40 changed files with 1464 additions and 190 deletions
+3 -2
View File
@@ -4,7 +4,8 @@
#include <QString>
namespace chatterino {
class Theme;
struct MessageColors;
struct MessageColor {
enum Type { Custom, Text, Link, System };
@@ -12,7 +13,7 @@ struct MessageColor {
MessageColor(const QColor &color);
MessageColor(Type type_ = Text);
const QColor &getColor(Theme &themeManager) const;
const QColor &getColor(const MessageColors &colors) const;
QString toString() const;