src/objecttypes/metacommand.cpp

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
child 13
6e838748867b
permissions
-rw-r--r--

major update with many things

#include "metacommand.h"

modelobjects::MetaCommand::MetaCommand(QStringView text) :
	BaseObject{},
	storedText{text.toString()} {}

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

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

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

mercurial