src/linetypes/errorline.cpp

Sun, 10 Jan 2021 15:28:44 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 10 Jan 2021 15:28:44 +0200
changeset 96
165777a20dc7
parent 86
4bec0525ef1b
child 132
488d0ba6070b
permissions
-rw-r--r--

added tool base code

#include <QBrush>
#include "errorline.h"

ldraw::ErrorLine::ErrorLine(QStringView text, QStringView message) :
	text{text.toString()},
	message{message.toString()}
{
}

QVariant ldraw::ErrorLine::getProperty(Property property) const
{
	switch (property)
	{
	case Property::Text:
		return this->text;
	case Property::ErrorMessage:
		return this->message;
	default:
		return Object::getProperty(property);
	}
}

void ldraw::ErrorLine::setProperty(SetPropertyResult* result, const PropertyKeyValue& pair)
{
	LDRAW_OBJECT_HANDLE_SET_PROPERTY(Text, {this->text = value;});
	LDRAW_OBJECT_HANDLE_SET_PROPERTY(ErrorMessage, {this->message = value;});
	BaseClass::setProperty(result, pair);
}

QString ldraw::ErrorLine::textRepresentation() const
{
	return this->text;
}

QBrush ldraw::ErrorLine::textRepresentationForeground() const
{
	return QBrush{Qt::yellow};
}

QBrush ldraw::ErrorLine::textRepresentationBackground() const
{
	return QBrush{Qt::red};
}

mercurial