pollymc/launcher/launch/steps/TextPrint.cpp

30 lines
567 B
C++
Raw Normal View History

#include "TextPrint.h"
TextPrint::TextPrint(LaunchTask * parent, const QStringList &lines, MessageLevel::Enum level) : LaunchStep(parent)
{
2018-07-15 18:21:05 +05:30
m_lines = lines;
m_level = level;
}
TextPrint::TextPrint(LaunchTask *parent, const QString &line, MessageLevel::Enum level) : LaunchStep(parent)
{
2018-07-15 18:21:05 +05:30
m_lines.append(line);
m_level = level;
}
void TextPrint::executeTask()
{
2018-07-15 18:21:05 +05:30
emit logLines(m_lines, m_level);
emitSucceeded();
}
bool TextPrint::canAbort() const
{
2018-07-15 18:21:05 +05:30
return true;
}
bool TextPrint::abort()
{
2018-07-15 18:21:05 +05:30
emitFailed("Aborted.");
return true;
}