Sun, 03 Nov 2019 18:17:08 +0200
split quadrilateral and triangle into their own source files
#include <QBrush> #include <QFont> #include "object.h" /* static Uuid &getUuidForNewObject() { static Uuid running_uuid {0, 0}; incrementUuid(running_uuid); return running_uuid; } */ static unsigned int getIdForNewObject() { static unsigned int id = 0; id += 1; return id; } linetypes::Object::Object() : id {getIdForNewObject()} { } linetypes::Object::~Object() { } bool linetypes::Object::hasColor() const { return false; } QVariant linetypes::Object::getProperty(Property id) const { Q_UNUSED(id); return {}; } auto linetypes::Object::setProperty(Property id, const QVariant& value) -> SetPropertyResult { Q_UNUSED(id) Q_UNUSED(value) return SetPropertyResult::PropertyNotHandled; } QBrush linetypes::Object::textRepresentationForeground() const { return {}; } QBrush linetypes::Object::textRepresentationBackground() const { return {}; } QFont linetypes::Object::textRepresentationFont() const { return {}; } linetypes::ColoredObject::ColoredObject(const Color color_index) : colorIndex{color_index} { } bool linetypes::ColoredObject::hasColor() const { return true; } QVariant linetypes::ColoredObject::getProperty(Property id) const { switch (id) { case Property::Color: return colorIndex.index; default: return Object::getProperty(id); } } auto linetypes::ColoredObject::setProperty(Property id, const QVariant& value) -> SetPropertyResult { switch (id) { case Property::Color: { bool ok; const int value_int = value.toInt(&ok); if (ok) { colorIndex.index = value_int; return SetPropertyResult::Success; } else { return SetPropertyResult::InvalidValue; } } default: return Object::setProperty(id, value); } } QString linetypes::Empty::textRepresentation() const { return ""; }