ornamentedobj.h
author insilmaril
Thu, 23 Mar 2006 12:38:54 +0000
changeset 254 d3080e02b13a
parent 243 fad762341d2d
child 260 69d648a0a15b
permissions -rw-r--r--
Version 1.7.12
     1 #ifndef ORNAMENTEDOBJ_H
     2 #define ORNAMENTEDOBJ_H
     3 
     4 #include "linkablemapobj.h"
     5 
     6 class OrnamentedObj:public LinkableMapObj {
     7 public:	
     8     OrnamentedObj ();
     9     OrnamentedObj (QCanvas*);
    10     OrnamentedObj (OrnamentedObj*);
    11     ~OrnamentedObj ();
    12     virtual void init ();
    13     virtual void copy (OrnamentedObj*);
    14 
    15     virtual QString getHeading();			// returns the heading	
    16 	virtual void setLinkColor();			// sets color according to colorhint, overloaded
    17 	virtual void setColor(QColor);			// set the color of text and link
    18 	QColor getColor ();						// get color of heading
    19     virtual void positionContents();
    20     virtual void move   (double,double);
    21     virtual void move   (QPoint);
    22     virtual void moveBy (double,double);
    23     virtual void moveBy (QPoint);
    24     virtual void move2RelPos (QPoint);		// move relativly to parent^
    25     virtual void move2RelPos (double,double);
    26     virtual void setNote(QString);			// set note
    27     virtual void setNote(NoteObj);			// set note
    28     virtual QString getNote();				// returns note	(HTML)
    29     virtual QString getNoteASCII();			// returns note	(ASCII)
    30     virtual QString getNoteOpenDoc();		// returns note	(OpenDoc)
    31     virtual void setURL (QString);
    32     virtual QString getURL ();
    33     virtual void setVymLink (QString);
    34     virtual QString getVymLink ();
    35 
    36 	virtual void toggleStandardFlag(QString, bool);
    37 	virtual void activateStandardFlag(QString);
    38 	virtual QString getSystemFlagName (const QPoint &p);
    39 	virtual bool isActiveFlag(const QString&);	// check if flag is set
    40 	virtual void updateNoteFlag();
    41 	virtual void setHideInExport(bool);		// set export of object (and childs)
    42 	virtual bool hideInExport();
    43 	virtual QString getOrnAttr();			// get attributes for saveToDir
    44 
    45 protected:
    46     HeadingObj *heading;			// Heading
    47 	NoteObj note;					// Notes
    48 	FlagRowObj *systemFlags;		// System Flags
    49 	FlagRowObj *standardFlags;		// Standard Flags
    50 	QRect ornamentsBBox;			// bbox of flags and heading
    51 	QString url;					// url to external doc
    52 	QString vymLink;				// path to another map
    53 	bool hideExport;				// hide in exports if set
    54 };
    55 
    56 #endif