treeitem.h
changeset 763 8c028a5d9083
parent 762 ffb95cd03156
child 766 7a71a914afdb
     1.1 --- a/treeitem.h	Thu Apr 30 11:52:49 2009 +0000
     1.2 +++ b/treeitem.h	Fri May 01 10:30:29 2009 +0000
     1.3 @@ -94,6 +94,11 @@
     1.4  	virtual TreeItem* getChildNum(const int &n);
     1.5  	virtual BranchItem* getFirstBranch();
     1.6  	virtual BranchItem* getLastBranch();
     1.7 +
     1.8 +	/*! Get next branch after current branch. Return NULL if there is no
     1.9 +	    next branch */
    1.10 +	virtual BranchItem* getNextBranch(BranchItem* currentBranch);
    1.11 +
    1.12  	virtual BranchItem* getBranchNum(const int &n);
    1.13  	virtual BranchObj* getBranchObjNum(const int &n);
    1.14  	virtual void setLastSelectedBranch();		//! Set myself as last selected in parent
    1.15 @@ -118,6 +123,9 @@
    1.16  	int branchCounter;
    1.17  	int lastSelectedBranchNum;
    1.18  
    1.19 +	int imageOffset;
    1.20 +	int imageCounter;
    1.21 +
    1.22  	bool hideExport;//! Hide this item in export
    1.23  	bool hidden;	//! Hidden in export if true
    1.24  };