diff -r ff3b01ce0960 -r 25a77484ec72 branchitem.h --- a/branchitem.h Thu Apr 02 09:46:29 2009 +0000 +++ b/branchitem.h Tue Apr 07 16:15:53 2009 +0000 @@ -15,6 +15,18 @@ QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset); + virtual void updateVisibility(); + +protected: + QString vymLink; +public: + virtual void setVymLink (QString); + virtual QString getVymLink (); + +protected: + bool scrolled; // true if all children are scrolled and thus invisible + bool tmpUnscrolled; // can only be true (temporary) for a scrolled subtree +public: virtual void unScroll(); virtual void toggleScroll(); // scroll or unscroll virtual bool isScrolled(); // returns scroll state @@ -24,9 +36,6 @@ BranchObj* getBranchObj(); -protected: - bool scrolled; // true if all children are scrolled and thus invisible - bool tmpUnscrolled; // can only be true (temporary) for a scrolled subtree };