diff -r 72afe12da1c8 -r 2501bce00de9 ornamentedobj.h --- a/ornamentedobj.h Tue Apr 10 13:22:52 2007 +0000 +++ b/ornamentedobj.h Wed Jul 04 11:05:52 2007 +0000 @@ -4,6 +4,19 @@ #include "frameobj.h" #include "linkablemapobj.h" +/*! \brief Adds various ornaments to the class LinkableMapObj + +The ornaments are: + - frame + - note + - references + - URL + -vymLink + - flags + - standard flags + - system flags + */ + class OrnamentedObj:public LinkableMapObj { public: OrnamentedObj (); @@ -13,14 +26,19 @@ virtual void init (); virtual void copy (OrnamentedObj*); - virtual QString getHeading(); // returns the heading + virtual QString getHeading(); //!< returns the heading virtual void setLinkColor(); // sets color according to colorhint, overloaded virtual void setColor(QColor); // set the color of text and link QColor getColor (); // get color of heading - virtual FrameType getFrameType (); - virtual void setFrameType (const FrameType &); + virtual FrameObj::FrameType getFrameType (); + virtual QString getFrameTypeName (); + virtual void setFrameType (const FrameObj::FrameType &); virtual void setFrameType (const QString &); + virtual void setFramePadding (const int &); + virtual int getFramePadding (); + virtual void setFrameBorderWidth(const int &); + virtual int getFrameBorderWidth (); virtual void setFramePenColor (QColor); virtual QColor getFramePenColor (); virtual void setFrameBrushColor (QColor);