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 // TODO This should be done in TextObj later
99 QFont font("Sans Serif,8,-1,5,50,0,0,0,0,0");
100 heading->setFont(font );
102 lastSelectedBranch=-1;
113 void BranchObj::copy (BranchObj* other)
115 OrnamentedObj::copy(other);
119 for (b=other->branch.first(); b;b=other->branch.next() )
120 // Make deep copy of b
121 // Because addBranch again calls copy for the childs,
122 // Those will get a deep copy, too
126 for (fi=other->floatimage.first(); fi;fi=other->floatimage.next() )
129 scrolled=other->scrolled;
130 tmpUnscrolled=other->tmpUnscrolled;
131 setVisibility (other->visible);
134 vymLink=other->vymLink;
141 void BranchObj::clear()
144 while (!xlink.isEmpty())
145 deleteXLink (xlink.first() );
148 while (!branch.isEmpty())
151 branch.removeFirst();
156 int BranchObj::getNum()
159 return ((BranchObj*)(parObj))->getNum ((BranchObj*)(this));
164 int BranchObj::getNum(BranchObj *bo)
166 // keep current pointer in branch,
167 // otherwise save might fail
169 int ind=branch.findRef (bo);
174 int BranchObj::getFloatImageNum(FloatImageObj *fio)
176 return floatimage.findRef (fio);
179 int BranchObj::countBranches()
181 return branch.count();
184 int BranchObj::countFloatImages()
186 return floatimage.count();
189 int BranchObj::countXLinks()
191 return xlink.count();
194 void BranchObj::setParObjTmp(LinkableMapObj* lmo, QPoint m, int off)
196 // Temporary link to lmo
197 // m is position of mouse pointer
198 // offset 0: default 1: below lmo -1 above lmo (if possible)
201 BranchObj* o=(BranchObj*)(lmo);
205 // ignore mapcenter and mainbranch
206 if (lmo->getDepth()<2) off=0;
216 // parObj=o->getParObj();
218 // parObj=o->getParObj();
223 depth=parObj->getDepth()+1;
225 // setLinkStyle calls updateLink, only set it once
226 if (style!=getDefLinkStyle() ) setLinkStyle (getDefLinkStyle());
228 // Move temporary to new position at destination
229 // Usually the positioning would be done by reposition(),
230 // but then also the destination branch would "Jump" around...
231 // Better just do it approximately
233 { // new parent is the mapcenter itself
235 QPoint p= normalise ( QPoint (m.x() - o->getChildPos().x(),
236 m.y() - o->getChildPos().y() ));
237 if (p.x()<0) p.setX( p.x()-bbox.width() );
244 // new parent is just a branch, link to it
245 QRect t=o->getBBoxSizeWithChilds();
246 if (o->getLastBranch())
247 y=t.y() + t.height() ;
254 // we want to link above lmo
255 y=o->y() - height() + 5;
257 // we want to link below lmo
258 // Bottom of sel should be 5 pixels above
259 // the bottom of the branch _below_ the target:
260 // Don't try to find that branch, guess 12 pixels
261 y=o->getChildPos().y() -height() + 12;
263 if (o->getOrientation()==OrientLeftOfCenter)
264 move ( o->getChildPos().x() - linkwidth, y );
266 move (o->getChildPos().x() + linkwidth, y );
269 // updateLink is called implicitly in move
270 reposition(); // FIXME shouldn't be this a request?
273 void BranchObj::unsetParObjTmp()
280 depth=parObj->getDepth()+1;
281 setLinkStyle (getDefLinkStyle() );
286 void BranchObj::unScroll()
288 if (tmpUnscrolled) resetTmpUnscroll();
289 if (scrolled) toggleScroll();
292 void BranchObj::toggleScroll()
298 systemFlags->deactivate("scrolledright");
299 for (bo=branch.first(); bo; bo=branch.next() )
301 bo->setVisibility(true);
306 systemFlags->activate("scrolledright");
307 for (bo=branch.first(); bo; bo=branch.next() )
309 bo->setVisibility(false);
314 move (absPos.x(), absPos.y() );
318 bool BranchObj::isScrolled()
323 bool BranchObj::hasScrolledParent(BranchObj *start)
325 // Calls parents recursivly to
326 // find out, if we are scrolled at all.
327 // But ignore myself, just look at parents.
329 if (this !=start && scrolled) return true;
331 BranchObj* bo=(BranchObj*)(parObj);
333 return bo->hasScrolledParent(start);
338 void BranchObj::tmpUnscroll()
340 // Unscroll parent (recursivly)
341 BranchObj* bo=(BranchObj*)(parObj);
342 if (bo) bo->tmpUnscroll();
348 systemFlags->activate("tmpUnscrolledright");
353 void BranchObj::resetTmpUnscroll()
355 // Unscroll parent (recursivly)
356 BranchObj* bo=(BranchObj*)(parObj);
358 bo->resetTmpUnscroll();
364 systemFlags->deactivate("tmpUnscrolledright");
369 void BranchObj::setVisibility(bool v, int toDepth)
371 if (depth <= toDepth)
373 frame->setVisibility(v);
374 heading->setVisibility(v);
375 systemFlags->setVisibility(v);
376 standardFlags->setVisibility(v);
377 LinkableMapObj::setVisibility (v);
379 if (!scrolled && (depth < toDepth))
381 // Now go recursivly through all childs
383 for (b=branch.first(); b;b=branch.next() )
384 b->setVisibility (v,toDepth);
386 for (fio=floatimage.first(); fio; fio=floatimage.next())
387 fio->setVisibility (v);
389 for (xlo=xlink.first(); xlo;xlo=xlink.next() )
390 xlo->setVisibility ();
392 } // depth <= toDepth
396 void BranchObj::setVisibility(bool v)
398 setVisibility (v,MAX_DEPTH);
402 void BranchObj::setLinkColor ()
404 // Overloaded from LinkableMapObj
405 // BranchObj can use color of heading
407 if (mapEditor->getLinkColorHint()==HeadingColor)
408 LinkableMapObj::setLinkColor (heading->getColor() );
410 LinkableMapObj::setLinkColor ();
413 void BranchObj::setColor (QColor col, bool colorChilds)
415 heading->setColor(col);
420 for (bo=branch.first(); bo; bo=branch.next() )
421 bo->setColor(col,colorChilds);
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) && (foi != excludeLMO) && foi->getParObj()!= excludeLMO) return foi;
660 void BranchObj::setHeading(QString s)
662 // Adjusting font size
663 QFont font=heading->getFont();
665 font.setPointSize(16);
668 font.setPointSize(10);
670 font.setPointSize(12);
671 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));
748 urlAttr=attribut ("url",url);
751 if (!vymLink.isEmpty())
752 vymLinkAttr=attribut ("vymLink",convertToRel(mapEditor->getDestPath(),vymLink) );
755 if (frame->getFrameType()!=NoFrame)
756 frameAttr=attribut ("frameType",frame->getFrameTypeName());
760 // save area, if not scrolled
762 if (!((BranchObj*)(parObj))->isScrolled() )
765 attribut("x1",QString().setNum(absPos.x()-offset.x(),10)) +
766 attribut("y1",QString().setNum(absPos.y()-offset.y(),10)) +
767 attribut("x2",QString().setNum(absPos.x()+width()-offset.x(),10)) +
768 attribut("y2",QString().setNum(absPos.y()+height()-offset.y(),10));
773 s=beginElement ("branch" +scrolledAttr +posAttr +urlAttr +vymLinkAttr +frameAttr +areaAttr );
777 s=s+valueElement("heading", getHeading(),
778 attribut ("textColor",QColor(heading->getColor()).name()));
780 // save names of flags set
781 s+=standardFlags->saveToDir(tmpdir,prefix,0);
784 if (!note.isEmpty() )
789 for (bo=branch.first(); bo; bo=branch.next() )
790 s+=bo->saveToDir(tmpdir,prefix,offset);
794 for (fio=floatimage.first(); fio; fio=floatimage.next() )
795 s+=fio->saveToDir (tmpdir,prefix);
799 for (xlo=xlink.first(); xlo; xlo=xlink.next() )
803 s+=endElement ("branch");
807 void BranchObj::addXLink (XLinkObj *xlo)
813 void BranchObj::removeXLinkRef (XLinkObj *xlo)
818 void BranchObj::deleteXLink(XLinkObj *xlo)
821 if (!xlo->isUsed()) delete (xlo);
824 void BranchObj::deleteXLinkAt (int i)
826 XLinkObj *xlo=xlink.at(i);
828 if (!xlo->isUsed()) delete(xlo);
831 XLinkObj* BranchObj::XLinkAt (int i)
836 int BranchObj::countXLink()
838 return xlink.count();
841 BranchObj* BranchObj::XLinkTargetAt (int i)
844 return xlink.at(i)->otherBranch (this);
849 LinkableMapObj* BranchObj::addFloatImage ()
851 FloatImageObj *newfi=new FloatImageObj (canvas,this);
852 floatimage.append (newfi);
853 if (hasScrolledParent(this) )
854 newfi->setVisibility (false);
856 newfi->setVisibility(visible);
861 LinkableMapObj* BranchObj::addFloatImage (FloatImageObj *fio)
863 FloatImageObj *newfi=new FloatImageObj (canvas,this);
864 floatimage.append (newfi);
866 if (hasScrolledParent(this) )
867 newfi->setVisibility (false);
869 newfi->setVisibility(visible);
874 FloatImageObj* BranchObj::getFirstFloatImage ()
876 return floatimage.first();
879 FloatImageObj* BranchObj::getLastFloatImage ()
881 return floatimage.last();
884 FloatImageObj* BranchObj::getFloatImageNum (const uint &i)
886 return floatimage.at(i);
889 void BranchObj::removeFloatImage (FloatImageObj *fio)
891 floatimage.remove (fio);
895 void BranchObj::savePosInAngle ()
897 // Save position in angle
900 for (b=branch.first(); b; b=branch.next() )
907 BranchObj* BranchObj::addBranch()
909 BranchObj* newbo=new BranchObj(canvas,this);
910 branch.append (newbo);
911 newbo->setParObj(this);
912 newbo->setColor(getColor(),false);
913 newbo->setLinkColor();
914 newbo->setHeading ("new");
915 newbo->setLinkStyle (newbo->getDefLinkStyle());
917 newbo->setVisibility (false);
919 newbo->setVisibility(visible);
925 BranchObj* BranchObj::addBranch(BranchObj* bo)
927 BranchObj* newbo=new BranchObj(canvas,this);
928 branch.append (newbo);
930 newbo->setParObj(this);
931 newbo->setHeading (newbo->getHeading()); // adjust fontsize to depth
932 newbo->setLinkStyle (newbo->getDefLinkStyle());
934 newbo->setVisibility (false);
936 newbo->setVisibility(bo->visible);
942 BranchObj* BranchObj::addBranchPtr(BranchObj* bo)
945 bo->setParObj (this);
947 bo->setLinkStyle (bo->getDefLinkStyle() );
948 if (scrolled) tmpUnscroll();
949 setLastSelectedBranch (bo);
953 BranchObj* BranchObj::insertBranch(int pos)
956 // Add new bo and resort branches
957 BranchObj *newbo=addBranch ();
958 newbo->angle=pos-0.5;
963 BranchObj* BranchObj::insertBranch(BranchObj* bo, int pos)
966 // Add new bo and resort branches
968 BranchObj *newbo=addBranch (bo);
973 BranchObj* BranchObj::insertBranchPtr (BranchObj* bo, int pos)
976 // Add new bo and resort branches
979 bo->setParObj (this);
981 bo->setLinkStyle (bo->getDefLinkStyle() );
982 if (scrolled) tmpUnscroll();
983 setLastSelectedBranch (bo);
988 void BranchObj::removeBranchHere(BranchObj* borem)
990 // This removes the branch bo from list, but
991 // inserts its childs at the place of bo
993 bo=borem->getLastBranch();
996 bo->moveBranchTo (borem,1);
997 bo=borem->getLastBranch();
999 removeBranch (borem);
1002 void BranchObj::removeChilds()
1007 void BranchObj::removeBranch(BranchObj* bo)
1009 // if bo is not in branch remove returns false, we
1012 if (branch.remove (bo))
1015 qWarning ("BranchObj::removeBranch tried to remove non existing branch?!\n");
1016 requestReposition();
1019 void BranchObj::removeBranchPtr(BranchObj* bo)
1022 requestReposition();
1025 void BranchObj::setLastSelectedBranch (BranchObj* bo)
1027 lastSelectedBranch=branch.find(bo);
1030 BranchObj* BranchObj::getLastSelectedBranch ()
1032 if (lastSelectedBranch>=0)
1034 BranchObj* bo=branch.at(lastSelectedBranch);
1037 return branch.first();
1040 BranchObj* BranchObj::getFirstBranch ()
1042 return branch.first();
1045 BranchObj* BranchObj::getLastBranch ()
1047 return branch.last();
1050 BranchObj* BranchObj::getBranchNum (const uint &i)
1052 return branch.at(i);
1056 BranchObj* BranchObj::moveBranchUp(BranchObj* bo1) // move a branch up (modify myself)
1059 int i=branch.find(bo1);
1061 { // -1 if bo1 not found
1062 branch.at(i)->angle--;
1063 branch.at(i-1)->angle++;
1065 return branch.at(i-1);
1067 return branch.at(i);
1070 BranchObj* BranchObj::moveBranchDown(BranchObj* bo1)
1073 int i=branch.find(bo1);
1078 branch.at(i)->angle++;
1079 branch.at(j)->angle--;
1081 return branch.at(j);
1083 return branch.at(i);
1086 BranchObj* BranchObj::moveBranchTo (BranchObj* dst, int pos)
1088 // Find current parent and
1089 // remove pointer to myself there
1091 if (!dst) return NULL;
1093 BranchObj *par=(BranchObj*)(parObj);
1095 par->removeBranchPtr (this);
1099 if (pos<0||dst->getDepth()==0)
1101 // links myself as last branch at dst
1102 dst->addBranchPtr (this);
1106 // inserts me at pos in parent of dst
1107 par=(BranchObj*)(dst->getParObj());
1109 return par->insertBranchPtr (this,pos);
1115 void BranchObj::alignRelativeTo (QPoint ref)
1118 if (!getHeading().isEmpty())
1119 cout << "BO::alignRelTo "<<getHeading()<<endl;
1121 cout << "BO::alignRelTo ???"<<endl;
1122 cout << " d="<<depth<<endl;
1124 int th = bboxTotal.height();
1126 // If I am the mapcenter or a mainbranch, reposition heading
1129 move (absPos.x(),absPos.y());
1132 // Calc angle to mapCenter if I am a mainbranch
1133 // needed for reordering the mainbranches clockwise
1135 angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ),
1136 (int)(y() - parObj->getChildPos().y() ) ) );
1141 // Align myself depending on orientation and parent, but
1142 // only if I am not the mainbranch or mapcenter itself
1143 switch (orientation)
1145 case OrientLeftOfCenter:
1146 move (ref.x()-bbox.width(), ref.y() + (th-bbox.height())/2 );
1148 case OrientRightOfCenter:
1149 move (ref.x(), ref.y() + (th-bbox.height())/2 );
1152 cout <<"LMO::alignRelativeTo: oops, no orientation given...\n";
1158 for (fio=floatimage.first(); fio; fio=floatimage.next() )
1161 if (scrolled) return;
1163 // Set reference point for alignment of childs
1165 if (orientation==OrientLeftOfCenter)
1166 ref2.setX(childPos.x() - linkwidth);
1168 ref2.setX(childPos.x() + linkwidth);
1171 ref2.setY(absPos.y()-(bboxTotal.height()-bbox.height())/2);
1173 ref2.setY(ref.y() );
1175 // Align the childs depending on reference point
1177 for (b=branch.first(); b; b=branch.next() )
1179 b->alignRelativeTo (ref2);
1180 ref2.setY(ref2.y() + b->getBBoxSizeWithChilds().height() );
1185 void BranchObj::reposition()
1188 if (!getHeading().isEmpty())
1189 cout << "BO::reposition "<<getHeading()<<endl;
1191 cout << "BO::reposition ???"<<endl;
1195 // only calculate the sizes once. If the deepest LMO
1196 // changes its height,
1197 // all upper LMOs have to change, too.
1198 calcBBoxSizeWithChilds();
1199 alignRelativeTo ( QPoint (absPos.x(),
1200 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1204 // This is only important for moving branches:
1205 // For editing a branch it isn't called...
1206 alignRelativeTo ( QPoint (absPos.x(),
1207 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1212 QRect BranchObj::getTotalBBox()
1216 if (scrolled) return r;
1219 for (b=branch.first();b ;b=branch.next() )
1220 r=addBBox(b->getTotalBBox(),r);
1223 for (fio=floatimage.first();fio ;fio=floatimage.next() )
1224 r=addBBox(fio->getTotalBBox(),r);
1229 QRect BranchObj::getBBoxSizeWithChilds()
1234 void BranchObj::calcBBoxSizeWithChilds()
1236 // This is called only from reposition and
1237 // and only for mapcenter. So it won't be
1238 // called more than once for a single user
1241 // Calculate size of LMO including all childs (to align them later)
1243 bboxTotal.setX(bbox.x() );
1244 bboxTotal.setY(bbox.y() );
1246 // if branch is scrolled, ignore childs, but still consider floatimages
1249 bboxTotal.setWidth (bbox.width());
1250 bboxTotal.setHeight(bbox.height());
1256 // Now calculate recursivly
1258 // maximum of widths
1261 for (b=branch.first();b ;b=branch.next() )
1263 b->calcBBoxSizeWithChilds();
1264 br=b->getBBoxSizeWithChilds();
1265 r.setWidth( max (br.width(), r.width() ));
1266 r.setHeight(br.height() + r.height() );
1267 if (br.y()<bboxTotal.y()) bboxTotal.setY(br.y());
1269 // Add myself and also
1270 // add width of link to sum if necessary
1271 if (branch.isEmpty())
1272 bboxTotal.setWidth (bbox.width() + r.width() );
1274 bboxTotal.setWidth (bbox.width() + r.width() + linkwidth);
1275 bboxTotal.setHeight(max (r.height(), bbox.height() ) );
1276 // frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
1279 void BranchObj::select()
1281 LinkableMapObj::select();
1282 // Tell parent that I am selected now:
1283 BranchObj* po=(BranchObj*)(parObj);
1284 if (po) // TODO Try to get rid of this cast...
1285 po->setLastSelectedBranch(this);
1287 // temporary unscroll, if we have scrolled parents somewhere
1288 if (parObj) ((BranchObj*)(parObj))->tmpUnscroll();
1290 // set Text in Editor
1291 textEditor->setText(note.getNote() );
1292 textEditor->setFilename(note.getFilenameHint() );
1293 textEditor->setFontHint (note.getFontHint() );
1294 connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag() ) );
1295 connect (textEditor, SIGNAL (fontSizeHasChanged() ), this, SLOT (updateNoteFlag() ) );
1297 // Show URL and link in statusbar
1299 if (!url.isEmpty()) status+="URL: "+url+" ";
1300 if (!vymLink.isEmpty()) status+="Link: "+vymLink;
1301 if (!status.isEmpty()) mainWindow->statusMessage (status);
1304 standardFlags->updateToolBar();
1306 // Update Browserbutton
1308 actionEditOpenURL->setEnabled (true);
1310 actionEditOpenURL->setEnabled (false);
1312 // Update actions in mapeditor
1313 mapEditor->updateActions();
1316 void BranchObj::unselect()
1318 LinkableMapObj::unselect();
1319 // Delete any messages like vymLink in StatusBar
1320 mainWindow->statusMessage ("");
1322 // save note from editor and set flag
1323 // text is done by updateNoteFlag(), just save
1325 note.setFilenameHint (textEditor->getFilename());
1327 // reset temporary unscroll, if we have scrolled parents somewhere
1328 if (parObj) ((BranchObj*)(parObj))->resetTmpUnscroll();
1330 // Disconnect textEditor from this LMO
1331 disconnect( textEditor, SIGNAL(textHasChanged()), 0, 0 );
1332 disconnect( textEditor, SIGNAL (fontSizeHasChanged()),0,0 );
1334 // Erase content of editor
1335 textEditor->setInactive();
1337 // unselect all buttons in toolbar
1338 standardFlagsDefault->updateToolBar();
1341 QString BranchObj::getSelectString()
1347 s= "bo:" + QString("%1").arg(getNum());
1349 s= ((BranchObj*)(parObj))->getSelectString() + ",bo:" + QString("%1").arg(getNum());