ornamentedobj.h
changeset 746 ee6b0f3a4c2f
parent 721 12958f987bcf
child 753 25a77484ec72
     1.1 --- a/ornamentedobj.h	Mon Mar 23 09:06:51 2009 +0000
     1.2 +++ b/ornamentedobj.h	Thu Mar 26 07:49:17 2009 +0000
     1.3 @@ -53,12 +53,6 @@
     1.4      virtual void moveBy (QPointF);
     1.5      virtual void move2RelPos (QPointF);		// move relativly to parent^
     1.6      virtual void move2RelPos (double,double);
     1.7 -    virtual void setNote(QString);			// set note
     1.8 -    virtual void setNote(NoteObj);			// set note
     1.9 -    virtual QString getNote();				// returns note	(HTML)
    1.10 -    virtual QString getNoteASCII(const QString &indent, const int &width); // returns note	(ASCII)
    1.11 -    virtual QString getNoteASCII();			// returns note	(ASCII)
    1.12 -    virtual QString getNoteOpenDoc();		// returns note	(OpenDoc)
    1.13  
    1.14      virtual void setURL (QString);
    1.15      virtual QString getURL ();
    1.16 @@ -76,18 +70,16 @@
    1.17  	virtual bool isSetStandardFlag(QString);
    1.18  	virtual QString getSystemFlagName (const QPointF &p);
    1.19  	virtual bool isActiveFlag(const QString&);	// check if flag is set
    1.20 -	virtual void updateNoteFlag();
    1.21 -	virtual void getNoteFromTextEditor ();
    1.22 +	virtual void updateSystemFlags();
    1.23 +	//virtual void getNoteFromTextEditor ();// FIXME should move to vymview?!
    1.24  	virtual void updateFlagsToolbar();
    1.25  	virtual void setHideInExport(bool);		// set export of object (and children)
    1.26 -	virtual bool hideInExport();
    1.27 -	virtual bool isHidden ();
    1.28 +	virtual bool hideInExport();		// FIXME moved to treeitem
    1.29 +	virtual bool isHidden ();		// FIXME moved to treeitem
    1.30  	virtual QString getOrnXMLAttr();		// get attributes for saveToDir
    1.31  
    1.32  protected:
    1.33      HeadingObj *heading;			// Heading
    1.34 -	NoteObj note;					// Notes
    1.35 -	bool isNoteInEditor;			// true if TextEditor has this note
    1.36  	FlagRowObj *systemFlags;		// System Flags
    1.37  	FlagRowObj *standardFlags;		// Standard Flags
    1.38  	FrameObj *frame;				// frame around object
    1.39 @@ -97,7 +89,7 @@
    1.40  	QList <Attribute> attributes;	// List with attributes
    1.41  
    1.42  	bool hideExport;				// hide in exports if set
    1.43 -	bool hidden;					// true if temporary hidden
    1.44 +	bool hidden;					// true if temporary hidden		// FIXME moved to treeitem needs to move
    1.45  };
    1.46  
    1.47  #endif