branchitem.h
changeset 758 04039e47ac74
parent 756 a8a5c7288f57
child 760 59614eaf5fbb
     1.1 --- a/branchitem.h	Mon Apr 27 12:42:06 2009 +0000
     1.2 +++ b/branchitem.h	Tue Apr 28 09:51:48 2009 +0000
     1.3 @@ -28,6 +28,8 @@
     1.4  	virtual void setVymLink (QString);
     1.5      virtual QString getVymLink ();
     1.6  
     1.7 +	virtual void setHeadingColor (QColor color); //!Overloaded from TreeItem to update QGraphicsView
     1.8 +
     1.9  protected:	
    1.10  	bool scrolled;			// true if all children are scrolled and thus invisible
    1.11  	bool tmpUnscrolled;		// can only be true (temporary) for a scrolled subtree
    1.12 @@ -39,7 +41,7 @@
    1.13  	virtual void tmpUnscroll();				// unscroll scrolled parents temporary e.g. during "find" process
    1.14  	virtual void resetTmpUnscroll();		// scroll all tmp scrolled parents again e.g. when unselecting
    1.15  
    1.16 -	TreeItem* findMapItem (QPointF,TreeItem*);	//! search map for branches or images
    1.17 +	TreeItem* findMapItem (QPointF p,TreeItem* excludeTI);	//! search map for branches or images. Ignore excludeTI, where search is started 
    1.18  	virtual TreeItem* findID (QString sid);		//! search map for object with ID string
    1.19  
    1.20  	BranchObj* getBranchObj();