vymmodel.cpp
author insilmaril
Thu, 30 Apr 2009 11:52:49 +0000
changeset 762 ffb95cd03156
parent 761 0301e6109702
child 763 8c028a5d9083
permissions -rw-r--r--
further speedup during load. positions of branches are saved (again)
     1 #include <QApplication>
     2 #include <typeinfo>
     3 
     4 #include "vymmodel.h"
     5 
     6 #include "treeitem.h"
     7 #include "branchitem.h"
     8 #include "mapcenteritem.h"
     9 #include "editxlinkdialog.h"
    10 #include "exports.h"
    11 #include "exportxhtmldialog.h"
    12 #include "file.h"
    13 #include "geometry.h"		// for addBBox
    14 #include "mainwindow.h"
    15 #include "mapcenterobj.h"
    16 #include "misc.h"
    17 #include "parser.h"
    18 #include "selection.h"
    19 
    20 
    21 #include "warningdialog.h"
    22 #include "xml-freemind.h"
    23 #include "xmlobj.h"
    24 #include "xml-vym.h"
    25 
    26 
    27 extern bool debug;
    28 extern Main *mainWindow;
    29 extern Settings settings;
    30 extern QString tmpVymDir;
    31 
    32 extern TextEditor *textEditor;
    33 
    34 extern QString clipboardDir;
    35 extern QString clipboardFile;
    36 extern bool clipboardEmpty;
    37 
    38 extern ImageIO imageIO;
    39 
    40 extern QString vymName;
    41 extern QString vymVersion;
    42 extern QDir vymBaseDir;
    43 
    44 extern QDir lastImageDir;
    45 extern QDir lastFileDir;
    46 
    47 extern FlagRowObj *standardFlagsDefault;
    48 
    49 extern Settings settings;
    50 
    51 
    52 
    53 int VymModel::mapNum=0;	// make instance
    54 
    55 VymModel::VymModel() 
    56 {
    57 //    cout << "Const VymModel\n";
    58 	init();
    59 	rootItem->setModel (this);
    60 }
    61 
    62 
    63 VymModel::~VymModel() 
    64 {
    65 //    cout << "Destr VymModel\n";
    66 	autosaveTimer->stop();
    67 	fileChangedTimer->stop();
    68 	clear();
    69 }	
    70 
    71 void VymModel::clear() 
    72 {
    73 	selModel->clearSelection();
    74 
    75 	//QModelIndex ri=index(rootItem);
    76 	//removeRows (0, rowCount(ri),ri);		// FIXME-2 here should be at least a beginRemoveRows...
    77 }
    78 
    79 void VymModel::init () 
    80 {
    81 	// We should have at least one map center to start with
    82 	// addMapCenter();  FIXME-2 VM create this in MapEditor as long as model is part of that
    83 
    84 	// No MapEditor yet
    85 	mapEditor=NULL;
    86 
    87 	// Also no scene yet (should not be needed anyway)  FIXME-3 VM
    88 	mapScene=NULL;
    89 
    90 	// History 
    91 	mapNum++;
    92     mapChanged=false;
    93 	mapDefault=true;
    94 	mapUnsaved=false;
    95 
    96 	curStep=0;
    97 	redosAvail=0;
    98 	undosAvail=0;
    99 
   100  	stepsTotal=settings.readNumEntry("/history/stepsTotal",100);
   101 	undoSet.setEntry ("/history/stepsTotal",QString::number(stepsTotal));
   102 	mainWindow->updateHistory (undoSet);
   103 
   104 	// Create tmp dirs
   105 	makeTmpDirectories();
   106 	
   107 	// Files
   108 	zipped=true;
   109 	filePath="";
   110 	fileName=tr("unnamed");
   111 	mapName="";
   112 	blockReposition=false;
   113 	blockSaveState=false;
   114 
   115 	autosaveTimer=new QTimer (this);
   116 	connect(autosaveTimer, SIGNAL(timeout()), this, SLOT(autosave()));
   117 
   118 	fileChangedTimer=new QTimer (this);
   119 	fileChangedTimer->start(3000);
   120 	connect(fileChangedTimer, SIGNAL(timeout()), this, SLOT(fileChanged()));
   121 
   122 
   123 	// selections
   124 	selModel=NULL;
   125 
   126 	// find routine
   127 	findCurrent=NULL;				
   128 	findPrevious=NULL;				
   129 	EOFind=false;
   130 
   131 	// animations
   132 	animationUse=settings.readBoolEntry("/animation/use",false);
   133 	animationTicks=settings.readNumEntry("/animation/ticks",10);
   134 	animationInterval=settings.readNumEntry("/animation/interval",50);
   135 	animObjList.clear();
   136 	animationTimer=new QTimer (this);
   137 	connect(animationTimer, SIGNAL(timeout()), this, SLOT(animate()));
   138 
   139 	// View - map
   140 	defLinkColor=QColor (0,0,255);
   141 	defXLinkColor=QColor (180,180,180);
   142 	linkcolorhint=LinkableMapObj::DefaultColor;
   143 	linkstyle=LinkableMapObj::PolyParabel;
   144 	defXLinkWidth=1;
   145 	defXLinkColor=QColor (230,230,230);
   146 
   147 	hidemode=TreeItem::HideNone;
   148 
   149 	// Network
   150 	netstate=Offline;
   151 
   152 	// Create MapCenter
   153 	//  addMapCenter();  FIXME-2 VM create this in MapEditor until BO and MCO are independent of scene
   154 
   155 }
   156 
   157 void VymModel::makeTmpDirectories()
   158 {
   159 	// Create unique temporary directories
   160 	tmpMapDir = tmpVymDir+QString("/model-%1").arg(mapNum);
   161 	histPath = tmpMapDir+"/history";
   162 	QDir d;
   163 	d.mkdir (tmpMapDir);
   164 }
   165 
   166 
   167 MapEditor* VymModel::getMapEditor()	// FIXME-2 VM better return favourite editor here
   168 {
   169 	return mapEditor;
   170 }
   171 
   172 bool VymModel::isRepositionBlocked()
   173 {
   174 	return blockReposition;
   175 }
   176 
   177 void VymModel::updateActions()	// FIXME-2  maybe don't update if blockReposition is set
   178 {
   179 	//cout << "VM::updateActions \n";
   180 	// Tell mainwindow to update states of actions
   181 	mainWindow->updateActions();
   182 }
   183 
   184 
   185 
   186 QString VymModel::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, TreeItem *saveSel)
   187 {
   188 	// tmpdir		temporary directory to which data will be written
   189 	// prefix		mapname, which will be appended to images etc.
   190 	// writeflags	Only write flags for "real" save of map, not undo
   191 	// offset		offset of bbox of whole map in scene. 
   192 	//				Needed for XML export
   193 	
   194 
   195 	XMLObj xml;
   196 
   197 	// Save Header
   198 	QString ls;
   199 	switch (linkstyle)
   200 	{
   201 		case LinkableMapObj::Line: 
   202 			ls="StyleLine";
   203 			break;
   204 		case LinkableMapObj::Parabel:
   205 			ls="StyleParabel";
   206 			break;
   207 		case LinkableMapObj::PolyLine:	
   208 			ls="StylePolyLine";
   209 			break;
   210 		default:
   211 			ls="StylePolyParabel";
   212 			break;
   213 	}	
   214 
   215 	QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
   216 	QString colhint="";
   217 	if (linkcolorhint==LinkableMapObj::HeadingColor) 
   218 		colhint=xml.attribut("linkColorHint","HeadingColor");
   219 
   220 	QString mapAttr=xml.attribut("version",vymVersion);
   221 	if (!saveSel)
   222 		mapAttr+= xml.attribut("author",author) +
   223 				  xml.attribut("comment",comment) +
   224 			      xml.attribut("date",getDate()) +
   225 				  xml.attribut("branchCount", QString().number(branchCount())) +
   226 		          xml.attribut("backgroundColor", mapScene->backgroundBrush().color().name() ) +
   227 		          xml.attribut("selectionColor", mapEditor->getSelectionColor().name() ) +
   228 		          xml.attribut("linkStyle", ls ) +
   229 		          xml.attribut("linkColor", defLinkColor.name() ) +
   230 		          xml.attribut("defXLinkColor", defXLinkColor.name() ) +
   231 		          xml.attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
   232 		          colhint; 
   233 	s+=xml.beginElement("vymmap",mapAttr);
   234 	xml.incIndent();
   235 
   236 	// Find the used flags while traversing the tree	// FIXME-2 this can be done local to vymmodel maybe...
   237 	standardFlagsDefault->resetUsedCounter();
   238 	
   239 	// Reset the counters before saving
   240 	// TODO constr. of FIO creates lots of objects, better do this in some other way...
   241 	FloatImageObj (mapScene).resetSaveCounter();// FIXME-2 this can be done local to vymmodel maybe...
   242 
   243 	cout << "VM::saveToDir 0 " <<saveSel<<endl;
   244 	// Build xml recursivly
   245 	if (!saveSel || saveSel->getType()==TreeItem::MapCenter)
   246 		// Save all mapcenters as complete map, if saveSel not set
   247 		s+=saveTreeToDir(tmpdir,prefix,writeflags,offset);
   248 	else
   249 	{
   250 		if (saveSel->getType()==TreeItem::Branch)
   251 			// Save Subtree
   252 			s+=saveSel->saveToDir(tmpdir,prefix,offset);
   253 		//FIXME-2 else if (saveSel->getType()==TreeItem::Image)
   254 			// Save image
   255 			//s+=((FloatImageObj*)(saveSel))->saveToDir(tmpdir,prefix);
   256 	}
   257 
   258 	cout << "VM::saveToDir 1 \n";
   259 	// Save local settings
   260 	s+=settings.getDataXML (destPath);
   261 
   262 	cout << "VM::saveToDir 2 \n";
   263 	// Save selection
   264 	if (getSelectedItem() && !saveSel ) 
   265 		s+=xml.valueElement("select",getSelectString());
   266 
   267 	xml.decIndent();
   268 	s+=xml.endElement("vymmap");
   269 
   270 	if (writeflags)
   271 		standardFlagsDefault->saveToDir (tmpdir+"/flags/","",writeflags);
   272 	return s;
   273 }
   274 
   275 QString VymModel::saveTreeToDir (const QString &tmpdir,const QString &prefix, int verbose, const QPointF &offset)	// FIXME-4 verbose not needed (used to write icons)
   276 {
   277     QString s;
   278 
   279 	for (int i=0; i<rootItem->branchCount(); i++)
   280 		s+=((MapCenterItem*)rootItem->getBranchNum(i))->saveToDir (tmpdir,prefix,offset);
   281     return s;
   282 }
   283 
   284 void VymModel::setFilePath(QString fpath, QString destname)
   285 {
   286 	if (fpath.isEmpty() || fpath=="")
   287 	{
   288 		filePath="";
   289 		fileName="";
   290 		destPath="";
   291 	} else
   292 	{
   293 		filePath=fpath;		// becomes absolute path
   294 		fileName=fpath;		// gets stripped of path
   295 		destPath=destname;	// needed for vymlinks and during load to reset fileChangedTime
   296 
   297 		// If fpath is not an absolute path, complete it
   298 		filePath=QDir(fpath).absPath();
   299 		fileDir=filePath.left (1+filePath.findRev ("/"));
   300 
   301 		// Set short name, too. Search from behind:
   302 		int i=fileName.findRev("/");
   303 		if (i>=0) fileName=fileName.remove (0,i+1);
   304 
   305 		// Forget the .vym (or .xml) for name of map
   306 		mapName=fileName.left(fileName.findRev(".",-1,true) );
   307 	}
   308 }
   309 
   310 void VymModel::setFilePath(QString fpath)
   311 {
   312 	setFilePath (fpath,fpath);
   313 }
   314 
   315 QString VymModel::getFilePath()
   316 {
   317 	return filePath;
   318 }
   319 
   320 QString VymModel::getFileName()
   321 {
   322 	return fileName;
   323 }
   324 
   325 QString VymModel::getMapName()
   326 {
   327 	return mapName;
   328 }
   329 
   330 QString VymModel::getDestPath()
   331 {
   332 	return destPath;
   333 }
   334 
   335 ErrorCode VymModel::load (QString fname, const LoadMode &lmode, const FileType &ftype)
   336 {
   337 	ErrorCode err=success;
   338 
   339 	parseBaseHandler *handler;
   340 	fileType=ftype;
   341 	switch (fileType)
   342 	{
   343 		case VymMap: handler=new parseVYMHandler; break;
   344 		case FreemindMap : handler=new parseFreemindHandler; break;
   345 		default: 
   346 			QMessageBox::critical( 0, tr( "Critical Parse Error" ),
   347 				   "Unknown FileType in VymModel::load()");
   348 		return aborted;	
   349 	}
   350 
   351 	bool zipped_org=zipped;
   352 
   353 	if (lmode==NewMap)
   354 	{
   355 		selModel->clearSelection();
   356 		// FIXME-2 VM not needed??? model->setMapEditor(this);
   357 		// (map state is set later at end of load...)
   358 	} else
   359 	{
   360 		BranchItem *bi=getSelectedBranchItem();
   361 		if (!bi) return aborted;
   362 		if (lmode==ImportAdd)
   363 			saveStateChangingPart(
   364 				bi,
   365 				bi,
   366 				QString("addMapInsert (%1)").arg(fname),
   367 				QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
   368 		else	
   369 			saveStateChangingPart(
   370 				bi,
   371 				bi,
   372 				QString("addMapReplace(%1)").arg(fname),
   373 				QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
   374 	}	
   375     
   376 
   377 	// Create temporary directory for packing
   378 	bool ok;
   379 	QString tmpZipDir=makeTmpDir (ok,"vym-pack");
   380 	if (!ok)
   381 	{
   382 		QMessageBox::critical( 0, tr( "Critical Load Error" ),
   383 		   tr("Couldn't create temporary directory before load\n"));
   384 		return aborted; 
   385 	}
   386 
   387 	// Try to unzip file
   388 	err=unzipDir (tmpZipDir,fname);
   389 	QString xmlfile;
   390 	if (err==nozip)
   391 	{
   392 		xmlfile=fname;
   393 		zipped=false;
   394 	} else
   395 	{
   396 		zipped=true;
   397 		
   398 		// Look for mapname.xml
   399 		xmlfile= fname.left(fname.findRev(".",-1,true));
   400 		xmlfile=xmlfile.section( '/', -1 );
   401 		QFile mfile( tmpZipDir + "/" + xmlfile + ".xml");
   402 		if (!mfile.exists() )
   403 		{
   404 			// mapname.xml does not exist, well, 
   405 			// maybe someone renamed the mapname.vym file...
   406 			// Try to find any .xml in the toplevel 
   407 			// directory of the .vym file
   408 			QStringList flist=QDir (tmpZipDir).entryList("*.xml");
   409 			if (flist.count()==1) 
   410 			{
   411 				// Only one entry, take this one
   412 				xmlfile=tmpZipDir + "/"+flist.first();
   413 			} else
   414 			{
   415 				for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it ) 
   416 					*it=tmpZipDir + "/" + *it;
   417 				// TODO Multiple entries, load all (but only the first one into this ME)
   418 				//mainWindow->fileLoadFromTmp (flist);
   419 				//returnCode=1;	// Silently forget this attempt to load
   420 				qWarning ("MainWindow::load (fn)  multimap found...");
   421 			}	
   422 				
   423 			if (flist.isEmpty() )
   424 			{
   425 				QMessageBox::critical( 0, tr( "Critical Load Error" ),
   426 						   tr("Couldn't find a map (*.xml) in .vym archive.\n"));
   427 				err=aborted;				   
   428 			}	
   429 		} //file doesn't exist	
   430 		else
   431 			xmlfile=mfile.name();
   432 	}
   433 
   434 	QFile file( xmlfile);
   435 
   436 	// I am paranoid: file should exist anyway
   437 	// according to check in mainwindow.
   438 	if (!file.exists() )
   439 	{
   440 		QMessageBox::critical( 0, tr( "Critical Parse Error" ),
   441 				   tr(QString("Couldn't open map %1").arg(file.name())));
   442 		err=aborted;	
   443 	} else
   444 	{
   445 		bool blockSaveStateOrg=blockSaveState;
   446 		blockReposition=true;
   447 		blockSaveState=true;
   448 		mapEditor->setViewportUpdateMode (QGraphicsView::NoViewportUpdate);
   449 		QXmlInputSource source( file);
   450 		QXmlSimpleReader reader;
   451 		reader.setContentHandler( handler );
   452 		reader.setErrorHandler( handler );
   453 		handler->setModel ( this);
   454 
   455 
   456 		// We need to set the tmpDir in order  to load files with rel. path
   457 		QString tmpdir;
   458 		if (zipped)
   459 			tmpdir=tmpZipDir;
   460 		else
   461 			tmpdir=fname.left(fname.findRev("/",-1));	
   462 		handler->setTmpDir (tmpdir);
   463 		handler->setInputFile (file.name());
   464 		handler->setLoadMode (lmode);
   465 		bool ok = reader.parse( source );
   466 		blockReposition=false;
   467 		blockSaveState=blockSaveStateOrg;
   468 		mapEditor->setViewportUpdateMode (QGraphicsView::MinimalViewportUpdate);
   469 		file.close();
   470 		if ( ok ) 
   471 		{
   472 			reposition();	// FIXME-2 VM reposition the view instead...
   473 			selection.update();
   474 			if (lmode==NewMap)
   475 			{
   476 				mapDefault=false;
   477 				mapChanged=false;
   478 				mapUnsaved=false;
   479 				autosaveTimer->stop();
   480 			}
   481 
   482 			// Reset timestamp to check for later updates of file
   483 			fileChangedTime=QFileInfo (destPath).lastModified();
   484 		} else 
   485 		{
   486 			QMessageBox::critical( 0, tr( "Critical Parse Error" ),
   487 					   tr( handler->errorProtocol() ) );
   488 			// returnCode=1;	
   489 			// Still return "success": the map maybe at least
   490 			// partially read by the parser
   491 		}	
   492 	}	
   493 
   494 	// Delete tmpZipDir
   495 	removeDir (QDir(tmpZipDir));
   496 
   497 	// Restore original zip state
   498 	zipped=zipped_org;
   499 
   500 	updateActions();
   501 	return err;
   502 }
   503 
   504 ErrorCode VymModel::save (const SaveMode &savemode)
   505 {
   506 	QString tmpZipDir;
   507 	QString mapFileName;
   508 	QString safeFilePath;
   509 
   510 	ErrorCode err=success;
   511 
   512 	if (zipped)
   513 		// save as .xml
   514 		mapFileName=mapName+".xml";
   515 	else
   516 		// use name given by user, even if he chooses .doc
   517 		mapFileName=fileName;
   518 
   519 	// Look, if we should zip the data:
   520 	if (!zipped)
   521 	{
   522 		QMessageBox mb( vymName,
   523 			tr("The map %1\ndid not use the compressed "
   524 			"vym file format.\nWriting it uncompressed will also write images \n"
   525 			"and flags and thus may overwrite files in the "
   526 			"given directory\n\nDo you want to write the map").arg(filePath),
   527 			QMessageBox::Warning,
   528 			QMessageBox::Yes | QMessageBox::Default,
   529 			QMessageBox::No ,
   530 			QMessageBox::Cancel | QMessageBox::Escape);
   531 		mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
   532 		mb.setButtonText( QMessageBox::No, tr("uncompressed") );
   533 		mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
   534 		switch( mb.exec() ) 
   535 		{
   536 			case QMessageBox::Yes:
   537 				// save compressed (default file format)
   538 				zipped=true;
   539 				break;
   540 			case QMessageBox::No:
   541 				// save uncompressed
   542 				zipped=false;
   543 				break;
   544 			case QMessageBox::Cancel:
   545 				// do nothing
   546 				return aborted;
   547 				break;
   548 		}
   549 	}
   550 
   551 	// First backup existing file, we 
   552 	// don't want to add to old zip archives
   553 	QFile f(destPath);
   554 	if (f.exists())
   555 	{
   556 		if ( settings.value ("/mapeditor/writeBackupFile").toBool())
   557 		{
   558 			QString backupFileName(destPath + "~");
   559 			QFile backupFile(backupFileName);
   560 			if (backupFile.exists() && !backupFile.remove())
   561 			{
   562 				QMessageBox::warning(0, tr("Save Error"),
   563 									 tr("%1\ncould not be removed before saving").arg(backupFileName));
   564 			}
   565 			else if (!f.rename(backupFileName))
   566 			{
   567 				QMessageBox::warning(0, tr("Save Error"),
   568 									 tr("%1\ncould not be renamed before saving").arg(destPath));
   569 			}
   570 		}
   571 	}
   572 
   573 	if (zipped)
   574 	{
   575 		// Create temporary directory for packing
   576 		bool ok;
   577 		tmpZipDir=makeTmpDir (ok,"vym-zip");
   578 		if (!ok)
   579 		{
   580 			QMessageBox::critical( 0, tr( "Critical Load Error" ),
   581 			   tr("Couldn't create temporary directory before save\n"));
   582 			return aborted; 
   583 		}
   584 
   585 		safeFilePath=filePath;
   586 		setFilePath (tmpZipDir+"/"+ mapName+ ".xml", safeFilePath);
   587 	} // zipped
   588 
   589 	// Create mapName and fileDir
   590 	makeSubDirs (fileDir);
   591 
   592 	QString saveFile;
   593 	if (savemode==CompleteMap || selection.isEmpty())
   594 	{
   595 		// Save complete map
   596 		saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),NULL);
   597 		mapChanged=false;
   598 		mapUnsaved=false;
   599 		autosaveTimer->stop();
   600 	}
   601 	else	
   602 	{
   603 		// Save part of map
   604 		if (selectionType()==TreeItem::Image)
   605 			saveFloatImage();
   606 		else	
   607 			saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),getSelectedBranchItem());	
   608 		// TODO take care of multiselections
   609 	}	
   610 
   611 	if (!saveStringToDisk(fileDir+mapFileName,saveFile))
   612 	{
   613 		err=aborted;
   614 		qWarning ("ME::saveStringToDisk failed!");
   615 	}
   616 
   617 	if (zipped)
   618 	{
   619 		// zip
   620 		if (err==success) err=zipDir (tmpZipDir,destPath);
   621 
   622 		// Delete tmpDir
   623 		removeDir (QDir(tmpZipDir));
   624 
   625 		// Restore original filepath outside of tmp zip dir
   626 		setFilePath (safeFilePath);
   627 	}
   628 
   629 	updateActions();
   630 	fileChangedTime=QFileInfo (destPath).lastModified();
   631 	return err;
   632 }
   633 
   634 void VymModel::addMapReplaceInt(const QString &undoSel, const QString &path)
   635 {
   636 	QString pathDir=path.left(path.findRev("/"));
   637 	QDir d(pathDir);
   638 	QFile file (path);
   639 
   640 	if (d.exists() )
   641 	{
   642 		// We need to parse saved XML data
   643 		parseVYMHandler handler;
   644 		QXmlInputSource source( file);
   645 		QXmlSimpleReader reader;
   646 		reader.setContentHandler( &handler );
   647 		reader.setErrorHandler( &handler );
   648 		handler.setModel ( this);
   649 		handler.setTmpDir ( pathDir );	// needed to load files with rel. path
   650 		if (undoSel.isEmpty())
   651 		{
   652 			unselect();
   653 			clear();
   654 			handler.setLoadMode (NewMap);
   655 		} else	
   656 		{
   657 			select (undoSel);
   658 			handler.setLoadMode (ImportReplace);
   659 		}	
   660 		blockReposition=true;
   661 		bool ok = reader.parse( source );
   662 		blockReposition=false;
   663 		if (! ok ) 
   664 		{	
   665 			// This should never ever happen
   666 			QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
   667 								    handler.errorProtocol());
   668 		}
   669 	} else	
   670 		QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
   671 }
   672 
   673 void VymModel::addMapInsertInt (const QString &path, int pos)
   674 {
   675 /* FIXME-2  addMapInsertInt not ported yet
   676 	BranchObj *sel=getSelectedBranch();
   677 	if (sel)
   678 	{
   679 		QString pathDir=path.left(path.findRev("/"));
   680 		QDir d(pathDir);
   681 		QFile file (path);
   682 
   683 		if (d.exists() )
   684 		{
   685 			// We need to parse saved XML data
   686 			parseVYMHandler handler;
   687 			QXmlInputSource source( file);
   688 			QXmlSimpleReader reader;
   689 			reader.setContentHandler( &handler );
   690 			reader.setErrorHandler( &handler );
   691 			handler.setModel (this);
   692 			handler.setTmpDir ( pathDir );	// needed to load files with rel. path
   693 			handler.setLoadMode (ImportAdd);
   694 			blockReposition=true;
   695 			bool ok = reader.parse( source );
   696 			blockReposition=false;
   697 			if (! ok ) 
   698 			{	
   699 				// This should never ever happen
   700 				QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
   701 										handler.errorProtocol());
   702 			}
   703 			if (sel->getDepth()>0)
   704 				sel->getLastBranch()->linkTo (sel,pos);
   705 		} else	
   706 			QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
   707 	}		
   708 */
   709 }
   710 
   711 FloatImageObj* VymModel::loadFloatImageInt (QString fn)
   712 {
   713 	TreeItem *fi=createImage();
   714 	if (fi)
   715 	{
   716 		FloatImageObj *fio= ((FloatImageObj*)fi->getLMO());
   717 		fio->load (fn);
   718 		reposition();
   719 		return fio;
   720 	}
   721 	return NULL;
   722 }	
   723 
   724 void VymModel::loadFloatImage ()	// FIXME-2
   725 {
   726 /*
   727 	BranchObj *bo=getSelectedBranch();
   728 	if (bo)
   729 	{
   730 
   731 		Q3FileDialog *fd=new Q3FileDialog( NULL);
   732 		fd->setMode (Q3FileDialog::ExistingFiles);
   733 		fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
   734 		ImagePreview *p =new ImagePreview (fd);
   735 		fd->setContentsPreviewEnabled( TRUE );
   736 		fd->setContentsPreview( p, p );
   737 		fd->setPreviewMode( Q3FileDialog::Contents );
   738 		fd->setCaption(vymName+" - " +tr("Load image"));
   739 		fd->setDir (lastImageDir);
   740 		fd->show();
   741 
   742 		if ( fd->exec() == QDialog::Accepted )
   743 		{
   744 			// TODO loadFIO in QT4 use:	lastImageDir=fd->directory();
   745 			lastImageDir=QDir (fd->dirPath());
   746 			QString s;
   747 			FloatImageObj *fio;
   748 			for (int j=0; j<fd->selectedFiles().count(); j++)
   749 			{
   750 				s=fd->selectedFiles().at(j);
   751 				fio=loadFloatImageInt (s);
   752 				if (fio)
   753 					saveState(
   754 						(LinkableMapObj*)fio,
   755 						"delete ()",
   756 						bo, 
   757 						QString ("loadImage (%1)").arg(s ),
   758 						QString("Add image %1 to %2").arg(s).arg(getObjectName(bo))
   759 					);
   760 				else
   761 					// TODO loadFIO error handling
   762 					qWarning ("Failed to load "+s);
   763 			}
   764 		}
   765 		delete (p);
   766 		delete (fd);
   767 	}
   768 */	
   769 }
   770 
   771 void VymModel::saveFloatImageInt  (FloatImageObj *fio, const QString &type, const QString &fn)
   772 {
   773 	fio->save (fn,type);
   774 }
   775 
   776 void VymModel::saveFloatImage ()
   777 {
   778 	FloatImageObj *fio=selection.getFloatImage();
   779 	if (fio)
   780 	{
   781 		QFileDialog *fd=new QFileDialog( NULL);
   782 		fd->setFilters (imageIO.getFilters());
   783 		fd->setCaption(vymName+" - " +tr("Save image"));
   784 		fd->setFileMode( QFileDialog::AnyFile );
   785 		fd->setDirectory (lastImageDir);
   786 //		fd->setSelection (fio->getOriginalFilename());
   787 		fd->show();
   788 
   789 		QString fn;
   790 		if ( fd->exec() == QDialog::Accepted && fd->selectedFiles().count()==1)
   791 		{
   792 			fn=fd->selectedFiles().at(0);
   793 			if (QFile (fn).exists() )
   794 			{
   795 				QMessageBox mb( vymName,
   796 					tr("The file %1 exists already.\n"
   797 					"Do you want to overwrite it?").arg(fn),
   798 				QMessageBox::Warning,
   799 				QMessageBox::Yes | QMessageBox::Default,
   800 				QMessageBox::Cancel | QMessageBox::Escape,
   801 				QMessageBox::NoButton );
   802 
   803 				mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
   804 				mb.setButtonText( QMessageBox::No, tr("Cancel"));
   805 				switch( mb.exec() ) 
   806 				{
   807 					case QMessageBox::Yes:
   808 						// save 
   809 						break;
   810 					case QMessageBox::Cancel:
   811 						// do nothing
   812 						delete (fd);
   813 						return;
   814 						break;
   815 				}
   816 			}
   817 			saveFloatImageInt (fio,fd->selectedFilter(),fn );
   818 		}
   819 		delete (fd);
   820 	}
   821 }
   822 
   823 
   824 void VymModel::importDirInt(BranchObj *dst, QDir d)
   825 {
   826 /* FIXME-2 importDirInt not ported yet
   827 	BranchObj *bo=getSelectedBranch();
   828 	if (bo)
   829 	{
   830 		// Traverse directories
   831 		d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
   832 		QFileInfoList list = d.entryInfoList();
   833 		QFileInfo fi;
   834 
   835 		for (int i = 0; i < list.size(); ++i) 
   836 		{
   837 			fi=list.at(i);
   838 			if (fi.fileName() != "." && fi.fileName() != ".." )
   839 			{
   840 				dst->addBranch();
   841 				bo=dst->getLastBranch();
   842 				BranchItem *bi=(BranchItem*)(bo->getTreeItem());
   843 				bi->setHeading (fi.fileName() );	// FIXME-3 check this
   844 				bo->setColor (QColor("blue"));
   845 				bi->toggleScroll();
   846 				if ( !d.cd(fi.fileName()) ) 
   847 					QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi.fileName()));
   848 				else 
   849 				{
   850 					// Recursively add subdirs
   851 					importDirInt (bo,d);
   852 					d.cdUp();
   853 				}
   854 			}	
   855 		}		
   856 		// Traverse files
   857 		d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
   858 		list = d.entryInfoList();
   859 
   860 		for (int i = 0; i < list.size(); ++i) 
   861 		{
   862 			fi=list.at(i);
   863 			dst->addBranch();
   864 			bo=dst->getLastBranch();
   865 			bo->setHeading (fi.fileName() );
   866 			bo->setColor (QColor("black"));
   867 			if (fi.fileName().right(4) == ".vym" )
   868 				bo->setVymLink (fi.filePath());
   869 		}	
   870 	}		
   871 */
   872 }
   873 
   874 void VymModel::importDirInt (const QString &s)	// FIXME-2
   875 {
   876 /*
   877 	BranchObj *bo=getSelectedBranch();
   878 	if (bo)
   879 	{
   880 		saveStateChangingPart (bo,bo,QString ("importDir (\"%1\")").arg(s),QString("Import directory structure from %1").arg(s));
   881 
   882 		QDir d(s);
   883 		importDirInt (bo,d);
   884 	}
   885 */	
   886 }	
   887 
   888 void VymModel::importDir()	//FIXME-2
   889 {
   890 /*
   891 	BranchObj *bo=getSelectedBranch();
   892 	if (bo)
   893 	{
   894 		QStringList filters;
   895 		filters <<"VYM map (*.vym)";
   896 		QFileDialog *fd=new QFileDialog( NULL,vymName+ " - " +tr("Choose directory structure to import"));
   897 		fd->setMode (QFileDialog::DirectoryOnly);
   898 		fd->setFilters (filters);
   899 		fd->setCaption(vymName+" - " +tr("Choose directory structure to import"));
   900 		fd->show();
   901 
   902 		QString fn;
   903 		if ( fd->exec() == QDialog::Accepted )
   904 		{
   905 			importDirInt (fd->selectedFile() );
   906 			reposition();
   907 			//FIXME-3 VM needed? scene()->update();
   908 		}
   909 	}	
   910 */
   911 }
   912 
   913 
   914 void VymModel::autosave()
   915 {
   916 	if (filePath=="") 
   917 	{
   918 		if (debug)
   919 			cout << "VymModel::autosave rejected due to missing filePath\n";
   920 	}
   921 
   922 	QDateTime now=QDateTime().currentDateTime();
   923 
   924 	// Disable autosave, while we have gone back in history
   925 	int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
   926 	if (redosAvail>0) return;
   927 
   928 	// Also disable autosave for new map without filename
   929 	if (filePath.isEmpty()) return;
   930 
   931 
   932 	if (mapUnsaved &&mapChanged && settings.value ("/mainwindow/autosave/use",true).toBool() )
   933 	{
   934 		if (QFileInfo(filePath).lastModified()<=fileChangedTime) 
   935 			mainWindow->fileSave (this);
   936 		else
   937 			if (debug)
   938 				cout <<"  ME::autosave  rejected, file on disk is newer than last save.\n"; 
   939 
   940 	}	
   941 }
   942 
   943 void VymModel::fileChanged()
   944 {
   945 	// Check if file on disk has changed meanwhile
   946 	if (!filePath.isEmpty())
   947 	{
   948 		QDateTime tmod=QFileInfo (filePath).lastModified();
   949 		if (tmod>fileChangedTime)
   950 		{
   951 			// FIXME-2 VM switch to current mapeditor and finish lineedits...
   952 			QMessageBox mb( vymName,
   953 				tr("The file of the map  on disk has changed:\n\n"  
   954 				   "   %1\n\nDo you want to reload that map with the new file?").arg(filePath),
   955 				QMessageBox::Question,
   956 				QMessageBox::Yes ,
   957 				QMessageBox::Cancel | QMessageBox::Default,
   958 				QMessageBox::NoButton );
   959 
   960 			mb.setButtonText( QMessageBox::Yes, tr("Reload"));
   961 			mb.setButtonText( QMessageBox::No, tr("Ignore"));
   962 			switch( mb.exec() ) 
   963 			{
   964 				case QMessageBox::Yes:
   965 					// Reload map
   966 					load (filePath,NewMap,fileType);
   967 		        case QMessageBox::Cancel:
   968 					fileChangedTime=tmod; // allow autosave to overwrite newer file!
   969 			}
   970 		}
   971 	}	
   972 }
   973 
   974 bool VymModel::isDefault()
   975 {
   976     return mapDefault;
   977 }
   978 
   979 void VymModel::makeDefault()
   980 {
   981 	mapChanged=false;
   982 	mapDefault=true;
   983 }
   984 
   985 bool VymModel::hasChanged()
   986 {
   987     return mapChanged;
   988 }
   989 
   990 void VymModel::setChanged()
   991 {
   992 	if (!mapChanged)
   993 		autosaveTimer->start(settings.value("/mainwindow/autosave/ms/",300000).toInt());
   994 	mapChanged=true;
   995 	mapDefault=false;
   996 	mapUnsaved=true;
   997 	latestAddedItem=NULL;
   998 	findReset();
   999 }
  1000 
  1001 QString VymModel::getObjectName (const LinkableMapObj *lmo)	// FIXME-3 should be obsolete
  1002 {
  1003 	QString s;
  1004 	if (!lmo) return QString("Error: NULL has no name!");
  1005 
  1006 	if ((typeid(*lmo) == typeid(BranchObj) ||
  1007 				      typeid(*lmo) == typeid(MapCenterObj))) 
  1008 	{
  1009 		
  1010 		s=lmo->getTreeItem()->getHeading();
  1011 		if (s=="") s="unnamed";
  1012 		return QString("branch (%1)").arg(s);
  1013 	}	
  1014 	if ((typeid(*lmo) == typeid(FloatImageObj) ))
  1015 		return QString ("floatimage [%1]").arg(((FloatImageObj*)lmo)->getOriginalFilename());
  1016 	return QString("Unknown type has no name!");
  1017 }
  1018 
  1019 
  1020 QString VymModel::getObjectName (const TreeItem *ti)
  1021 {
  1022 	QString s;
  1023 	if (!ti) return QString("Error: NULL has no name!");
  1024 
  1025 	if (ti->isBranchLikeType() )
  1026 	{
  1027 		s=ti->getHeading();
  1028 		if (s=="") s="unnamed";
  1029 		return QString("branch (%1)").arg(s);
  1030 	}	
  1031 	/* FIXME-2 move floatimage to TreeModel first
  1032 	if (type==TreeItem::Image)
  1033 		return QString ("floatimage [%1]").arg(((FloatImageObj*)lmo)->getOriginalFilename());
  1034 	*/	
  1035 	return QString("Unknown type has no name!");
  1036 }
  1037 
  1038 void VymModel::redo()
  1039 {
  1040 	// Can we undo at all?
  1041 	if (redosAvail<1) return;
  1042 
  1043 	bool blockSaveStateOrg=blockSaveState;
  1044 	blockSaveState=true;
  1045 	
  1046 	redosAvail--;
  1047 
  1048 	if (undosAvail<stepsTotal) undosAvail++;
  1049 	curStep++;
  1050 	if (curStep>stepsTotal) curStep=1;
  1051 	QString undoCommand=  undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
  1052 	QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
  1053 	QString redoCommand=  undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
  1054 	QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
  1055 	QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
  1056 	QString version=undoSet.readEntry ("/history/version");
  1057 
  1058 	/* TODO Maybe check for version, if we save the history
  1059 	if (!checkVersion(version))
  1060 		QMessageBox::warning(0,tr("Warning"),
  1061 			tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
  1062 	*/ 
  1063 
  1064 	// Find out current undo directory
  1065 	QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
  1066 
  1067 	if (debug)
  1068 	{
  1069 		cout << "VymModel::redo() begin\n";
  1070 		cout << "    undosAvail="<<undosAvail<<endl;
  1071 		cout << "    redosAvail="<<redosAvail<<endl;
  1072 		cout << "       curStep="<<curStep<<endl;
  1073 		cout << "    ---------------------------"<<endl;
  1074 		cout << "    comment="<<comment.toStdString()<<endl;
  1075 		cout << "    undoCom="<<undoCommand.toStdString()<<endl;
  1076 		cout << "    undoSel="<<undoSelection.toStdString()<<endl;
  1077 		cout << "    redoCom="<<redoCommand.toStdString()<<endl;
  1078 		cout << "    redoSel="<<redoSelection.toStdString()<<endl;
  1079 		cout << "    ---------------------------"<<endl<<endl;
  1080 	}
  1081 
  1082 	// select  object before redo
  1083 	if (!redoSelection.isEmpty())
  1084 		select (redoSelection);
  1085 
  1086 
  1087 	parseAtom (redoCommand);
  1088 	reposition();
  1089 
  1090 	blockSaveState=blockSaveStateOrg;
  1091 
  1092 	undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
  1093 	undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
  1094 	undoSet.setEntry ("/history/curStep",QString::number(curStep));
  1095 	undoSet.writeSettings(histPath);
  1096 
  1097 	mainWindow->updateHistory (undoSet);
  1098 	updateActions();
  1099 
  1100 	/* TODO remove testing
  1101 	cout << "ME::redo() end\n";
  1102 	cout << "    undosAvail="<<undosAvail<<endl;
  1103 	cout << "    redosAvail="<<redosAvail<<endl;
  1104 	cout << "       curStep="<<curStep<<endl;
  1105 	cout << "    ---------------------------"<<endl<<endl;
  1106 	*/
  1107 
  1108 
  1109 }
  1110 
  1111 bool VymModel::isRedoAvailable()
  1112 {
  1113 	if (undoSet.readNumEntry("/history/redosAvail",0)>0)
  1114 		return true;
  1115 	else	
  1116 		return false;
  1117 }
  1118 
  1119 void VymModel::undo()
  1120 {
  1121 	// Can we undo at all?
  1122 	if (undosAvail<1) return;
  1123 
  1124 	mainWindow->statusMessage (tr("Autosave disabled during undo."));
  1125 
  1126 	bool blockSaveStateOrg=blockSaveState;
  1127 	blockSaveState=true;
  1128 	
  1129 	QString undoCommand=  undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
  1130 	QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
  1131 	QString redoCommand=  undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
  1132 	QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
  1133 	QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
  1134 	QString version=undoSet.readEntry ("/history/version");
  1135 
  1136 	/* TODO Maybe check for version, if we save the history
  1137 	if (!checkVersion(version))
  1138 		QMessageBox::warning(0,tr("Warning"),
  1139 			tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
  1140 	*/
  1141 
  1142 	// Find out current undo directory
  1143 	QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
  1144 
  1145 	// select  object before undo
  1146 	if (!undoSelection.isEmpty())
  1147 		select (undoSelection);
  1148 
  1149 	if (debug)
  1150 	{
  1151 		cout << "VymModel::undo() begin\n";
  1152 		cout << "    undosAvail="<<undosAvail<<endl;
  1153 		cout << "    redosAvail="<<redosAvail<<endl;
  1154 		cout << "       curStep="<<curStep<<endl;
  1155 		cout << "    ---------------------------"<<endl;
  1156 		cout << "    comment="<<comment.toStdString()<<endl;
  1157 		cout << "    undoCom="<<undoCommand.toStdString()<<endl;
  1158 		cout << "    undoSel="<<undoSelection.toStdString()<<endl;
  1159 		cout << "    redoCom="<<redoCommand.toStdString()<<endl;
  1160 		cout << "    redoSel="<<redoSelection.toStdString()<<endl;
  1161 		cout << "    ---------------------------"<<endl<<endl;
  1162 	}	
  1163 	parseAtom (undoCommand);
  1164 	reposition();
  1165 
  1166 	undosAvail--;
  1167 	curStep--; 
  1168 	if (curStep<1) curStep=stepsTotal;
  1169 
  1170 	redosAvail++;
  1171 
  1172 	blockSaveState=blockSaveStateOrg;
  1173 /* TODO remove testing
  1174 	cout << "VymModel::undo() end\n";
  1175 	cout << "    undosAvail="<<undosAvail<<endl;
  1176 	cout << "    redosAvail="<<redosAvail<<endl;
  1177 	cout << "       curStep="<<curStep<<endl;
  1178 	cout << "    ---------------------------"<<endl<<endl;
  1179 */
  1180 
  1181 	undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
  1182 	undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
  1183 	undoSet.setEntry ("/history/curStep",QString::number(curStep));
  1184 	undoSet.writeSettings(histPath);
  1185 
  1186 	mainWindow->updateHistory (undoSet);
  1187 	updateActions();
  1188 	selection.update();
  1189 	ensureSelectionVisible();
  1190 }
  1191 
  1192 bool VymModel::isUndoAvailable()
  1193 {
  1194 	if (undoSet.readNumEntry("/history/undosAvail",0)>0)
  1195 		return true;
  1196 	else	
  1197 		return false;
  1198 }
  1199 
  1200 void VymModel::gotoHistoryStep (int i)
  1201 {
  1202 	// Restore variables
  1203 	int undosAvail=undoSet.readNumEntry (QString("/history/undosAvail"));
  1204 	int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
  1205 
  1206 	if (i<0) i=undosAvail+redosAvail;
  1207 
  1208 	// Clicking above current step makes us undo things
  1209 	if (i<undosAvail) 
  1210 	{	
  1211 		for (int j=0; j<undosAvail-i; j++) undo();
  1212 		return;
  1213 	}	
  1214 	// Clicking below current step makes us redo things
  1215 	if (i>undosAvail) 
  1216 		for (int j=undosAvail; j<i; j++) 
  1217 		{
  1218 			if (debug) cout << "VymModel::gotoHistoryStep redo "<<j<<"/"<<undosAvail<<" i="<<i<<endl;
  1219 			redo();
  1220 		}
  1221 
  1222 	// And ignore clicking the current row ;-)	
  1223 }
  1224 
  1225 
  1226 QString VymModel::getHistoryPath()
  1227 {
  1228 	QString histName(QString("history-%1").arg(curStep));
  1229 	return (tmpMapDir+"/"+histName);
  1230 }
  1231 
  1232 void VymModel::saveState(const SaveMode &savemode, const QString &undoSelection, const QString &undoCom, const QString &redoSelection, const QString &redoCom, const QString &comment, TreeItem *saveSel)
  1233 {
  1234 	sendData(redoCom);	//FIXME-3 testing
  1235 
  1236 	// Main saveState
  1237 
  1238 
  1239 	if (blockSaveState) return;
  1240 
  1241 	if (debug) cout << "VM::saveState() for  "<<qPrintable (mapName)<<endl;
  1242 	
  1243 	// Find out current undo directory
  1244 	if (undosAvail<stepsTotal) undosAvail++;
  1245 	curStep++;
  1246 	if (curStep>stepsTotal) curStep=1;
  1247 	
  1248 	QString backupXML="";
  1249 	QString histDir=getHistoryPath();
  1250 	QString bakMapPath=histDir+"/map.xml";
  1251 
  1252 	// Create histDir if not available
  1253 	QDir d(histDir);
  1254 	if (!d.exists()) 
  1255 		makeSubDirs (histDir);
  1256 
  1257 	// Save depending on how much needs to be saved	
  1258 	if (saveSel)
  1259 		backupXML=saveToDir (histDir,mapName+"-",false, QPointF (),saveSel);
  1260 		
  1261 	QString undoCommand="";
  1262 	if (savemode==UndoCommand)
  1263 	{
  1264 		undoCommand=undoCom;
  1265 	}	
  1266 	else if (savemode==PartOfMap )
  1267 	{
  1268 		undoCommand=undoCom;
  1269 		undoCommand.replace ("PATH",bakMapPath);
  1270 	}
  1271 
  1272 
  1273 	if (!backupXML.isEmpty())
  1274 		// Write XML Data to disk
  1275 		saveStringToDisk (bakMapPath,backupXML);
  1276 
  1277 	// We would have to save all actions in a tree, to keep track of 
  1278 	// possible redos after a action. Possible, but we are too lazy: forget about redos.
  1279 	redosAvail=0;
  1280 
  1281 	// Write the current state to disk
  1282 	undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
  1283 	undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
  1284 	undoSet.setEntry ("/history/curStep",QString::number(curStep));
  1285 	undoSet.setEntry (QString("/history/step-%1/undoCommand").arg(curStep),undoCommand);
  1286 	undoSet.setEntry (QString("/history/step-%1/undoSelection").arg(curStep),undoSelection);
  1287 	undoSet.setEntry (QString("/history/step-%1/redoCommand").arg(curStep),redoCom);
  1288 	undoSet.setEntry (QString("/history/step-%1/redoSelection").arg(curStep),redoSelection);
  1289 	undoSet.setEntry (QString("/history/step-%1/comment").arg(curStep),comment);
  1290 	undoSet.setEntry (QString("/history/version"),vymVersion);
  1291 	undoSet.writeSettings(histPath);
  1292 
  1293 	if (debug)
  1294 	{
  1295 		// TODO remove after testing
  1296 		//cout << "          into="<< histPath.toStdString()<<endl;
  1297 		cout << "    stepsTotal="<<stepsTotal<<
  1298 		", undosAvail="<<undosAvail<<
  1299 		", redosAvail="<<redosAvail<<
  1300 		", curStep="<<curStep<<endl;
  1301 		cout << "    ---------------------------"<<endl;
  1302 		cout << "    comment="<<comment.toStdString()<<endl;
  1303 		cout << "    undoCom="<<undoCommand.toStdString()<<endl;
  1304 		cout << "    undoSel="<<undoSelection.toStdString()<<endl;
  1305 		cout << "    redoCom="<<redoCom.toStdString()<<endl;
  1306 		cout << "    redoSel="<<redoSelection.toStdString()<<endl;
  1307 		if (saveSel) cout << "    saveSel="<<qPrintable (getSelectString(saveSel))<<endl;
  1308 		cout << "    ---------------------------"<<endl;
  1309 	}
  1310 
  1311 	mainWindow->updateHistory (undoSet);
  1312 	setChanged();
  1313 	updateActions();
  1314 }
  1315 
  1316 
  1317 void VymModel::saveStateChangingPart(TreeItem *undoSel, TreeItem* redoSel, const QString &rc, const QString &comment)
  1318 {
  1319 	// save the selected part of the map, Undo will replace part of map 
  1320 	QString undoSelection="";
  1321 	if (undoSel)
  1322 		undoSelection=getSelectString(undoSel);
  1323 	else
  1324 		qWarning ("VymModel::saveStateChangingPart  no undoSel given!");
  1325 	QString redoSelection="";
  1326 	if (redoSel)
  1327 		redoSelection=getSelectString(undoSel);
  1328 	else
  1329 		qWarning ("VymModel::saveStateChangingPart  no redoSel given!");
  1330 		
  1331 
  1332 	saveState (PartOfMap,
  1333 		undoSelection, "addMapReplace (\"PATH\")",
  1334 		redoSelection, rc, 
  1335 		comment, 
  1336 		undoSel);
  1337 }
  1338 
  1339 void VymModel::saveStateRemovingPart(TreeItem* redoSel, const QString &comment)
  1340 {
  1341 	if (!redoSel)
  1342 	{
  1343 		qWarning ("VymModel::saveStateRemovingPart  no redoSel given!");
  1344 		return;
  1345 	}
  1346 	QString undoSelection=getSelectString (redoSel->parent() );
  1347 	QString redoSelection=getSelectString(redoSel);
  1348 	if (redoSel->getType()==TreeItem::Branch) 
  1349 	{
  1350 		// save the selected branch of the map, Undo will insert part of map 
  1351 		saveState (PartOfMap,
  1352 			undoSelection, QString("addMapInsert (\"PATH\",%1)").arg(redoSel->num()),
  1353 			redoSelection, "delete ()", 
  1354 			comment, 
  1355 			redoSel);
  1356 	}
  1357 }
  1358 
  1359 
  1360 void VymModel::saveState(TreeItem *undoSel, const QString &uc, TreeItem *redoSel, const QString &rc, const QString &comment) 
  1361 {
  1362 	// "Normal" savestate: save commands, selections and comment
  1363 	// so just save commands for undo and redo
  1364 	// and use current selection
  1365 
  1366 	QString redoSelection="";
  1367 	if (redoSel) redoSelection=getSelectString(redoSel);
  1368 	QString undoSelection="";
  1369 	if (undoSel) undoSelection=getSelectString(undoSel);
  1370 
  1371 	saveState (UndoCommand,
  1372 		undoSelection, uc,
  1373 		redoSelection, rc, 
  1374 		comment, 
  1375 		NULL);
  1376 }
  1377 
  1378 void VymModel::saveState(const QString &undoSel, const QString &uc, const QString &redoSel, const QString &rc, const QString &comment) 
  1379 {
  1380 	// "Normal" savestate: save commands, selections and comment
  1381 	// so just save commands for undo and redo
  1382 	// and use current selection
  1383 	saveState (UndoCommand,
  1384 		undoSel, uc,
  1385 		redoSel, rc, 
  1386 		comment, 
  1387 		NULL);
  1388 }
  1389 
  1390 void VymModel::saveState(const QString &uc, const QString &rc, const QString &comment) 
  1391 {
  1392 	// "Normal" savestate applied to model (no selection needed): 
  1393 	// save commands  and comment
  1394 	saveState (UndoCommand,
  1395 		NULL, uc,
  1396 		NULL, rc, 
  1397 		comment, 
  1398 		NULL);
  1399 }
  1400 
  1401 
  1402 QGraphicsScene* VymModel::getScene ()
  1403 {
  1404 	return mapScene;
  1405 }
  1406 
  1407 TreeItem* VymModel::findBySelectString(QString s)
  1408 {
  1409 	if (s.isEmpty() ) return NULL;
  1410 
  1411 	// Old maps don't have multiple mapcenters and don't save full path
  1412 	if (s.left(2) !="mc")
  1413 		s="mc:0,"+s;
  1414 
  1415 	QStringList parts=s.split (",");
  1416 	QString typ;
  1417 	int n;
  1418 	TreeItem *ti=rootItem;
  1419 
  1420 	while (!parts.isEmpty() )
  1421 	{
  1422 		typ=parts.first().left(2);
  1423 		n=parts.first().right(parts.first().length() - 3).toInt();
  1424 		parts.removeFirst();
  1425 		if (typ=="mc" || typ=="bo")
  1426 			ti=ti->getBranchNum (n);
  1427 			/* FIXME-2
  1428 		else
  1429 			if (typ="fi")
  1430 				ti=ti->getImageNum (n);
  1431 				*/
  1432 	}
  1433 	return  ti;
  1434 }
  1435 
  1436 TreeItem* VymModel::findID (const QString &s)
  1437 {
  1438 	TreeItem *ti;
  1439 	for (int i=0; i<rootItem->branchCount(); i++)
  1440 	{
  1441 		ti=rootItem->getBranchNum(i)->findID (s);
  1442 		if (ti) return ti;
  1443 	}	
  1444 	return NULL;
  1445 }
  1446 
  1447 //////////////////////////////////////////////
  1448 // Interface 
  1449 //////////////////////////////////////////////
  1450 void VymModel::setVersion (const QString &s)
  1451 {
  1452 	version=s;
  1453 }
  1454 
  1455 void VymModel::setAuthor (const QString &s)
  1456 {
  1457 	saveState (
  1458 		QString ("setMapAuthor (\"%1\")").arg(author),
  1459 		QString ("setMapAuthor (\"%1\")").arg(s),
  1460 		QString ("Set author of map to \"%1\"").arg(s)
  1461 	);
  1462 	author=s;
  1463 }
  1464 
  1465 QString VymModel::getAuthor()
  1466 {
  1467 	return author;
  1468 }
  1469 
  1470 void VymModel::setComment (const QString &s)
  1471 {
  1472 	saveState (
  1473 		QString ("setMapComment (\"%1\")").arg(comment),
  1474 		QString ("setMapComment (\"%1\")").arg(s),
  1475 		QString ("Set comment of map")
  1476 	);
  1477 	comment=s;
  1478 }
  1479 
  1480 QString VymModel::getComment ()
  1481 {
  1482 	return comment;
  1483 }
  1484 
  1485 QString VymModel::getDate ()
  1486 {
  1487 	return QDate::currentDate().toString ("yyyy-MM-dd");
  1488 }
  1489 
  1490 int VymModel::branchCount()	// FIXME-2 Optimize this: use internal counter instead of going through whole map each time...
  1491 {
  1492 	int c=0;
  1493 	BranchItem *cur=NULL;
  1494 	BranchItem *prev=NULL;
  1495 	int d;
  1496 	next(cur,prev,d);
  1497 	while (cur) 
  1498 	{
  1499 		c++;
  1500 		next(cur,prev,d);
  1501 	}
  1502 	return c;
  1503 }
  1504 
  1505 void VymModel::setHeading(const QString &s)
  1506 {
  1507 	BranchItem *selbi=getSelectedBranchItem();
  1508 	if (selbi)
  1509 	{
  1510 		saveState(
  1511 			selbi,
  1512 			"setHeading (\""+selbi->getHeading()+"\")", 
  1513 			selbi,
  1514 			"setHeading (\""+s+"\")", 
  1515 			QString("Set heading of %1 to \"%2\"").arg(getObjectName(selbi)).arg(s) );
  1516 		selbi->setHeading(s );
  1517 		QModelIndex ix2=index (selbi);
  1518 		emit (dataChanged ( ix2,ix2));
  1519 		/* FIXME-3 testing only
  1520 		*/
  1521 
  1522 		reposition();
  1523 //		selection.update();	//FIXME-4
  1524 		ensureSelectionVisible();
  1525 	}
  1526 }
  1527 
  1528 BranchItem* VymModel::findText (QString s, bool cs)   
  1529 {
  1530 	int d=0;
  1531 	QTextDocument::FindFlags flags=0;
  1532 	if (cs) flags=QTextDocument::FindCaseSensitively;
  1533 
  1534 	if (!findCurrent) 
  1535 	{	// Nothing found or new find process
  1536 		if (EOFind)
  1537 			// nothing found, start again
  1538 			EOFind=false;
  1539 		findCurrent=NULL;	
  1540 		findPrevious=NULL;	
  1541 		next (findCurrent,findPrevious,d);
  1542 	}	
  1543 	bool searching=true;
  1544 	bool foundNote=false;
  1545 	while (searching && !EOFind)
  1546 	{
  1547 		if (findCurrent)
  1548 		{
  1549 			// Searching in Note
  1550 			if (findCurrent->getNote().contains(s,cs))
  1551 			{
  1552 				select (findCurrent);
  1553 				/*
  1554 				if (getSelectedBranch()!=itFind) 
  1555 				{
  1556 					select(itFind);
  1557 					ensureSelectionVisible();
  1558 				}
  1559 				*/
  1560 				if (textEditor->findText(s,flags)) 
  1561 				{
  1562 					searching=false;
  1563 					foundNote=true;
  1564 				}	
  1565 			}
  1566 			// Searching in Heading
  1567 			if (searching && findCurrent->getHeading().contains (s,cs) ) 
  1568 			{
  1569 				select(findCurrent);
  1570 				searching=false;
  1571 			}
  1572 		}	
  1573 		if (!foundNote)
  1574 		{
  1575 			if (!next(findCurrent,findPrevious,d) )
  1576 				EOFind=true;
  1577 		}
  1578 	//cout <<"still searching...  "<<qPrintable( itFind->getHeading())<<endl;
  1579 	}	
  1580 	if (!searching)
  1581 		return getSelectedBranchItem();
  1582 	else
  1583 		return NULL;
  1584 }
  1585 
  1586 void VymModel::findReset()
  1587 {	// Necessary if text to find changes during a find process
  1588 	findCurrent=NULL;
  1589 	findPrevious=NULL;
  1590 	EOFind=false;
  1591 }
  1592 
  1593 void VymModel::setScene (QGraphicsScene *s)
  1594 {
  1595 	mapScene=s;	// FIXME-2 VM should not be necessary anymore, move all occurences to MapEditor
  1596     //init();	// Here we have a mapScene set, 
  1597 			// which is (still) needed to create MapCenters
  1598 }
  1599 
  1600 void VymModel::setURL(const QString &url) //FIXME-2
  1601 {
  1602 /*
  1603 	BranchObj *bo=getSelectedBranch();
  1604 	if (bo)
  1605 	{
  1606 		QString oldurl=bo->getURL();
  1607 		bo->setURL (url);
  1608 		saveState (
  1609 			bo,
  1610 			QString ("setURL (\"%1\")").arg(oldurl),
  1611 			bo,
  1612 			QString ("setURL (\"%1\")").arg(url),
  1613 			QString ("set URL of %1 to %2").arg(getObjectName(bo)).arg(url)
  1614 		);
  1615 		updateActions();
  1616 		reposition();
  1617 		selection.update();
  1618 		ensureSelectionVisible();
  1619 	}
  1620 */
  1621 }	
  1622 
  1623 QString VymModel::getURL()	//FIXME-2
  1624 {
  1625 /*
  1626 	BranchObj *bo=getSelectedBranch();
  1627 	if (bo)
  1628 		return bo->getURL();
  1629 	else
  1630 		return "";
  1631 */
  1632 }
  1633 
  1634 QStringList VymModel::getURLs()	// FIXME-1	first, next moved to vymmodel
  1635 {
  1636 	return QStringList();
  1637 	/*
  1638 	QStringList urls;
  1639 	BranchObj *bo=getSelectedBranch();
  1640 	if (bo)
  1641 	{		
  1642 		bo=bo->first();	
  1643 		while (bo) 
  1644 		{
  1645 			if (!bo->getURL().isEmpty()) urls.append( bo->getURL());
  1646 			bo=bo->next();
  1647 		}	
  1648 	}	
  1649 	return urls;
  1650 	*/
  1651 }
  1652 
  1653 void VymModel::linkFloatImageTo(const QString &dstString)	// FIXME-2
  1654 {
  1655 	FloatImageObj *fio=selection.getFloatImage();
  1656 	if (fio)
  1657 	{
  1658 		TreeItem *dst=findBySelectString (dstString);
  1659 		if (dst && dst->isBranchLikeType() )
  1660 		{			
  1661 			TreeItem *dstPar=dst->parent();
  1662 			QString parString=getSelectString(dstPar);
  1663 			QString fioPreSelectString=getSelectString(fio);
  1664 			QString fioPreParentSelectString=getSelectString (fio->getParObj());
  1665 			// FIXME-2 ((BranchObj*)dst)->addFloatImage (fio);
  1666 			unselect();
  1667 			// ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
  1668 			fio=((BranchObj*)dst)->getLastFloatImage();
  1669 			fio->setRelPos();
  1670 			fio->reposition();
  1671 			// select (fio);
  1672 			saveState(
  1673 				getSelectString(fio),
  1674 				QString("linkTo (\"%1\")").arg(fioPreParentSelectString), 
  1675 				fioPreSelectString, 
  1676 				QString ("linkTo (\"%1\")").arg(dstString),
  1677 				QString ("Link floatimage to %1").arg(getObjectName(dst)));
  1678 		}
  1679 	}
  1680 }
  1681 
  1682 
  1683 void VymModel::setFrameType(const FrameObj::FrameType &t)	//FIXME-2
  1684 {
  1685 /*
  1686 	BranchObj *bo=getSelectedBranch();
  1687 	if (bo)
  1688 	{
  1689 		QString s=bo->getFrameTypeName();
  1690 		bo->setFrameType (t);
  1691 		saveState (bo, QString("setFrameType (\"%1\")").arg(s),
  1692 			bo, QString ("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),QString ("set type of frame to %1").arg(s));
  1693 		reposition();
  1694 		bo->updateLink();
  1695 	}
  1696 */	
  1697 }
  1698 
  1699 void VymModel::setFrameType(const QString &s)	//FIXME-2
  1700 {
  1701 /*
  1702 	BranchObj *bo=getSelectedBranch();
  1703 	if (bo)
  1704 	{
  1705 		saveState (bo, QString("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),
  1706 			bo, QString ("setFrameType (\"%1\")").arg(s),QString ("set type of frame to %1").arg(s));
  1707 		bo->setFrameType (s);
  1708 		reposition();
  1709 		bo->updateLink();
  1710 	}
  1711 */
  1712 }
  1713 
  1714 void VymModel::setFramePenColor(const QColor &c)	//FIXME-2
  1715 {
  1716 /*
  1717 	BranchObj *bo=getSelectedBranch();
  1718 	if (bo)
  1719 	{
  1720 		saveState (bo, QString("setFramePenColor (\"%1\")").arg(bo->getFramePenColor().name() ),
  1721 			bo, QString ("setFramePenColor (\"%1\")").arg(c.name() ),QString ("set pen color of frame to %1").arg(c.name() ));
  1722 		bo->setFramePenColor (c);
  1723 	}	
  1724 */	
  1725 }
  1726 
  1727 void VymModel::setFrameBrushColor(const QColor &c)	//FIXME-2
  1728 {
  1729 /*
  1730 	BranchObj *bo=getSelectedBranch();
  1731 	if (bo)
  1732 	{
  1733 		saveState (bo, QString("setFrameBrushColor (\"%1\")").arg(bo->getFrameBrushColor().name() ),
  1734 			bo, QString ("setFrameBrushColor (\"%1\")").arg(c.name() ),QString ("set brush color of frame to %1").arg(c.name() ));
  1735 		bo->setFrameBrushColor (c);
  1736 	}	
  1737 */}
  1738 
  1739 void VymModel::setFramePadding (const int &i) //FIXME-2
  1740 {
  1741 /*
  1742 	BranchObj *bo=getSelectedBranch();
  1743 	if (bo)
  1744 	{
  1745 		saveState (bo, QString("setFramePadding (\"%1\")").arg(bo->getFramePadding() ),
  1746 			bo, QString ("setFramePadding (\"%1\")").arg(i),QString ("set brush color of frame to %1").arg(i));
  1747 		bo->setFramePadding (i);
  1748 		reposition();
  1749 		bo->updateLink();
  1750 	}	
  1751 	*/
  1752 }
  1753 
  1754 void VymModel::setFrameBorderWidth(const int &i) //FIXME-2
  1755 {
  1756 /*
  1757 	BranchObj *bo=getSelectedBranch();
  1758 	if (bo)
  1759 	{
  1760 		saveState (bo, QString("setFrameBorderWidth (\"%1\")").arg(bo->getFrameBorderWidth() ),
  1761 			bo, QString ("setFrameBorderWidth (\"%1\")").arg(i),QString ("set border width of frame to %1").arg(i));
  1762 		bo->setFrameBorderWidth (i);
  1763 		reposition();
  1764 		bo->updateLink();
  1765 	}	
  1766 */	
  1767 }
  1768 
  1769 void VymModel::setIncludeImagesVer(bool b)	//FIXME-2
  1770 {
  1771 /*
  1772 	BranchObj *bo=getSelectedBranch();
  1773 	if (bo)
  1774 	{
  1775 		QString u= b ? "false" : "true";
  1776 		QString r=!b ? "false" : "true";
  1777 		
  1778 		saveState(
  1779 			bo,
  1780 			QString("setIncludeImagesVertically (%1)").arg(u),
  1781 			bo, 
  1782 			QString("setIncludeImagesVertically (%1)").arg(r),
  1783 			QString("Include images vertically in %1").arg(getObjectName(bo))
  1784 		);	
  1785 		bo->setIncludeImagesVer(b);
  1786 		reposition();
  1787 	}	
  1788 */}
  1789 
  1790 void VymModel::setIncludeImagesHor(bool b)	//FIXME-2
  1791 {
  1792 /*
  1793 	BranchObj *bo=getSelectedBranch();
  1794 	if (bo)
  1795 	{
  1796 		QString u= b ? "false" : "true";
  1797 		QString r=!b ? "false" : "true";
  1798 		
  1799 		saveState(
  1800 			bo,
  1801 			QString("setIncludeImagesHorizontally (%1)").arg(u),
  1802 			bo, 
  1803 			QString("setIncludeImagesHorizontally (%1)").arg(r),
  1804 			QString("Include images horizontally in %1").arg(getObjectName(bo))
  1805 		);	
  1806 		bo->setIncludeImagesHor(b);
  1807 		reposition();
  1808 	}	
  1809 	*/
  1810 }
  1811 
  1812 void VymModel::setHideLinkUnselected (bool b)//FIXME-2
  1813 {
  1814 /*
  1815 	LinkableMapObj *sel=getSelectedLMO();
  1816 	if (sel &&
  1817 		(selectionType() == TreeItem::Branch || 
  1818 		selectionType() == TreeItem::MapCenter  ||
  1819 		selectionType() == TreeItem::Image ))
  1820 	{
  1821 		QString u= b ? "false" : "true";
  1822 		QString r=!b ? "false" : "true";
  1823 		
  1824 		saveState(
  1825 			sel,
  1826 			QString("setHideLinkUnselected (%1)").arg(u),
  1827 			sel, 
  1828 			QString("setHideLinkUnselected (%1)").arg(r),
  1829 			QString("Hide link of %1 if unselected").arg(getObjectName(sel))
  1830 		);	
  1831 		sel->setHideLinkUnselected(b);
  1832 	}
  1833 */
  1834 }
  1835 
  1836 void VymModel::setHideExport(bool b)
  1837 {
  1838 	BranchItem *bi=getSelectedBranchItem();
  1839 	if (bi)
  1840 	{
  1841 		bi->setHideInExport (b);
  1842 		QString u= b ? "false" : "true";
  1843 		QString r=!b ? "false" : "true";
  1844 		
  1845 		saveState(
  1846 			bi,
  1847 			QString ("setHideExport (%1)").arg(u),
  1848 			bi,
  1849 			QString ("setHideExport (%1)").arg(r),
  1850 			QString ("Set HideExport flag of %1 to %2").arg(getObjectName(bi)).arg (r)
  1851 		);	
  1852 		updateActions();
  1853 		reposition();
  1854 		// selection.update();
  1855 		// FIXME-3 VM needed? scene()->update();
  1856 	}
  1857 }
  1858 
  1859 void VymModel::toggleHideExport()
  1860 {
  1861 	BranchItem *selbi=getSelectedBranchItem();
  1862 	if (selbi)
  1863 		setHideExport ( !selbi->hideInExport() );
  1864 }
  1865 
  1866 
  1867 void VymModel::copy()	//FIXME-2
  1868 {
  1869 /*
  1870 	LinkableMapObj *sel=getSelectedLMO();
  1871 	if (sel &&
  1872 		(selectionType() == TreeItem::Branch || 
  1873 		selectionType() == TreeItem::MapCenter  ||
  1874 		selectionType() == TreeItem::Image ))
  1875 	{
  1876 		if (redosAvail == 0)
  1877 		{
  1878 			// Copy to history
  1879 			QString s=getSelectString(sel);
  1880 			saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy selection to clipboard",sel  );
  1881 			curClipboard=curStep;
  1882 		}
  1883 
  1884 		// Copy also to global clipboard, because we are at last step in history
  1885 		QString bakMapName(QString("history-%1").arg(curStep));
  1886 		QString bakMapDir(tmpMapDir +"/"+bakMapName);
  1887 		copyDir (bakMapDir,clipboardDir );
  1888 
  1889 		clipboardEmpty=false;
  1890 		updateActions();
  1891 	}	    
  1892 */	
  1893 }
  1894 
  1895 
  1896 void VymModel::pasteNoSave(const int &n)	//FIXME-2
  1897 {
  1898 /*
  1899 	bool old=blockSaveState;
  1900 	blockSaveState=true;
  1901 	bool zippedOrg=zipped;
  1902 	if (redosAvail > 0 || n!=0)
  1903 	{
  1904 		// Use the "historical" buffer
  1905 		QString bakMapName(QString("history-%1").arg(n));
  1906 		QString bakMapDir(tmpMapDir +"/"+bakMapName);
  1907 		load (bakMapDir+"/"+clipboardFile,ImportAdd, VymMap);
  1908 	} else
  1909 		// Use the global buffer
  1910 		load (clipboardDir+"/"+clipboardFile,ImportAdd, VymMap);
  1911 	zipped=zippedOrg;
  1912 	blockSaveState=old;
  1913 */
  1914 }
  1915 
  1916 void VymModel::paste()		//FIXME-2
  1917 {   
  1918 /*
  1919 	BranchObj *sel=getSelectedBranch();
  1920 	if (sel)
  1921 	{
  1922 		saveStateChangingPart(
  1923 			sel,
  1924 			sel,
  1925 			QString ("paste (%1)").arg(curClipboard),
  1926 			QString("Paste to %1").arg( getObjectName(sel))
  1927 		);
  1928 		pasteNoSave(0);
  1929 		reposition();
  1930 	}
  1931 */	
  1932 }
  1933 
  1934 void VymModel::cut()	//FIXME-2
  1935 {
  1936 /*
  1937 	LinkableMapObj *sel=getSelectedLMO();
  1938 	if ( sel && (selectionType() == TreeItem::Branch ||
  1939 		selectionType()==TreeItem::MapCenter ||
  1940 		selectionType()==TreeItem::Image))
  1941 	{
  1942 */
  1943 	/* No savestate! savestate is called in cutNoSave
  1944 		saveStateChangingPart(
  1945 			sel->getParObj(),
  1946 			sel,
  1947 			"cut ()",
  1948 			QString("Cut %1").arg(getObjectName(sel ))
  1949 		);
  1950 	*/	
  1951 /*	
  1952 		copy();
  1953 		deleteSelection();
  1954 		reposition();
  1955 	}
  1956 */}
  1957 
  1958 void VymModel::moveBranchUp()	//FIXME-2
  1959 {
  1960 /*
  1961 	BranchObj* bo=getSelectedBranch();
  1962 	BranchObj* par;
  1963 	if (bo)
  1964 	{
  1965 		if (!bo->canMoveBranchUp()) return;
  1966 		par=(BranchObj*)(bo->getParObj());
  1967 		BranchObj *obo=par->moveBranchUp (bo);	// bo will be the one below selection
  1968 		saveState (getSelectString(bo),"moveBranchDown ()",getSelectString(obo),"moveBranchUp ()",QString("Move up %1").arg(getObjectName(bo)));
  1969 		reposition();
  1970 		//FIXME-3 VM needed? scene()->update();
  1971 		selection.update();
  1972 		ensureSelectionVisible();
  1973 	}
  1974 	*/
  1975 }
  1976 
  1977 void VymModel::moveBranchDown()	//FIXME-2
  1978 {
  1979 /*
  1980 	BranchObj* bo=getSelectedBranch();
  1981 	BranchObj* par;
  1982 	if (bo)
  1983 	{
  1984 		if (!bo->canMoveBranchDown()) return;
  1985 		par=(BranchObj*)(bo->getParObj());
  1986 		BranchObj *obo=par->moveBranchDown(bo);	// bo will be the one above selection
  1987 		saveState(getSelectString(bo),"moveBranchUp ()",getSelectString(obo),"moveBranchDown ()",QString("Move down %1").arg(getObjectName(bo)));
  1988 		reposition();
  1989 		//FIXME-3 VM needed? scene()->update();
  1990 		selection.update();
  1991 		ensureSelectionVisible();
  1992 	}	
  1993 */	
  1994 }
  1995 
  1996 void VymModel::sortChildren()	// FIXME-2 not implemented yet
  1997 {
  1998 /*
  1999 	BranchObj* bo=getSelectedBranch();
  2000 	if (bo)
  2001 	{
  2002 		if(treeItem->branchCount()>1)
  2003 		{
  2004 			saveStateChangingPart(bo,bo, "sortChildren ()",QString("Sort children of %1").arg(getObjectName(bo)));
  2005 			bo->sortChildren();
  2006 			reposition();
  2007 			ensureSelectionVisible();
  2008 		}
  2009 	}
  2010 */
  2011 }
  2012 
  2013 MapCenterItem* VymModel::createMapCenter()
  2014 {
  2015 	MapCenterItem *mci=addMapCenter (QPointF (0,0) );
  2016 	select (mci);
  2017 	return mci;
  2018 }
  2019 
  2020 BranchItem* VymModel::createBranch()	
  2021 {
  2022 	return addNewBranchInt (-2);
  2023 }
  2024 
  2025 TreeItem* VymModel::createImage()	//FIXME-2
  2026 {
  2027 /*
  2028 	BranchObj *bo=getSelectedBranch();
  2029 	if (bo)
  2030 	{
  2031 		FloatImageObj *newfio=bo->addFloatImage(); // FIXME-1 VM Old model, merge with below
  2032 
  2033 		// Create TreeItem
  2034 		QList<QVariant> cData;
  2035 		cData << "VM:createImage" << "undef"<<"undef";
  2036 		TreeItem *parti=bo->getTreeItem();
  2037 		TreeItem *ti=new TreeItem (cData,parti);
  2038 		ti->setLMO (newfio);
  2039 		ti->setType (TreeItem::Image);
  2040 		parti->appendChild (ti);
  2041 
  2042 		if (newfio)
  2043 		{
  2044 			newfio->setTreeItem (ti);
  2045 			select (newfio); // FIXME-2 VM really needed here?
  2046 			return ti;
  2047 		}
  2048 	}
  2049 	return NULL;
  2050 */
  2051 }
  2052 
  2053 MapCenterItem* VymModel::addMapCenter ()
  2054 {
  2055 	MapCenterItem *mci=addMapCenter (contextPos);
  2056 	//FIXME-3 selection.select (mco);
  2057 	updateActions();
  2058 	ensureSelectionVisible();
  2059 	saveState (
  2060 		mci,
  2061 		"delete()",
  2062 		NULL,
  2063 		QString ("addMapCenter (%1,%2)").arg (contextPos.x()).arg(contextPos.y()),
  2064 		QString ("Adding MapCenter to (%1,%2)").arg (contextPos.x()).arg(contextPos.y())
  2065 	);	
  2066 	return mci;	
  2067 }
  2068 
  2069 MapCenterItem* VymModel::addMapCenter(QPointF absPos)
  2070 {
  2071 
  2072 	// Create TreeItem
  2073 	QModelIndex parix=index(rootItem);
  2074 
  2075 	int n=rootItem->branchCount();
  2076 
  2077 	emit (layoutAboutToBeChanged() );
  2078 	beginInsertRows (parix,n,n+1);
  2079 
  2080 	QList<QVariant> cData;
  2081 	cData << "VM:addMapCenter" << "undef"<<"undef";
  2082 	MapCenterItem *mci=new MapCenterItem (cData);
  2083 	mci->setHeading (QApplication::translate("Heading of mapcenter in new map", "New map"));
  2084 	rootItem->appendChild (mci);
  2085 
  2086 	endInsertRows();
  2087 	emit (newChildObject (parix));
  2088 	emit (layoutChanged() );
  2089 
  2090 	// Create MapObj
  2091 	BranchObj *newbo=mci->createMapObj(mapScene);
  2092 		
  2093 	/*
  2094 
  2095 	if (!mci->getHeading().isEmpty() ) 
  2096 	{
  2097 		newbo->updateHeading();
  2098 		newbo->setColor (headingColor);
  2099 	}	
  2100 */
  2101 		
  2102 	//newbo->updateLink();	//FIXME-3
  2103 
  2104 /*
  2105 	//mapCenter->setMapEditor(mapEditor);		//FIXME-3 VM needed to get defLinkStyle, mapLinkColorHint ... for later added objects
  2106 	mapCenter->setTreeItem (mci);	// TreeItem needs to exist before setVisibility
  2107 	mci->setLMO (mapCenter);
  2108 	mapCenter->updateHeading();
  2109 	mapCenter->move (absPos);
  2110     mapCenter->setVisibility (true);
  2111 	//mapCenter->setHeading (QApplication::translate("Heading of mapcenter in new map", "New map"));
  2112 */
  2113 	return mci;
  2114 }
  2115 
  2116 BranchItem* VymModel::addNewBranchInt(int num)
  2117 {
  2118 	// Depending on pos:
  2119 	// -3		insert in children of parent  above selection 
  2120 	// -2		add branch to selection 
  2121 	// -1		insert in children of parent below selection 
  2122 	// 0..n		insert in children of parent at pos
  2123 	BranchObj *newbo=NULL;
  2124 	BranchObj *bo=getSelectedBranchObj();	//FIXME-2
  2125 	BranchItem *bi=getSelectedBranchItem();
  2126 	if (bo)
  2127 	{
  2128 		if (num==-2)
  2129 		{
  2130 			// Create TreeItem
  2131 			QList<QVariant> cData;
  2132 			cData << "new" << "undef"<<"undef";
  2133 
  2134 			BranchItem *parbi=bi;
  2135 			QModelIndex parix=index(parbi);
  2136 			int n=parbi->childCount();
  2137 
  2138 			emit (layoutAboutToBeChanged() );
  2139 			beginInsertRows (parix,n,n+1);	//FIXME-1 check if n is correct: should be index below _last_ branch...
  2140 			bi=new BranchItem (cData);	
  2141 			bi->setHeading (QApplication::translate("Heading of new branch in map", "new"));
  2142 
  2143 			parbi->appendChild (bi);	
  2144 			endInsertRows ();
  2145 			emit (newChildObject (parix));
  2146 			emit (layoutChanged() );
  2147 
  2148 			// save scroll state. If scrolled, automatically select
  2149 			// new branch in order to tmp unscroll parent...
  2150 			newbo=bi->createMapObj(mapScene);
  2151 			select (bi);
  2152 		}else if (num==-1)
  2153 		{
  2154 		/*
  2155 			num=bi->num()+1;
  2156 			bo=(BranchObj*)bo->getParObj();
  2157 			if (bo) newbo=bo->insertBranch(num);	//FIXME-1 VM still missing 
  2158 		*/	
  2159 		}else if (num==-3)
  2160 		{
  2161 		/*
  2162 			num=bi->num();
  2163 			bo=(BranchObj*)bo->getParObj();
  2164 			if (bo) newbo=bo->insertBranch(num);	//FIXME-1 VM still missing
  2165 		*/	
  2166 		}
  2167 	}	
  2168 	return bi;
  2169 }	
  2170 
  2171 BranchItem* VymModel::addNewBranch(int pos)
  2172 {
  2173 	// Different meaning than num in addNewBranchInt!
  2174 	// -1	add above
  2175 	//  0	add as child
  2176 	// +1	add below
  2177 	BranchItem *newbi=NULL;
  2178 	BranchItem *selbi=getSelectedBranchItem();
  2179 
  2180 	if (selbi)
  2181 	{
  2182 		// FIXME-2 VM  do we still need this in model? setCursor (Qt::ArrowCursor);
  2183 
  2184 		newbi=addNewBranchInt (pos-2);
  2185 
  2186 		if (newbi)
  2187 		{
  2188 			saveState(
  2189 				newbi,		
  2190 				"delete ()",
  2191 				selbi,
  2192 				QString ("addBranch (%1)").arg(pos),
  2193 				QString ("Add new branch to %1").arg(getObjectName(selbi)));	
  2194 
  2195 			reposition();
  2196 			// selection.update(); FIXME-3
  2197 			latestAddedItem=newbi;
  2198 			// In Network mode, the client needs to know where the new branch is,
  2199 			// so we have to pass on this information via saveState.
  2200 			// TODO: Get rid of this positioning workaround
  2201 			/* FIXME-4  network problem:  QString ps=qpointfToString (newbo->getAbsPos());
  2202 			sendData ("selectLatestAdded ()");
  2203 			sendData (QString("move %1").arg(ps));
  2204 			sendSelection();
  2205 			*/
  2206 		}
  2207 	}	
  2208 	return newbi;
  2209 }
  2210 
  2211 
  2212 BranchItem* VymModel::addNewBranchBefore()	//FIXME-2
  2213 {
  2214 /*
  2215 	BranchObj *newbo=NULL;
  2216 	BranchObj *bo = getSelectedBranch();
  2217 	if (bo && selectionType()==TreeItem::Branch)
  2218 		 // We accept no MapCenterObj here, so we _have_ a parent
  2219 	{
  2220 		QPointF p=bo->getRelPos();
  2221 
  2222 
  2223 		BranchObj *parbo=(BranchObj*)(bo->getParObj());
  2224 
  2225 		// add below selection
  2226 		newbo=parbo->insertBranch(bo->getTreeItem()->num()+1);		//FIXME-1 VM still missing
  2227 
  2228 		if (newbo)
  2229 		{
  2230 			newbo->move2RelPos (p);
  2231 
  2232 			// Move selection to new branch
  2233 			bo->linkTo (newbo,-1);
  2234 
  2235 			saveState (newbo, "deleteKeepChildren ()", newbo, "addBranchBefore ()", 
  2236 				QString ("Add branch before %1").arg(getObjectName(bo)));
  2237 
  2238 			reposition();
  2239 			// selection.update(); FIXME-3 
  2240 		}
  2241 	}	
  2242 	latestSelectionString=selection.getSelectString();
  2243 	return newbo;
  2244 	*/
  2245 	return NULL;
  2246 }
  2247 
  2248 BranchItem* VymModel::relinkBranch (BranchItem *branch, BranchItem *dst, int pos)
  2249 {
  2250 	if (branch && dst)
  2251 	{
  2252 		emit (layoutAboutToBeChanged() );
  2253 		BranchItem *branchpi=(BranchItem*)branch->parent();
  2254 		// Remove at current position
  2255 		int n=branch->childNum();
  2256 		beginRemoveRows (index(branchpi),n,n);
  2257 		branchpi->removeChild (n);
  2258 		endRemoveRows();
  2259 
  2260 		if (pos<0 ||pos>dst->branchCount() ) pos=dst->branchCount();
  2261 
  2262 		// Append as last branch to dst
  2263 		if (dst->branchCount()==0)
  2264 			n=0;
  2265 		else	
  2266 			n=dst->getFirstBranch()->childNumber(); 
  2267 		beginInsertRows (index(dst),n+pos,n+pos);
  2268 		dst->insertBranch (pos,branch);
  2269 		endInsertRows();
  2270 
  2271 		branch->getLMO()->setParObj(dst->getLMO());	//FIXME-5 update parObj in View
  2272 		emit (layoutChanged() );
  2273 		select (branch);
  2274 	}
  2275 }
  2276 
  2277 void VymModel::deleteSelection()
  2278 {
  2279 	BranchItem *selbi=getSelectedBranchItem();
  2280 
  2281 	if (!selbi) return;
  2282 
  2283 	TreeItem *pi=selbi->parent();
  2284 	QModelIndex parentIndex=index(pi);
  2285 	
  2286 	if (selbi->isBranchLikeType() )
  2287 	{
  2288 		unselect();
  2289 		saveStateRemovingPart (selbi, QString ("Delete %1").arg(getObjectName(selbi)));
  2290 
  2291 		emit (layoutAboutToBeChanged() );
  2292 
  2293 		int n=selbi->childNum();
  2294 		beginRemoveRows (parentIndex,n,n);
  2295 		removeRows (n,1,parentIndex);
  2296 		endRemoveRows();
  2297 		select (pi);
  2298 		ensureSelectionVisible();
  2299 		reposition();
  2300 
  2301 		emit (layoutChanged() );
  2302 		return;
  2303 	}
  2304 	//FloatImageObj *fio=selection.getFloatImage(); 	//FIXME-1 VM still missing
  2305 
  2306 /*
  2307 	if (fio)
  2308 	{
  2309 		BranchObj* par=(BranchObj*)fio->getParObj();
  2310 		saveStateChangingPart(
  2311 			par, 
  2312 			fio,
  2313 			"delete ()",
  2314 			QString("Delete %1").arg(getObjectName(fio))
  2315 		);
  2316 		unselect();
  2317 		par->removeFloatImage(fio);
  2318 		select (par);
  2319 		reposition();
  2320 		ensureSelectionVisible();
  2321 		return;
  2322 	}
  2323 	*/
  2324 }
  2325 
  2326 void VymModel::deleteKeepChildren()		//FIXME-2 VM still missing
  2327 
  2328 {
  2329 /*
  2330 	BranchObj *bo=getSelectedBranch();
  2331 	BranchObj *par;
  2332 	if (bo)
  2333 	{
  2334 		par=(BranchObj*)(bo->getParObj());
  2335 
  2336 		// Don't use this on mapcenter
  2337 		if (!par) return;
  2338 
  2339 		// Check if we have childs at all to keep
  2340 		if (bo->getTreeItem()->branchCount()==0) 
  2341 		{
  2342 			deleteSelection();
  2343 			return;
  2344 		}
  2345 
  2346 		QPointF p=bo->getRelPos();
  2347 		saveStateChangingPart(
  2348 			bo->getParObj(),
  2349 			bo,
  2350 			"deleteKeepChildren ()",
  2351 			QString("Remove %1 and keep its children").arg(getObjectName(bo))
  2352 		);
  2353 
  2354 		QString sel=getSelectString(bo);
  2355 		unselect();
  2356 		par->removeBranchHere(bo);
  2357 		reposition();
  2358 		select (sel);
  2359 		getSelectedBranch()->move2RelPos (p);
  2360 		reposition();
  2361 	}	
  2362 */}
  2363 
  2364 void VymModel::deleteChildren()		//FIXME-2 VM still missing
  2365 
  2366 {
  2367 /*
  2368 	BranchObj *bo=getSelectedBranch();
  2369 	if (bo)
  2370 	{		
  2371 		saveStateChangingPart(
  2372 			bo, 
  2373 			bo,
  2374 			"deleteChildren ()",
  2375 			QString( "Remove children of branch %1").arg(getObjectName(bo))
  2376 		);
  2377 		bo->removeChildren();
  2378 		reposition();
  2379 	}	
  2380 */}
  2381 
  2382 
  2383 bool VymModel::scrollBranch(BranchItem *bi)
  2384 {
  2385 	if (bi)	
  2386 	{
  2387 		if (bi->isScrolled()) return false;
  2388 		if (bi->branchCount()==0) return false;
  2389 		if (bi->depth()==0) return false;
  2390 		QString u,r;
  2391 		r="scroll";
  2392 		u="unscroll";
  2393 		/* FIXME-3 no savestate yet
  2394 		saveState(
  2395 			bo,
  2396 			QString ("%1 ()").arg(u),
  2397 			bo,
  2398 			QString ("%1 ()").arg(r),
  2399 			QString ("%1 %2").arg(r).arg(getObjectName(bo))
  2400 		);
  2401 		*/
  2402 		bi->toggleScroll();
  2403 		//selection.update();
  2404 		// FIXME-3 VM needed? scene()->update();
  2405 		return true;
  2406 	}	
  2407 	return false;
  2408 }
  2409 
  2410 bool VymModel::unscrollBranch(BranchItem *bi)
  2411 {
  2412 	if (bi)
  2413 	{
  2414 		if (bi->isScrolled()) return false;
  2415 		if (bi->branchCount()==0) return false;
  2416 		if (bi->depth()==0) return false;
  2417 
  2418 		QString u,r;
  2419 		u="scroll";
  2420 		r="unscroll";
  2421 		/* FIXME-3 no savestate yet
  2422 		saveState(
  2423 			bo,
  2424 			QString ("%1 ()").arg(u),
  2425 			bo,
  2426 			QString ("%1 ()").arg(r),
  2427 			QString ("%1 %2").arg(r).arg(getObjectName(bo))
  2428 		);
  2429 		*/
  2430 		bi->toggleScroll();
  2431 		// selection.update();
  2432 		// FIXME-3 VM needed? scene()->update();
  2433 		return true;
  2434 	}	
  2435 	return false;
  2436 }
  2437 
  2438 void VymModel::toggleScroll()
  2439 {
  2440 	BranchItem *bi=(BranchItem*)getSelectedBranchItem();
  2441 	if (bi && bi->getType()==TreeItem::Branch )
  2442 	{
  2443 		if (bi->isScrolled())
  2444 			unscrollBranch (bi);
  2445 		else
  2446 			scrollBranch (bi);
  2447 	}
  2448 }
  2449 
  2450 void VymModel::unscrollChildren() 	// FIXME-1	first, next moved to vymmodel
  2451 
  2452 {
  2453 /*
  2454 	BranchObj *bo=getSelectedBranch();
  2455 	if (bo)
  2456 	{
  2457 		bo->first();
  2458 		while (bo) 
  2459 		{
  2460 			if (bo->isScrolled()) unscrollBranch (bo);
  2461 			bo=bo->next();
  2462 		}
  2463 	}	
  2464 */	
  2465 }
  2466 
  2467 void VymModel::addFloatImage (const QPixmap &img) //FIXME-2
  2468 {
  2469 /*
  2470 	BranchObj *bo=getSelectedBranch();
  2471 	if (bo)
  2472   {
  2473 	FloatImageObj *fio=bo->addFloatImage();
  2474     fio->load(img);
  2475     fio->setOriginalFilename("No original filename (image added by dropevent)");	
  2476 	QString s=getSelectString(bo);
  2477 	saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy dropped image to clipboard",fio  );
  2478 	saveState (fio,"delete ()", bo,QString("paste(%1)").arg(curStep),"Pasting dropped image");
  2479     reposition();
  2480     // FIXME-3 VM needed? scene()->update();
  2481   }
  2482 */
  2483 }
  2484 
  2485 
  2486 void VymModel::colorBranch (QColor c)	//FIXME-2
  2487 {
  2488 /*
  2489 	BranchObj *bo=getSelectedBranch();
  2490 	if (bo)
  2491 	{
  2492 		saveState(
  2493 			bo, 
  2494 			QString ("colorBranch (\"%1\")").arg(bo->getColor().name()),
  2495 			bo,
  2496 			QString ("colorBranch (\"%1\")").arg(c.name()),
  2497 			QString("Set color of %1 to %2").arg(getObjectName(bo)).arg(c.name())
  2498 		);	
  2499 		bo->setColor(c); // color branch
  2500 	}
  2501 */
  2502 }
  2503 
  2504 void VymModel::colorSubtree (QColor c) //FIXME-2
  2505 {
  2506 /*
  2507 	BranchObj *bo=getSelectedBranch();
  2508 	if (bo) 
  2509 	{
  2510 		saveStateChangingPart(
  2511 			bo, 
  2512 			bo,
  2513 			QString ("colorSubtree (\"%1\")").arg(c.name()),
  2514 			QString ("Set color of %1 and children to %2").arg(getObjectName(bo)).arg(c.name())
  2515 		);	
  2516 		bo->setColorSubtree (c); // color links, color children
  2517 	}
  2518 */	
  2519 }
  2520 
  2521 QColor VymModel::getCurrentHeadingColor()	//FIXME-2
  2522 {
  2523 /*
  2524 	BranchObj *bo=getSelectedBranch();
  2525 	if (bo) return bo->getColor(); 
  2526 	
  2527 	QMessageBox::warning(0,"Warning","Can't get color of heading,\nthere's no branch selected");
  2528 	*/
  2529 	return Qt::black;
  2530 }
  2531 
  2532 
  2533 
  2534 void VymModel::editURL()	//FIXME-2
  2535 {
  2536 /*
  2537 	BranchObj *bo=getSelectedBranch();
  2538 	if (bo)
  2539 	{		
  2540 		bool ok;
  2541 		QString text = QInputDialog::getText(
  2542 				"VYM", tr("Enter URL:"), QLineEdit::Normal,
  2543 				bo->getURL(), &ok, NULL);
  2544 		if ( ok) 
  2545 			// user entered something and pressed OK
  2546 			setURL(text);
  2547 	}
  2548 */
  2549 }
  2550 
  2551 void VymModel::editLocalURL()	//FIXME-2
  2552 {
  2553 /*
  2554 	BranchObj *bo=getSelectedBranch();
  2555 	if (bo)
  2556 	{		
  2557 		QStringList filters;
  2558 		filters <<"All files (*)";
  2559 		filters << tr("Text","Filedialog") + " (*.txt)";
  2560 		filters << tr("Spreadsheet","Filedialog") + " (*.odp,*.sxc)";
  2561 		filters << tr("Textdocument","Filedialog") +" (*.odw,*.sxw)";
  2562 		filters << tr("Images","Filedialog") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)";
  2563 		QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Set URL to a local file"));
  2564 		fd->setFilters (filters);
  2565 		fd->setCaption(vymName+" - " +tr("Set URL to a local file"));
  2566 		fd->setDirectory (lastFileDir);
  2567 		if (! bo->getVymLink().isEmpty() )
  2568 			fd->selectFile( bo->getURL() );
  2569 		fd->show();
  2570 
  2571 		if ( fd->exec() == QDialog::Accepted )
  2572 		{
  2573 			lastFileDir=QDir (fd->directory().path());
  2574 			setURL (fd->selectedFile() );
  2575 		}
  2576 	}
  2577 	*/
  2578 }
  2579 
  2580 
  2581 void VymModel::editHeading2URL() //FIXME-2
  2582 {
  2583 /*
  2584 	BranchObj *bo=getSelectedBranch();
  2585 	if (bo)
  2586 		setURL (bo->getHeading());
  2587 */		
  2588 }	
  2589 
  2590 void VymModel::editBugzilla2URL()	//FIXME-2
  2591 {
  2592 /*
  2593 	BranchObj *bo=getSelectedBranch();
  2594 	if (bo)
  2595 	{		
  2596 		QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
  2597 		setURL (url);
  2598 	}
  2599 */	
  2600 }	
  2601 
  2602 void VymModel::editFATE2URL()	//FIXME-2
  2603 {
  2604 /*
  2605 	BranchObj *bo=getSelectedBranch();
  2606 	if (bo)
  2607 	{		
  2608 		QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
  2609 		saveState(
  2610 			bo,
  2611 			"setURL (\""+bo->getURL()+"\")",
  2612 			bo,
  2613 			"setURL (\""+url+"\")",
  2614 			QString("Use heading of %1 as link to FATE").arg(getObjectName(bo))
  2615 		);	
  2616 		bo->setURL (url);
  2617 		updateActions();
  2618 	}
  2619 */	
  2620 }	
  2621 
  2622 void VymModel::editVymLink()
  2623 {
  2624 	BranchItem *bi=getSelectedBranchItem();
  2625 	if (bi)
  2626 	{		
  2627 		QStringList filters;
  2628 		filters <<"VYM map (*.vym)";
  2629 		QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Link to another map"));
  2630 		fd->setFilters (filters);
  2631 		fd->setCaption(vymName+" - " +tr("Link to another map"));
  2632 		fd->setDirectory (lastFileDir);
  2633 		if (! bi->getVymLink().isEmpty() )
  2634 			fd->selectFile( bi->getVymLink() );
  2635 		fd->show();
  2636 
  2637 		QString fn;
  2638 		if ( fd->exec() == QDialog::Accepted )
  2639 		{
  2640 			lastFileDir=QDir (fd->directory().path());
  2641 			saveState(
  2642 				bi,
  2643 				"setVymLink (\""+bi->getVymLink()+"\")",
  2644 				bi,
  2645 				"setVymLink (\""+fd->selectedFile()+"\")",
  2646 				QString("Set vymlink of %1 to %2").arg(getObjectName(bi)).arg(fd->selectedFile())
  2647 			);	
  2648 			setVymLink (fd->selectedFile() );	// FIXME-2 ok?
  2649 		}
  2650 	}
  2651 }
  2652 
  2653 void VymModel::setVymLink (const QString &s)	// FIXME-3 no savestate?
  2654 {
  2655 	// Internal function, no saveState needed
  2656 	BranchItem *bi=getSelectedBranchItem();
  2657 	if (bi)
  2658 	{
  2659 		bi->getBranchObj()->setVymLink(s);	//FIXME-3 check getBO
  2660 		reposition();
  2661 		updateActions();
  2662 		//selection.update();
  2663 		ensureSelectionVisible();
  2664 	}
  2665 }
  2666 
  2667 void VymModel::deleteVymLink()
  2668 {
  2669 	BranchItem *bi=getSelectedBranchItem();
  2670 	if (bi)
  2671 	{		
  2672 		saveState(
  2673 			bi,
  2674 			"setVymLink (\""+bi->getBranchObj()->getVymLink()+"\")", //FIXME-3 check getBO
  2675 
  2676 			bi,
  2677 			"setVymLink (\"\")",
  2678 			QString("Unset vymlink of %1").arg(getObjectName(bi))
  2679 		);	
  2680 		bi->getBranchObj()->setVymLink ("" );	//FIXME-3 check getBO
  2681 		updateActions();
  2682 		reposition();
  2683 		// FIXME-3 VM needed? scene()->update();
  2684 	}
  2685 }
  2686 
  2687 QString VymModel::getVymLink()
  2688 {
  2689 	BranchItem *bi=getSelectedBranchItem();
  2690 	if (bi)
  2691 		return bi->getBranchObj()->getVymLink();	//FIXME-3 check getBO here...
  2692 	else	
  2693 		return "";
  2694 	
  2695 }
  2696 
  2697 QStringList VymModel::getVymLinks()	// FIXME-1	first, next moved to vymmodel
  2698 {
  2699 	return QStringList();
  2700 /*
  2701 	QStringList links;
  2702 	BranchObj *bo=getSelectedBranch();
  2703 	if (bo)
  2704 	{		
  2705 		bo=bo->first();	
  2706 		while (bo) 
  2707 		{
  2708 			if (!bo->getVymLink().isEmpty()) links.append( bo->getVymLink());
  2709 			bo=bo->next();
  2710 		}	
  2711 	}	
  2712 	return links;
  2713 */	
  2714 }
  2715 
  2716 
  2717 void VymModel::followXLink(int i)	// FIXME-2
  2718 {
  2719 	i=0;
  2720 	/*
  2721 	BranchObj *bo=getSelectedBranch();
  2722 	if (bo)
  2723 	{
  2724 		bo=bo->XLinkTargetAt(i);
  2725 		if (bo) 
  2726 		{
  2727 			selection.select(bo);
  2728 			ensureSelectionVisible();
  2729 		}
  2730 	}
  2731 	*/
  2732 }
  2733 
  2734 void VymModel::editXLink(int i)	// FIXME-2 VM missing saveState
  2735 {
  2736 	i=0;
  2737 	/*
  2738 	BranchObj *bo=getSelectedBranch();
  2739 	if (bo)
  2740 	{
  2741 		XLinkObj *xlo=bo->XLinkAt(i);
  2742 		if (xlo) 
  2743 		{
  2744 			EditXLinkDialog dia;
  2745 			dia.setXLink (xlo);
  2746 			dia.setSelection(bo);
  2747 			if (dia.exec() == QDialog::Accepted)
  2748 			{
  2749 				if (dia.useSettingsGlobal() )
  2750 				{
  2751 					setMapDefXLinkColor (xlo->getColor() );
  2752 					setMapDefXLinkWidth (xlo->getWidth() );
  2753 				}
  2754 				if (dia.deleteXLink())
  2755 					bo->deleteXLinkAt(i);
  2756 			}
  2757 		}	
  2758 	}
  2759 */	
  2760 }
  2761 
  2762 
  2763 
  2764 
  2765 
  2766 //////////////////////////////////////////////
  2767 // Scripting
  2768 //////////////////////////////////////////////
  2769 
  2770 void VymModel::parseAtom(const QString &atom)
  2771 {
  2772 	//BranchObj *selb=getSelectedBranch();	// FIXME-4
  2773 	TreeItem* selti=getSelectedItem();
  2774 	BranchItem *selbi=getSelectedBranchItem();
  2775 	QString s,t;
  2776 	double x,y;
  2777 	int n;
  2778 	bool b,ok;
  2779 
  2780 	// Split string s into command and parameters
  2781 	parser.parseAtom (atom);
  2782 	QString com=parser.getCommand();
  2783 	
  2784 	// External commands
  2785 	/////////////////////////////////////////////////////////////////////
  2786 	if (com=="addBranch")
  2787 	{
  2788 		if (!selti)
  2789 		{
  2790 			parser.setError (Aborted,"Nothing selected");
  2791 		} else if (! selbi )
  2792 		{				  
  2793 			parser.setError (Aborted,"Type of selection is not a branch");
  2794 		} else 
  2795 		{	
  2796 			QList <int> pl;
  2797 			pl << 0 <<1;
  2798 			if (parser.checkParCount(pl))
  2799 			{
  2800 				if (parser.parCount()==0)
  2801 					addNewBranch (0);
  2802 				else
  2803 				{
  2804 					n=parser.parInt (ok,0);
  2805 					if (ok ) addNewBranch (n);
  2806 				}
  2807 			}
  2808 		}
  2809 	/////////////////////////////////////////////////////////////////////
  2810 	} else if (com=="addBranchBefore")
  2811 	{
  2812 		if (!selti)
  2813 		{
  2814 			parser.setError (Aborted,"Nothing selected");
  2815 		} else if (! selbi )
  2816 		{				  
  2817 			parser.setError (Aborted,"Type of selection is not a branch");
  2818 		} else 
  2819 		{	
  2820 			if (parser.parCount()==0)
  2821 			{
  2822 				addNewBranchBefore ();
  2823 			}	
  2824 		}
  2825 	/////////////////////////////////////////////////////////////////////
  2826 	} else if (com==QString("addMapCenter"))
  2827 	{
  2828 		if (parser.checkParCount(2))
  2829 		{
  2830 			x=parser.parDouble (ok,0);
  2831 			if (ok)
  2832 			{
  2833 				y=parser.parDouble (ok,1);
  2834 				if (ok) addMapCenter (QPointF(x,y));
  2835 			}
  2836 		}	
  2837 	/////////////////////////////////////////////////////////////////////
  2838 	} else if (com==QString("addMapReplace"))
  2839 	{
  2840 		if (!selti)
  2841 		{
  2842 			parser.setError (Aborted,"Nothing selected");
  2843 		} else if (! selbi )
  2844 		{				  
  2845 			parser.setError (Aborted,"Type of selection is not a branch");
  2846 		} else if (parser.checkParCount(1))
  2847 		{
  2848 			//s=parser.parString (ok,0);	// selection
  2849 			t=parser.parString (ok,0);	// path to map
  2850 			if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
  2851 			addMapReplaceInt(getSelectString(selbi),t);	
  2852 		}
  2853 	/////////////////////////////////////////////////////////////////////
  2854 	} else if (com==QString("addMapInsert"))
  2855 	{
  2856 		if (!selti)
  2857 		{
  2858 			parser.setError (Aborted,"Nothing selected");
  2859 		} else if (! selbi )
  2860 		{				  
  2861 			parser.setError (Aborted,"Type of selection is not a branch");
  2862 		} else 
  2863 		{	
  2864 			if (parser.checkParCount(2))
  2865 			{
  2866 				t=parser.parString (ok,0);	// path to map
  2867 				n=parser.parInt(ok,1);		// position
  2868 				if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
  2869 				addMapInsertInt(t,n);	
  2870 			}
  2871 		}
  2872 	/////////////////////////////////////////////////////////////////////
  2873 	} else /*if (com=="clearFlags")	// FIXME-2
  2874 	{
  2875 		if (!selti )
  2876 		{
  2877 			parser.setError (Aborted,"Nothing selected");
  2878 		} else if (! selbi )
  2879 		{				  
  2880 			parser.setError (Aborted,"Type of selection is not a branch");
  2881 		} else if (parser.checkParCount(0))
  2882 		{
  2883 			selb->clearStandardFlags();	
  2884 			selb->updateFlagsToolbar();
  2885 		}
  2886 	/////////////////////////////////////////////////////////////////////
  2887 	} else */ if (com=="colorBranch")
  2888 	{
  2889 		if (!selti)
  2890 		{
  2891 			parser.setError (Aborted,"Nothing selected");
  2892 		} else if (! selbi )
  2893 		{				  
  2894 			parser.setError (Aborted,"Type of selection is not a branch");
  2895 		} else if (parser.checkParCount(1))
  2896 		{	
  2897 			QColor c=parser.parColor (ok,0);
  2898 			if (ok) colorBranch (c);
  2899 		}	
  2900 	/////////////////////////////////////////////////////////////////////
  2901 	} else if (com=="colorSubtree")
  2902 	{
  2903 		if (!selti)
  2904 		{
  2905 			parser.setError (Aborted,"Nothing selected");
  2906 		} else if (! selbi )
  2907 		{				  
  2908 			parser.setError (Aborted,"Type of selection is not a branch");
  2909 		} else if (parser.checkParCount(1))
  2910 		{	
  2911 			QColor c=parser.parColor (ok,0);
  2912 			if (ok) colorSubtree (c);
  2913 		}	
  2914 	/////////////////////////////////////////////////////////////////////
  2915 	} else if (com=="copy")
  2916 	{
  2917 		if (!selti)
  2918 		{
  2919 			parser.setError (Aborted,"Nothing selected");
  2920 		} else if (! selbi )
  2921 		{				  
  2922 			parser.setError (Aborted,"Type of selection is not a branch");
  2923 		} else if (parser.checkParCount(0))
  2924 		{	
  2925 			//FIXME-1 missing action for copy
  2926 		}	
  2927 	/////////////////////////////////////////////////////////////////////
  2928 	} else if (com=="cut")
  2929 	{
  2930 		if (!selti)
  2931 		{
  2932 			parser.setError (Aborted,"Nothing selected");
  2933 		} else if ( selectionType()!=TreeItem::Branch  && 
  2934 					selectionType()!=TreeItem::MapCenter  &&
  2935 					selectionType()!=TreeItem::Image )
  2936 		{				  
  2937 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  2938 		} else if (parser.checkParCount(0))
  2939 		{	
  2940 			cut();
  2941 		}	
  2942 	/////////////////////////////////////////////////////////////////////
  2943 	} else if (com=="delete")
  2944 	{
  2945 		if (!selti)
  2946 		{
  2947 			parser.setError (Aborted,"Nothing selected");
  2948 		} 
  2949 		/*else if (selectionType() != TreeItem::Branch && selectionType() != TreeItem::Image )
  2950 		{
  2951 			parser.setError (Aborted,"Type of selection is wrong.");
  2952 		} 
  2953 		*/
  2954 		else if (parser.checkParCount(0))
  2955 		{	
  2956 			deleteSelection();
  2957 		}	
  2958 	/////////////////////////////////////////////////////////////////////
  2959 	} else if (com=="deleteKeepChildren")
  2960 	{
  2961 		if (!selti)
  2962 		{
  2963 			parser.setError (Aborted,"Nothing selected");
  2964 		} else if (! selbi )
  2965 		{
  2966 			parser.setError (Aborted,"Type of selection is not a branch");
  2967 		} else if (parser.checkParCount(0))
  2968 		{	
  2969 			deleteKeepChildren();
  2970 		}	
  2971 	/////////////////////////////////////////////////////////////////////
  2972 	} else if (com=="deleteChildren")
  2973 	{
  2974 		if (!selti)
  2975 		{
  2976 			parser.setError (Aborted,"Nothing selected");
  2977 		} else if (! selbi)
  2978 		{
  2979 			parser.setError (Aborted,"Type of selection is not a branch");
  2980 		} else if (parser.checkParCount(0))
  2981 		{	
  2982 			deleteChildren();
  2983 		}	
  2984 	/////////////////////////////////////////////////////////////////////
  2985 	} else if (com=="exportASCII")
  2986 	{
  2987 		QString fname="";
  2988 		ok=true;
  2989 		if (parser.parCount()>=1)
  2990 			// Hey, we even have a filename
  2991 			fname=parser.parString(ok,0); 
  2992 		if (!ok)
  2993 		{
  2994 			parser.setError (Aborted,"Could not read filename");
  2995 		} else
  2996 		{
  2997 				exportASCII (fname,false);
  2998 		}
  2999 	/////////////////////////////////////////////////////////////////////
  3000 	} else if (com=="exportImage")
  3001 	{
  3002 		QString fname="";
  3003 		ok=true;
  3004 		if (parser.parCount()>=2)
  3005 			// Hey, we even have a filename
  3006 			fname=parser.parString(ok,0); 
  3007 		if (!ok)
  3008 		{
  3009 			parser.setError (Aborted,"Could not read filename");
  3010 		} else
  3011 		{
  3012 			QString format="PNG";
  3013 			if (parser.parCount()>=2)
  3014 			{
  3015 				format=parser.parString(ok,1);
  3016 			}
  3017 			exportImage (fname,false,format);
  3018 		}
  3019 	/////////////////////////////////////////////////////////////////////
  3020 	} else if (com=="exportXHTML")
  3021 	{
  3022 		QString fname="";
  3023 		ok=true;
  3024 		if (parser.parCount()>=2)
  3025 			// Hey, we even have a filename
  3026 			fname=parser.parString(ok,1); 
  3027 		if (!ok)
  3028 		{
  3029 			parser.setError (Aborted,"Could not read filename");
  3030 		} else
  3031 		{
  3032 			exportXHTML (fname,false);
  3033 		}
  3034 	/////////////////////////////////////////////////////////////////////
  3035 	} else if (com=="exportXML")
  3036 	{
  3037 		QString fname="";
  3038 		ok=true;
  3039 		if (parser.parCount()>=2)
  3040 			// Hey, we even have a filename
  3041 			fname=parser.parString(ok,1); 
  3042 		if (!ok)
  3043 		{
  3044 			parser.setError (Aborted,"Could not read filename");
  3045 		} else
  3046 		{
  3047 			exportXML (fname,false);
  3048 		}
  3049 	/////////////////////////////////////////////////////////////////////
  3050 	} else if (com=="importDir")
  3051 	{
  3052 		if (!selti)
  3053 		{
  3054 			parser.setError (Aborted,"Nothing selected");
  3055 		} else if (! selbi )
  3056 		{				  
  3057 			parser.setError (Aborted,"Type of selection is not a branch");
  3058 		} else if (parser.checkParCount(1))
  3059 		{
  3060 			s=parser.parString(ok,0);
  3061 			if (ok) importDirInt(s);
  3062 		}	
  3063 	/////////////////////////////////////////////////////////////////////
  3064 	} else /* FIXME-2 if (com=="linkTo")
  3065 	{
  3066 		if (!selti)
  3067 		{
  3068 			parser.setError (Aborted,"Nothing selected");
  3069 		} else if ( selbi)
  3070 		{
  3071 			if (parser.checkParCount(4))
  3072 			{
  3073 				// 0	selectstring of parent
  3074 				// 1	num in parent (for branches)
  3075 				// 2,3	x,y of mainbranch or mapcenter
  3076 				s=parser.parString(ok,0);
  3077 				LinkableMapObj *dst=findObjBySelect (s);
  3078 				if (dst)
  3079 				{	
  3080 					if (typeid(*dst) == typeid(BranchObj) ) 
  3081 					{
  3082 						// Get number in parent
  3083 						n=parser.parInt (ok,1);
  3084 						if (ok)
  3085 						{
  3086 							selb->linkTo ((BranchObj*)(dst),n);
  3087 							selection.update();
  3088 						}	
  3089 					} else if (typeid(*dst) == typeid(MapCenterObj) ) 
  3090 					{
  3091 						selb->linkTo ((BranchObj*)(dst),-1);
  3092 						// Get coordinates of mainbranch
  3093 						x=parser.parDouble(ok,2);
  3094 						if (ok)
  3095 						{
  3096 							y=parser.parDouble(ok,3);
  3097 							if (ok) 
  3098 							{
  3099 								selbi->move (x,y);
  3100 								selection.update();
  3101 							}
  3102 						}
  3103 					}	
  3104 				}	
  3105 			}	
  3106 		} else if ( selectionType() == TreeItem::Image) 
  3107 		{
  3108 			if (parser.checkParCount(1))
  3109 			{
  3110 				// 0	selectstring of parent
  3111 				s=parser.parString(ok,0);
  3112 				LinkableMapObj *dst=findObjBySelect (s);
  3113 				if (dst)
  3114 				{	
  3115 					if (typeid(*dst) == typeid(BranchObj) ||
  3116 						typeid(*dst) == typeid(MapCenterObj)) 
  3117 						linkFloatImageTo (getSelectString(dst));
  3118 				} else	
  3119 					parser.setError (Aborted,"Destination is not a branch");
  3120 			}		
  3121 		} else
  3122 			parser.setError (Aborted,"Type of selection is not a floatimage or branch");
  3123 	/////////////////////////////////////////////////////////////////////
  3124 	} else */ if (com=="loadImage")
  3125 	{
  3126 		if (!selti)
  3127 		{
  3128 			parser.setError (Aborted,"Nothing selected");
  3129 		} else if (! selbi )
  3130 		{				  
  3131 			parser.setError (Aborted,"Type of selection is not a branch");
  3132 		} else if (parser.checkParCount(1))
  3133 		{
  3134 			s=parser.parString(ok,0);
  3135 			if (ok) loadFloatImageInt (s);
  3136 		}	
  3137 	/////////////////////////////////////////////////////////////////////
  3138 	} else if (com=="moveBranchUp")
  3139 	{
  3140 		if (!selti )
  3141 		{
  3142 			parser.setError (Aborted,"Nothing selected");
  3143 		} else if (! selbi )
  3144 		{				  
  3145 			parser.setError (Aborted,"Type of selection is not a branch");
  3146 		} else if (parser.checkParCount(0))
  3147 		{
  3148 			moveBranchUp();
  3149 		}	
  3150 	/////////////////////////////////////////////////////////////////////
  3151 	} else if (com=="moveBranchDown")
  3152 	{
  3153 		if (!selti )
  3154 		{
  3155 			parser.setError (Aborted,"Nothing selected");
  3156 		} else if (! selbi )
  3157 		{				  
  3158 			parser.setError (Aborted,"Type of selection is not a branch");
  3159 		} else if (parser.checkParCount(0))
  3160 		{
  3161 			moveBranchDown();
  3162 		}	
  3163 	/////////////////////////////////////////////////////////////////////
  3164 	} else if (com=="move")
  3165 	{
  3166 		if (!selti )
  3167 		{
  3168 			parser.setError (Aborted,"Nothing selected");
  3169 		} else if ( selectionType()!=TreeItem::Branch  && 
  3170 					selectionType()!=TreeItem::MapCenter  &&
  3171 					selectionType()!=TreeItem::Image )
  3172 		{				  
  3173 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3174 		} else if (parser.checkParCount(2))
  3175 		{	
  3176 			x=parser.parDouble (ok,0);
  3177 			if (ok)
  3178 			{
  3179 				y=parser.parDouble (ok,1);
  3180 				if (ok) move (x,y);
  3181 			}
  3182 		}	
  3183 	/////////////////////////////////////////////////////////////////////
  3184 	} else if (com=="moveRel")
  3185 	{
  3186 		if (!selti )
  3187 		{
  3188 			parser.setError (Aborted,"Nothing selected");
  3189 		} else if ( selectionType()!=TreeItem::Branch  && 
  3190 					selectionType()!=TreeItem::MapCenter  &&
  3191 					selectionType()!=TreeItem::Image )
  3192 		{				  
  3193 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3194 		} else if (parser.checkParCount(2))
  3195 		{	
  3196 			x=parser.parDouble (ok,0);
  3197 			if (ok)
  3198 			{
  3199 				y=parser.parDouble (ok,1);
  3200 				if (ok) moveRel (x,y);
  3201 			}
  3202 		}	
  3203 	/////////////////////////////////////////////////////////////////////
  3204 	} else if (com=="nop")
  3205 	{
  3206 	/////////////////////////////////////////////////////////////////////
  3207 	} else if (com=="paste")
  3208 	{
  3209 		if (!selti )
  3210 		{
  3211 			parser.setError (Aborted,"Nothing selected");
  3212 		} else if (! selbi )
  3213 		{				  
  3214 			parser.setError (Aborted,"Type of selection is not a branch");
  3215 		} else if (parser.checkParCount(1))
  3216 		{	
  3217 			n=parser.parInt (ok,0);
  3218 			if (ok) pasteNoSave(n);
  3219 		}	
  3220 	/////////////////////////////////////////////////////////////////////
  3221 	} else if (com=="qa")
  3222 	{
  3223 		if (!selti )
  3224 		{
  3225 			parser.setError (Aborted,"Nothing selected");
  3226 		} else if (! selbi )
  3227 		{				  
  3228 			parser.setError (Aborted,"Type of selection is not a branch");
  3229 		} else if (parser.checkParCount(4))
  3230 		{	
  3231 			QString c,u;
  3232 			c=parser.parString (ok,0);
  3233 			if (!ok)
  3234 			{
  3235 				parser.setError (Aborted,"No comment given");
  3236 			} else
  3237 			{
  3238 				s=parser.parString (ok,1);
  3239 				if (!ok)
  3240 				{
  3241 					parser.setError (Aborted,"First parameter is not a string");
  3242 				} else
  3243 				{
  3244 					t=parser.parString (ok,2);
  3245 					if (!ok)
  3246 					{
  3247 						parser.setError (Aborted,"Condition is not a string");
  3248 					} else
  3249 					{
  3250 						u=parser.parString (ok,3);
  3251 						if (!ok)
  3252 						{
  3253 							parser.setError (Aborted,"Third parameter is not a string");
  3254 						} else
  3255 						{
  3256 							if (s!="heading")
  3257 							{
  3258 								parser.setError (Aborted,"Unknown type: "+s);
  3259 							} else
  3260 							{
  3261 								if (! (t=="eq") ) 
  3262 								{
  3263 									parser.setError (Aborted,"Unknown operator: "+t);
  3264 								} else
  3265 								{
  3266 									if (! selbi    )
  3267 									{
  3268 										parser.setError (Aborted,"Type of selection is not a branch");
  3269 									} else
  3270 									{
  3271 										if (selbi->getHeading() == u)
  3272 										{
  3273 											cout << "PASSED: " << qPrintable (c)  << endl;
  3274 										} else
  3275 										{
  3276 											cout << "FAILED: " << qPrintable (c)  << endl;
  3277 										}
  3278 									}
  3279 								}
  3280 							}
  3281 						} 
  3282 					} 
  3283 				} 
  3284 			}
  3285 		}	
  3286 	/////////////////////////////////////////////////////////////////////
  3287 	} else if (com=="saveImage")
  3288 	{
  3289 		FloatImageObj *fio=selection.getFloatImage();
  3290 		if (!fio)
  3291 		{
  3292 			parser.setError (Aborted,"Type of selection is not an image");
  3293 		} else if (parser.checkParCount(2))
  3294 		{
  3295 			s=parser.parString(ok,0);
  3296 			if (ok)
  3297 			{
  3298 				t=parser.parString(ok,1);
  3299 				if (ok) saveFloatImageInt (fio,t,s);
  3300 			}
  3301 		}	
  3302 	/////////////////////////////////////////////////////////////////////
  3303 	} else if (com=="scroll")
  3304 	{
  3305 		if (!selti)
  3306 		{
  3307 			parser.setError (Aborted,"Nothing selected");
  3308 		} else if (! selbi )
  3309 		{				  
  3310 			parser.setError (Aborted,"Type of selection is not a branch");
  3311 		} else if (parser.checkParCount(0))
  3312 		{	
  3313 			if (!scrollBranch (selbi))	
  3314 				parser.setError (Aborted,"Could not scroll branch");
  3315 		}	
  3316 	/////////////////////////////////////////////////////////////////////
  3317 	} else if (com=="select")
  3318 	{
  3319 		if (parser.checkParCount(1))
  3320 		{
  3321 			s=parser.parString(ok,0);
  3322 			if (ok) select (s);
  3323 		}	
  3324 	/////////////////////////////////////////////////////////////////////
  3325 	} else if (com=="selectLastBranch")
  3326 	{
  3327 		if (!selti )
  3328 		{
  3329 			parser.setError (Aborted,"Nothing selected");
  3330 		} else if (! selbi )
  3331 		{				  
  3332 			parser.setError (Aborted,"Type of selection is not a branch");
  3333 		} else if (parser.checkParCount(0))
  3334 		{	
  3335 			BranchItem *bi=selbi->getLastBranch();
  3336 			if (!bi)
  3337 				parser.setError (Aborted,"Could not select last branch");
  3338 			select (bi);		// FIXME-3 was selectInt
  3339 				
  3340 		}	
  3341 	/////////////////////////////////////////////////////////////////////
  3342 	} else /* FIXME-2 if (com=="selectLastImage")
  3343 	{
  3344 		if (!selti )
  3345 		{
  3346 			parser.setError (Aborted,"Nothing selected");
  3347 		} else if (! selbi )
  3348 		{				  
  3349 			parser.setError (Aborted,"Type of selection is not a branch");
  3350 		} else if (parser.checkParCount(0))
  3351 		{	
  3352 			FloatImageObj *fio=selb->getLastFloatImage();
  3353 			if (!fio)
  3354 				parser.setError (Aborted,"Could not select last image");
  3355 			select (fio);		// FIXME-3 was selectInt
  3356 				
  3357 		}	
  3358 	/////////////////////////////////////////////////////////////////////
  3359 	} else */ if (com=="selectLatestAdded")
  3360 	{
  3361 		if (!latestAddedItem)
  3362 		{
  3363 			parser.setError (Aborted,"No latest added object");
  3364 		} else
  3365 		{	
  3366 			if (!select (latestAddedItem))
  3367 				parser.setError (Aborted,"Could not select latest added object ");
  3368 		}	
  3369 	/////////////////////////////////////////////////////////////////////
  3370 	} else if (com=="setFrameType")
  3371 	{
  3372 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3373 		{
  3374 			parser.setError (Aborted,"Type of selection does not allow setting frame type");
  3375 		}
  3376 		else if (parser.checkParCount(1))
  3377 		{
  3378 			s=parser.parString(ok,0);
  3379 			if (ok) setFrameType (s);
  3380 		}	
  3381 	/////////////////////////////////////////////////////////////////////
  3382 	} else if (com=="setFramePenColor")
  3383 	{
  3384 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3385 		{
  3386 			parser.setError (Aborted,"Type of selection does not allow setting of pen color");
  3387 		}
  3388 		else if (parser.checkParCount(1))
  3389 		{
  3390 			QColor c=parser.parColor(ok,0);
  3391 			if (ok) setFramePenColor (c);
  3392 		}	
  3393 	/////////////////////////////////////////////////////////////////////
  3394 	} else if (com=="setFrameBrushColor")
  3395 	{
  3396 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3397 		{
  3398 			parser.setError (Aborted,"Type of selection does not allow setting brush color");
  3399 		}
  3400 		else if (parser.checkParCount(1))
  3401 		{
  3402 			QColor c=parser.parColor(ok,0);
  3403 			if (ok) setFrameBrushColor (c);
  3404 		}	
  3405 	/////////////////////////////////////////////////////////////////////
  3406 	} else if (com=="setFramePadding")
  3407 	{
  3408 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3409 		{
  3410 			parser.setError (Aborted,"Type of selection does not allow setting frame padding");
  3411 		}
  3412 		else if (parser.checkParCount(1))
  3413 		{
  3414 			n=parser.parInt(ok,0);
  3415 			if (ok) setFramePadding(n);
  3416 		}	
  3417 	/////////////////////////////////////////////////////////////////////
  3418 	} else if (com=="setFrameBorderWidth")
  3419 	{
  3420 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3421 		{
  3422 			parser.setError (Aborted,"Type of selection does not allow setting frame border width");
  3423 		}
  3424 		else if (parser.checkParCount(1))
  3425 		{
  3426 			n=parser.parInt(ok,0);
  3427 			if (ok) setFrameBorderWidth (n);
  3428 		}	
  3429 	/////////////////////////////////////////////////////////////////////
  3430 	} else if (com=="setMapAuthor")
  3431 	{
  3432 		if (parser.checkParCount(1))
  3433 		{
  3434 			s=parser.parString(ok,0);
  3435 			if (ok) setAuthor (s);
  3436 		}	
  3437 	/////////////////////////////////////////////////////////////////////
  3438 	} else if (com=="setMapComment")
  3439 	{
  3440 		if (parser.checkParCount(1))
  3441 		{
  3442 			s=parser.parString(ok,0);
  3443 			if (ok) setComment(s);
  3444 		}	
  3445 	/////////////////////////////////////////////////////////////////////
  3446 	} else if (com=="setMapBackgroundColor")
  3447 	{
  3448 		if (!selti )
  3449 		{
  3450 			parser.setError (Aborted,"Nothing selected");
  3451 		} else if (! selbi )
  3452 		{				  
  3453 			parser.setError (Aborted,"Type of selection is not a branch");
  3454 		} else if (parser.checkParCount(1))
  3455 		{
  3456 			QColor c=parser.parColor (ok,0);
  3457 			if (ok) setMapBackgroundColor (c);
  3458 		}	
  3459 	/////////////////////////////////////////////////////////////////////
  3460 	} else if (com=="setMapDefLinkColor")
  3461 	{
  3462 		if (!selti )
  3463 		{
  3464 			parser.setError (Aborted,"Nothing selected");
  3465 		} else if (! selbi )
  3466 		{				  
  3467 			parser.setError (Aborted,"Type of selection is not a branch");
  3468 		} else if (parser.checkParCount(1))
  3469 		{
  3470 			QColor c=parser.parColor (ok,0);
  3471 			if (ok) setMapDefLinkColor (c);
  3472 		}	
  3473 	/////////////////////////////////////////////////////////////////////
  3474 	} else if (com=="setMapLinkStyle")
  3475 	{
  3476 		if (parser.checkParCount(1))
  3477 		{
  3478 			s=parser.parString (ok,0);
  3479 			if (ok) setMapLinkStyle(s);
  3480 		}	
  3481 	/////////////////////////////////////////////////////////////////////
  3482 	} else if (com=="setHeading")
  3483 	{
  3484 		if (!selti )
  3485 		{
  3486 			parser.setError (Aborted,"Nothing selected");
  3487 		} else if (! selbi )
  3488 		{				  
  3489 			parser.setError (Aborted,"Type of selection is not a branch");
  3490 		} else if (parser.checkParCount(1))
  3491 		{
  3492 			s=parser.parString (ok,0);
  3493 			if (ok) 
  3494 				setHeading (s);
  3495 		}	
  3496 	/////////////////////////////////////////////////////////////////////
  3497 	} else if (com=="setHideExport")
  3498 	{
  3499 		if (!selti )
  3500 		{
  3501 			parser.setError (Aborted,"Nothing selected");
  3502 		} else if (selectionType()!=TreeItem::Branch && selectionType() != TreeItem::MapCenter &&selectionType()!=TreeItem::Image)
  3503 		{				  
  3504 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3505 		} else if (parser.checkParCount(1))
  3506 		{
  3507 			b=parser.parBool(ok,0);
  3508 			if (ok) setHideExport (b);
  3509 		}
  3510 	/////////////////////////////////////////////////////////////////////
  3511 	} else if (com=="setIncludeImagesHorizontally")
  3512 	{ 
  3513 		if (!selti )
  3514 		{
  3515 			parser.setError (Aborted,"Nothing selected");
  3516 		} else if (! selbi)
  3517 		{				  
  3518 			parser.setError (Aborted,"Type of selection is not a branch");
  3519 		} else if (parser.checkParCount(1))
  3520 		{
  3521 			b=parser.parBool(ok,0);
  3522 			if (ok) setIncludeImagesHor(b);
  3523 		}
  3524 	/////////////////////////////////////////////////////////////////////
  3525 	} else if (com=="setIncludeImagesVertically")
  3526 	{
  3527 		if (!selti )
  3528 		{
  3529 			parser.setError (Aborted,"Nothing selected");
  3530 		} else if (! selbi)
  3531 		{				  
  3532 			parser.setError (Aborted,"Type of selection is not a branch");
  3533 		} else if (parser.checkParCount(1))
  3534 		{
  3535 			b=parser.parBool(ok,0);
  3536 			if (ok) setIncludeImagesVer(b);
  3537 		}
  3538 	/////////////////////////////////////////////////////////////////////
  3539 	} else if (com=="setHideLinkUnselected")
  3540 	{
  3541 		if (!selti )
  3542 		{
  3543 			parser.setError (Aborted,"Nothing selected");
  3544 		} else if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3545 		{				  
  3546 			parser.setError (Aborted,"Type of selection does not allow hiding the link");
  3547 		} else if (parser.checkParCount(1))
  3548 		{
  3549 			b=parser.parBool(ok,0);
  3550 			if (ok) setHideLinkUnselected(b);
  3551 		}
  3552 	/////////////////////////////////////////////////////////////////////
  3553 	} else if (com=="setSelectionColor")
  3554 	{
  3555 		if (parser.checkParCount(1))
  3556 		{
  3557 			QColor c=parser.parColor (ok,0);
  3558 			if (ok) setSelectionColorInt (c);
  3559 		}	
  3560 	/////////////////////////////////////////////////////////////////////
  3561 	} else if (com=="setURL")
  3562 	{
  3563 		if (!selti )
  3564 		{
  3565 			parser.setError (Aborted,"Nothing selected");
  3566 		} else if (! selbi )
  3567 		{				  
  3568 			parser.setError (Aborted,"Type of selection is not a branch");
  3569 		} else if (parser.checkParCount(1))
  3570 		{
  3571 			s=parser.parString (ok,0);
  3572 			if (ok) setURL(s);
  3573 		}	
  3574 	/////////////////////////////////////////////////////////////////////
  3575 	} else if (com=="setVymLink")
  3576 	{
  3577 		if (!selti )
  3578 		{
  3579 			parser.setError (Aborted,"Nothing selected");
  3580 		} else if (! selbi )
  3581 		{				  
  3582 			parser.setError (Aborted,"Type of selection is not a branch");
  3583 		} else if (parser.checkParCount(1))
  3584 		{
  3585 			s=parser.parString (ok,0);
  3586 			if (ok) setVymLink(s);
  3587 		}	
  3588 	}
  3589 	/////////////////////////////////////////////////////////////////////
  3590 	else /* FIXME-2 if (com=="setFlag")
  3591 	{
  3592 		if (!selti )
  3593 		{
  3594 			parser.setError (Aborted,"Nothing selected");
  3595 		} else if (! selbi )
  3596 		{				  
  3597 			parser.setError (Aborted,"Type of selection is not a branch");
  3598 		} else if (parser.checkParCount(1))
  3599 		{
  3600 			s=parser.parString(ok,0);
  3601 			if (ok) 
  3602 			{
  3603 				selb->activateStandardFlag(s);
  3604 				selb->updateFlagsToolbar();
  3605 			}	
  3606 		}
  3607 	/////////////////////////////////////////////////////////////////////
  3608 	} else */ /* FIXME-2 if (com=="setFrameType")
  3609 	{
  3610 		if (!selti )
  3611 		{
  3612 			parser.setError (Aborted,"Nothing selected");
  3613 		} else if (! selb )
  3614 		{				  
  3615 			parser.setError (Aborted,"Type of selection is not a branch");
  3616 		} else if (parser.checkParCount(1))
  3617 		{
  3618 			s=parser.parString(ok,0);
  3619 			if (ok) 
  3620 				setFrameType (s);
  3621 		}
  3622 	/////////////////////////////////////////////////////////////////////
  3623 	} else*/ if (com=="sortChildren")
  3624 	{
  3625 		if (!selti )
  3626 		{
  3627 			parser.setError (Aborted,"Nothing selected");
  3628 		} else if (! selbi )
  3629 		{				  
  3630 			parser.setError (Aborted,"Type of selection is not a branch");
  3631 		} else if (parser.checkParCount(0))
  3632 		{
  3633 			sortChildren();
  3634 		}
  3635 	/////////////////////////////////////////////////////////////////////
  3636 	} else /* FIXME-2 if (com=="toggleFlag")
  3637 	{
  3638 		if (!selti )
  3639 		{
  3640 			parser.setError (Aborted,"Nothing selected");
  3641 		} else if (! selbi )
  3642 		{				  
  3643 			parser.setError (Aborted,"Type of selection is not a branch");
  3644 		} else if (parser.checkParCount(1))
  3645 		{
  3646 			s=parser.parString(ok,0);
  3647 			if (ok) 
  3648 			{
  3649 				selbi->toggleStandardFlag(s);	
  3650 				selb->updateFlagsToolbar();
  3651 			}	
  3652 		}
  3653 	/////////////////////////////////////////////////////////////////////
  3654 	} else */ if (com=="unscroll")
  3655 	{
  3656 		if (!selti)
  3657 		{
  3658 			parser.setError (Aborted,"Nothing selected");
  3659 		} else if (! selbi )
  3660 		{				  
  3661 			parser.setError (Aborted,"Type of selection is not a branch");
  3662 		} else if (parser.checkParCount(0))
  3663 		{	
  3664 			if (!unscrollBranch (selbi))	
  3665 				parser.setError (Aborted,"Could not unscroll branch");
  3666 		}	
  3667 	/////////////////////////////////////////////////////////////////////
  3668 	} else if (com=="unscrollChildren")
  3669 	{
  3670 		if (!selti)
  3671 		{
  3672 			parser.setError (Aborted,"Nothing selected");
  3673 		} else if (! selbi )
  3674 		{				  
  3675 			parser.setError (Aborted,"Type of selection is not a branch");
  3676 		} else if (parser.checkParCount(0))
  3677 		{	
  3678 			unscrollChildren ();
  3679 		}	
  3680 	/////////////////////////////////////////////////////////////////////
  3681 	} else /* FIXME-2 if (com=="unsetFlag")
  3682 	{
  3683 		if (selection.isEmpty() )
  3684 		{
  3685 			parser.setError (Aborted,"Nothing selected");
  3686 		} else if (! selbi )
  3687 		{				  
  3688 			parser.setError (Aborted,"Type of selection is not a branch");
  3689 		} else if (parser.checkParCount(1))
  3690 		{
  3691 			s=parser.parString(ok,0);
  3692 			if (ok) 
  3693 			{
  3694 				selb->deactivateStandardFlag(s);
  3695 				selb->updateFlagsToolbar();
  3696 			}	
  3697 		}
  3698 	} else */
  3699 		parser.setError (Aborted,"Unknown command");
  3700 
  3701 	// Any errors?
  3702 	if (parser.errorLevel()==NoError)
  3703 	{
  3704 		// setChanged();  FIXME-2 should not be called e.g. for export?!
  3705 		reposition();
  3706 	}	
  3707 	else	
  3708 	{
  3709 		// TODO Error handling
  3710 		qWarning("VymModel::parseAtom: Error!");
  3711 		qWarning(parser.errorMessage());
  3712 	} 
  3713 }
  3714 
  3715 void VymModel::runScript (QString script)
  3716 {
  3717 	parser.setScript (script);
  3718 	parser.runScript();
  3719 	while (parser.next() ) 
  3720 		parseAtom(parser.getAtom());
  3721 }
  3722 
  3723 void VymModel::setExportMode (bool b)
  3724 {
  3725 	// should be called before and after exports
  3726 	// depending on the settings
  3727 	if (b && settings.value("/export/useHideExport","true")=="true")
  3728 		setHideTmpMode (TreeItem::HideExport);
  3729 	else	
  3730 		setHideTmpMode (TreeItem::HideNone);
  3731 }
  3732 
  3733 void VymModel::exportImage(QString fname, bool askName, QString format)
  3734 {
  3735 	if (fname=="")
  3736 	{
  3737 		fname=getMapName()+".png";
  3738 		format="PNG";
  3739 	} 	
  3740 
  3741 	if (askName)
  3742 	{
  3743 		QStringList fl;
  3744 		QFileDialog *fd=new QFileDialog (NULL);
  3745 		fd->setCaption (tr("Export map as image"));
  3746 		fd->setDirectory (lastImageDir);
  3747 		fd->setFileMode(QFileDialog::AnyFile);
  3748 		fd->setFilters  (imageIO.getFilters() );
  3749 		if (fd->exec())
  3750 		{
  3751 			fl=fd->selectedFiles();
  3752 			fname=fl.first();
  3753 			format=imageIO.getType(fd->selectedFilter());
  3754 		} 
  3755 	}
  3756 
  3757 	setExportMode (true);
  3758 	QPixmap pix (getPixmap());
  3759 	pix.save(fname, format);
  3760 	setExportMode (false);
  3761 }
  3762 
  3763 
  3764 void VymModel::exportXML(QString dir, bool askForName)
  3765 {
  3766 	if (askForName)
  3767 	{
  3768 		dir=browseDirectory(NULL,tr("Export XML to directory"));
  3769 		if (dir =="" && !reallyWriteDirectory(dir) )
  3770 		return;
  3771 	}
  3772 
  3773 	// Hide stuff during export, if settings want this
  3774 	setExportMode (true);
  3775 
  3776 	// Create subdirectories
  3777 	makeSubDirs (dir);
  3778 
  3779 	// write to directory
  3780 	QString saveFile=saveToDir (dir,mapName+"-",true,getTotalBBox().topLeft() ,NULL);
  3781 	QFile file;
  3782 
  3783 	file.setName ( dir + "/"+mapName+".xml");
  3784 	if ( !file.open( QIODevice::WriteOnly ) )
  3785 	{
  3786 		// This should neverever happen
  3787 		QMessageBox::critical (0,tr("Critical Export Error"),tr("VymModel::exportXML couldn't open %1").arg(file.name()));
  3788 		return;
  3789 	}	
  3790 
  3791 	// Write it finally, and write in UTF8, no matter what 
  3792 	QTextStream ts( &file );
  3793 	ts.setEncoding (QTextStream::UnicodeUTF8);
  3794 	ts << saveFile;
  3795 	file.close();
  3796 
  3797 	// Now write image, too
  3798 	exportImage (dir+"/images/"+mapName+".png",false,"PNG");
  3799 
  3800 	setExportMode (false);
  3801 }
  3802 
  3803 void VymModel::exportASCII(QString fname,bool askName)
  3804 {
  3805 	ExportASCII ex;
  3806 	ex.setModel (this);
  3807 	if (fname=="") 
  3808 		ex.setFile (mapName+".txt");	
  3809 	else
  3810 		ex.setFile (fname);
  3811 
  3812 	if (askName)
  3813 	{
  3814 		//ex.addFilter ("TXT (*.txt)");
  3815 		ex.setDir(lastImageDir);
  3816 		//ex.setCaption(vymName+ " -" +tr("Export as ASCII")+" "+tr("(still experimental)"));
  3817 		ex.execDialog() ; 
  3818 	} 
  3819 	if (!ex.canceled())
  3820 	{
  3821 		setExportMode(true);
  3822 		ex.doExport();
  3823 		setExportMode(false);
  3824 	}
  3825 }
  3826 
  3827 void VymModel::exportXHTML (const QString &dir, bool askForName)
  3828 {
  3829 			ExportXHTMLDialog dia(NULL);
  3830 			dia.setFilePath (filePath );
  3831 			dia.setMapName (mapName );
  3832 			dia.readSettings();
  3833 			if (dir!="") dia.setDir (dir);
  3834 
  3835 			bool ok=true;
  3836 			
  3837 			if (askForName)
  3838 			{
  3839 				if (dia.exec()!=QDialog::Accepted) 
  3840 					ok=false;
  3841 				else	
  3842 				{
  3843 					QDir d (dia.getDir());
  3844 					// Check, if warnings should be used before overwriting
  3845 					// the output directory
  3846 					if (d.exists() && d.count()>0)
  3847 					{
  3848 						WarningDialog warn;
  3849 						warn.showCancelButton (true);
  3850 						warn.setText(QString(
  3851 							"The directory %1 is not empty.\n"
  3852 							"Do you risk to overwrite some of its contents?").arg(d.path() ));
  3853 						warn.setCaption("Warning: Directory not empty");
  3854 						warn.setShowAgainName("mainwindow/overwrite-dir-xhtml");
  3855 
  3856 						if (warn.exec()!=QDialog::Accepted) ok=false;
  3857 					}
  3858 				}	
  3859 			}
  3860 
  3861 			if (ok)
  3862 			{
  3863 				exportXML (dia.getDir(),false );
  3864 				dia.doExport(mapName );
  3865 				//if (dia.hasChanged()) setChanged();
  3866 			}
  3867 }
  3868 
  3869 void VymModel::exportOOPresentation(const QString &fn, const QString &cf)
  3870 {
  3871 	ExportOO ex;
  3872 	ex.setFile (fn);
  3873 	ex.setModel (this);
  3874 	if (ex.setConfigFile(cf)) 
  3875 	{
  3876 		setExportMode (true);
  3877 		ex.exportPresentation();
  3878 		setExportMode (false);
  3879 	}
  3880 }
  3881 
  3882 
  3883 
  3884 
  3885 //////////////////////////////////////////////
  3886 // View related
  3887 //////////////////////////////////////////////
  3888 
  3889 void VymModel::registerEditor(QWidget *me)
  3890 {
  3891 	mapEditor=(MapEditor*)me;
  3892 }
  3893 
  3894 void VymModel::unregisterEditor(QWidget *)
  3895 {
  3896 	mapEditor=NULL;
  3897 }
  3898 
  3899 void VymModel::setContextPos(QPointF p)
  3900 {
  3901 	contextPos=p;
  3902 }
  3903 
  3904 void VymModel::unsetContextPos()
  3905 {
  3906 	contextPos=QPointF();
  3907 }
  3908 
  3909 void VymModel::updateNoteFlag()
  3910 {
  3911 	setChanged();
  3912 	cout << "VM::updateNoteFlag()\n";
  3913 	/* FIXME-1 modify note flag
  3914 	BranchObj *bo=getSelectedBranch();
  3915 	if (bo) 
  3916 	{
  3917 		bo->updateNoteFlag();
  3918 		mainWindow->updateActions();
  3919 	}	
  3920 	*/
  3921 }
  3922 
  3923 void VymModel::updateRelPositions()		//FIXME-2 VM should have no need to updateRelPos
  3924 {
  3925 	//cout << "VM::updateRelPos...\n";
  3926 	for (int i=0; i<rootItem->branchCount(); i++)
  3927 		((MapCenterObj*)rootItem->getBranchObjNum(i))->updateRelPositions();
  3928 }
  3929 
  3930 void VymModel::reposition()	//FIXME-3 VM should have no need to reposition, this is done in views???
  3931 {
  3932 	//cout << "VM::reposition blocked="<<blockReposition<<endl;
  3933 	if (blockReposition) return;
  3934 
  3935 	for (int i=0;i<rootItem->branchCount(); i++)
  3936 		rootItem->getBranchObjNum(i)->reposition();	//	for positioning heading
  3937 }
  3938 
  3939 QPolygonF VymModel::shape(BranchObj *bo)	//FIXME-4
  3940 {
  3941 /*
  3942 	// Creating (arbitrary) shapes
  3943 
  3944 	QPolygonF p;
  3945 	QRectF rb=bo->getBBox();
  3946 	if (bo->getDepth()==0)
  3947 	{
  3948 		// Just take BBox of this mapCenter
  3949 		p<<rb.topLeft()<<rb.topRight()<<rb.bottomRight()<<rb.bottomLeft();
  3950 		return p;
  3951 	}
  3952 
  3953 	// Take union of BBox and TotalBBox 
  3954 
  3955 	QRectF ra=bo->getTotalBBox();
  3956 	if (bo->getOrientation()==LinkableMapObj::LeftOfCenter)
  3957 		p   <<ra.bottomLeft()
  3958 			<<ra.topLeft()
  3959 			<<QPointF (rb.topLeft().x(), ra.topLeft().y() )
  3960 			<<rb.topRight()
  3961 			<<rb.bottomRight()
  3962 			<<QPointF (rb.bottomLeft().x(), ra.bottomLeft().y() ) ;
  3963 	else		
  3964 		p   <<ra.bottomRight()
  3965 			<<ra.topRight()
  3966 			<<QPointF (rb.topRight().x(), ra.topRight().y() )
  3967 			<<rb.topLeft()
  3968 			<<rb.bottomLeft()
  3969 			<<QPointF (rb.bottomRight().x(), ra.bottomRight().y() ) ;
  3970 	return p;		
  3971 	*/
  3972 }
  3973 
  3974 void VymModel::moveAway(LinkableMapObj *lmo)	//FIXME-5
  3975 {
  3976 	// Autolayout:
  3977 	//
  3978 	// Move all branches and MapCenters away from lmo 
  3979 	// to avoid collisions 
  3980 
  3981 		/*
  3982 	QPolygonF pA;
  3983 	QPolygonF pB;
  3984 
  3985 	BranchObj *boA=(BranchObj*)lmo;
  3986 	BranchObj *boB;
  3987 	for (int i=0; i<rootItem->branchCount(); i++)
  3988 	{
  3989 		boB=rootItem->getBranchNum(i);
  3990 		pA=shape (boA);
  3991 		pB=shape (boB);
  3992 		PolygonCollisionResult r = PolygonCollision(pA, pB, QPoint(0,0));
  3993 		cout <<"------->"
  3994 			<<"="<<r.intersect
  3995 			<<"  ("<<qPrintable(boA->getHeading() )<<")"
  3996 			<<"  with ("<< qPrintable (boB->getHeading() )
  3997 			<<")  willIntersect"
  3998 			<<r.willIntersect 
  3999 			<<"  minT="<<r.minTranslation<<endl<<endl;
  4000 	}
  4001 			*/
  4002 }
  4003 
  4004 QPixmap VymModel::getPixmap()
  4005 {
  4006 	QRectF mapRect=getTotalBBox();
  4007 	QPixmap pix((int)mapRect.width()+2,(int)mapRect.height()+1);
  4008 	QPainter pp (&pix);
  4009 	
  4010 	pp.setRenderHints(mapEditor->renderHints());
  4011 
  4012 	// Don't print the visualisation of selection
  4013 	selection.unselect();
  4014 
  4015 	mapScene->render (	&pp, 
  4016 		QRectF(0,0,mapRect.width()+2,mapRect.height()+2),
  4017 		QRectF(mapRect.x(),mapRect.y(),mapRect.width(),mapRect.height() ));
  4018 
  4019 	// Restore selection
  4020 	selection.reselect();
  4021 	
  4022 	return pix;
  4023 }
  4024 
  4025 
  4026 void VymModel::setMapLinkStyle (const QString & s)
  4027 {
  4028 	QString snow;
  4029 	switch (linkstyle)
  4030 	{
  4031 		case LinkableMapObj::Line :
  4032 			snow="StyleLine";
  4033 			break;
  4034 		case LinkableMapObj::Parabel:
  4035 			snow="StyleParabel";
  4036 			break;
  4037 		case LinkableMapObj::PolyLine:
  4038 			snow="StylePolyLine";
  4039 			break;
  4040 		case LinkableMapObj::PolyParabel:
  4041 			snow="StylePolyParabel";
  4042 			break;
  4043 		default:	
  4044 			snow="UndefinedStyle";
  4045 			break;
  4046 	}
  4047 
  4048 	saveState (
  4049 		QString("setMapLinkStyle (\"%1\")").arg(s),
  4050 		QString("setMapLinkStyle (\"%1\")").arg(snow),
  4051 		QString("Set map link style (\"%1\")").arg(s)
  4052 	);	
  4053 
  4054 	if (s=="StyleLine")
  4055 		linkstyle=LinkableMapObj::Line;
  4056 	else if (s=="StyleParabel")
  4057 		linkstyle=LinkableMapObj::Parabel;
  4058 	else if (s=="StylePolyLine")
  4059 		linkstyle=LinkableMapObj::PolyLine;
  4060 	else if (s=="StylePolyParabel")	
  4061 		linkstyle=LinkableMapObj::PolyParabel;
  4062 	else
  4063 		linkstyle=LinkableMapObj::UndefinedStyle;
  4064 
  4065 	BranchItem *cur=NULL;
  4066 	BranchItem *prev=NULL;
  4067 	int d=0;
  4068 	BranchObj *bo;
  4069 	next (cur,prev,d);
  4070 	while (cur) 
  4071 	{
  4072 		bo=(BranchObj*)(cur->getLMO() );
  4073 		bo->setLinkStyle(bo->getDefLinkStyle());
  4074 		cur=next(cur,prev,d);
  4075 	}
  4076 	reposition();
  4077 }
  4078 
  4079 LinkableMapObj::Style VymModel::getMapLinkStyle ()
  4080 {
  4081 	return linkstyle;
  4082 }	
  4083 
  4084 void VymModel::setMapDefLinkColor(QColor col)
  4085 {
  4086 	if ( !col.isValid() ) return;
  4087 	saveState (
  4088 		QString("setMapDefLinkColor (\"%1\")").arg(getMapDefLinkColor().name()),
  4089 		QString("setMapDefLinkColor (\"%1\")").arg(col.name()),
  4090 		QString("Set map link color to %1").arg(col.name())
  4091 	);
  4092 
  4093 	defLinkColor=col;
  4094 	BranchItem *cur=NULL;
  4095 	BranchItem *prev=NULL;
  4096 	int d=0;
  4097 	BranchObj *bo;
  4098 	cur=next(cur,prev,d);
  4099 	while (cur) 
  4100 	{
  4101 		bo=(BranchObj*)(cur->getLMO() );
  4102 		bo->setLinkColor();
  4103 		next(cur,prev,d);
  4104 	}
  4105 	updateActions();
  4106 }
  4107 
  4108 void VymModel::setMapLinkColorHintInt()
  4109 {
  4110 	// called from setMapLinkColorHint(lch) or at end of parse
  4111 	BranchItem *cur=NULL;
  4112 	BranchItem *prev=NULL;
  4113 	int d=0;
  4114 	BranchObj *bo;
  4115 	cur=next(cur,prev,d);
  4116 	while (cur) 
  4117 	{
  4118 		bo=(BranchObj*)(cur->getLMO() );
  4119 		bo->setLinkColor();
  4120 		cur=next(cur,prev,d);
  4121 	}
  4122 }
  4123 
  4124 void VymModel::setMapLinkColorHint(LinkableMapObj::ColorHint lch)
  4125 {
  4126 	linkcolorhint=lch;
  4127 	setMapLinkColorHintInt();
  4128 }
  4129 
  4130 void VymModel::toggleMapLinkColorHint()
  4131 {
  4132 	if (linkcolorhint==LinkableMapObj::HeadingColor)
  4133 		linkcolorhint=LinkableMapObj::DefaultColor;
  4134 	else	
  4135 		linkcolorhint=LinkableMapObj::HeadingColor;
  4136 	BranchItem *cur=NULL;
  4137 	BranchItem *prev=NULL;
  4138 	int d=0;
  4139 	BranchObj *bo;
  4140 	cur=next(cur,prev,d);
  4141 	while (cur) 
  4142 	{
  4143 		bo=(BranchObj*)(cur->getLMO() );
  4144 		bo->setLinkColor();
  4145 		next(cur,prev,d);
  4146 	}
  4147 }
  4148 
  4149 void VymModel::selectMapBackgroundImage ()	// FIXME-2 move to ME
  4150 {
  4151 	Q3FileDialog *fd=new Q3FileDialog( NULL);
  4152 	fd->setMode (Q3FileDialog::ExistingFile);
  4153 	fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
  4154 	ImagePreview *p =new ImagePreview (fd);
  4155 	fd->setContentsPreviewEnabled( TRUE );
  4156 	fd->setContentsPreview( p, p );
  4157 	fd->setPreviewMode( Q3FileDialog::Contents );
  4158 	fd->setCaption(vymName+" - " +tr("Load background image"));
  4159 	fd->setDir (lastImageDir);
  4160 	fd->show();
  4161 
  4162 	if ( fd->exec() == QDialog::Accepted )
  4163 	{
  4164 		// TODO selectMapBackgroundImg in QT4 use:	lastImageDir=fd->directory();
  4165 		lastImageDir=QDir (fd->dirPath());
  4166 		setMapBackgroundImage (fd->selectedFile());
  4167 	}
  4168 }	
  4169 
  4170 void VymModel::setMapBackgroundImage (const QString &fn)	//FIXME-2 missing savestate
  4171 {
  4172 	QColor oldcol=mapScene->backgroundBrush().color();
  4173 	/*
  4174 	saveState(
  4175 		selection,
  4176 		QString ("setMapBackgroundImage (%1)").arg(oldcol.name()),
  4177 		selection,
  4178 		QString ("setMapBackgroundImage (%1)").arg(col.name()),
  4179 		QString("Set background color of map to %1").arg(col.name()));
  4180 	*/	
  4181 	QBrush brush;
  4182 	brush.setTextureImage (QPixmap (fn));
  4183 	mapScene->setBackgroundBrush(brush);
  4184 }
  4185 
  4186 void VymModel::selectMapBackgroundColor()	// FIXME-3 move to ME
  4187 {
  4188 	QColor col = QColorDialog::getColor( mapScene->backgroundBrush().color(), NULL);
  4189 	if ( !col.isValid() ) return;
  4190 	setMapBackgroundColor( col );
  4191 }
  4192 
  4193 
  4194 void VymModel::setMapBackgroundColor(QColor col)	// FIXME-3 move to ME
  4195 {
  4196 	QColor oldcol=mapScene->backgroundBrush().color();
  4197 	saveState(
  4198 		QString ("setMapBackgroundColor (\"%1\")").arg(oldcol.name()),
  4199 		QString ("setMapBackgroundColor (\"%1\")").arg(col.name()),
  4200 		QString("Set background color of map to %1").arg(col.name()));
  4201 	mapScene->setBackgroundBrush(col);
  4202 }
  4203 
  4204 QColor VymModel::getMapBackgroundColor()	// FIXME-3 move to ME
  4205 {
  4206     return mapScene->backgroundBrush().color();
  4207 }
  4208 
  4209 
  4210 LinkableMapObj::ColorHint VymModel::getMapLinkColorHint()	// FIXME-3 move to ME
  4211 {
  4212 	return linkcolorhint;
  4213 }
  4214 
  4215 QColor VymModel::getMapDefLinkColor()	// FIXME-3 move to ME
  4216 {
  4217 	return defLinkColor;
  4218 }
  4219 
  4220 void VymModel::setMapDefXLinkColor(QColor col)	// FIXME-3 move to ME
  4221 {
  4222 	defXLinkColor=col;
  4223 }
  4224 
  4225 QColor VymModel::getMapDefXLinkColor()	// FIXME-3 move to ME
  4226 {
  4227 	return defXLinkColor;
  4228 }
  4229 
  4230 void VymModel::setMapDefXLinkWidth (int w)	// FIXME-3 move to ME
  4231 {
  4232 	defXLinkWidth=w;
  4233 }
  4234 
  4235 int VymModel::getMapDefXLinkWidth()	// FIXME-3 move to ME
  4236 {
  4237 	return defXLinkWidth;
  4238 }
  4239 
  4240 void VymModel::move(const double &x, const double &y)	// FIXME-3
  4241 {
  4242 	int i=x; i=y;
  4243 /*
  4244 	BranchObj *bo = getSelectedBranch();
  4245 	if (bo && 
  4246 		(selectionType()==TreeItem::Branch ||
  4247 		 selectionType()==TreeItem::MapCenter ||
  4248 		 selectionType()==TreeItem::Image
  4249 		))
  4250 	{
  4251         QPointF ap(bo->getAbsPos());
  4252         QPointF to(x, y);
  4253         if (ap != to)
  4254         {
  4255             QString ps=qpointfToString(ap);
  4256             QString s=getSelectString();
  4257             saveState(
  4258                 s, "move "+ps, 
  4259                 s, "move "+qpointfToString(to), 
  4260                 QString("Move %1 to %2").arg(getObjectName(bo)).arg(ps));
  4261             bo->move(x,y);
  4262             reposition();
  4263             selection.update();
  4264         }
  4265 	}
  4266 */	
  4267 }
  4268 
  4269 void VymModel::moveRel (const double &x, const double &y)	// FIXME-3
  4270 {
  4271 	int i=x; i=y;
  4272 /*
  4273 	BranchObj *bo = getSelectedBranch();
  4274 	if (bo && 
  4275 		(selectionType()==TreeItem::Branch ||
  4276 		 selectionType()==TreeItem::MapCenter ||
  4277 		 selectionType()==TreeItem::Image
  4278 		))
  4279 	if (bo)
  4280 	{
  4281         QPointF rp(bo->getRelPos());
  4282         QPointF to(x, y);
  4283         if (rp != to)
  4284         {
  4285             QString ps=qpointfToString (bo->getRelPos());
  4286             QString s=getSelectString(bo);
  4287             saveState(
  4288                 s, "moveRel "+ps, 
  4289                 s, "moveRel "+qpointfToString(to), 
  4290                 QString("Move %1 to relative position %2").arg(getObjectName(bo)).arg(ps));
  4291             ((OrnamentedObj*)bo)->move2RelPos (x,y);
  4292             reposition();
  4293             bo->updateLink();
  4294             selection.update();
  4295         }
  4296 	}
  4297 */	
  4298 }
  4299 
  4300 
  4301 void VymModel::animate()
  4302 {
  4303 	animationTimer->stop();
  4304 	BranchObj *bo;
  4305 	int i=0;
  4306 	while (i<animObjList.size() )
  4307 	{
  4308 		bo=(BranchObj*)animObjList.at(i);
  4309 		if (!bo->animate())
  4310 		{
  4311 			if (i>=0) 
  4312 			{	
  4313 				animObjList.removeAt(i);
  4314 				i--;
  4315 			}
  4316 		}
  4317 		bo->reposition();
  4318 		i++;
  4319 	} 
  4320 	QItemSelection sel=selModel->selection();
  4321 	emit (selectionChanged(sel,sel));
  4322 
  4323 	mapScene->update();
  4324 	if (!animObjList.isEmpty()) animationTimer->start();
  4325 }
  4326 
  4327 
  4328 void VymModel::startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest)
  4329 {
  4330 	if (bo && bo->getTreeItem()->depth()>0) 
  4331 	{
  4332 		AnimPoint ap;
  4333 		ap.setStart (start);
  4334 		ap.setDest  (dest);
  4335 		ap.setTicks (animationTicks);
  4336 		ap.setAnimated (true);
  4337 		bo->setAnimation (ap);
  4338 		animObjList.append( bo );
  4339 		animationTimer->setSingleShot (true);
  4340 		animationTimer->start(animationInterval);
  4341 	}
  4342 }
  4343 
  4344 void VymModel::stopAnimation (MapObj *mo)
  4345 {
  4346 	int i=animObjList.indexOf(mo);
  4347     if (i>=0)
  4348 		animObjList.removeAt (i);
  4349 }
  4350 
  4351 void VymModel::sendSelection()
  4352 {
  4353 	if (netstate!=Server) return;
  4354 	sendData (QString("select (\"%1\")").arg(selection.getSelectString()) );
  4355 }
  4356 
  4357 void VymModel::newServer()
  4358 {
  4359 	port=54321;
  4360 	sendCounter=0;
  4361     tcpServer = new QTcpServer(this);
  4362     if (!tcpServer->listen(QHostAddress::Any,port)) {
  4363         QMessageBox::critical(NULL, "vym server",
  4364                               QString("Unable to start the server: %1.").arg(tcpServer->errorString()));
  4365         //FIXME-3 needed? we are no widget any longer... close();
  4366         return;
  4367     }
  4368 	connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newClient()));
  4369 	netstate=Server;
  4370 	cout<<"Server is running on port "<<tcpServer->serverPort()<<endl;
  4371 }
  4372 
  4373 void VymModel::connectToServer()
  4374 {
  4375 	port=54321;
  4376 	server="salam.suse.de";
  4377 	server="localhost";
  4378 	clientSocket = new QTcpSocket (this);
  4379 	clientSocket->abort();
  4380     clientSocket->connectToHost(server ,port);
  4381 	connect(clientSocket, SIGNAL(readyRead()), this, SLOT(readData()));
  4382     connect(clientSocket, SIGNAL(error(QAbstractSocket::SocketError)),
  4383             this, SLOT(displayNetworkError(QAbstractSocket::SocketError)));
  4384 	netstate=Client;		
  4385 	cout<<"connected to "<<qPrintable (server)<<" port "<<port<<endl;
  4386 
  4387 	
  4388 }
  4389 
  4390 void VymModel::newClient()
  4391 {
  4392     QTcpSocket *newClient = tcpServer->nextPendingConnection();
  4393     connect(newClient, SIGNAL(disconnected()),
  4394             newClient, SLOT(deleteLater()));
  4395 
  4396 	cout <<"ME::newClient  at "<<qPrintable( newClient->peerAddress().toString() )<<endl;
  4397 
  4398 	clientList.append (newClient);
  4399 }
  4400 
  4401 
  4402 void VymModel::sendData(const QString &s)
  4403 {
  4404 	if (clientList.size()==0) return;
  4405 
  4406 	// Create bytearray to send
  4407 	QByteArray block;
  4408     QDataStream out(&block, QIODevice::WriteOnly);
  4409     out.setVersion(QDataStream::Qt_4_0);
  4410 
  4411 	// Reserve some space for blocksize
  4412     out << (quint16)0;
  4413 
  4414 	// Write sendCounter
  4415     out << sendCounter++;
  4416 
  4417 	// Write data
  4418     out << s;
  4419 
  4420 	// Go back and write blocksize so far
  4421     out.device()->seek(0);
  4422     quint16 bs=(quint16)(block.size() - 2*sizeof(quint16));
  4423 	out << bs;
  4424 
  4425 	if (debug)
  4426 		cout << "ME::sendData  bs="<<bs<<"  counter="<<sendCounter<<"  s="<<qPrintable(s)<<endl;
  4427 
  4428 	for (int i=0; i<clientList.size(); ++i)
  4429 	{
  4430 		//cout << "Sending \""<<qPrintable (s)<<"\" to "<<qPrintable (clientList.at(i)->peerAddress().toString())<<endl;
  4431 		clientList.at(i)->write (block);
  4432 	}
  4433 }
  4434 
  4435 void VymModel::readData ()
  4436 {
  4437 	while (clientSocket->bytesAvailable() >=(int)sizeof(quint16) )
  4438 	{
  4439 		if (debug)
  4440 			cout <<"readData  bytesAvail="<<clientSocket->bytesAvailable();
  4441 		quint16 recCounter;
  4442 		quint16 blockSize;
  4443 
  4444 		QDataStream in(clientSocket);
  4445 		in.setVersion(QDataStream::Qt_4_0);
  4446 
  4447 		in >> blockSize;
  4448 		in >> recCounter;
  4449 		
  4450 		QString t;
  4451 		in >>t;
  4452 		if (debug)
  4453 			cout << "  t="<<qPrintable (t)<<endl;
  4454 		parseAtom (t);
  4455 	}
  4456 	return;
  4457 }
  4458 
  4459 void VymModel::displayNetworkError(QAbstractSocket::SocketError socketError)
  4460 {
  4461     switch (socketError) {
  4462     case QAbstractSocket::RemoteHostClosedError:
  4463         break;
  4464     case QAbstractSocket::HostNotFoundError:
  4465         QMessageBox::information(NULL, vymName +" Network client",
  4466                                  "The host was not found. Please check the "
  4467                                     "host name and port settings.");
  4468         break;
  4469     case QAbstractSocket::ConnectionRefusedError:
  4470         QMessageBox::information(NULL, vymName + " Network client",
  4471                                  "The connection was refused by the peer. "
  4472                                     "Make sure the fortune server is running, "
  4473                                     "and check that the host name and port "
  4474                                     "settings are correct.");
  4475         break;
  4476     default:
  4477         QMessageBox::information(NULL, vymName + " Network client",
  4478                                  QString("The following error occurred: %1.")
  4479                                  .arg(clientSocket->errorString()));
  4480     }
  4481 }
  4482 
  4483 
  4484 
  4485 
  4486 void VymModel::selectMapSelectionColor()
  4487 {
  4488 	QColor col = QColorDialog::getColor( defLinkColor, NULL);
  4489 	setSelectionColor (col);
  4490 }
  4491 
  4492 void VymModel::setSelectionColorInt (QColor col)
  4493 {
  4494 	if ( !col.isValid() ) return;
  4495 	saveState (
  4496 		QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
  4497 		QString("setSelectionColor (%1)").arg(col.name()),
  4498 		QString("Set color of selection box to %1").arg(col.name())
  4499 	);
  4500 
  4501 	mapEditor->setSelectionColor (col);
  4502 }
  4503 
  4504 /*
  4505 void VymModel::changeSelection (const QItemSelection &newsel,const QItemSelection &oldsel)
  4506 {
  4507 	cout << "VymModel::changeSelection (";
  4508 	if (!newsel.indexes().isEmpty() )
  4509 		cout << getItem(newsel.indexes().first() )->getHeading().toStdString();
  4510 	cout << ",";
  4511 	if (!oldsel.indexes().isEmpty() )
  4512 		cout << getItem(oldsel.indexes().first() )->getHeading().toStdString();
  4513 	cout << ")\n";
  4514 }
  4515 */
  4516 
  4517 void VymModel::updateSelection(const QItemSelection &newsel)
  4518 {
  4519 	emit (selectionChanged(newsel,newsel));	// needed e.g. to update geometry in editor
  4520 	ensureSelectionVisible();
  4521 	sendSelection();
  4522 }
  4523 
  4524 void VymModel::updateSelection()
  4525 {
  4526 	QItemSelection newsel=selModel->selection();
  4527 	updateSelection (newsel);
  4528 }
  4529 
  4530 void VymModel::setSelectionColor(QColor col)
  4531 {
  4532 	if ( !col.isValid() ) return;
  4533 	saveState (
  4534 		QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
  4535 		QString("setSelectionColor (%1)").arg(col.name()),
  4536 		QString("Set color of selection box to %1").arg(col.name())
  4537 	);
  4538 	setSelectionColorInt (col);
  4539 }
  4540 
  4541 QColor VymModel::getSelectionColor()
  4542 {
  4543 	return mapEditor->getSelectionColor();
  4544 }
  4545 
  4546 void VymModel::setHideTmpMode (TreeItem::HideTmpMode mode)
  4547 {
  4548 	hidemode=mode;
  4549 	for (int i=0;i<rootItem->childCount();i++)
  4550 		rootItem->child(i)->setHideTmp (mode);	
  4551 	reposition();
  4552 	// FIXME-3 needed? scene()->update();
  4553 }
  4554 
  4555 
  4556 QRectF VymModel::getTotalBBox()	//FIXME-2
  4557 {
  4558 	QRectF r;
  4559 /*
  4560 	for (int i=0;i<rootItem->branchCount(); i++)
  4561 		r=addBBox (rootItem->getBranchNum(i)->getTotalBBox(), r);
  4562 */ 
  4563 	return r;	
  4564 }
  4565 
  4566 //////////////////////////////////////////////
  4567 // Selection related
  4568 //////////////////////////////////////////////
  4569 
  4570 void VymModel::setSelectionModel (QItemSelectionModel *sm)
  4571 {
  4572 	selModel=sm;
  4573 }
  4574 
  4575 QItemSelectionModel* VymModel::getSelectionModel()
  4576 {
  4577 	return selModel;
  4578 }
  4579 
  4580 void VymModel::setSelectionBlocked (bool b)
  4581 {
  4582 	if (b)
  4583 		selection.block();
  4584 	else	
  4585 		selection.unblock();
  4586 }
  4587 
  4588 bool VymModel::isSelectionBlocked()
  4589 {
  4590 	return selection.isBlocked();
  4591 }
  4592 
  4593 bool VymModel::select ()
  4594 {
  4595 	QModelIndex index=selModel->selectedIndexes().first();	// TODO no multiselections yet
  4596 
  4597 	TreeItem *item = getItem (index);
  4598 	return select (item->getLMO() );
  4599 }
  4600 
  4601 bool VymModel::select (const QString &s)
  4602 {
  4603 	TreeItem *ti=findBySelectString(s);
  4604 	if (ti)
  4605 	{
  4606 		unselect();
  4607 		select (ti);
  4608 		return true;
  4609 	} 
  4610 	return false;
  4611 }
  4612 
  4613 bool VymModel::select (LinkableMapObj *lmo)
  4614 {
  4615 	QItemSelection oldsel=selModel->selection();
  4616 
  4617 	if (lmo)
  4618 		return select (lmo->getTreeItem() );
  4619 	else	
  4620 		return false;
  4621 }
  4622 
  4623 bool VymModel::select (TreeItem *ti)
  4624 {
  4625 	if (ti)
  4626 	{
  4627 		QModelIndex ix=index(ti);
  4628 		selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4629 		ti->setLastSelectedBranch();
  4630 		return true;
  4631 	}
  4632 	return false;
  4633 }
  4634 
  4635 void VymModel::unselect()
  4636 {
  4637 	selModel->clearSelection();
  4638 }	
  4639 
  4640 void VymModel::reselect()
  4641 {
  4642 	selection.reselect();
  4643 }	
  4644 
  4645 void VymModel::ensureSelectionVisible()		//FIXME-3 needed? in vymmodel.h commented...
  4646 {
  4647 	LinkableMapObj *lmo=getSelectedLMO();
  4648 	if (lmo &&mapEditor) mapEditor->ensureVisible (lmo->getBBox() );
  4649 }
  4650 
  4651 void VymModel::emitNoteHasChanged (TreeItem *ti)
  4652 {
  4653 	QModelIndex ix=index(ti);
  4654 	emit (noteHasChanged (ix) );
  4655 }
  4656 
  4657 void VymModel::emitDataHasChanged (TreeItem *ti)
  4658 {
  4659 	QModelIndex ix=index(ti);
  4660 	emit (dataHasChanged (ix) );
  4661 }
  4662 
  4663 
  4664 //void VymModel::selectInt (LinkableMapObj *lmo)	// FIXME-3 still needed?
  4665 /*
  4666 {
  4667 	if (selection.select(lmo))
  4668 	{
  4669 		//selection.update();
  4670 		sendSelection ();	// FIXME-4 VM use signal
  4671 	}
  4672 }
  4673 
  4674 void VymModel::selectInt (TreeItem *ti)	
  4675 {
  4676 	if (selection.select(lmo))
  4677 	{
  4678 		//selection.update();
  4679 		sendSelection ();	// FIXME-4 VM use signal
  4680 	}
  4681 }
  4682 */
  4683 
  4684 void VymModel::selectNextBranchInt()
  4685 {
  4686 	BranchItem *bi=getSelectedBranchItem();
  4687 	if (bi)
  4688 	{
  4689 		TreeItem *pi=bi->parent();
  4690 		if (bi!=rootItem)
  4691 		{
  4692 			int i=bi->num();
  4693 			if (i<pi->branchCount() )
  4694 			{
  4695 				// select previous branch with same parent
  4696 				i++;
  4697 				select (pi->getBranchNum(i));
  4698 				return;
  4699 			}
  4700 		}
  4701 		
  4702 	}
  4703 }
  4704 
  4705 void VymModel::selectPrevBranchInt()
  4706 {
  4707 
  4708 	BranchItem *bi=getSelectedBranchItem();
  4709 	if (bi)
  4710 	{
  4711 		BranchItem *pi=(BranchItem*)bi->parent();
  4712 		if (bi!=rootItem)
  4713 		{
  4714 			int i=bi->num();
  4715 			if (i>0)
  4716 			{
  4717 				// select previous branch with same parent
  4718 				bi=pi->getBranchNum(i-1);
  4719 				select (bi);
  4720 				return;
  4721 			}
  4722 			bi=pi;
  4723 			while (bi->branchCount() >0)
  4724 				bi=bi->getLastBranch();
  4725 			select (bi);	
  4726 
  4727 			// Try to select last branch in parent pi2 previous to own parent pi
  4728 			/*
  4729 			TreeItem *pi2=pi->parent();
  4730 			if (pi2)
  4731 			{
  4732 				int j=pi->num();
  4733 				if (pi2->)
  4734 			}
  4735 			*/
  4736 		}
  4737 	}
  4738 }
  4739 
  4740 void VymModel::selectAboveBranchInt()
  4741 {
  4742 	BranchItem *bi=getSelectedBranchItem();
  4743 	if (bi)
  4744 	{
  4745 		BranchItem *newbi=NULL;
  4746 		BranchItem *pi=(BranchItem*)bi->parent();
  4747 		int i=bi->num();
  4748 		if (i>0)
  4749 		{
  4750 			// goto previous branch with same parent
  4751 			newbi=pi->getBranchNum(i-1);
  4752 			while (newbi->branchCount() >0 )
  4753 				newbi=newbi->getLastBranch();
  4754 		}
  4755 		else
  4756 			newbi=pi;
  4757 		if (newbi==rootItem) 
  4758  			// already at top branch (resp. mapcenter)
  4759 			return;
  4760 		select (newbi);
  4761 	}
  4762 }
  4763 
  4764 void VymModel::selectBelowBranchInt()
  4765 {
  4766 	BranchItem *bi=getSelectedBranchItem();
  4767 	if (bi)
  4768 	{
  4769 		BranchItem *newbi=NULL;
  4770 
  4771 		if (bi->branchCount() >0)
  4772 			newbi=bi->getFirstBranch();
  4773 		else
  4774 		{
  4775 			BranchItem *pi;
  4776 			int i;
  4777 			while (!newbi)
  4778 			{
  4779 				pi=(BranchItem*)bi->parent();
  4780 				i=bi->num();
  4781 				if (pi->branchCount()-1 > i)
  4782 				{
  4783 					newbi=(BranchItem*)pi->getBranchNum(i+1);
  4784 					//done...
  4785 					break;
  4786 				}	
  4787 				else
  4788 					// look for siblings of myself 
  4789 					// or parent, or parent of parent...
  4790 					bi=pi;
  4791 				if (bi==rootItem)
  4792 					// already at end
  4793 					return;
  4794 			}	
  4795 		}
  4796 		select (newbi);
  4797 	}
  4798 }
  4799 
  4800 void VymModel::selectUpperBranch()
  4801 {
  4802 	if (selection.isBlocked() ) return;
  4803 
  4804 	BranchItem *bi=getSelectedBranchItem();
  4805 	if (bi && bi->isBranchLikeType())
  4806 		selectAboveBranchInt();
  4807 }
  4808 
  4809 void VymModel::selectLowerBranch()
  4810 {
  4811 	if (selection.isBlocked() ) return;
  4812 
  4813 	BranchItem *bi=getSelectedBranchItem();
  4814 	if (bi && bi->isBranchLikeType())
  4815 		selectBelowBranchInt();
  4816 }
  4817 
  4818 
  4819 void VymModel::selectLeftBranch()
  4820 {
  4821 	if (selection.isBlocked() ) return;
  4822 
  4823 	QItemSelection oldsel=selModel->selection();
  4824 
  4825 	BranchItem* par;
  4826 	BranchItem *selbi=getSelectedBranchItem();
  4827 	TreeItem::Type type=selbi->getType();
  4828 	if (selbi)
  4829 	{
  4830 		if (type == TreeItem::MapCenter)
  4831 		{
  4832 			QModelIndex ix=index(selbi);
  4833 			selModel->select (index (rowCount(ix)-1,0,ix),QItemSelectionModel::ClearAndSelect  );
  4834 		} else
  4835 		{
  4836 			par=(BranchItem*)selbi->parent();
  4837 			if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter)	//FIXME-3 check getBO...
  4838 			{
  4839 				// right of center
  4840 				if (type == TreeItem::Branch ||
  4841 					type == TreeItem::Image)
  4842 				{
  4843 					QModelIndex ix=index (selbi->parent());
  4844 					selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4845 				}
  4846 			} else
  4847 			{
  4848 				// left of center
  4849 				if (type == TreeItem::Branch )
  4850 				{
  4851 					cout << "VM::selLeft\n";
  4852 					selectLastSelectedBranch();
  4853 					return;
  4854 				}
  4855 			}
  4856 		}	
  4857 	}
  4858 }
  4859 
  4860 void VymModel::selectRightBranch()
  4861 {
  4862 	if (selection.isBlocked() ) return;
  4863 
  4864 	QItemSelection oldsel=selModel->selection();
  4865 
  4866 	BranchItem* par;
  4867 	BranchItem *selbi=getSelectedBranchItem();
  4868 	TreeItem::Type type=selbi->getType();
  4869 	if (selbi)
  4870 	{
  4871 		if (type==TreeItem::MapCenter)
  4872 		{
  4873 			QModelIndex ix=index(selbi);
  4874 			selModel->select (index (0,0,ix),QItemSelectionModel::ClearAndSelect  );
  4875 		} else
  4876 		{
  4877 			par=(BranchItem*)selbi->parent();
  4878 			if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter)	//FIXME-3 check getBO
  4879 			{
  4880 				// right of center
  4881 				if ( type== TreeItem::Branch )
  4882 				{
  4883 					selectLastSelectedBranch();
  4884 					return;
  4885 				}
  4886 			} else
  4887 			{
  4888 				// left of center
  4889 				if (type == TreeItem::Branch ||
  4890 					type == TreeItem::Image)
  4891 				{
  4892 					cout << "VM::selRight\n";
  4893 					QModelIndex ix=index(selbi->parent());
  4894 					selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4895 				}
  4896 			}
  4897 		}	
  4898 	}
  4899 }
  4900 
  4901 void VymModel::selectFirstBranch()
  4902 {
  4903 	TreeItem *ti=getSelectedBranchItem();
  4904 	if (ti)
  4905 	{
  4906 		TreeItem *par=ti->parent();
  4907 		if (!par) return;
  4908 		TreeItem *ti2=par->getFirstBranch();
  4909 		if (ti2) {
  4910 			select(ti2);
  4911 			selection.update();
  4912 			ensureSelectionVisible();
  4913 			sendSelection();
  4914 		}
  4915 	}		
  4916 }
  4917 
  4918 void VymModel::selectLastBranch()
  4919 {
  4920 	TreeItem *ti=getSelectedBranchItem();
  4921 	if (ti)
  4922 	{
  4923 		TreeItem *par=ti->parent();
  4924 		if (!par) return;
  4925 		TreeItem *ti2=par->getLastBranch();
  4926 		if (ti2) {
  4927 			select(ti2);
  4928 			selection.update();
  4929 			ensureSelectionVisible();
  4930 			sendSelection();
  4931 		}
  4932 	}		
  4933 }
  4934 
  4935 void VymModel::selectLastSelectedBranch()
  4936 {
  4937 	TreeItem *ti=getSelectedBranchItem();
  4938 	if (ti)
  4939 	{
  4940 		ti=ti->getLastSelectedBranch();
  4941 		if (ti) select (ti);
  4942 	}		
  4943 }
  4944 
  4945 void VymModel::selectParent()
  4946 {
  4947 	TreeItem *ti=getSelectedItem();
  4948 	TreeItem *par;
  4949 	if (ti)
  4950 	{
  4951 		par=ti->parent();
  4952 		if (!par) return;
  4953 		select(par);
  4954 		selection.update();
  4955 		ensureSelectionVisible();
  4956 		sendSelection();
  4957 	}		
  4958 }
  4959 
  4960 TreeItem::Type VymModel::selectionType()
  4961 {
  4962 	QModelIndexList list=selModel->selectedIndexes();
  4963 	if (list.isEmpty()) return TreeItem::Undefined;	
  4964 	TreeItem *ti = getItem (list.first() );
  4965 	return ti->getType();
  4966 
  4967 }
  4968 
  4969 LinkableMapObj* VymModel::getSelectedLMO()
  4970 {
  4971 	QModelIndexList list=selModel->selectedIndexes();
  4972 	if (!list.isEmpty() )
  4973 	{
  4974 		TreeItem *ti = getItem (list.first() );
  4975 		TreeItem::Type type=ti->getType();
  4976 		if (type ==TreeItem::Branch || type==TreeItem::MapCenter || type==TreeItem::Image)
  4977 		{
  4978 			return ti->getLMO();
  4979 		}	
  4980 	}
  4981 	return NULL;
  4982 }
  4983 
  4984 BranchObj* VymModel::getSelectedBranchObj()	// FIXME-3 this should not be needed in the end!!!
  4985 {
  4986 	TreeItem *ti = getSelectedBranchItem();
  4987 	if (ti)
  4988 		return (BranchObj*)ti->getLMO();
  4989 	else	
  4990 		return NULL;
  4991 }
  4992 
  4993 BranchItem* VymModel::getSelectedBranchItem()
  4994 {
  4995 	QModelIndexList list=selModel->selectedIndexes();
  4996 	if (!list.isEmpty() )
  4997 	{
  4998 		TreeItem *ti = getItem (list.first() );
  4999 		TreeItem::Type type=ti->getType();
  5000 		if (type ==TreeItem::Branch || type==TreeItem::MapCenter)
  5001 			return (BranchItem*)ti;
  5002 	}
  5003 	return NULL;
  5004 }
  5005 
  5006 TreeItem* VymModel::getSelectedItem()
  5007 {
  5008 	QModelIndexList list=selModel->selectedIndexes();
  5009 	if (!list.isEmpty() )
  5010 		return getItem (list.first() );
  5011 	else	
  5012 		return NULL;
  5013 }
  5014 
  5015 QModelIndex VymModel::getSelectedIndex()
  5016 {
  5017 	QModelIndexList list=selModel->selectedIndexes();
  5018 	if (list.isEmpty() )
  5019 		return QModelIndex();
  5020 	else
  5021 		return list.first();
  5022 }
  5023 
  5024 FloatImageObj* VymModel::getSelectedFloatImage()
  5025 {
  5026 	return selection.getFloatImage();	
  5027 }
  5028 
  5029 QString VymModel::getSelectString ()
  5030 {
  5031 	LinkableMapObj *lmo=getSelectedLMO();
  5032 	if (lmo) 
  5033 		return getSelectString(lmo);
  5034 	else
  5035 		return QString();
  5036 }
  5037 
  5038 QString VymModel::getSelectString (LinkableMapObj *lmo)	// FIXME-2 VM needs to use TreeModel. Port all calls to this funtion to the one using TreeItem below...
  5039 {
  5040 	if (!lmo) return QString();
  5041 	return getSelectString (lmo->getTreeItem() );
  5042 }
  5043 
  5044 QString VymModel::getSelectString (TreeItem *ti)
  5045 {
  5046 	QString s;
  5047 	if (!ti) return s;
  5048 	if (ti->getType() == TreeItem::Branch ||
  5049 	    ti->getType() == TreeItem::MapCenter)
  5050 	{	
  5051 		TreeItem *par=ti->parent();
  5052 		if (par)
  5053 		{
  5054 			if (ti->depth() ==1)
  5055 				// Mainbranch, return 
  5056 				s= "bo:" + QString("%1").arg(ti->num() );
  5057 			else	
  5058 				// Branch, call myself recursively
  5059 				s= getSelectString(par) + ",bo:" + QString("%1").arg(ti->num());
  5060 		} else
  5061 		{
  5062 			// MapCenter
  5063 			int i=rootItem->num(ti);
  5064 			if (i>=0) s=QString("mc:%1").arg(i);
  5065 		}	
  5066 	}	
  5067 	return s;
  5068 }
  5069