Sun, 03 Nov 2019 12:56:42 +0200
added saving of splitter state and recent files
#pragma once #include "modelobject.h" namespace modelobjects { class ErrorLine; } class modelobjects::ErrorLine : public BaseObject { public: ErrorLine(QStringView text = u"", QStringView message = u""); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; QBrush textRepresentationForeground() const override; QBrush textRepresentationBackground() const override; private: QString text; QString message; };