2017-09-21 00:54:10 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-28 20:03:04 +02:00
|
|
|
#include "singletons/Theme.hpp"
|
2017-09-21 00:54:10 +02:00
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <QColor>
|
|
|
|
|
2017-09-21 00:54:10 +02:00
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-28 03:48:15 +01:00
|
|
|
struct MessageColor {
|
2017-09-21 00:54:10 +02:00
|
|
|
enum Type { Custom, Text, Link, System };
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
MessageColor(const QColor &color);
|
2018-07-06 19:23:47 +02:00
|
|
|
MessageColor(Type type_ = Text);
|
2017-09-21 00:54:10 +02:00
|
|
|
|
2018-06-28 20:03:04 +02:00
|
|
|
const QColor &getColor(Theme &themeManager) const;
|
2017-09-21 00:54:10 +02:00
|
|
|
|
|
|
|
private:
|
2018-07-06 19:23:47 +02:00
|
|
|
Type type_;
|
|
|
|
QColor customColor_;
|
2017-09-21 00:54:10 +02:00
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2017-12-16 17:53:48 +01:00
|
|
|
} // namespace chatterino
|