src/linetypes/metacommand.cpp

Sat, 14 Dec 2019 22:36:06 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 14 Dec 2019 22:36:06 +0200
changeset 19
ed9685f44ab3
parent 14
20d2ed3af73d
child 35
98906a94732f
permissions
-rw-r--r--

added missing files

#include "metacommand.h"

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

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

auto linetypes::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 linetypes::MetaCommand::textRepresentation() const
{
	return this->storedText;
}

mercurial