added words and message

This commit is contained in:
fourtf
2017-01-05 16:07:20 +01:00
parent 7a7b714e78
commit b7de109335
31 changed files with 679 additions and 31 deletions
+27
View File
@@ -0,0 +1,27 @@
#include "word.h"
Word::Word(LazyLoadedImage* image, Type type, const QString& copytext, const QString& tooltip)
{
this->image = image;
this->text = NULL;
m_isImage = true;
m_type = type;
m_copyText = new QString(copytext);
m_tooltip = new QString(tooltip);
}
Word::Word(const QString& text, Type type, const QString& copytext, const QString& tooltip)
{
this->image = NULL;
this->text = new QString(text);
m_isImage = false;
m_type = type;
m_copyText = new QString(copytext);
m_tooltip = new QString(tooltip);
}
Word::~Word()
{
delete m_copyText;
delete m_tooltip;
}