src/linetypes/errorline.h

Mon, 27 Sep 2021 21:04:45 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 27 Sep 2021 21:04:45 +0300
changeset 140
2f383e88acf4
parent 134
f77d2230e87c
child 141
185eb297dc1e
permissions
-rw-r--r--

work on saving

#pragma once
#include "object.h"

namespace ldraw
{
	class ErrorLine;
}

class ldraw::ErrorLine : public Object
{
public:
	using BaseClass = Object;
	ErrorLine(QStringView text = u"", QStringView message = u"");
	QVariant getProperty(Property property) const override;
	QString textRepresentation() const override;
	QBrush textRepresentationForeground() const override;
	QBrush textRepresentationBackground() const override;
	Type typeIdentifier() const override;
	QDataStream& serialize(QDataStream& stream) const override;
	QDataStream& deserialize(QDataStream& stream) override;
	QString text;
	QString message;
protected:
	void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override;
};

mercurial