src/objecttypes/subfilereference.h

Sun, 03 Nov 2019 12:17:41 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 03 Nov 2019 12:17:41 +0200
changeset 8
44679e468ba9
parent 6
73e448b2943d
child 13
6e838748867b
permissions
-rw-r--r--

major update with many things

#pragma once
#include "modelobject.h"
#include "matrix.h"

namespace modelobjects
{
	class SubfileReference;
}

class modelobjects::SubfileReference : public ColoredBaseObject
{
public:
	SubfileReference() = default;
	SubfileReference(
		const Vertex& position,
		const Matrix3x3& transformation,
		const QString &referenceName,
		const Color color = colors::main);
	QVariant getProperty(Property property) const override;
	SetPropertyResult setProperty(Property property, const QVariant& value) override;
	QString textRepresentation() const override;
private:
	Vertex position;
	Matrix3x3 transformation;
	QString referenceName;
};

mercurial