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));
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 void BranchObj::setDefAttr (BranchModification mod)
912 case 0: fontsize=16; break;
913 case 1: fontsize=12; break;
914 default: fontsize=10; break;
918 setLinkStyle(getDefLinkStyle());
919 QFont font("Sans Serif,8,-1,5,50,0,0,0,0,0");
920 font.setPointSize(fontsize);
921 heading->setFont(font );
924 setColor (((BranchObj*)(parObj))->getColor(),false);
929 BranchObj* BranchObj::addBranch()
931 BranchObj* newbo=new BranchObj(canvas,this);
932 branch.append (newbo);
933 newbo->setParObj(this);
934 newbo->setDefAttr(NewBranch);
935 newbo->setHeading ("new");
937 newbo->setVisibility (false);
939 newbo->setVisibility(visible);
945 BranchObj* BranchObj::addBranch(BranchObj* bo)
947 BranchObj* newbo=new BranchObj(canvas,this);
948 branch.append (newbo);
950 newbo->setParObj(this);
951 newbo->setDefAttr(NewBranch);
953 newbo->setVisibility (false);
955 newbo->setVisibility(bo->visible);
961 BranchObj* BranchObj::addBranchPtr(BranchObj* bo)
964 bo->setParObj (this);
966 bo->setDefAttr(MovedBranch);
967 if (scrolled) tmpUnscroll();
968 setLastSelectedBranch (bo);
972 BranchObj* BranchObj::insertBranch(int pos)
975 // Add new bo and resort branches
976 BranchObj *newbo=addBranch ();
977 newbo->angle=pos-0.5;
982 BranchObj* BranchObj::insertBranch(BranchObj* bo, int pos)
985 // Add new bo and resort branches
987 BranchObj *newbo=addBranch (bo);
992 BranchObj* BranchObj::insertBranchPtr (BranchObj* bo, int pos)
995 // Add new bo and resort branches
998 bo->setParObj (this);
1000 bo->setDefAttr (MovedBranch);
1001 if (scrolled) tmpUnscroll();
1002 setLastSelectedBranch (bo);
1007 void BranchObj::removeBranchHere(BranchObj* borem)
1009 // This removes the branch bo from list, but
1010 // inserts its childs at the place of bo
1012 bo=borem->getLastBranch();
1013 int pos=borem->getNum();
1016 bo->moveBranchTo (this,pos+1);
1017 bo=borem->getLastBranch();
1019 removeBranch (borem);
1022 void BranchObj::removeChilds()
1027 void BranchObj::removeBranch(BranchObj* bo)
1029 // if bo is not in branch remove returns false, we
1032 if (branch.remove (bo))
1035 qWarning ("BranchObj::removeBranch tried to remove non existing branch?!\n");
1036 requestReposition();
1039 void BranchObj::removeBranchPtr(BranchObj* bo)
1042 requestReposition();
1045 void BranchObj::setLastSelectedBranch (BranchObj* bo)
1047 lastSelectedBranch=branch.find(bo);
1050 BranchObj* BranchObj::getLastSelectedBranch ()
1052 if (lastSelectedBranch>=0)
1054 BranchObj* bo=branch.at(lastSelectedBranch);
1057 return branch.first();
1060 BranchObj* BranchObj::getFirstBranch ()
1062 return branch.first();
1065 BranchObj* BranchObj::getLastBranch ()
1067 return branch.last();
1070 BranchObj* BranchObj::getBranchNum (const uint &i)
1072 return branch.at(i);
1076 BranchObj* BranchObj::moveBranchUp(BranchObj* bo1) // move a branch up (modify myself)
1079 int i=branch.find(bo1);
1081 { // -1 if bo1 not found
1082 branch.at(i)->angle--;
1083 branch.at(i-1)->angle++;
1085 return branch.at(i-1);
1087 return branch.at(i);
1090 BranchObj* BranchObj::moveBranchDown(BranchObj* bo1)
1093 int i=branch.find(bo1);
1098 branch.at(i)->angle++;
1099 branch.at(j)->angle--;
1101 return branch.at(j);
1103 return branch.at(i);
1106 BranchObj* BranchObj::moveBranchTo (BranchObj* dst, int pos)
1108 // Find current parent and
1109 // remove pointer to myself there
1110 if (!dst) return NULL;
1111 BranchObj *par=(BranchObj*)(parObj);
1113 par->removeBranchPtr (this);
1117 // Create new pointer to myself at dst
1118 if (pos<0||dst->getDepth()==0)
1120 // links myself as last branch at dst
1121 dst->addBranchPtr (this);
1126 // inserts me at pos in parent of dst
1129 BranchObj *bo=dst->insertBranchPtr (this,pos);
1130 bo->setDefAttr(MovedBranch);
1139 void BranchObj::alignRelativeTo (QPoint ref)
1142 if (!getHeading().isEmpty())
1143 cout << "BO::alignRelTo "<<getHeading()<<endl;
1145 cout << "BO::alignRelTo ???"<<endl;
1146 cout << " d="<<depth<<endl;
1148 int th = bboxTotal.height();
1150 // If I am the mapcenter or a mainbranch, reposition heading
1153 move (absPos.x(),absPos.y());
1156 // Calc angle to mapCenter if I am a mainbranch
1157 // needed for reordering the mainbranches clockwise
1159 angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ),
1160 (int)(y() - parObj->getChildPos().y() ) ) );
1165 // Align myself depending on orientation and parent, but
1166 // only if I am not the mainbranch or mapcenter itself
1167 switch (orientation)
1169 case OrientLeftOfCenter:
1170 move (ref.x()-bbox.width(), ref.y() + (th-bbox.height())/2 );
1172 case OrientRightOfCenter:
1173 move (ref.x(), ref.y() + (th-bbox.height())/2 );
1176 cout <<"LMO::alignRelativeTo: oops, no orientation given...\n";
1182 for (fio=floatimage.first(); fio; fio=floatimage.next() )
1185 if (scrolled) return;
1187 // Set reference point for alignment of childs
1189 if (orientation==OrientLeftOfCenter)
1190 ref2.setX(childPos.x() - linkwidth);
1192 ref2.setX(childPos.x() + linkwidth);
1195 ref2.setY(absPos.y()-(bboxTotal.height()-bbox.height())/2);
1197 ref2.setY(ref.y() );
1199 // Align the childs depending on reference point
1201 for (b=branch.first(); b; b=branch.next() )
1203 b->alignRelativeTo (ref2);
1204 ref2.setY(ref2.y() + b->getBBoxSizeWithChilds().height() );
1209 void BranchObj::reposition()
1212 if (!getHeading().isEmpty())
1213 cout << "BO::reposition "<<getHeading()<<endl;
1215 cout << "BO::reposition ???"<<endl;
1219 // only calculate the sizes once. If the deepest LMO
1220 // changes its height,
1221 // all upper LMOs have to change, too.
1222 calcBBoxSizeWithChilds();
1223 alignRelativeTo ( QPoint (absPos.x(),
1224 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1228 // This is only important for moving branches:
1229 // For editing a branch it isn't called...
1230 alignRelativeTo ( QPoint (absPos.x(),
1231 absPos.y()-(bboxTotal.height()-bbox.height())/2) );
1236 QRect BranchObj::getTotalBBox()
1240 if (scrolled) return r;
1243 for (b=branch.first();b ;b=branch.next() )
1244 r=addBBox(b->getTotalBBox(),r);
1247 for (fio=floatimage.first();fio ;fio=floatimage.next() )
1248 r=addBBox(fio->getTotalBBox(),r);
1253 QRect BranchObj::getBBoxSizeWithChilds()
1258 void BranchObj::calcBBoxSizeWithChilds()
1260 // This is called only from reposition and
1261 // and only for mapcenter. So it won't be
1262 // called more than once for a single user
1265 // Calculate size of LMO including all childs (to align them later)
1267 bboxTotal.setX(bbox.x() );
1268 bboxTotal.setY(bbox.y() );
1270 // if branch is scrolled, ignore childs, but still consider floatimages
1273 bboxTotal.setWidth (bbox.width());
1274 bboxTotal.setHeight(bbox.height());
1280 // Now calculate recursivly
1282 // maximum of widths
1285 for (b=branch.first();b ;b=branch.next() )
1287 b->calcBBoxSizeWithChilds();
1288 br=b->getBBoxSizeWithChilds();
1289 r.setWidth( max (br.width(), r.width() ));
1290 r.setHeight(br.height() + r.height() );
1291 if (br.y()<bboxTotal.y()) bboxTotal.setY(br.y());
1293 // Add myself and also
1294 // add width of link to sum if necessary
1295 if (branch.isEmpty())
1296 bboxTotal.setWidth (bbox.width() + r.width() );
1298 bboxTotal.setWidth (bbox.width() + r.width() + linkwidth);
1299 bboxTotal.setHeight(max (r.height(), bbox.height() ) );
1300 // frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
1303 void BranchObj::select()
1305 LinkableMapObj::select();
1306 // Tell parent that I am selected now:
1307 BranchObj* po=(BranchObj*)(parObj);
1308 if (po) // TODO Try to get rid of this cast...
1309 po->setLastSelectedBranch(this);
1311 // temporary unscroll, if we have scrolled parents somewhere
1312 if (parObj) ((BranchObj*)(parObj))->tmpUnscroll();
1314 // set Text in Editor
1315 textEditor->setText(note.getNote() );
1316 QString fnh=note.getFilenameHint();
1318 textEditor->setFilenameHint(note.getFilenameHint() );
1320 textEditor->setFilenameHint(getHeading() );
1321 textEditor->setFontHint (note.getFontHint() );
1322 connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag() ) );
1323 connect (textEditor, SIGNAL (fontSizeHasChanged() ), this, SLOT (updateNoteFlag() ) );
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 // Disconnect textEditor from this LMO
1359 disconnect( textEditor, SIGNAL(textHasChanged()), 0, 0 );
1360 disconnect( textEditor, SIGNAL (fontSizeHasChanged()),0,0 );
1362 // Erase content of editor
1363 textEditor->setInactive();
1365 // unselect all buttons in toolbar
1366 standardFlagsDefault->updateToolbar();
1369 QString BranchObj::getSelectString()
1375 s= "bo:" + QString("%1").arg(getNum());
1377 s= ((BranchObj*)(parObj))->getSelectString() + ",bo:" + QString("%1").arg(getNum());