src/linetypes/metacommand.cpp

Thu, 27 Feb 2020 23:07:40 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 27 Feb 2020 23:07:40 +0200
changeset 62
3e92760fe00a
parent 35
98906a94732f
child 86
4bec0525ef1b
permissions
-rw-r--r--

update locales

#include "metacommand.h"

ldraw::MetaCommand::MetaCommand(QStringView text) :
	Object{},
	storedText{text.toString()} {}

QVariant ldraw::MetaCommand::getProperty(Property property) const
{
	switch (property)
	{
	case Property::Text:
		return storedText;
	default:
		return Object::getProperty(property);
	}
}

auto ldraw::MetaCommand::setProperty(Property property, const QVariant& value)
	-> SetPropertyResult
{
	switch (property)
	{
	case Property::Text:
		storedText = value.toString();
		return SetPropertyResult::Success;
	default:
		return Object::setProperty(property, value);
	}
}

QString ldraw::MetaCommand::textRepresentation() const
{
	return this->storedText;
}

mercurial