Sat, 05 Oct 2019 23:47:03 +0300
added the settings editor
#include "subfilereference.h" QVariant modelobjects::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 ColoredBaseObject::getProperty(property); } } QString modelobjects::SubfileReference::textRepresentation() const { return referenceName + " " + vertexToStringParens(this->position); }