src/linetypes/errorline.h

Thu, 05 Mar 2020 15:58:35 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 05 Mar 2020 15:58:35 +0200
changeset 67
612213a168da
parent 35
98906a94732f
child 77
028798a72591
permissions
-rw-r--r--

grid autorotation

#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;
private:
	QString text;
	QString message;
};

mercurial