2 #include "texteditor.h"
4 #include "mainwindow.h"
6 extern TextEditor *textEditor;
7 extern Main *mainWindow;
8 extern FlagRowObj *standardFlagsDefault;
9 extern QAction *actionEditOpenURL;
12 /////////////////////////////////////////////////////////////////
14 /////////////////////////////////////////////////////////////////
16 BranchObj* BranchObj::itLast=NULL;
19 BranchObj::BranchObj () :OrnamentedObj()
21 // cout << "Const BranchObj ()\n";
27 BranchObj::BranchObj (QCanvas* c):OrnamentedObj (c)
29 // cout << "Const BranchObj (c) called from MapCenterObj (c)\n";
34 BranchObj::BranchObj (QCanvas* c, LinkableMapObj* p):OrnamentedObj (c)
36 // cout << "Const BranchObj (c,p)\n";
39 depth=p->getDepth()+1;
41 // Calc angle to mapCenter if I am a mainbranch
42 // needed for reordering the mainbranches clockwise
44 angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ),
45 (int)(y() - parObj->getChildPos().y() ) ) );
49 BranchObj::~BranchObj ()
51 // cout << "Destr BranchObj of "<<this<<endl;
52 // Check, if this branch was the last child to be deleted
53 // If so, unset the scrolled flags
55 BranchObj *po=(BranchObj*)(parObj);
59 bo=((BranchObj*)(parObj))->getLastBranch();
60 if (!bo) po->unScroll();
65 bool BranchObj::operator< ( const BranchObj & other )
67 return angle < other.angle;
70 bool BranchObj::operator== ( const BranchObj & other )
72 return angle == other.angle;
75 int BranchObjPtrList::compareItems ( QPtrCollection::Item i, QPtrCollection::Item j)
77 // Make sure PtrList::find works
80 if ( ((BranchObj*)(i))->angle > ((BranchObj*)(j))->angle )
86 void BranchObj::init ()
88 branch.setAutoDelete (false);
89 floatimage.setAutoDelete (true);
90 xlink.setAutoDelete (false);
95 absPos+=parObj->getChildPos();
98 lastSelectedBranch=-1;
109 void BranchObj::copy (BranchObj* other)
111 OrnamentedObj::copy(other);
115 for (b=other->branch.first(); b;b=other->branch.next() )
116 // Make deep copy of b
117 // Because addBranch again calls copy for the childs,
118 // Those will get a deep copy, too
122 for (fi=other->floatimage.first(); fi;fi=other->floatimage.next() )
125 scrolled=other->scrolled;
126 tmpUnscrolled=other->tmpUnscrolled;
127 setVisibility (other->visible);
130 vymLink=other->vymLink;
137 void BranchObj::clear()
140 while (!xlink.isEmpty())
141 deleteXLink (xlink.first() );
144 while (!branch.isEmpty())
147 branch.removeFirst();
152 int BranchObj::getNum()
155 return ((BranchObj*)(parObj))->getNum ((BranchObj*)(this));
160 int BranchObj::getNum(BranchObj *bo)
162 // keep current pointer in branch,
163 // otherwise save might fail
165 int ind=branch.findRef (bo);
170 int BranchObj::getFloatImageNum(FloatImageObj *fio)
172 return floatimage.findRef (fio);
175 int BranchObj::countBranches()
177 return branch.count();
180 int BranchObj::countFloatImages()
182 return floatimage.count();
185 int BranchObj::countXLinks()
187 return xlink.count();
190 void BranchObj::setParObjTmp(LinkableMapObj* lmo, QPoint m, int off)
192 // Temporary link to lmo
193 // m is position of mouse pointer
194 // offset 0: default 1: below lmo -1 above lmo (if possible)
197 BranchObj* o=(BranchObj*)(lmo);
201 // ignore mapcenter and mainbranch
202 if (lmo->getDepth()<2) off=0;
212 // parObj=o->getParObj();
214 // parObj=o->getParObj();
219 depth=parObj->getDepth()+1;
221 // setLinkStyle calls updateLink, only set it once
222 if (style!=getDefLinkStyle() ) setLinkStyle (getDefLinkStyle());
224 // Move temporary to new position at destination
225 // Usually the positioning would be done by reposition(),
226 // but then also the destination branch would "Jump" around...
227 // Better just do it approximately
229 { // new parent is the mapcenter itself
231 QPoint p= normalise ( QPoint (m.x() - o->getChildPos().x(),
232 m.y() - o->getChildPos().y() ));
233 if (p.x()<0) p.setX( p.x()-bbox.width() );
240 // new parent is just a branch, link to it
241 QRect t=o->getBBoxSizeWithChilds();
242 if (o->getLastBranch())
243 y=t.y() + t.height() ;
250 // we want to link above lmo
251 y=o->y() - height() + 5;
253 // we want to link below lmo
254 // Bottom of sel should be 5 pixels above
255 // the bottom of the branch _below_ the target:
256 // Don't try to find that branch, guess 12 pixels
257 y=o->getChildPos().y() -height() + 12;
259 if (o->getOrientation()==OrientLeftOfCenter)
260 move ( o->getChildPos().x() - linkwidth, y );
262 move (o->getChildPos().x() + linkwidth, y );
265 // updateLink is called implicitly in move
266 reposition(); // FIXME shouldn't be this a request?
269 void BranchObj::unsetParObjTmp()
276 depth=parObj->getDepth()+1;
277 setLinkStyle (getDefLinkStyle() );
282 void BranchObj::unScroll()
284 if (tmpUnscrolled) resetTmpUnscroll();
285 if (scrolled) toggleScroll();
288 void BranchObj::toggleScroll()
294 systemFlags->deactivate("scrolledright");
295 for (bo=branch.first(); bo; bo=branch.next() )
297 bo->setVisibility(true);
302 systemFlags->activate("scrolledright");
303 for (bo=branch.first(); bo; bo=branch.next() )
305 bo->setVisibility(false);
310 move (absPos.x(), absPos.y() );
314 bool BranchObj::isScrolled()
319 bool BranchObj::hasScrolledParent(BranchObj *start)
321 // Calls parents recursivly to
322 // find out, if we are scrolled at all.
323 // But ignore myself, just look at parents.
325 if (this !=start && scrolled) return true;
327 BranchObj* bo=(BranchObj*)(parObj);
329 return bo->hasScrolledParent(start);
334 void BranchObj::tmpUnscroll()
336 // Unscroll parent (recursivly)
337 BranchObj* bo=(BranchObj*)(parObj);
338 if (bo) bo->tmpUnscroll();
344 systemFlags->activate("tmpUnscrolledright");
349 void BranchObj::resetTmpUnscroll()
351 // Unscroll parent (recursivly)
352 BranchObj* bo=(BranchObj*)(parObj);
354 bo->resetTmpUnscroll();
360 systemFlags->deactivate("tmpUnscrolledright");
365 void BranchObj::setVisibility(bool v, int toDepth)
367 if (depth <= toDepth)
369 frame->setVisibility(v);
370 heading->setVisibility(v);
371 systemFlags->setVisibility(v);
372 standardFlags->setVisibility(v);
373 LinkableMapObj::setVisibility (v);
375 if (!scrolled && (depth < toDepth))
377 // Now go recursivly through all childs
379 for (b=branch.first(); b;b=branch.next() )
380 b->setVisibility (v,toDepth);
382 for (fio=floatimage.first(); fio; fio=floatimage.next())
383 fio->setVisibility (v);
385 for (xlo=xlink.first(); xlo;xlo=xlink.next() )
386 xlo->setVisibility ();
388 } // depth <= toDepth
392 void BranchObj::setVisibility(bool v)
394 setVisibility (v,MAX_DEPTH);
398 void BranchObj::setLinkColor ()
400 // Overloaded from LinkableMapObj
401 // BranchObj can use color of heading
403 if (mapEditor->getLinkColorHint()==HeadingColor)
404 LinkableMapObj::setLinkColor (heading->getColor() );
406 LinkableMapObj::setLinkColor ();
409 void BranchObj::setColor (QColor col, bool colorChilds)
411 heading->setColor(col);
416 for (bo=branch.first(); bo; bo=branch.next() )
417 bo->setColor(col,colorChilds);
421 QColor BranchObj::getColor()
423 return heading->getColor();
426 BranchObj* BranchObj::first()
432 BranchObj* BranchObj::next()
435 BranchObj *bo=branch.first();
436 BranchObj *po=(BranchObj*)(parObj);
439 { // We are just beginning at the mapCenter
453 { // We come from above
456 // there are childs, go there
461 { // no childs, try to go up again
473 // can't go up, I am mapCenter
480 // Try to find last child, we came from, in my own childs
482 while (bo && searching)
484 if (itLast==bo) searching=false;
488 { // found lastLMO in my childs
491 // found a brother of lastLMO
507 // can't go up, I am mapCenter
514 // couldn't find last child, it must be a nephew of mine
518 // proceed with my first child
524 // or go back to my parents
535 // can't go up, I am mapCenter
542 BranchObj* BranchObj::getLastIterator()
547 void BranchObj::setLastIterator(BranchObj* it)
553 void BranchObj::move (double x, double y)
555 OrnamentedObj::move (x,y);
559 void BranchObj::move (QPoint p)
564 void BranchObj::moveBy (double x, double y)
566 OrnamentedObj::moveBy (x,y);
569 for (b=branch.first(); b;b=branch.next() )
573 void BranchObj::moveBy (QPoint p)
575 moveBy (p.x(), p.y());
579 void BranchObj::positionBBox()
581 // FIXME testing (optimization)
583 QString h=getHeading();
585 cout << "BO::positionBBox("<<h<<")\n";
587 cout << "BO::positionBBox (noHeading)\n";
590 heading->positionBBox();
591 systemFlags->positionBBox();
592 standardFlags->positionBBox();
593 // It seems that setting x,y also affects width,height
594 int w_old=bbox.width();
595 int h_old=bbox.height();
596 bbox.setX (absPos.x() );
597 bbox.setY (absPos.y() );
598 bbox.setWidth(w_old);
599 bbox.setHeight(h_old);
604 frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
606 // Update links to other branches
608 for (xlo=xlink.first(); xlo; xlo=xlink.next() )
612 void BranchObj::calcBBoxSize()
614 QSize heading_r=heading->getSize();
615 int heading_w=static_cast <int> (heading_r.width() );
616 int heading_h=static_cast <int> (heading_r.height() );
617 QSize sysflags_r=systemFlags->getSize();
618 int sysflags_h=sysflags_r.height();
619 int sysflags_w=sysflags_r.width();
620 QSize stanflags_r=standardFlags->getSize();
621 int stanflags_h=stanflags_r.height();
622 int stanflags_w=stanflags_r.width();
626 // set width to sum of all widths
627 w=heading_w + sysflags_w + stanflags_w;
628 // set height to maximum needed height
629 h=max (sysflags_h,stanflags_h);
632 w+=frame->getBorder();
633 h+=frame->getBorder();
634 bbox.setSize (QSize (w,h));
637 LinkableMapObj* BranchObj::findMapObj(QPoint p, LinkableMapObj* excludeLMO)
642 for (b=branch.first(); b; b=branch.next() )
644 lmo=b->findMapObj(p, excludeLMO);
645 if (lmo != NULL) return lmo;
649 if (inBBox (p) && (this != excludeLMO) && isVisibleObj() )
652 // Search float images
654 for (foi=floatimage.first(); foi; foi=floatimage.next() )
655 if (foi->inBBox(p) &&
656 (foi != excludeLMO) &&
657 foi->getParObj()!= excludeLMO &&
664 void BranchObj::setHeading(QString s)
667 // Adjusting font size
668 QFont font=heading->getFont();
669 font.setPointSize(getDefHeadingSize() );
670 heading->setFont(font);
672 heading->setText(s); // set new heading
673 calcBBoxSize(); // recalculate bbox
674 positionBBox(); // rearrange contents
678 void BranchObj::setURL(QString s)
682 systemFlags->activate("url");
684 systemFlags->deactivate("url");
685 calcBBoxSize(); // recalculate bbox
686 positionBBox(); // rearrange contents
690 QString BranchObj::getURL()
695 void BranchObj::setVymLink(QString s)
699 // We need the relative (from loading)
700 // or absolute path (from User event)
701 // and build the absolute path.
702 // Note: If we have relative, use path of
703 // current map to build absolute path
705 if (!d.path().startsWith ("/"))
707 QString p=mapEditor->getDestPath();
708 int i=p.findRev("/",-1);
709 d.setPath(p.left(i)+"/"+s);
713 systemFlags->activate("vymLink");
717 systemFlags->deactivate("vymLink");
720 calcBBoxSize(); // recalculate bbox
721 positionBBox(); // rearrange contents
725 QString BranchObj::getVymLink()
730 QString BranchObj::saveToDir (const QString &tmpdir,const QString &prefix, const QPoint& offset)
733 QString scrolledAttr;
735 scrolledAttr=attribut ("scrolled","yes");
740 if (depth<2) posAttr=
741 attribut("absPosX",QString().setNum(absPos.x(),10)) +
742 attribut("absPosY",QString().setNum(absPos.y(),10));
746 QString linkAttr=getLinkAttr();
750 urlAttr=attribut ("url",url);
753 if (!vymLink.isEmpty())
754 vymLinkAttr=attribut ("vymLink",convertToRel(mapEditor->getDestPath(),vymLink) );
757 if (frame->getFrameType()!=NoFrame)
758 frameAttr=attribut ("frameType",frame->getFrameTypeName());
762 // save area, if not scrolled
764 if (!((BranchObj*)(parObj))->isScrolled() )
767 attribut("x1",QString().setNum(absPos.x()-offset.x(),10)) +
768 attribut("y1",QString().setNum(absPos.y()-offset.y(),10)) +
769 attribut("x2",QString().setNum(absPos.x()+width()-offset.x(),10)) +
770 attribut("y2",QString().setNum(absPos.y()+height()-offset.y(),10));
775 s=beginElement ("branch" +scrolledAttr +posAttr +linkAttr +urlAttr +vymLinkAttr +frameAttr +areaAttr );
779 s+=valueElement("heading", getHeading(),
780 attribut ("textColor",QColor(heading->getColor()).name()));
782 // save names of flags set
783 s+=standardFlags->saveToDir(tmpdir,prefix,0);
786 if (!note.isEmpty() )
791 for (bo=branch.first(); bo; bo=branch.next() )
792 s+=bo->saveToDir(tmpdir,prefix,offset);
796 for (fio=floatimage.first(); fio; fio=floatimage.next() )
797 s+=fio->saveToDir (tmpdir,prefix);
801 for (xlo=xlink.first(); xlo; xlo=xlink.next() )
805 s+=endElement ("branch");
809 void BranchObj::addXLink (XLinkObj *xlo)
815 void BranchObj::removeXLinkRef (XLinkObj *xlo)
820 void BranchObj::deleteXLink(XLinkObj *xlo)
823 if (!xlo->isUsed()) delete (xlo);
826 void BranchObj::deleteXLinkAt (int i)
828 XLinkObj *xlo=xlink.at(i);
830 if (!xlo->isUsed()) delete(xlo);
833 XLinkObj* BranchObj::XLinkAt (int i)
838 int BranchObj::countXLink()
840 return xlink.count();
843 BranchObj* BranchObj::XLinkTargetAt (int i)
846 return xlink.at(i)->otherBranch (this);
851 LinkableMapObj* BranchObj::addFloatImage ()
853 FloatImageObj *newfi=new FloatImageObj (canvas,this);
854 floatimage.append (newfi);
855 if (hasScrolledParent(this) )
856 newfi->setVisibility (false);
858 newfi->setVisibility(visible);
863 LinkableMapObj* BranchObj::addFloatImage (FloatImageObj *fio)
865 FloatImageObj *newfi=new FloatImageObj (canvas,this);
866 floatimage.append (newfi);
868 if (hasScrolledParent(this) )
869 newfi->setVisibility (false);
871 newfi->setVisibility(visible);
876 FloatImageObj* BranchObj::getFirstFloatImage ()
878 return floatimage.first();
881 FloatImageObj* BranchObj::getLastFloatImage ()
883 return floatimage.last();
886 FloatImageObj* BranchObj::getFloatImageNum (const uint &i)
888 return floatimage.at(i);
891 void BranchObj::removeFloatImage (FloatImageObj *fio)
893 floatimage.remove (fio);
897 void BranchObj::savePosInAngle ()
899 // Save position in angle
902 for (b=branch.first(); b; b=branch.next() )
909 void BranchObj::setDefAttr (BranchModification mod)
914 case 0: fontsize=16; break;
915 case 1: fontsize=12; break;
916 default: fontsize=10; break;
920 setLinkStyle(getDefLinkStyle());
921 QFont font("Sans Serif,8,-1,5,50,0,0,0,0,0");
922 font.setPointSize(fontsize);
923 heading->setFont(font );
926 setColor (((BranchObj*)(parObj))->getColor(),false);
931 BranchObj* BranchObj::addBranch()
933 BranchObj* newbo=new BranchObj(canvas,this);
934 branch.append (newbo);
935 newbo->setParObj(this);
936 newbo->setDefAttr(NewBranch);
937 newbo->setHeading ("new");
939 newbo->setVisibility (false);
941 newbo->setVisibility(visible);
947 BranchObj* BranchObj::addBranch(BranchObj* bo)
949 BranchObj* newbo=new BranchObj(canvas,this);
950 branch.append (newbo);
952 newbo->setParObj(this);
953 newbo->setDefAttr(MovedBranch);
955 newbo->setVisibility (false);
957 newbo->setVisibility(bo->visible);
963 BranchObj* BranchObj::addBranchPtr(BranchObj* bo)
966 bo->setParObj (this);
968 bo->setDefAttr(MovedBranch);
969 if (scrolled) tmpUnscroll();
970 setLastSelectedBranch (bo);
974 BranchObj* BranchObj::insertBranch(int pos)
977 // Add new bo and resort branches
978 BranchObj *newbo=addBranch ();
979 newbo->angle=pos-0.5;
984 BranchObj* BranchObj::insertBranch(BranchObj* bo, int pos)
987 // Add new bo and resort branches
989 BranchObj *newbo=addBranch (bo);
994 BranchObj* BranchObj::insertBranchPtr (BranchObj* bo, int pos)
997 // Add new bo and resort branches
1000 bo->setParObj (this);
1002 bo->setDefAttr (MovedBranch);
1003 if (scrolled) tmpUnscroll();
1004 setLastSelectedBranch (bo);
1009 void BranchObj::removeBranchHere(BranchObj* borem)
1011 // This removes the branch bo from list, but
1012 // inserts its childs at the place of bo
1014 bo=borem->getLastBranch();
1015 int pos=borem->getNum();
1018 bo->moveBranchTo (this,pos+1);
1019 bo=borem->getLastBranch();
1021 removeBranch (borem);
1024 void BranchObj::removeChilds()
1029 void BranchObj::removeBranch(BranchObj* bo)
1031 // if bo is not in branch remove returns false, we
1034 if (branch.remove (bo))
1037 qWarning ("BranchObj::removeBranch tried to remove non existing branch?!\n");
1038 requestReposition();
1041 void BranchObj::removeBranchPtr(BranchObj* bo)
1044 requestReposition();
1047 void BranchObj::setLastSelectedBranch (BranchObj* bo)
1049 lastSelectedBranch=branch.find(bo);
1052 BranchObj* BranchObj::getLastSelectedBranch ()
1054 if (lastSelectedBranch>=0)
1056 BranchObj* bo=branch.at(lastSelectedBranch);
1059 return branch.first();
1062 BranchObj* BranchObj::getFirstBranch ()
1064 return branch.first();
1067 BranchObj* BranchObj::getLastBranch ()
1069 return branch.last();
1072 BranchObj* BranchObj::getBranchNum (const uint &i)
1074 return branch.at(i);
1078 BranchObj* BranchObj::moveBranchUp(BranchObj* bo1) // move a branch up (modify myself)
1081 int i=branch.find(bo1);
1083 { // -1 if bo1 not found
1084 branch.at(i)->angle--;
1085 branch.at(i-1)->angle++;
1087 return branch.at(i-1);
1089 return branch.at(i);
1092 BranchObj* BranchObj::moveBranchDown(BranchObj* bo1)
1095 int i=branch.find(bo1);
1100 branch.at(i)->angle++;
1101 branch.at(j)->angle--;
1103 return branch.at(j);
1105 return branch.at(i);
1108 BranchObj* BranchObj::moveBranchTo (BranchObj* dst, int pos)
1110 // Find current parent and
1111 // remove pointer to myself there
1112 if (!dst) return NULL;
1113 BranchObj *par=(BranchObj*)(parObj);
1115 par->removeBranchPtr (this);
1119 // Create new pointer to myself at dst
1120 if (pos<0||dst->getDepth()==0)
1122 // links myself as last branch at dst
1123 dst->addBranchPtr (this);
1128 // inserts me at pos in parent of dst
1131 BranchObj *bo=dst->insertBranchPtr (this,pos);
1132 bo->setDefAttr(MovedBranch);
1141 void BranchObj::alignRelativeTo (QPoint ref)
1144 if (!getHeading().isEmpty())
1145 cout << "BO::alignRelTo "<<getHeading()<<endl;
1147 cout << "BO::alignRelTo ???"<<endl;
1148 cout << " d="<<depth<<endl;
1150 int th = bboxTotal.height();
1152 // If I am the mapcenter or a mainbranch, reposition heading
1155 move (absPos.x(),absPos.y());
1158 // Calc angle to mapCenter if I am a mainbranch
1159 // needed for reordering the mainbranches clockwise
1161 angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ),
1162 (int)(y() - parObj->getChildPos().y() ) ) );
1167 // Align myself depending on orientation and parent, but
1168 // only if I am not the mainbranch or mapcenter itself
1169 switch (orientation)
1171 case OrientLeftOfCenter:
1172 move (ref.x()-bbox.width(), ref.y() + (th-bbox.height())/2 );
1174 case OrientRightOfCenter:
1175 move (ref.x(), ref.y() + (th-bbox.height())/2 );
1178 cout <<"LMO::alignRelativeTo: oops, no orientation given...\n";
1184 for (fio=floatimage.first(); fio; fio=floatimage.next() )
1187 if (scrolled) return;
1189 // Set reference point for alignment of childs
1191 if (orientation==OrientLeftOfCenter)
1192 ref2.setX(childPos.x() - linkwidth);
1194 ref2.setX(childPos.x() + linkwidth);
1197 ref2.setY(absPos.y()-(bboxTotal.height()-bbox.height())/2);
1199 ref2.setY(ref.y() );
1201 // Align the childs depending on reference point
1203 for (b=branch.first(); b; b=branch.next() )
1205 b->alignRelativeTo (ref2);
1206 ref2.setY(ref2.y() + b->getBBoxSizeWithChilds().height() );
1211 void BranchObj::reposition()
1214 if (!getHeading().isEmpty())
1215 cout << "BO::reposition "<<getHeading()<<endl;
1217 cout << "BO::reposition ???"<<endl;
1221 // only calculate the sizes once. If the deepest LMO
1222 // changes its height,
1223 // all upper LMOs have to change, too.
1224 calcBBoxSizeWithChilds();
1225 alignRelativeTo ( QPoint (absPos.x(),
1226 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1230 // This is only important for moving branches:
1231 // For editing a branch it isn't called...
1232 alignRelativeTo ( QPoint (absPos.x(),
1233 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1238 QRect BranchObj::getTotalBBox()
1242 if (scrolled) return r;
1245 for (b=branch.first();b ;b=branch.next() )
1246 r=addBBox(b->getTotalBBox(),r);
1249 for (fio=floatimage.first();fio ;fio=floatimage.next() )
1250 r=addBBox(fio->getTotalBBox(),r);
1255 QRect BranchObj::getBBoxSizeWithChilds()
1260 void BranchObj::calcBBoxSizeWithChilds()
1262 // This is called only from reposition and
1263 // and only for mapcenter. So it won't be
1264 // called more than once for a single user
1267 // Calculate size of LMO including all childs (to align them later)
1269 bboxTotal.setX(bbox.x() );
1270 bboxTotal.setY(bbox.y() );
1272 // if branch is scrolled, ignore childs, but still consider floatimages
1275 bboxTotal.setWidth (bbox.width());
1276 bboxTotal.setHeight(bbox.height());
1282 // Now calculate recursivly
1284 // maximum of widths
1287 for (b=branch.first();b ;b=branch.next() )
1289 b->calcBBoxSizeWithChilds();
1290 br=b->getBBoxSizeWithChilds();
1291 r.setWidth( max (br.width(), r.width() ));
1292 r.setHeight(br.height() + r.height() );
1293 if (br.y()<bboxTotal.y()) bboxTotal.setY(br.y());
1295 // Add myself and also
1296 // add width of link to sum if necessary
1297 if (branch.isEmpty())
1298 bboxTotal.setWidth (bbox.width() + r.width() );
1300 bboxTotal.setWidth (bbox.width() + r.width() + linkwidth);
1301 bboxTotal.setHeight(max (r.height(), bbox.height() ) );
1302 // frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
1305 void BranchObj::select()
1307 // set Text in Editor
1308 textEditor->setText(note.getNote() );
1309 QString fnh=note.getFilenameHint();
1311 textEditor->setFilenameHint(note.getFilenameHint() );
1313 textEditor->setFilenameHint(getHeading() );
1314 textEditor->setFontHint (note.getFontHint() );
1316 LinkableMapObj::select();
1317 // Tell parent that I am selected now:
1318 BranchObj* po=(BranchObj*)(parObj);
1319 if (po) // TODO Try to get rid of this cast...
1320 po->setLastSelectedBranch(this);
1322 // temporary unscroll, if we have scrolled parents somewhere
1323 if (parObj) ((BranchObj*)(parObj))->tmpUnscroll();
1325 // Show URL and link in statusbar
1327 if (!url.isEmpty()) status+="URL: "+url+" ";
1328 if (!vymLink.isEmpty()) status+="Link: "+vymLink;
1329 if (!status.isEmpty()) mainWindow->statusMessage (status);
1332 standardFlags->updateToolbar();
1334 // Update Browserbutton
1336 actionEditOpenURL->setEnabled (true);
1338 actionEditOpenURL->setEnabled (false);
1340 // Update actions in mapeditor
1341 mapEditor->updateActions();
1344 void BranchObj::unselect()
1346 LinkableMapObj::unselect();
1347 // Delete any messages like vymLink in StatusBar
1348 mainWindow->statusMessage ("");
1350 // save note from editor and set flag
1351 // text is done by updateNoteFlag(), just save
1353 note.setFilenameHint (textEditor->getFilename());
1355 // reset temporary unscroll, if we have scrolled parents somewhere
1356 if (parObj) ((BranchObj*)(parObj))->resetTmpUnscroll();
1358 // Erase content of editor
1359 textEditor->setInactive();
1361 // unselect all buttons in toolbar
1362 standardFlagsDefault->updateToolbar();
1365 QString BranchObj::getSelectString()
1371 s= "bo:" + QString("%1").arg(getNum());
1373 s= ((BranchObj*)(parObj))->getSelectString() + ",bo:" + QString("%1").arg(getNum());