branchobj.cpp
author insilmaril
Wed, 13 Jul 2005 10:22:14 +0000
changeset 127 ebfc893dde31
parent 106 4083860dd82e
child 129 9b9c7e8b9147
permissions -rw-r--r--
added drag and drop of URLs
     1 #include "branchobj.h"
     2 #include "texteditor.h"
     3 #include "mapeditor.h"
     4 #include "mainwindow.h"
     5 
     6 extern TextEditor *textEditor;
     7 extern Main *mainWindow;
     8 extern FlagRowObj *standardFlagsDefault;
     9 extern QAction *actionEditOpenURL;
    10 
    11 
    12 /////////////////////////////////////////////////////////////////
    13 // BranchObj
    14 /////////////////////////////////////////////////////////////////
    15 
    16 BranchObj* BranchObj::itLast=NULL;
    17 
    18 
    19 BranchObj::BranchObj () :OrnamentedObj()
    20 {
    21 //    cout << "Const BranchObj ()\n";
    22     setParObj (this);	
    23     init();
    24     depth=-1;
    25 }
    26 
    27 BranchObj::BranchObj (QCanvas* c):OrnamentedObj (c)
    28 {
    29 //    cout << "Const BranchObj (c)  called from MapCenterObj (c)\n";
    30 	parObj=NULL;
    31     canvas=c;
    32 }
    33 
    34 BranchObj::BranchObj (QCanvas* c, LinkableMapObj* p):OrnamentedObj (c)
    35 {
    36 //    cout << "Const BranchObj (c,p)\n";
    37     canvas=c;
    38     setParObj (p);	
    39     depth=p->getDepth()+1;
    40 	if (depth==1)
    41 		// Calc angle to mapCenter if I am a mainbranch
    42 		// needed for reordering the mainbranches clockwise 
    43 		// around mapcenter 
    44 		angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ), 
    45 								(int)(y() - parObj->getChildPos().y() ) ) );
    46     init();
    47 }
    48 
    49 BranchObj::~BranchObj ()
    50 {
    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
    54 
    55 	BranchObj *po=(BranchObj*)(parObj);
    56 	BranchObj *bo;
    57 	if (po)
    58 	{
    59 		bo=((BranchObj*)(parObj))->getLastBranch();
    60 		if (!bo) po->unScroll();
    61 	}
    62 	clear();
    63 }
    64 
    65 bool BranchObj::operator< ( const BranchObj & other )
    66 {
    67     return  angle < other.angle;
    68 }
    69 
    70 bool BranchObj::operator== ( const BranchObj & other )
    71 {
    72     return angle == other.angle;
    73 }
    74 
    75 int BranchObjPtrList::compareItems ( QPtrCollection::Item i, QPtrCollection::Item j)
    76 {
    77 	// Make sure PtrList::find works
    78 	if (i==j) return 0;
    79 
    80 	if ( ((BranchObj*)(i))->angle > ((BranchObj*)(j))->angle )
    81 		return 1;
    82 	else
    83 		return -1;
    84 }
    85 
    86 void BranchObj::init () 
    87 {
    88     branch.setAutoDelete (false);
    89     floatimage.setAutoDelete (true);
    90     xlink.setAutoDelete (false);
    91 
    92 	if (parObj)
    93 	{
    94 		absPos=getRandPos();
    95 		absPos+=parObj->getChildPos();
    96 	}
    97 
    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 );
   101 
   102     lastSelectedBranch=-1;
   103 
   104     setChildObj(this);
   105 
   106 	scrolled=false;
   107 	tmpUnscrolled=false;
   108 
   109 	url="";
   110 	vymLink="";
   111 }
   112 
   113 void BranchObj::copy (BranchObj* other)
   114 {
   115     OrnamentedObj::copy(other);
   116 
   117 	branch.clear();
   118     BranchObj* b;
   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
   123 		addBranch(b);	
   124 
   125 	FloatImageObj *fi;
   126 	for (fi=other->floatimage.first(); fi;fi=other->floatimage.next() )
   127 		addFloatImage (fi);
   128 
   129 	scrolled=other->scrolled;
   130 	tmpUnscrolled=other->tmpUnscrolled;
   131 	setVisibility (other->visible);
   132 
   133 	url=other->url;
   134 	vymLink=other->vymLink;
   135 
   136 	angle=other->angle;
   137 
   138     positionBBox();
   139 }
   140 
   141 void BranchObj::clear() 
   142 {
   143 	floatimage.clear();
   144 	while (!xlink.isEmpty())
   145 		deleteXLink (xlink.first() );
   146 
   147 	BranchObj *bo;
   148 	while (!branch.isEmpty())
   149 	{
   150 		bo=branch.first();
   151 		branch.removeFirst();
   152 		delete (bo);
   153 	}
   154 }
   155 
   156 int BranchObj::getNum()
   157 {
   158 	if (parObj)
   159 		return ((BranchObj*)(parObj))->getNum ((BranchObj*)(this));
   160 	else
   161 		return 0;
   162 }
   163 
   164 int BranchObj::getNum(BranchObj *bo)
   165 {
   166 	// keep current pointer in branch, 
   167 	// otherwise save might fail
   168 	int cur=branch.at();
   169 	int ind=branch.findRef (bo);
   170 	branch.at(cur);
   171 	return ind;
   172 }
   173 
   174 int BranchObj::getFloatImageNum(FloatImageObj *fio)
   175 {
   176 	return floatimage.findRef (fio);
   177 }
   178 
   179 int BranchObj::countBranches()
   180 {
   181 	return branch.count();
   182 }
   183 
   184 int BranchObj::countFloatImages()
   185 {
   186 	return floatimage.count();
   187 }
   188 
   189 int BranchObj::countXLinks()
   190 {
   191 	return xlink.count();
   192 }
   193 
   194 void BranchObj::setParObjTmp(LinkableMapObj* lmo, QPoint m, int off)
   195 {
   196 	// Temporary link to lmo
   197 	// m is position of mouse pointer 
   198 	// offset 0: default 1: below lmo   -1 above lmo  (if possible)
   199 
   200 
   201 	BranchObj* o=(BranchObj*)(lmo);
   202 	if (!parObjTmpBuf) 
   203 		parObjTmpBuf=parObj;
   204 
   205 	// ignore mapcenter and mainbranch
   206 	if (lmo->getDepth()<2) off=0;
   207 	if (off==0)
   208 	{
   209 		link2ParPos=false;
   210 	//	parObj=o;
   211 	}	
   212 	else
   213 	{	
   214 		link2ParPos=true;
   215 	//	if (off>0)
   216 	//		parObj=o->getParObj();
   217 	//	else	
   218 	//		parObj=o->getParObj();
   219 	//	parObj=o;
   220 	}		
   221 	parObj=o;
   222 
   223 	depth=parObj->getDepth()+1;
   224 
   225 	// setLinkStyle calls updateLink, only set it once
   226 	if (style!=getDefLinkStyle() ) setLinkStyle (getDefLinkStyle());
   227 
   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
   232 	if (depth==1)
   233 	{	// new parent is the mapcenter itself
   234 
   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() );
   238 		move2RelPos (p);
   239 	} else
   240 	{	
   241 		int y;
   242 		if (off==0)
   243 		{
   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() ;
   248 			else
   249 				y=t.y();
   250 
   251 		} else
   252 		{
   253 			if (off<0)
   254 				// we want to link above lmo
   255 				y=o->y() - height() + 5;
   256 			else	
   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; 
   262 		}	
   263 		if (o->getOrientation()==OrientLeftOfCenter)
   264 			move ( o->getChildPos().x() - linkwidth, y );
   265 		else	
   266 			move (o->getChildPos().x() + linkwidth, y );
   267 	}	
   268 
   269 	// updateLink is called implicitly in move
   270 	reposition();	// FIXME shouldn't be this a request?
   271 }
   272 
   273 void BranchObj::unsetParObjTmp()
   274 {
   275 	if (parObjTmpBuf) 
   276 	{
   277 		link2ParPos=false;
   278 		parObj=parObjTmpBuf;
   279 		parObjTmpBuf=NULL;
   280 		depth=parObj->getDepth()+1;
   281 		setLinkStyle (getDefLinkStyle() );
   282 		updateLink();
   283 	}		
   284 }
   285 
   286 void BranchObj::unScroll()
   287 {
   288 	if (tmpUnscrolled) resetTmpUnscroll();
   289 	if (scrolled) toggleScroll();
   290 }
   291 
   292 void BranchObj::toggleScroll()
   293 {
   294 	BranchObj *bo;
   295 	if (scrolled)
   296 	{
   297 		scrolled=false;
   298 		systemFlags->deactivate("scrolledright");
   299 		for (bo=branch.first(); bo; bo=branch.next() )
   300 		{
   301 			bo->setVisibility(true);
   302 		}
   303 	} else
   304 	{
   305 		scrolled=true;
   306 		systemFlags->activate("scrolledright");
   307 		for (bo=branch.first(); bo; bo=branch.next() )
   308 		{
   309 			bo->setVisibility(false);
   310 		}
   311 	}
   312 	calcBBoxSize();
   313 	positionBBox();	
   314 	move (absPos.x(), absPos.y() );
   315 	forceReposition();
   316 }
   317 
   318 bool BranchObj::isScrolled()
   319 {
   320 	return scrolled;
   321 }
   322 
   323 bool BranchObj::hasScrolledParent(BranchObj *start)
   324 {
   325 	// Calls parents recursivly to
   326 	// find out, if we are scrolled at all.
   327 	// But ignore myself, just look at parents.
   328 
   329 	if (this !=start && scrolled) return true;
   330 
   331 	BranchObj* bo=(BranchObj*)(parObj);
   332 	if (bo) 
   333 		return bo->hasScrolledParent(start);
   334 	else
   335 		return false;
   336 }
   337 
   338 void BranchObj::tmpUnscroll()
   339 {
   340 	// Unscroll parent (recursivly)
   341 	BranchObj* bo=(BranchObj*)(parObj);
   342 	if (bo) bo->tmpUnscroll();
   343 		
   344 	// Unscroll myself
   345 	if (scrolled)
   346 	{
   347 		tmpUnscrolled=true;
   348 		systemFlags->activate("tmpUnscrolledright");
   349 		toggleScroll();
   350 	}	
   351 }
   352 
   353 void BranchObj::resetTmpUnscroll()
   354 {
   355 	// Unscroll parent (recursivly)
   356 	BranchObj* bo=(BranchObj*)(parObj);
   357 	if (bo)
   358 		bo->resetTmpUnscroll();
   359 		
   360 	// Unscroll myself
   361 	if (tmpUnscrolled)
   362 	{
   363 		tmpUnscrolled=false;
   364 		systemFlags->deactivate("tmpUnscrolledright");
   365 		toggleScroll();
   366 	}	
   367 }
   368 
   369 void BranchObj::setVisibility(bool v, int toDepth)
   370 {
   371     if (depth <= toDepth)
   372     {
   373 		frame->setVisibility(v);
   374 		heading->setVisibility(v);
   375 		systemFlags->setVisibility(v);
   376 		standardFlags->setVisibility(v);
   377 		LinkableMapObj::setVisibility (v);
   378 		
   379 		if (!scrolled && (depth < toDepth))
   380 		{
   381 			// Now go recursivly through all childs
   382 			BranchObj* b;
   383 			for (b=branch.first(); b;b=branch.next() ) 
   384 				b->setVisibility (v,toDepth);	
   385 			FloatImageObj *fio;
   386 			for (fio=floatimage.first(); fio; fio=floatimage.next())
   387 				fio->setVisibility (v);
   388 			XLinkObj* xlo;
   389 			for (xlo=xlink.first(); xlo;xlo=xlink.next() ) 
   390 				xlo->setVisibility ();	
   391 		}
   392     } // depth <= toDepth	
   393 	requestReposition();
   394 }	
   395 
   396 void BranchObj::setVisibility(bool v)
   397 {
   398     setVisibility (v,MAX_DEPTH);
   399 }
   400 
   401 
   402 void BranchObj::setLinkColor ()
   403 {
   404 	// Overloaded from LinkableMapObj
   405 	// BranchObj can use color of heading
   406 
   407 	if (mapEditor->getLinkColorHint()==HeadingColor)
   408 		LinkableMapObj::setLinkColor (heading->getColor() );
   409 	else	
   410 		LinkableMapObj::setLinkColor ();
   411 }
   412 
   413 void BranchObj::setColor (QColor col, bool colorChilds)
   414 {
   415     heading->setColor(col);
   416 	setLinkColor();
   417     if (colorChilds) 
   418     {
   419 		BranchObj *bo;
   420 		for (bo=branch.first(); bo; bo=branch.next() )
   421 			bo->setColor(col,colorChilds);
   422     }	
   423 }
   424 
   425 QColor BranchObj::getColor()
   426 {
   427 	return heading->getColor();
   428 }
   429 
   430 BranchObj* BranchObj::first()
   431 {
   432 	itLast=NULL;	
   433 	return this; 
   434 }
   435 	
   436 BranchObj* BranchObj::next()
   437 {
   438 	BranchObj *lmo;
   439 	BranchObj *bo=branch.first();
   440 	BranchObj *po=(BranchObj*)(parObj);
   441 
   442 	if (!itLast)
   443 	{	// We are just beginning at the mapCenter
   444 		if (bo) 
   445 		{
   446 			itLast=this;
   447 			return bo;
   448 		}	
   449 		else
   450 		{
   451 			itLast=NULL;
   452 			return NULL;
   453 		}	
   454 	}
   455 
   456 	if (itLast==parObj)
   457 	{	// We come from above
   458 		if (bo)
   459 		{
   460 			// there are childs, go there
   461 			itLast=this;
   462 			return bo;
   463 		}	
   464 		else
   465 		{	// no childs, try to go up again
   466 			if (po)
   467 			{
   468 				// go up
   469 				itLast=this;
   470 				lmo=po->next();
   471 				itLast=this;
   472 				return lmo;
   473 
   474 			}	
   475 			else
   476 			{
   477 				// can't go up, I am mapCenter
   478 				itLast=NULL;
   479 				return NULL;
   480 			}	
   481 		}
   482 	}
   483 
   484 	// Try to find last child, we came from, in my own childs
   485 	bool searching=true;
   486 	while (bo && searching)
   487 	{
   488 		if (itLast==bo) searching=false;
   489 		bo=branch.next();
   490 	}
   491 	if (!searching)
   492 	{	// found lastLMO in my childs
   493 		if (bo)
   494 		{
   495 			// found a brother of lastLMO 
   496 			itLast=this;
   497 			return bo;
   498 		}	
   499 		else
   500 		{
   501 			if (po)
   502 			{
   503 				// go up
   504 				itLast=this;
   505 				lmo=po->next();
   506 				itLast=this;
   507 				return lmo;
   508 			}
   509 			else
   510 			{
   511 				// can't go up, I am mapCenter
   512 				itLast=NULL;
   513 				return NULL;
   514 			}	
   515 		}
   516 	}
   517 
   518 	// couldn't find last child, it must be a nephew of mine
   519 	bo=branch.first();
   520 	if (bo)
   521 	{
   522 		// proceed with my first child
   523 		itLast=this;	
   524 		return bo;
   525 	}	
   526 	else
   527 	{
   528 		// or go back to my parents
   529 		if (po)
   530 		{
   531 			// go up
   532 			itLast=this;
   533 			lmo=po->next();
   534 			itLast=this;
   535 			return lmo;
   536 		}	
   537 		else
   538 		{
   539 			// can't go up, I am mapCenter
   540 			itLast=NULL;
   541 			return NULL;
   542 		}	
   543 	}	
   544 }
   545 
   546 BranchObj* BranchObj::getLastIterator()
   547 {
   548 	return itLast;
   549 }
   550 
   551 void BranchObj::setLastIterator(BranchObj* it)
   552 {
   553 	itLast=it;
   554 }
   555 
   556 
   557 void BranchObj::move (double x, double y)
   558 {
   559 	OrnamentedObj::move (x,y);
   560     positionBBox();
   561 }
   562 
   563 void BranchObj::move (QPoint p)
   564 {
   565 	move (p.x(), p.y());
   566 }
   567 
   568 void BranchObj::moveBy (double x, double y)
   569 {
   570 	OrnamentedObj::moveBy (x,y);
   571     positionBBox();
   572     BranchObj* b;
   573     for (b=branch.first(); b;b=branch.next() ) 
   574 		b->moveBy (x,y);
   575 }
   576 	
   577 void BranchObj::moveBy (QPoint p)
   578 {
   579 	moveBy (p.x(), p.y());
   580 }
   581 
   582 
   583 void BranchObj::positionBBox()
   584 {
   585 	// FIXME testing (optimization)
   586 	/*
   587 	QString h=getHeading();
   588 	if (!h.isEmpty())
   589 		cout << "BO::positionBBox("<<h<<")\n";
   590 	else	
   591 		cout << "BO::positionBBox (noHeading)\n";
   592 	*/	
   593 
   594     heading->positionBBox();
   595 	systemFlags->positionBBox();
   596 	standardFlags->positionBBox();
   597 	// It seems that setting x,y also affects width,height
   598 	int w_old=bbox.width();
   599 	int h_old=bbox.height();
   600     bbox.setX (absPos.x() );
   601 	bbox.setY (absPos.y() );
   602 	bbox.setWidth(w_old);
   603 	bbox.setHeight(h_old);
   604 	
   605 	setSelBox();
   606 
   607 	// set the frame
   608 	frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
   609 
   610 	// Update links to other branches
   611 	XLinkObj *xlo;
   612     for (xlo=xlink.first(); xlo; xlo=xlink.next() )
   613 		xlo->updateXLink();
   614 }
   615 
   616 void BranchObj::calcBBoxSize()
   617 {
   618     QSize heading_r=heading->getSize();
   619     int heading_w=static_cast <int> (heading_r.width() );
   620     int heading_h=static_cast <int> (heading_r.height() );
   621     QSize sysflags_r=systemFlags->getSize();
   622 	int sysflags_h=sysflags_r.height();
   623 	int sysflags_w=sysflags_r.width();
   624     QSize stanflags_r=standardFlags->getSize();
   625 	int stanflags_h=stanflags_r.height();
   626 	int stanflags_w=stanflags_r.width();
   627     int w;
   628     int h;
   629 
   630 	// set width to sum of all widths
   631 	w=heading_w + sysflags_w + stanflags_w;
   632 	// set height to maximum needed height
   633 	h=max (sysflags_h,stanflags_h);
   634 	h=max (h,heading_h);
   635 
   636     w+=frame->getBorder();
   637     h+=frame->getBorder();
   638     bbox.setSize (QSize (w,h));
   639 }
   640 
   641 LinkableMapObj* BranchObj::findMapObj(QPoint p, LinkableMapObj* excludeLMO)
   642 {
   643 	// Search branches
   644     BranchObj *b;
   645     LinkableMapObj *lmo;
   646     for (b=branch.first(); b; b=branch.next() )
   647     {	
   648 		lmo=b->findMapObj(p, excludeLMO);
   649 		if (lmo != NULL) return lmo;
   650     }
   651 	
   652 	// Search myself
   653     if (inBBox (p) && (this != excludeLMO) && isVisibleObj() ) 
   654 		return this;
   655 
   656 	// Search float images
   657 	FloatImageObj *foi;
   658     for (foi=floatimage.first(); foi; foi=floatimage.next() )
   659 		if (foi->inBBox(p) && (foi != excludeLMO) && foi->getParObj()!= excludeLMO) return foi;
   660 
   661     return NULL;
   662 }
   663 
   664 void BranchObj::setHeading(QString s)
   665 {
   666     // Adjusting font size
   667     QFont font=heading->getFont();
   668 	if (depth==0)
   669 		font.setPointSize(16);
   670 	else	
   671 		if (depth>1) 
   672 			font.setPointSize(10);
   673 		else
   674 			font.setPointSize(12);
   675     heading->setFont(font);
   676     heading->setText(s);	// set new heading
   677 	calcBBoxSize();			// recalculate bbox
   678     positionBBox();			// rearrange contents
   679 	requestReposition();
   680 }
   681 
   682 void BranchObj::setURL(QString s)
   683 {
   684 	url=s;
   685 	if (!url.isEmpty())
   686 		systemFlags->activate("url");
   687 	else	
   688 		systemFlags->deactivate("url");
   689 	calcBBoxSize();			// recalculate bbox
   690     positionBBox();			// rearrange contents
   691 	forceReposition();
   692 }
   693 
   694 QString BranchObj::getURL()
   695 {
   696 	return url;
   697 }
   698 
   699 void BranchObj::setVymLink(QString s)
   700 {
   701 	if (!s.isEmpty())
   702 	{
   703 		// We need the relative (from loading) 
   704 		// or absolute path (from User event)
   705 		// and build the absolute path.
   706 		// Note: If we have relative, use path of
   707 		// current map to build absolute path
   708 		QDir d(s);
   709 		if (!d.path().startsWith ("/"))
   710 		{
   711 			QString p=mapEditor->getDestPath();
   712 			int i=p.findRev("/",-1);
   713 			d.setPath(p.left(i)+"/"+s);
   714 			d.convertToAbs();
   715 		}
   716 		vymLink=d.path();
   717 		systemFlags->activate("vymLink");
   718 	}	
   719 	else	
   720 	{
   721 		systemFlags->deactivate("vymLink");
   722 		vymLink="";
   723 	}	
   724 	calcBBoxSize();			// recalculate bbox
   725     positionBBox();			// rearrange contents
   726 	forceReposition();
   727 }
   728 
   729 QString BranchObj::getVymLink()
   730 {
   731 	return vymLink;
   732 }
   733 
   734 QString BranchObj::saveToDir (const QString &tmpdir,const QString &prefix, const QPoint& offset)
   735 {
   736     QString s,a;
   737 	QString scrolledAttr;
   738 	if (scrolled) 
   739 		scrolledAttr=attribut ("scrolled","yes");
   740 	else
   741 		scrolledAttr="";
   742 
   743 	QString posAttr;
   744 	if (depth<2) posAttr=
   745 		attribut("absPosX",QString().setNum(absPos.x(),10)) +
   746 		attribut("absPosY",QString().setNum(absPos.y(),10)); 
   747 	else
   748 		posAttr="";
   749 
   750 	QString urlAttr;
   751 	if (!url.isEmpty())
   752 		urlAttr=attribut ("url",url);
   753 
   754 	QString vymLinkAttr;
   755 	if (!vymLink.isEmpty())
   756 		vymLinkAttr=attribut ("vymLink",convertToRel(mapEditor->getDestPath(),vymLink) );
   757 
   758 	QString frameAttr;
   759 	if (frame->getFrameType()!=NoFrame)
   760 		frameAttr=attribut ("frameType",frame->getFrameTypeName());
   761 	else
   762 		frameAttr="";
   763 
   764 	// save area, if not scrolled
   765 	QString areaAttr;
   766 	if (!((BranchObj*)(parObj))->isScrolled() )
   767 	{
   768 		areaAttr=
   769 			attribut("x1",QString().setNum(absPos.x()-offset.x(),10)) +
   770 			attribut("y1",QString().setNum(absPos.y()-offset.y(),10)) +
   771 			attribut("x2",QString().setNum(absPos.x()+width()-offset.x(),10)) +
   772 			attribut("y2",QString().setNum(absPos.y()+height()-offset.y(),10));
   773 
   774 	} else
   775 		areaAttr="";
   776 	
   777     s=beginElement ("branch" +scrolledAttr +posAttr +urlAttr +vymLinkAttr +frameAttr +areaAttr );
   778     incIndent();
   779 
   780 	// save heading
   781     s=s+valueElement("heading", getHeading(),
   782 		attribut ("textColor",QColor(heading->getColor()).name()));
   783 
   784 	// save names of flags set
   785 	s+=standardFlags->saveToDir(tmpdir,prefix,0);
   786 	
   787 	// save note
   788 	if (!note.isEmpty() )
   789 		s+=note.saveToDir();
   790 	
   791 	// Save branches
   792     BranchObj *bo;
   793     for (bo=branch.first(); bo; bo=branch.next() )
   794 		s+=bo->saveToDir(tmpdir,prefix,offset);
   795 
   796 	// Save FloatImages
   797 	FloatImageObj *fio;
   798 	for (fio=floatimage.first(); fio; fio=floatimage.next() )
   799 		s+=fio->saveToDir (tmpdir,prefix);
   800 
   801 	// Save XLinks
   802 	XLinkObj *xlo;
   803     for (xlo=xlink.first(); xlo; xlo=xlink.next() )
   804 		s+=xlo->saveToDir();
   805 
   806     decIndent();
   807     s+=endElement   ("branch");
   808     return s;
   809 }
   810 
   811 void BranchObj::addXLink (XLinkObj *xlo)
   812 {
   813 	xlink.append (xlo);
   814 	
   815 }
   816 
   817 void BranchObj::removeXLinkRef (XLinkObj *xlo)
   818 {
   819 	xlink.remove (xlo);
   820 }
   821 
   822 void BranchObj::deleteXLink(XLinkObj *xlo)
   823 {
   824 	xlo->deactivate();
   825 	if (!xlo->isUsed()) delete (xlo);
   826 }
   827 
   828 void BranchObj::deleteXLinkAt (int i)
   829 {
   830 	XLinkObj *xlo=xlink.at(i);
   831 	xlo->deactivate();
   832 	if (!xlo->isUsed()) delete(xlo);
   833 }
   834 
   835 XLinkObj* BranchObj::XLinkAt (int i)
   836 {
   837 	return xlink.at(i);
   838 }
   839 
   840 int BranchObj::countXLink()
   841 {
   842 	return xlink.count();
   843 }
   844 
   845 BranchObj* BranchObj::XLinkTargetAt (int i)
   846 {
   847 	if (xlink.at(i))
   848 		return xlink.at(i)->otherBranch (this);
   849 	else
   850 		return NULL;
   851 }
   852 
   853 LinkableMapObj* BranchObj::addFloatImage ()
   854 {
   855 	FloatImageObj *newfi=new FloatImageObj (canvas,this);
   856 	floatimage.append (newfi);
   857 	if (hasScrolledParent(this) )
   858 		newfi->setVisibility (false);
   859 	else	
   860 		newfi->setVisibility(visible);
   861 	requestReposition();
   862 	return newfi;
   863 }
   864 
   865 LinkableMapObj* BranchObj::addFloatImage (FloatImageObj *fio)
   866 {
   867 	FloatImageObj *newfi=new FloatImageObj (canvas,this);
   868 	floatimage.append (newfi);
   869 	newfi->copy (fio);
   870 	if (hasScrolledParent(this) )
   871 		newfi->setVisibility (false);
   872 	else	
   873 		newfi->setVisibility(visible);
   874 	requestReposition();
   875 	return newfi;
   876 }
   877 
   878 FloatImageObj* BranchObj::getFirstFloatImage ()
   879 {
   880     return floatimage.first();
   881 }
   882 
   883 FloatImageObj* BranchObj::getLastFloatImage ()
   884 {
   885     return floatimage.last();
   886 }
   887 
   888 FloatImageObj* BranchObj::getFloatImageNum (const uint &i)
   889 {
   890     return floatimage.at(i);
   891 }
   892 
   893 void BranchObj::removeFloatImage (FloatImageObj *fio)
   894 {
   895 	floatimage.remove (fio);
   896 	requestReposition();
   897 }
   898 
   899 void BranchObj::savePosInAngle ()
   900 {
   901 	// Save position in angle
   902     BranchObj *b;
   903 	int i=0;
   904     for (b=branch.first(); b; b=branch.next() )
   905 	{
   906 		b->angle=i;
   907 		i++;
   908 	}
   909 }
   910 
   911 BranchObj* BranchObj::addBranch()
   912 {
   913     BranchObj* newbo=new BranchObj(canvas,this);
   914     branch.append (newbo);
   915     newbo->setParObj(this);
   916     newbo->setColor(getColor(),false);	
   917     newbo->setLinkColor();	
   918     newbo->setHeading ("new");
   919 	newbo->setLinkStyle (newbo->getDefLinkStyle());
   920 	if (scrolled)
   921 		newbo->setVisibility (false);
   922 	else	
   923 		newbo->setVisibility(visible);
   924 	newbo->updateLink();	
   925 	requestReposition();
   926 	return newbo;
   927 }
   928 
   929 BranchObj* BranchObj::addBranch(BranchObj* bo)
   930 {
   931     BranchObj* newbo=new BranchObj(canvas,this);
   932     branch.append (newbo);
   933     newbo->copy(bo);
   934     newbo->setParObj(this);
   935 	newbo->setHeading (newbo->getHeading());	// adjust fontsize to depth
   936 	newbo->setLinkStyle (newbo->getDefLinkStyle());
   937 	if (scrolled)
   938 		newbo->setVisibility (false);
   939 	else	
   940 		newbo->setVisibility(bo->visible);
   941 	newbo->updateLink();	
   942 	requestReposition();
   943 	return newbo;
   944 }
   945 
   946 BranchObj* BranchObj::addBranchPtr(BranchObj* bo)
   947 {
   948 	branch.append (bo);
   949 	bo->setParObj (this);
   950 	bo->depth=depth+1;
   951 	bo->setLinkStyle (bo->getDefLinkStyle() );
   952 	if (scrolled) tmpUnscroll();
   953 	setLastSelectedBranch (bo);
   954 	return bo;
   955 }
   956 
   957 BranchObj* BranchObj::insertBranch(int pos)
   958 {
   959 	savePosInAngle();
   960 	// Add new bo and resort branches
   961 	BranchObj *newbo=addBranch ();
   962 	newbo->angle=pos-0.5;
   963 	branch.sort();
   964 	return newbo;
   965 }
   966 
   967 BranchObj* BranchObj::insertBranch(BranchObj* bo, int pos)
   968 {
   969 	savePosInAngle();
   970 	// Add new bo and resort branches
   971 	bo->angle=pos-0.5;
   972 	BranchObj *newbo=addBranch (bo);
   973 	branch.sort();
   974 	return newbo;
   975 }
   976 
   977 BranchObj* BranchObj::insertBranchPtr (BranchObj* bo, int pos)
   978 {
   979 	savePosInAngle();
   980 	// Add new bo and resort branches
   981 	bo->angle=pos-0.5;
   982 	branch.append (bo);
   983 	bo->setParObj (this);
   984 	bo->depth=depth+1;
   985 	bo->setLinkStyle (bo->getDefLinkStyle() );
   986 	if (scrolled) tmpUnscroll();
   987 	setLastSelectedBranch (bo);
   988 	branch.sort();
   989 	return bo;
   990 }
   991 
   992 void BranchObj::removeBranchHere(BranchObj* borem)
   993 {
   994 	// This removes the branch bo from list, but 
   995 	// inserts its childs at the place of bo
   996 	BranchObj *bo;
   997 	bo=borem->getLastBranch();
   998 	while (bo)
   999 	{
  1000 		bo->moveBranchTo (borem,1);
  1001 		bo=borem->getLastBranch();
  1002 	}	
  1003 	removeBranch (borem);
  1004 }
  1005 
  1006 void BranchObj::removeChilds()
  1007 {
  1008 	clear();
  1009 }
  1010 
  1011 void BranchObj::removeBranch(BranchObj* bo)
  1012 {
  1013     // if bo is not in branch remove returns false, we
  1014     // don't care...
  1015 	
  1016     if (branch.remove (bo))
  1017 		delete (bo);
  1018 	else
  1019 		qWarning ("BranchObj::removeBranch tried to remove non existing branch?!\n");
  1020 	requestReposition();
  1021 }
  1022 
  1023 void BranchObj::removeBranchPtr(BranchObj* bo)
  1024 {
  1025 	branch.remove (bo);
  1026 	requestReposition();
  1027 }
  1028 
  1029 void BranchObj::setLastSelectedBranch (BranchObj* bo)
  1030 {
  1031     lastSelectedBranch=branch.find(bo);
  1032 }
  1033 
  1034 BranchObj* BranchObj::getLastSelectedBranch ()
  1035 {
  1036     if (lastSelectedBranch>=0) 
  1037 	{
  1038 		BranchObj* bo=branch.at(lastSelectedBranch);
  1039 		if (bo) return bo;
  1040     }	
  1041     return branch.first();
  1042 }
  1043 
  1044 BranchObj* BranchObj::getFirstBranch ()
  1045 {
  1046     return branch.first();
  1047 }
  1048 
  1049 BranchObj* BranchObj::getLastBranch ()
  1050 {
  1051     return branch.last();
  1052 }
  1053 
  1054 BranchObj* BranchObj::getBranchNum (const uint &i)
  1055 {
  1056     return branch.at(i);
  1057 }
  1058 
  1059 
  1060 BranchObj* BranchObj::moveBranchUp(BranchObj* bo1) // move a branch up (modify myself)
  1061 {
  1062 	savePosInAngle();
  1063     int i=branch.find(bo1);
  1064     if (i>0) 
  1065 	{	// -1 if bo1 not found 
  1066 		branch.at(i)->angle--;
  1067 		branch.at(i-1)->angle++;
  1068 		branch.sort();
  1069 		return branch.at(i-1);
  1070 	} else
  1071 		return branch.at(i);
  1072 }
  1073 
  1074 BranchObj* BranchObj::moveBranchDown(BranchObj* bo1)
  1075 {
  1076 	savePosInAngle();
  1077     int i=branch.find(bo1);
  1078 	int j;
  1079 	if (branch.next())
  1080 	{
  1081 		j = branch.at();
  1082 		branch.at(i)->angle++;
  1083 		branch.at(j)->angle--;
  1084 		branch.sort();
  1085 		return branch.at(j);
  1086 	} else
  1087 		return branch.at(i);
  1088 }
  1089 
  1090 BranchObj* BranchObj::moveBranchTo (BranchObj* dst, int pos)
  1091 {
  1092 	// Find current parent and 
  1093 	// remove pointer to myself there
  1094 
  1095 	if (!dst) return NULL;
  1096 
  1097 	BranchObj *par=(BranchObj*)(parObj);
  1098 	if (par)
  1099 		par->removeBranchPtr (this);
  1100 	else
  1101 		return NULL;
  1102 
  1103 	if (pos<0||dst->getDepth()==0)
  1104 	{	
  1105 		// links myself as last branch at dst
  1106 		dst->addBranchPtr (this);
  1107 		return this;
  1108 	} else
  1109 	{
  1110 		// inserts me at pos in parent of dst
  1111 		par=(BranchObj*)(dst->getParObj());
  1112 		if (par)
  1113 			return par->insertBranchPtr (this,pos);
  1114 		else
  1115 			return NULL;
  1116 	}	
  1117 }
  1118 
  1119 void BranchObj::alignRelativeTo (QPoint ref)
  1120 {
  1121 /* FIXME testing
  1122 	if (!getHeading().isEmpty())
  1123 		cout << "BO::alignRelTo "<<getHeading()<<endl;
  1124 	else	
  1125 		cout << "BO::alignRelTo  ???"<<endl;
  1126 	cout << "  d="<<depth<<endl;
  1127 */	
  1128 	int th = bboxTotal.height();	
  1129 
  1130 	// If I am the mapcenter or a mainbranch, reposition heading
  1131 	if (depth<2)
  1132 	{
  1133 		move (absPos.x(),absPos.y());
  1134 		if (depth==1)
  1135 		{
  1136 			// Calc angle to mapCenter if I am a mainbranch
  1137 			// needed for reordering the mainbranches clockwise 
  1138 			// around mapcenter 
  1139 			angle=getAngle (QPoint ((int)(x() - parObj->getChildPos().x() ), 
  1140 									(int)(y() - parObj->getChildPos().y() ) ) );
  1141 		}	
  1142 	} 
  1143 	else
  1144     {
  1145 		// Align myself depending on orientation and parent, but
  1146 		// only if I am not the mainbranch or mapcenter itself
  1147 		switch (orientation) 
  1148 		{
  1149 			case OrientLeftOfCenter:
  1150 				move (ref.x()-bbox.width(), ref.y() + (th-bbox.height())/2 );
  1151 			break;
  1152 			case OrientRightOfCenter:	
  1153 				move (ref.x(), ref.y() + (th-bbox.height())/2 );
  1154 			break;
  1155 			default:
  1156 				cout <<"LMO::alignRelativeTo: oops, no orientation given...\n";
  1157 			break;
  1158 		}		
  1159     }		
  1160 
  1161 	FloatImageObj *fio;
  1162     for (fio=floatimage.first(); fio; fio=floatimage.next() )
  1163 		fio->reposition();
  1164 
  1165 	if (scrolled) return;
  1166 
  1167     // Set reference point for alignment of childs
  1168     QPoint ref2;
  1169     if (orientation==OrientLeftOfCenter)
  1170 		ref2.setX(childPos.x() - linkwidth);
  1171     else	
  1172 		ref2.setX(childPos.x() + linkwidth);
  1173 
  1174 	if (depth==1)
  1175 		ref2.setY(absPos.y()-(bboxTotal.height()-bbox.height())/2);
  1176 	else	
  1177 		ref2.setY(ref.y() );	
  1178 
  1179     // Align the childs depending on reference point 
  1180     BranchObj *b;
  1181     for (b=branch.first(); b; b=branch.next() )
  1182     {	
  1183 		b->alignRelativeTo (ref2);
  1184 		ref2.setY(ref2.y() + b->getBBoxSizeWithChilds().height() );
  1185     }
  1186 }
  1187 
  1188 
  1189 void BranchObj::reposition()
  1190 {	
  1191 /* FIXME testing
  1192 	if (!getHeading().isEmpty())
  1193 		cout << "BO::reposition  "<<getHeading()<<endl;
  1194 	else	
  1195 		cout << "BO::reposition  ???"<<endl;
  1196 */		
  1197 	if (depth==0)
  1198 	{
  1199 		// only calculate the sizes once. If the deepest LMO 
  1200 		// changes its height,
  1201 		// all upper LMOs have to change, too.
  1202 		calcBBoxSizeWithChilds();
  1203 	    alignRelativeTo ( QPoint (absPos.x(),
  1204 			absPos.y()-(bboxTotal.height()-bbox.height())/2) );
  1205 		branch.sort();	
  1206 	} else
  1207 	{
  1208 		// This is only important for moving branches:
  1209 		// For editing a branch it isn't called...
  1210 	    alignRelativeTo ( QPoint (absPos.x(),
  1211 							absPos.y()-(bboxTotal.height()-bbox.height())/2) );
  1212 	}
  1213 }
  1214 
  1215 
  1216 QRect BranchObj::getTotalBBox()
  1217 {
  1218 	QRect r=bbox;
  1219 
  1220 	if (scrolled) return r;
  1221 
  1222 	BranchObj* b;
  1223 	for (b=branch.first();b ;b=branch.next() )
  1224 		r=addBBox(b->getTotalBBox(),r);
  1225 
  1226 	FloatImageObj* fio;
  1227 	for (fio=floatimage.first();fio ;fio=floatimage.next() )
  1228 		r=addBBox(fio->getTotalBBox(),r);
  1229 		
  1230 	return r;
  1231 }
  1232 
  1233 QRect BranchObj::getBBoxSizeWithChilds()
  1234 {
  1235 	return bboxTotal;
  1236 }
  1237 
  1238 void BranchObj::calcBBoxSizeWithChilds()
  1239 {
  1240 	// This is called only from reposition and
  1241 	// and only for mapcenter. So it won't be
  1242 	// called more than once for a single user 
  1243 	// action
  1244 	
  1245 	// Calculate size of LMO including all childs (to align them later)
  1246 
  1247 	bboxTotal.setX(bbox.x() );
  1248 	bboxTotal.setY(bbox.y() );
  1249 
  1250 	// if branch is scrolled, ignore childs, but still consider floatimages
  1251 	if (scrolled)
  1252 	{
  1253 		bboxTotal.setWidth (bbox.width());
  1254 		bboxTotal.setHeight(bbox.height());
  1255 		return;
  1256 	}
  1257 	
  1258 	QRect r(0,0,0,0);
  1259 	QRect br;
  1260 	// Now calculate recursivly
  1261 	// sum of heights 
  1262 	// maximum of widths 
  1263 	// minimum of y
  1264 	BranchObj* b;
  1265 	for (b=branch.first();b ;b=branch.next() )
  1266 	{
  1267 		b->calcBBoxSizeWithChilds();
  1268 		br=b->getBBoxSizeWithChilds();
  1269 		r.setWidth( max (br.width(), r.width() ));
  1270 		r.setHeight(br.height() + r.height() );
  1271 		if (br.y()<bboxTotal.y()) bboxTotal.setY(br.y());
  1272 	}
  1273 	// Add myself and also
  1274 	// add width of link to sum if necessary
  1275 	if (branch.isEmpty())
  1276 		bboxTotal.setWidth (bbox.width() + r.width() );
  1277 	else	
  1278 		bboxTotal.setWidth (bbox.width() + r.width() + linkwidth);
  1279 	bboxTotal.setHeight(max (r.height(),  bbox.height() ) );
  1280 //	frame->setRect(QRect(bbox.x(),bbox.y(),bbox.width(),bbox.height() ) );
  1281 }
  1282 
  1283 void BranchObj::select()
  1284 {
  1285     LinkableMapObj::select();
  1286 	// Tell parent that I am selected now:
  1287 	BranchObj* po=(BranchObj*)(parObj);
  1288     if (po)	// TODO	    Try to get rid of this cast...
  1289         po->setLastSelectedBranch(this);
  1290 		
  1291 	// temporary unscroll, if we have scrolled parents somewhere
  1292 	if (parObj) ((BranchObj*)(parObj))->tmpUnscroll();
  1293 
  1294 	// set Text in Editor	
  1295 	textEditor->setText(note.getNote() );
  1296 	QString fnh=note.getFilenameHint();
  1297 	if (fnh!="")
  1298 		textEditor->setFilenameHint(note.getFilenameHint() );
  1299 	else	
  1300 		textEditor->setFilenameHint(getHeading() );
  1301 	textEditor->setFontHint (note.getFontHint() );
  1302 	connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag() ) ); 
  1303 	connect (textEditor, SIGNAL (fontSizeHasChanged() ), this, SLOT (updateNoteFlag() ) ); 
  1304 
  1305 	// Show URL and link in statusbar
  1306 	QString status;
  1307 	if (!url.isEmpty()) status+="URL: "+url+"  ";
  1308 	if (!vymLink.isEmpty()) status+="Link: "+vymLink;
  1309 	if (!status.isEmpty()) mainWindow->statusMessage (status);
  1310 
  1311 	// Update Toolbar
  1312 	standardFlags->updateToolbar();
  1313 
  1314 	// Update Browserbutton
  1315 	if (!url.isEmpty())
  1316 		actionEditOpenURL->setEnabled (true);
  1317 	else	
  1318 		actionEditOpenURL->setEnabled (false);
  1319 
  1320 	// Update actions in mapeditor
  1321 	mapEditor->updateActions();
  1322 }
  1323 
  1324 void BranchObj::unselect()
  1325 {
  1326 	LinkableMapObj::unselect();
  1327 	// Delete any messages like vymLink in StatusBar
  1328 	mainWindow->statusMessage ("");
  1329 
  1330 	// save note from editor and set flag
  1331 	// text is done by updateNoteFlag(), just save
  1332 	// filename here
  1333 	note.setFilenameHint (textEditor->getFilename());
  1334 
  1335 	// reset temporary unscroll, if we have scrolled parents somewhere
  1336 	if (parObj) ((BranchObj*)(parObj))->resetTmpUnscroll();
  1337 
  1338 	// Disconnect textEditor from this LMO
  1339 	disconnect( textEditor, SIGNAL(textHasChanged()), 0, 0 );
  1340 	disconnect( textEditor, SIGNAL (fontSizeHasChanged()),0,0 ); 
  1341 
  1342 	// Erase content of editor 
  1343 	textEditor->setInactive();
  1344 
  1345 	// unselect all buttons in toolbar
  1346 	standardFlagsDefault->updateToolbar();
  1347 }
  1348 
  1349 QString BranchObj::getSelectString()
  1350 {
  1351 	QString s;
  1352 	if (parObj)
  1353 	{
  1354 		if (depth==1)
  1355 			s= "bo:" + QString("%1").arg(getNum());
  1356 		else	
  1357 			s= ((BranchObj*)(parObj))->getSelectString() + ",bo:" + QString("%1").arg(getNum());
  1358 	} else
  1359 		s="mc:";
  1360 	return s;
  1361 }
  1362