mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
21 lines
433 B
C++
21 lines
433 B
C++
#include "wordpart.h"
|
|
#include "word.h"
|
|
|
|
WordPart::WordPart(Word &word, int x, int y, const QString ©Text,
|
|
bool allowTrailingSpace)
|
|
: m_word(word)
|
|
, m_copyText(copyText)
|
|
, m_x(x)
|
|
, m_y(y)
|
|
, m_width(word.width())
|
|
, m_height(word.height())
|
|
, m_trailingSpace(word.hasTrailingSpace() & allowTrailingSpace)
|
|
{
|
|
}
|
|
|
|
const QString &
|
|
WordPart::getText() const
|
|
{
|
|
return m_word.getText();
|
|
}
|