src/linetypes/errorline.h

Tue, 15 Mar 2022 18:52:48 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 15 Mar 2022 18:52:48 +0200
changeset 183
97b591813c8b
parent 177
f69d53c053df
permissions
-rw-r--r--

- Add editors for string and bool properties
- Add invert action

#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 toLDrawCode() const override;
	QString iconName() const override;
	QString typeName() const override;
	QString text;
	QString message;
protected:
	void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override;
};

mercurial