mirror-chatterino2/word.cpp

28 lines
638 B
C++
Raw Normal View History

2017-01-05 16:07:20 +01:00
#include "word.h"
// Image word
2017-01-05 20:49:33 +01:00
Word::Word(LazyLoadedImage* image, Type type, const QString& copytext, const QString& tooltip, const Link& link)
: m_image(image)
, m_text()
, m_isImage(true)
, m_type(type)
, m_copyText(copytext)
, m_tooltip(tooltip)
2017-01-05 20:49:33 +01:00
, m_color()
, m_link(link)
2017-01-05 16:07:20 +01:00
{
}
// Text word
2017-01-05 20:49:33 +01:00
Word::Word(const QString& text, Type type, const QColor& color, const QString& copytext, const QString& tooltip, const Link& link)
: m_image(nullptr)
, m_text(text)
, m_isImage(true)
, m_type(type)
, m_copyText(copytext)
, m_tooltip(tooltip)
2017-01-05 20:49:33 +01:00
, m_color(color)
, m_link(link)
2017-01-05 16:07:20 +01:00
{
}