Sat, 01 Feb 2020 17:20:10 +0200
added configurable background color
#pragma once #include "object.h" namespace ldraw { class MetaCommand; } class ldraw::MetaCommand : public Object { public: MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; private: QString storedText = ""; };