src/objecttypes/subfilereference.cpp

Sun, 03 Nov 2019 18:09:47 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 03 Nov 2019 18:09:47 +0200
changeset 13
6e838748867b
parent 8
44679e468ba9
permissions
-rw-r--r--

renamings

#include "subfilereference.h"

linetypes::SubfileReference::SubfileReference(
	const Vertex& position,
	const Matrix3x3& transformation,
	const QString& referenceName,
	const Color color) :
	ColoredObject{color},
	position{position},
	transformation{transformation},
	referenceName{referenceName}
{
}

QVariant linetypes::SubfileReference::getProperty(Property property) const
{
	switch (property)
	{
	case Property::Position:
		return this->position;
	case Property::Transformation:
		return QVariant::fromValue(this->transformation);
	case Property::ReferenceName:
		return this->referenceName;
	default:
		return ColoredObject::getProperty(property);
	}
}

auto linetypes::SubfileReference::setProperty(
	Property property,
	const QVariant& value)
	-> SetPropertyResult
{
	switch (property)
	{
	case Property::Position:
		this->position = value.value<Vertex>();
		return SetPropertyResult::Success;
	case Property::Transformation:
		this->transformation = value.value<Matrix3x3>();
		return SetPropertyResult::Success;
	case Property::ReferenceName:
		this->referenceName = value.toString();
		return SetPropertyResult::Success;
	default:
		return ColoredObject::setProperty(property, value);
	}
}

QString linetypes::SubfileReference::textRepresentation() const
{
	return referenceName + " " + vertexToStringParens(this->position);
}

mercurial