mirror-chatterino2/src/messages/link.hpp

33 lines
475 B
C++
Raw Normal View History

#pragma once
2017-01-05 16:07:20 +01:00
2017-01-05 20:49:33 +01:00
#include <QString>
2017-01-05 16:07:20 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace messages {
2018-01-28 03:52:52 +01:00
struct Link {
2017-01-05 16:07:20 +01:00
public:
2017-01-05 20:49:33 +01:00
enum Type {
None,
Url,
CloseCurrentSplit,
UserInfo,
2017-01-15 16:38:30 +01:00
UserTimeout,
UserBan,
2017-01-05 20:49:33 +01:00
InsertText,
ShowMessage,
2018-01-17 14:14:31 +01:00
UserAction,
2017-01-05 20:49:33 +01:00
};
2017-01-05 16:07:20 +01:00
Link();
2017-01-18 04:33:30 +01:00
Link(Type getType, const QString &getValue);
2017-01-05 20:49:33 +01:00
2017-01-18 04:33:30 +01:00
Type type;
QString value;
2017-01-05 16:07:20 +01:00
2018-01-28 03:52:52 +01:00
bool isValid() const;
};
} // namespace messages
} // namespace chatterino