2017-09-21 00:54:10 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
#include "singletons/thememanager.hpp"
|
2017-09-21 00:54:10 +02:00
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
namespace messages {
|
2017-12-16 17:53:48 +01: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);
|
|
|
|
MessageColor(Type type = Text);
|
2017-09-21 00:54:10 +02:00
|
|
|
|
|
|
|
Type getType() const;
|
2017-12-31 22:58:35 +01:00
|
|
|
const QColor &getColor(singletons::ThemeManager &themeManager) const;
|
2017-09-21 00:54:10 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Type type;
|
|
|
|
QColor color;
|
|
|
|
};
|
2017-12-16 17:53:48 +01:00
|
|
|
|
|
|
|
} // namespace messages
|
|
|
|
} // namespace chatterino
|