src/linetypes/errorline.h

Wed, 18 Mar 2020 15:54:30 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 18 Mar 2020 15:54:30 +0200
changeset 84
7137c20979af
parent 77
028798a72591
child 86
4bec0525ef1b
permissions
-rw-r--r--

fix

#pragma once
#include "object.h"

namespace ldraw
{
	class ErrorLine;
}

class ldraw::ErrorLine : public Object
{
public:
	ErrorLine(QStringView text = u"", QStringView message = u"");
	QVariant getProperty(Property property) const override;
	SetPropertyResult setProperty(
		Property property,
		const QVariant& value) override;
	QString textRepresentation() const override;
	QBrush textRepresentationForeground() const override;
	QBrush textRepresentationBackground() const override;
	QString text;
	QString message;
};

mercurial