vymmodel.cpp
author insilmaril
Fri, 01 May 2009 10:30:29 +0000
changeset 763 8c028a5d9083
parent 762 ffb95cd03156
child 766 7a71a914afdb
permissions -rw-r--r--
add above/below
     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 	emitShowSelection();
  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 		emitShowSelection();
  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 					emitShowSelection();
  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 		emitShowSelection();
  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 		emitShowSelection();
  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 		emitShowSelection();
  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 			emitShowSelection();
  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 	emitShowSelection();
  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 	BranchItem *selbi=getSelectedBranchItem();
  2124 	if (selbi)
  2125 	{
  2126 		// Create TreeItem
  2127 		QList<QVariant> cData;
  2128 		cData << "new" << "undef"<<"undef";
  2129 
  2130 		BranchItem *parbi;
  2131 		QModelIndex parix;
  2132 		int n;
  2133 		BranchItem *newbi=new BranchItem (cData);	
  2134 		newbi->setHeading (QApplication::translate("Heading of new branch in map", "new"));
  2135 
  2136 		emit (layoutAboutToBeChanged() );
  2137 
  2138 		if (num==-2)
  2139 		{
  2140 			parbi=selbi;
  2141 			parix=index(parbi);
  2142 			n=parbi->childCount();
  2143 			cout <<"n="<<n<<endl;
  2144 			beginInsertRows (parix,n,n+1);	
  2145 			parbi->appendChild (newbi);	
  2146 			endInsertRows ();
  2147 		}else if (num==-1)
  2148 		{
  2149 			// insert below selection
  2150 			parbi=(BranchItem*)selbi->parent();
  2151 			parix=index(parbi);
  2152 			n=selbi->childNumber()+1;
  2153 			beginInsertRows (parix,n,n);	
  2154 			parbi->insertBranch(n,newbi);	
  2155 			endInsertRows ();
  2156 		}else if (num==-3)
  2157 		{
  2158 			// insert above selection
  2159 			parbi=(BranchItem*)selbi->parent();
  2160 			parix=index(parbi);
  2161 			n=selbi->childNumber();
  2162 			beginInsertRows (parix,n,n);	
  2163 			parbi->insertBranch(n,newbi);	
  2164 			endInsertRows ();
  2165 		}
  2166 		emit (newChildObject (parix));
  2167 		emit (layoutChanged() );
  2168 
  2169 		// save scroll state. If scrolled, automatically select
  2170 		// new branch in order to tmp unscroll parent...
  2171 		newbi->createMapObj(mapScene);
  2172 		select (newbi);
  2173 		return newbi;
  2174 	}	
  2175 	return NULL;
  2176 }	
  2177 
  2178 BranchItem* VymModel::addNewBranch(int pos)
  2179 {
  2180 	// Different meaning than num in addNewBranchInt!
  2181 	// -1	add above
  2182 	//  0	add as child
  2183 	// +1	add below
  2184 	BranchItem *newbi=NULL;
  2185 	BranchItem *selbi=getSelectedBranchItem();
  2186 
  2187 	if (selbi)
  2188 	{
  2189 		// FIXME-3 VM  do we still need this in model? setCursor (Qt::ArrowCursor);
  2190 
  2191 		newbi=addNewBranchInt (pos-2);
  2192 
  2193 		if (newbi)
  2194 		{
  2195 			saveState(
  2196 				newbi,		
  2197 				"delete ()",
  2198 				selbi,
  2199 				QString ("addBranch (%1)").arg(pos),
  2200 				QString ("Add new branch to %1").arg(getObjectName(selbi)));	
  2201 
  2202 			reposition();
  2203 			// selection.update(); FIXME-3
  2204 			latestAddedItem=newbi;
  2205 			// In Network mode, the client needs to know where the new branch is,
  2206 			// so we have to pass on this information via saveState.
  2207 			// TODO: Get rid of this positioning workaround
  2208 			/* FIXME-4  network problem:  QString ps=qpointfToString (newbo->getAbsPos());
  2209 			sendData ("selectLatestAdded ()");
  2210 			sendData (QString("move %1").arg(ps));
  2211 			sendSelection();
  2212 			*/
  2213 		}
  2214 	}	
  2215 	return newbi;
  2216 }
  2217 
  2218 
  2219 BranchItem* VymModel::addNewBranchBefore()	//FIXME-2
  2220 {
  2221 /*
  2222 	BranchObj *newbo=NULL;
  2223 	BranchObj *bo = getSelectedBranch();
  2224 	if (bo && selectionType()==TreeItem::Branch)
  2225 		 // We accept no MapCenterObj here, so we _have_ a parent
  2226 	{
  2227 		QPointF p=bo->getRelPos();
  2228 
  2229 
  2230 		BranchObj *parbo=(BranchObj*)(bo->getParObj());
  2231 
  2232 		// add below selection
  2233 		newbo=parbo->insertBranch(bo->getTreeItem()->num()+1);		//FIXME-1 VM still missing
  2234 
  2235 		if (newbo)
  2236 		{
  2237 			newbo->move2RelPos (p);
  2238 
  2239 			// Move selection to new branch
  2240 			bo->linkTo (newbo,-1);
  2241 
  2242 			saveState (newbo, "deleteKeepChildren ()", newbo, "addBranchBefore ()", 
  2243 				QString ("Add branch before %1").arg(getObjectName(bo)));
  2244 
  2245 			reposition();
  2246 			// selection.update(); FIXME-3 
  2247 		}
  2248 	}	
  2249 	latestSelectionString=selection.getSelectString();
  2250 	return newbo;
  2251 	*/
  2252 	return NULL;
  2253 }
  2254 
  2255 BranchItem* VymModel::relinkBranch (BranchItem *branch, BranchItem *dst, int pos)
  2256 {
  2257 	if (branch && dst)
  2258 	{
  2259 		emit (layoutAboutToBeChanged() );
  2260 		BranchItem *branchpi=(BranchItem*)branch->parent();
  2261 		// Remove at current position
  2262 		int n=branch->childNum();
  2263 		beginRemoveRows (index(branchpi),n,n);
  2264 		branchpi->removeChild (n);
  2265 		endRemoveRows();
  2266 
  2267 		if (pos<0 ||pos>dst->branchCount() ) pos=dst->branchCount();
  2268 
  2269 		// Append as last branch to dst
  2270 		if (dst->branchCount()==0)
  2271 			n=0;
  2272 		else	
  2273 			n=dst->getFirstBranch()->childNumber(); 
  2274 		beginInsertRows (index(dst),n+pos,n+pos);
  2275 		dst->insertBranch (pos,branch);
  2276 		endInsertRows();
  2277 
  2278 		branch->getLMO()->setParObj(dst->getLMO());	//FIXME-5 update parObj in View
  2279 		emit (layoutChanged() );
  2280 		select (branch);
  2281 	}
  2282 }
  2283 
  2284 void VymModel::deleteSelection()
  2285 {
  2286 	BranchItem *selbi=getSelectedBranchItem();
  2287 
  2288 	if (!selbi) return;
  2289 
  2290 	TreeItem *pi=selbi->parent();
  2291 	QModelIndex parentIndex=index(pi);
  2292 	
  2293 	if (selbi->isBranchLikeType() )
  2294 	{
  2295 		unselect();
  2296 		saveStateRemovingPart (selbi, QString ("Delete %1").arg(getObjectName(selbi)));
  2297 
  2298 		emit (layoutAboutToBeChanged() );
  2299 
  2300 		int n=selbi->childNum();
  2301 		beginRemoveRows (parentIndex,n,n);
  2302 		removeRows (n,1,parentIndex);
  2303 		endRemoveRows();
  2304 		select (pi);
  2305 		emitShowSelection();
  2306 		reposition();
  2307 
  2308 		emit (layoutChanged() );
  2309 		return;
  2310 	}
  2311 	//FloatImageObj *fio=selection.getFloatImage(); 	//FIXME-1 VM still missing
  2312 
  2313 /*
  2314 	if (fio)
  2315 	{
  2316 		BranchObj* par=(BranchObj*)fio->getParObj();
  2317 		saveStateChangingPart(
  2318 			par, 
  2319 			fio,
  2320 			"delete ()",
  2321 			QString("Delete %1").arg(getObjectName(fio))
  2322 		);
  2323 		unselect();
  2324 		par->removeFloatImage(fio);
  2325 		select (par);
  2326 		reposition();
  2327 		emitShowSelection();
  2328 		return;
  2329 	}
  2330 	*/
  2331 }
  2332 
  2333 void VymModel::deleteKeepChildren()		//FIXME-2 VM still missing
  2334 
  2335 {
  2336 /*
  2337 	BranchObj *bo=getSelectedBranch();
  2338 	BranchObj *par;
  2339 	if (bo)
  2340 	{
  2341 		par=(BranchObj*)(bo->getParObj());
  2342 
  2343 		// Don't use this on mapcenter
  2344 		if (!par) return;
  2345 
  2346 		// Check if we have childs at all to keep
  2347 		if (bo->getTreeItem()->branchCount()==0) 
  2348 		{
  2349 			deleteSelection();
  2350 			return;
  2351 		}
  2352 
  2353 		QPointF p=bo->getRelPos();
  2354 		saveStateChangingPart(
  2355 			bo->getParObj(),
  2356 			bo,
  2357 			"deleteKeepChildren ()",
  2358 			QString("Remove %1 and keep its children").arg(getObjectName(bo))
  2359 		);
  2360 
  2361 		QString sel=getSelectString(bo);
  2362 		unselect();
  2363 		par->removeBranchHere(bo);
  2364 		reposition();
  2365 		select (sel);
  2366 		getSelectedBranch()->move2RelPos (p);
  2367 		reposition();
  2368 	}	
  2369 */}
  2370 
  2371 void VymModel::deleteChildren()		//FIXME-2 VM still missing
  2372 
  2373 {
  2374 /*
  2375 	BranchObj *bo=getSelectedBranch();
  2376 	if (bo)
  2377 	{		
  2378 		saveStateChangingPart(
  2379 			bo, 
  2380 			bo,
  2381 			"deleteChildren ()",
  2382 			QString( "Remove children of branch %1").arg(getObjectName(bo))
  2383 		);
  2384 		bo->removeChildren();
  2385 		reposition();
  2386 	}	
  2387 */}
  2388 
  2389 
  2390 bool VymModel::scrollBranch(BranchItem *bi)
  2391 {
  2392 	if (bi)	
  2393 	{
  2394 		if (bi->isScrolled()) return false;
  2395 		if (bi->branchCount()==0) return false;
  2396 		if (bi->depth()==0) return false;
  2397 		QString u,r;
  2398 		r="scroll";
  2399 		u="unscroll";
  2400 		/* FIXME-3 no savestate yet
  2401 		saveState(
  2402 			bo,
  2403 			QString ("%1 ()").arg(u),
  2404 			bo,
  2405 			QString ("%1 ()").arg(r),
  2406 			QString ("%1 %2").arg(r).arg(getObjectName(bo))
  2407 		);
  2408 		*/
  2409 		bi->toggleScroll();
  2410 		mapScene->update(); //Needed for _quick_ update
  2411 		return true;
  2412 	}	
  2413 	return false;
  2414 }
  2415 
  2416 bool VymModel::unscrollBranch(BranchItem *bi)
  2417 {
  2418 	if (bi)
  2419 	{
  2420 		if (!bi->isScrolled()) return false;
  2421 		if (bi->branchCount()==0) return false;
  2422 		if (bi->depth()==0) return false;
  2423 
  2424 		QString u,r;
  2425 		u="scroll";
  2426 		r="unscroll";
  2427 		/* FIXME-3 no savestate yet
  2428 		saveState(
  2429 			bo,
  2430 			QString ("%1 ()").arg(u),
  2431 			bo,
  2432 			QString ("%1 ()").arg(r),
  2433 			QString ("%1 %2").arg(r).arg(getObjectName(bo))
  2434 		);
  2435 		*/
  2436 		bi->toggleScroll();
  2437 		mapScene->update();	// Needed for _quick_ update
  2438 		return true;
  2439 	}	
  2440 	return false;
  2441 }
  2442 
  2443 void VymModel::toggleScroll()
  2444 {
  2445 	BranchItem *bi=(BranchItem*)getSelectedBranchItem();
  2446 	if (bi && bi->getType()==TreeItem::Branch )
  2447 	{
  2448 		if (bi->isScrolled())
  2449 			unscrollBranch (bi);
  2450 		else
  2451 			scrollBranch (bi);
  2452 	}
  2453 }
  2454 
  2455 void VymModel::unscrollChildren() 	// FIXME-2	first, next moved to vymmodel
  2456 
  2457 {
  2458 /*
  2459 	BranchObj *bo=getSelectedBranch();
  2460 	if (bo)
  2461 	{
  2462 		bo->first();
  2463 		while (bo) 
  2464 		{
  2465 			if (bo->isScrolled()) unscrollBranch (bo);
  2466 			bo=bo->next();
  2467 		}
  2468 	}	
  2469 */	
  2470 }
  2471 
  2472 void VymModel::emitExpandAll()
  2473 {
  2474 	emit (expandAll() );
  2475 }
  2476 
  2477 void VymModel::addFloatImage (const QPixmap &img) //FIXME-2
  2478 {
  2479 /*
  2480 	BranchObj *bo=getSelectedBranch();
  2481 	if (bo)
  2482   {
  2483 	FloatImageObj *fio=bo->addFloatImage();
  2484     fio->load(img);
  2485     fio->setOriginalFilename("No original filename (image added by dropevent)");	
  2486 	QString s=getSelectString(bo);
  2487 	saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy dropped image to clipboard",fio  );
  2488 	saveState (fio,"delete ()", bo,QString("paste(%1)").arg(curStep),"Pasting dropped image");
  2489     reposition();
  2490     // FIXME-3 VM needed? scene()->update();
  2491   }
  2492 */
  2493 }
  2494 
  2495 
  2496 void VymModel::colorBranch (QColor c)	//FIXME-2
  2497 {
  2498 /*
  2499 	BranchObj *bo=getSelectedBranch();
  2500 	if (bo)
  2501 	{
  2502 		saveState(
  2503 			bo, 
  2504 			QString ("colorBranch (\"%1\")").arg(bo->getColor().name()),
  2505 			bo,
  2506 			QString ("colorBranch (\"%1\")").arg(c.name()),
  2507 			QString("Set color of %1 to %2").arg(getObjectName(bo)).arg(c.name())
  2508 		);	
  2509 		bo->setColor(c); // color branch
  2510 	}
  2511 */
  2512 }
  2513 
  2514 void VymModel::colorSubtree (QColor c) //FIXME-2
  2515 {
  2516 /*
  2517 	BranchObj *bo=getSelectedBranch();
  2518 	if (bo) 
  2519 	{
  2520 		saveStateChangingPart(
  2521 			bo, 
  2522 			bo,
  2523 			QString ("colorSubtree (\"%1\")").arg(c.name()),
  2524 			QString ("Set color of %1 and children to %2").arg(getObjectName(bo)).arg(c.name())
  2525 		);	
  2526 		bo->setColorSubtree (c); // color links, color children
  2527 	}
  2528 */	
  2529 }
  2530 
  2531 QColor VymModel::getCurrentHeadingColor()	//FIXME-2
  2532 {
  2533 /*
  2534 	BranchObj *bo=getSelectedBranch();
  2535 	if (bo) return bo->getColor(); 
  2536 	
  2537 	QMessageBox::warning(0,"Warning","Can't get color of heading,\nthere's no branch selected");
  2538 	*/
  2539 	return Qt::black;
  2540 }
  2541 
  2542 
  2543 
  2544 void VymModel::editURL()	//FIXME-2
  2545 {
  2546 /*
  2547 	BranchObj *bo=getSelectedBranch();
  2548 	if (bo)
  2549 	{		
  2550 		bool ok;
  2551 		QString text = QInputDialog::getText(
  2552 				"VYM", tr("Enter URL:"), QLineEdit::Normal,
  2553 				bo->getURL(), &ok, NULL);
  2554 		if ( ok) 
  2555 			// user entered something and pressed OK
  2556 			setURL(text);
  2557 	}
  2558 */
  2559 }
  2560 
  2561 void VymModel::editLocalURL()	//FIXME-2
  2562 {
  2563 /*
  2564 	BranchObj *bo=getSelectedBranch();
  2565 	if (bo)
  2566 	{		
  2567 		QStringList filters;
  2568 		filters <<"All files (*)";
  2569 		filters << tr("Text","Filedialog") + " (*.txt)";
  2570 		filters << tr("Spreadsheet","Filedialog") + " (*.odp,*.sxc)";
  2571 		filters << tr("Textdocument","Filedialog") +" (*.odw,*.sxw)";
  2572 		filters << tr("Images","Filedialog") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)";
  2573 		QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Set URL to a local file"));
  2574 		fd->setFilters (filters);
  2575 		fd->setCaption(vymName+" - " +tr("Set URL to a local file"));
  2576 		fd->setDirectory (lastFileDir);
  2577 		if (! bo->getVymLink().isEmpty() )
  2578 			fd->selectFile( bo->getURL() );
  2579 		fd->show();
  2580 
  2581 		if ( fd->exec() == QDialog::Accepted )
  2582 		{
  2583 			lastFileDir=QDir (fd->directory().path());
  2584 			setURL (fd->selectedFile() );
  2585 		}
  2586 	}
  2587 	*/
  2588 }
  2589 
  2590 
  2591 void VymModel::editHeading2URL() //FIXME-2
  2592 {
  2593 /*
  2594 	BranchObj *bo=getSelectedBranch();
  2595 	if (bo)
  2596 		setURL (bo->getHeading());
  2597 */		
  2598 }	
  2599 
  2600 void VymModel::editBugzilla2URL()	//FIXME-2
  2601 {
  2602 /*
  2603 	BranchObj *bo=getSelectedBranch();
  2604 	if (bo)
  2605 	{		
  2606 		QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
  2607 		setURL (url);
  2608 	}
  2609 */	
  2610 }	
  2611 
  2612 void VymModel::editFATE2URL()	//FIXME-2
  2613 {
  2614 /*
  2615 	BranchObj *bo=getSelectedBranch();
  2616 	if (bo)
  2617 	{		
  2618 		QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
  2619 		saveState(
  2620 			bo,
  2621 			"setURL (\""+bo->getURL()+"\")",
  2622 			bo,
  2623 			"setURL (\""+url+"\")",
  2624 			QString("Use heading of %1 as link to FATE").arg(getObjectName(bo))
  2625 		);	
  2626 		bo->setURL (url);
  2627 		updateActions();
  2628 	}
  2629 */	
  2630 }	
  2631 
  2632 void VymModel::editVymLink()
  2633 {
  2634 	BranchItem *bi=getSelectedBranchItem();
  2635 	if (bi)
  2636 	{		
  2637 		QStringList filters;
  2638 		filters <<"VYM map (*.vym)";
  2639 		QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Link to another map"));
  2640 		fd->setFilters (filters);
  2641 		fd->setCaption(vymName+" - " +tr("Link to another map"));
  2642 		fd->setDirectory (lastFileDir);
  2643 		if (! bi->getVymLink().isEmpty() )
  2644 			fd->selectFile( bi->getVymLink() );
  2645 		fd->show();
  2646 
  2647 		QString fn;
  2648 		if ( fd->exec() == QDialog::Accepted )
  2649 		{
  2650 			lastFileDir=QDir (fd->directory().path());
  2651 			saveState(
  2652 				bi,
  2653 				"setVymLink (\""+bi->getVymLink()+"\")",
  2654 				bi,
  2655 				"setVymLink (\""+fd->selectedFile()+"\")",
  2656 				QString("Set vymlink of %1 to %2").arg(getObjectName(bi)).arg(fd->selectedFile())
  2657 			);	
  2658 			setVymLink (fd->selectedFile() );	// FIXME-2 ok?
  2659 		}
  2660 	}
  2661 }
  2662 
  2663 void VymModel::setVymLink (const QString &s)	// FIXME-3 no savestate?
  2664 {
  2665 	// Internal function, no saveState needed
  2666 	BranchItem *bi=getSelectedBranchItem();
  2667 	if (bi)
  2668 	{
  2669 		bi->getBranchObj()->setVymLink(s);	//FIXME-3 check getBO
  2670 		reposition();
  2671 		updateActions();
  2672 		//selection.update();
  2673 		emitShowSelection();
  2674 	}
  2675 }
  2676 
  2677 void VymModel::deleteVymLink()
  2678 {
  2679 	BranchItem *bi=getSelectedBranchItem();
  2680 	if (bi)
  2681 	{		
  2682 		saveState(
  2683 			bi,
  2684 			"setVymLink (\""+bi->getBranchObj()->getVymLink()+"\")", //FIXME-3 check getBO
  2685 
  2686 			bi,
  2687 			"setVymLink (\"\")",
  2688 			QString("Unset vymlink of %1").arg(getObjectName(bi))
  2689 		);	
  2690 		bi->getBranchObj()->setVymLink ("" );	//FIXME-3 check getBO
  2691 		updateActions();
  2692 		reposition();
  2693 		// FIXME-3 VM needed? scene()->update();
  2694 	}
  2695 }
  2696 
  2697 QString VymModel::getVymLink()
  2698 {
  2699 	BranchItem *bi=getSelectedBranchItem();
  2700 	if (bi)
  2701 		return bi->getBranchObj()->getVymLink();	//FIXME-3 check getBO here...
  2702 	else	
  2703 		return "";
  2704 	
  2705 }
  2706 
  2707 QStringList VymModel::getVymLinks()	// FIXME-1	first, next moved to vymmodel
  2708 {
  2709 	return QStringList();
  2710 /*
  2711 	QStringList links;
  2712 	BranchObj *bo=getSelectedBranch();
  2713 	if (bo)
  2714 	{		
  2715 		bo=bo->first();	
  2716 		while (bo) 
  2717 		{
  2718 			if (!bo->getVymLink().isEmpty()) links.append( bo->getVymLink());
  2719 			bo=bo->next();
  2720 		}	
  2721 	}	
  2722 	return links;
  2723 */	
  2724 }
  2725 
  2726 
  2727 void VymModel::followXLink(int i)	// FIXME-2
  2728 {
  2729 	i=0;
  2730 	/*
  2731 	BranchObj *bo=getSelectedBranch();
  2732 	if (bo)
  2733 	{
  2734 		bo=bo->XLinkTargetAt(i);
  2735 		if (bo) 
  2736 		{
  2737 			selection.select(bo);
  2738 			emitShowSelection();
  2739 		}
  2740 	}
  2741 	*/
  2742 }
  2743 
  2744 void VymModel::editXLink(int i)	// FIXME-2 VM missing saveState
  2745 {
  2746 	i=0;
  2747 	/*
  2748 	BranchObj *bo=getSelectedBranch();
  2749 	if (bo)
  2750 	{
  2751 		XLinkObj *xlo=bo->XLinkAt(i);
  2752 		if (xlo) 
  2753 		{
  2754 			EditXLinkDialog dia;
  2755 			dia.setXLink (xlo);
  2756 			dia.setSelection(bo);
  2757 			if (dia.exec() == QDialog::Accepted)
  2758 			{
  2759 				if (dia.useSettingsGlobal() )
  2760 				{
  2761 					setMapDefXLinkColor (xlo->getColor() );
  2762 					setMapDefXLinkWidth (xlo->getWidth() );
  2763 				}
  2764 				if (dia.deleteXLink())
  2765 					bo->deleteXLinkAt(i);
  2766 			}
  2767 		}	
  2768 	}
  2769 */	
  2770 }
  2771 
  2772 
  2773 
  2774 
  2775 
  2776 //////////////////////////////////////////////
  2777 // Scripting
  2778 //////////////////////////////////////////////
  2779 
  2780 void VymModel::parseAtom(const QString &atom)
  2781 {
  2782 	//BranchObj *selb=getSelectedBranch();	// FIXME-4
  2783 	TreeItem* selti=getSelectedItem();
  2784 	BranchItem *selbi=getSelectedBranchItem();
  2785 	QString s,t;
  2786 	double x,y;
  2787 	int n;
  2788 	bool b,ok;
  2789 
  2790 	// Split string s into command and parameters
  2791 	parser.parseAtom (atom);
  2792 	QString com=parser.getCommand();
  2793 	
  2794 	// External commands
  2795 	/////////////////////////////////////////////////////////////////////
  2796 	if (com=="addBranch")
  2797 	{
  2798 		if (!selti)
  2799 		{
  2800 			parser.setError (Aborted,"Nothing selected");
  2801 		} else if (! selbi )
  2802 		{				  
  2803 			parser.setError (Aborted,"Type of selection is not a branch");
  2804 		} else 
  2805 		{	
  2806 			QList <int> pl;
  2807 			pl << 0 <<1;
  2808 			if (parser.checkParCount(pl))
  2809 			{
  2810 				if (parser.parCount()==0)
  2811 					addNewBranch (0);
  2812 				else
  2813 				{
  2814 					n=parser.parInt (ok,0);
  2815 					if (ok ) addNewBranch (n);
  2816 				}
  2817 			}
  2818 		}
  2819 	/////////////////////////////////////////////////////////////////////
  2820 	} else if (com=="addBranchBefore")
  2821 	{
  2822 		if (!selti)
  2823 		{
  2824 			parser.setError (Aborted,"Nothing selected");
  2825 		} else if (! selbi )
  2826 		{				  
  2827 			parser.setError (Aborted,"Type of selection is not a branch");
  2828 		} else 
  2829 		{	
  2830 			if (parser.parCount()==0)
  2831 			{
  2832 				addNewBranchBefore ();
  2833 			}	
  2834 		}
  2835 	/////////////////////////////////////////////////////////////////////
  2836 	} else if (com==QString("addMapCenter"))
  2837 	{
  2838 		if (parser.checkParCount(2))
  2839 		{
  2840 			x=parser.parDouble (ok,0);
  2841 			if (ok)
  2842 			{
  2843 				y=parser.parDouble (ok,1);
  2844 				if (ok) addMapCenter (QPointF(x,y));
  2845 			}
  2846 		}	
  2847 	/////////////////////////////////////////////////////////////////////
  2848 	} else if (com==QString("addMapReplace"))
  2849 	{
  2850 		if (!selti)
  2851 		{
  2852 			parser.setError (Aborted,"Nothing selected");
  2853 		} else if (! selbi )
  2854 		{				  
  2855 			parser.setError (Aborted,"Type of selection is not a branch");
  2856 		} else if (parser.checkParCount(1))
  2857 		{
  2858 			//s=parser.parString (ok,0);	// selection
  2859 			t=parser.parString (ok,0);	// path to map
  2860 			if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
  2861 			addMapReplaceInt(getSelectString(selbi),t);	
  2862 		}
  2863 	/////////////////////////////////////////////////////////////////////
  2864 	} else if (com==QString("addMapInsert"))
  2865 	{
  2866 		if (!selti)
  2867 		{
  2868 			parser.setError (Aborted,"Nothing selected");
  2869 		} else if (! selbi )
  2870 		{				  
  2871 			parser.setError (Aborted,"Type of selection is not a branch");
  2872 		} else 
  2873 		{	
  2874 			if (parser.checkParCount(2))
  2875 			{
  2876 				t=parser.parString (ok,0);	// path to map
  2877 				n=parser.parInt(ok,1);		// position
  2878 				if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
  2879 				addMapInsertInt(t,n);	
  2880 			}
  2881 		}
  2882 	/////////////////////////////////////////////////////////////////////
  2883 	} else /*if (com=="clearFlags")	// FIXME-2
  2884 	{
  2885 		if (!selti )
  2886 		{
  2887 			parser.setError (Aborted,"Nothing selected");
  2888 		} else if (! selbi )
  2889 		{				  
  2890 			parser.setError (Aborted,"Type of selection is not a branch");
  2891 		} else if (parser.checkParCount(0))
  2892 		{
  2893 			selb->clearStandardFlags();	
  2894 			selb->updateFlagsToolbar();
  2895 		}
  2896 	/////////////////////////////////////////////////////////////////////
  2897 	} else */ if (com=="colorBranch")
  2898 	{
  2899 		if (!selti)
  2900 		{
  2901 			parser.setError (Aborted,"Nothing selected");
  2902 		} else if (! selbi )
  2903 		{				  
  2904 			parser.setError (Aborted,"Type of selection is not a branch");
  2905 		} else if (parser.checkParCount(1))
  2906 		{	
  2907 			QColor c=parser.parColor (ok,0);
  2908 			if (ok) colorBranch (c);
  2909 		}	
  2910 	/////////////////////////////////////////////////////////////////////
  2911 	} else if (com=="colorSubtree")
  2912 	{
  2913 		if (!selti)
  2914 		{
  2915 			parser.setError (Aborted,"Nothing selected");
  2916 		} else if (! selbi )
  2917 		{				  
  2918 			parser.setError (Aborted,"Type of selection is not a branch");
  2919 		} else if (parser.checkParCount(1))
  2920 		{	
  2921 			QColor c=parser.parColor (ok,0);
  2922 			if (ok) colorSubtree (c);
  2923 		}	
  2924 	/////////////////////////////////////////////////////////////////////
  2925 	} else if (com=="copy")
  2926 	{
  2927 		if (!selti)
  2928 		{
  2929 			parser.setError (Aborted,"Nothing selected");
  2930 		} else if (! selbi )
  2931 		{				  
  2932 			parser.setError (Aborted,"Type of selection is not a branch");
  2933 		} else if (parser.checkParCount(0))
  2934 		{	
  2935 			//FIXME-1 missing action for copy
  2936 		}	
  2937 	/////////////////////////////////////////////////////////////////////
  2938 	} else if (com=="cut")
  2939 	{
  2940 		if (!selti)
  2941 		{
  2942 			parser.setError (Aborted,"Nothing selected");
  2943 		} else if ( selectionType()!=TreeItem::Branch  && 
  2944 					selectionType()!=TreeItem::MapCenter  &&
  2945 					selectionType()!=TreeItem::Image )
  2946 		{				  
  2947 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  2948 		} else if (parser.checkParCount(0))
  2949 		{	
  2950 			cut();
  2951 		}	
  2952 	/////////////////////////////////////////////////////////////////////
  2953 	} else if (com=="delete")
  2954 	{
  2955 		if (!selti)
  2956 		{
  2957 			parser.setError (Aborted,"Nothing selected");
  2958 		} 
  2959 		/*else if (selectionType() != TreeItem::Branch && selectionType() != TreeItem::Image )
  2960 		{
  2961 			parser.setError (Aborted,"Type of selection is wrong.");
  2962 		} 
  2963 		*/
  2964 		else if (parser.checkParCount(0))
  2965 		{	
  2966 			deleteSelection();
  2967 		}	
  2968 	/////////////////////////////////////////////////////////////////////
  2969 	} else if (com=="deleteKeepChildren")
  2970 	{
  2971 		if (!selti)
  2972 		{
  2973 			parser.setError (Aborted,"Nothing selected");
  2974 		} else if (! selbi )
  2975 		{
  2976 			parser.setError (Aborted,"Type of selection is not a branch");
  2977 		} else if (parser.checkParCount(0))
  2978 		{	
  2979 			deleteKeepChildren();
  2980 		}	
  2981 	/////////////////////////////////////////////////////////////////////
  2982 	} else if (com=="deleteChildren")
  2983 	{
  2984 		if (!selti)
  2985 		{
  2986 			parser.setError (Aborted,"Nothing selected");
  2987 		} else if (! selbi)
  2988 		{
  2989 			parser.setError (Aborted,"Type of selection is not a branch");
  2990 		} else if (parser.checkParCount(0))
  2991 		{	
  2992 			deleteChildren();
  2993 		}	
  2994 	/////////////////////////////////////////////////////////////////////
  2995 	} else if (com=="exportASCII")
  2996 	{
  2997 		QString fname="";
  2998 		ok=true;
  2999 		if (parser.parCount()>=1)
  3000 			// Hey, we even have a filename
  3001 			fname=parser.parString(ok,0); 
  3002 		if (!ok)
  3003 		{
  3004 			parser.setError (Aborted,"Could not read filename");
  3005 		} else
  3006 		{
  3007 				exportASCII (fname,false);
  3008 		}
  3009 	/////////////////////////////////////////////////////////////////////
  3010 	} else if (com=="exportImage")
  3011 	{
  3012 		QString fname="";
  3013 		ok=true;
  3014 		if (parser.parCount()>=2)
  3015 			// Hey, we even have a filename
  3016 			fname=parser.parString(ok,0); 
  3017 		if (!ok)
  3018 		{
  3019 			parser.setError (Aborted,"Could not read filename");
  3020 		} else
  3021 		{
  3022 			QString format="PNG";
  3023 			if (parser.parCount()>=2)
  3024 			{
  3025 				format=parser.parString(ok,1);
  3026 			}
  3027 			exportImage (fname,false,format);
  3028 		}
  3029 	/////////////////////////////////////////////////////////////////////
  3030 	} else if (com=="exportXHTML")
  3031 	{
  3032 		QString fname="";
  3033 		ok=true;
  3034 		if (parser.parCount()>=2)
  3035 			// Hey, we even have a filename
  3036 			fname=parser.parString(ok,1); 
  3037 		if (!ok)
  3038 		{
  3039 			parser.setError (Aborted,"Could not read filename");
  3040 		} else
  3041 		{
  3042 			exportXHTML (fname,false);
  3043 		}
  3044 	/////////////////////////////////////////////////////////////////////
  3045 	} else if (com=="exportXML")
  3046 	{
  3047 		QString fname="";
  3048 		ok=true;
  3049 		if (parser.parCount()>=2)
  3050 			// Hey, we even have a filename
  3051 			fname=parser.parString(ok,1); 
  3052 		if (!ok)
  3053 		{
  3054 			parser.setError (Aborted,"Could not read filename");
  3055 		} else
  3056 		{
  3057 			exportXML (fname,false);
  3058 		}
  3059 	/////////////////////////////////////////////////////////////////////
  3060 	} else if (com=="importDir")
  3061 	{
  3062 		if (!selti)
  3063 		{
  3064 			parser.setError (Aborted,"Nothing selected");
  3065 		} else if (! selbi )
  3066 		{				  
  3067 			parser.setError (Aborted,"Type of selection is not a branch");
  3068 		} else if (parser.checkParCount(1))
  3069 		{
  3070 			s=parser.parString(ok,0);
  3071 			if (ok) importDirInt(s);
  3072 		}	
  3073 	/////////////////////////////////////////////////////////////////////
  3074 	} else /* FIXME-2 if (com=="linkTo")
  3075 	{
  3076 		if (!selti)
  3077 		{
  3078 			parser.setError (Aborted,"Nothing selected");
  3079 		} else if ( selbi)
  3080 		{
  3081 			if (parser.checkParCount(4))
  3082 			{
  3083 				// 0	selectstring of parent
  3084 				// 1	num in parent (for branches)
  3085 				// 2,3	x,y of mainbranch or mapcenter
  3086 				s=parser.parString(ok,0);
  3087 				LinkableMapObj *dst=findObjBySelect (s);
  3088 				if (dst)
  3089 				{	
  3090 					if (typeid(*dst) == typeid(BranchObj) ) 
  3091 					{
  3092 						// Get number in parent
  3093 						n=parser.parInt (ok,1);
  3094 						if (ok)
  3095 						{
  3096 							selb->linkTo ((BranchObj*)(dst),n);
  3097 							selection.update();
  3098 						}	
  3099 					} else if (typeid(*dst) == typeid(MapCenterObj) ) 
  3100 					{
  3101 						selb->linkTo ((BranchObj*)(dst),-1);
  3102 						// Get coordinates of mainbranch
  3103 						x=parser.parDouble(ok,2);
  3104 						if (ok)
  3105 						{
  3106 							y=parser.parDouble(ok,3);
  3107 							if (ok) 
  3108 							{
  3109 								selbi->move (x,y);
  3110 								selection.update();
  3111 							}
  3112 						}
  3113 					}	
  3114 				}	
  3115 			}	
  3116 		} else if ( selectionType() == TreeItem::Image) 
  3117 		{
  3118 			if (parser.checkParCount(1))
  3119 			{
  3120 				// 0	selectstring of parent
  3121 				s=parser.parString(ok,0);
  3122 				LinkableMapObj *dst=findObjBySelect (s);
  3123 				if (dst)
  3124 				{	
  3125 					if (typeid(*dst) == typeid(BranchObj) ||
  3126 						typeid(*dst) == typeid(MapCenterObj)) 
  3127 						linkFloatImageTo (getSelectString(dst));
  3128 				} else	
  3129 					parser.setError (Aborted,"Destination is not a branch");
  3130 			}		
  3131 		} else
  3132 			parser.setError (Aborted,"Type of selection is not a floatimage or branch");
  3133 	/////////////////////////////////////////////////////////////////////
  3134 	} else */ if (com=="loadImage")
  3135 	{
  3136 		if (!selti)
  3137 		{
  3138 			parser.setError (Aborted,"Nothing selected");
  3139 		} else if (! selbi )
  3140 		{				  
  3141 			parser.setError (Aborted,"Type of selection is not a branch");
  3142 		} else if (parser.checkParCount(1))
  3143 		{
  3144 			s=parser.parString(ok,0);
  3145 			if (ok) loadFloatImageInt (s);
  3146 		}	
  3147 	/////////////////////////////////////////////////////////////////////
  3148 	} else if (com=="moveBranchUp")
  3149 	{
  3150 		if (!selti )
  3151 		{
  3152 			parser.setError (Aborted,"Nothing selected");
  3153 		} else if (! selbi )
  3154 		{				  
  3155 			parser.setError (Aborted,"Type of selection is not a branch");
  3156 		} else if (parser.checkParCount(0))
  3157 		{
  3158 			moveBranchUp();
  3159 		}	
  3160 	/////////////////////////////////////////////////////////////////////
  3161 	} else if (com=="moveBranchDown")
  3162 	{
  3163 		if (!selti )
  3164 		{
  3165 			parser.setError (Aborted,"Nothing selected");
  3166 		} else if (! selbi )
  3167 		{				  
  3168 			parser.setError (Aborted,"Type of selection is not a branch");
  3169 		} else if (parser.checkParCount(0))
  3170 		{
  3171 			moveBranchDown();
  3172 		}	
  3173 	/////////////////////////////////////////////////////////////////////
  3174 	} else if (com=="move")
  3175 	{
  3176 		if (!selti )
  3177 		{
  3178 			parser.setError (Aborted,"Nothing selected");
  3179 		} else if ( selectionType()!=TreeItem::Branch  && 
  3180 					selectionType()!=TreeItem::MapCenter  &&
  3181 					selectionType()!=TreeItem::Image )
  3182 		{				  
  3183 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3184 		} else if (parser.checkParCount(2))
  3185 		{	
  3186 			x=parser.parDouble (ok,0);
  3187 			if (ok)
  3188 			{
  3189 				y=parser.parDouble (ok,1);
  3190 				if (ok) move (x,y);
  3191 			}
  3192 		}	
  3193 	/////////////////////////////////////////////////////////////////////
  3194 	} else if (com=="moveRel")
  3195 	{
  3196 		if (!selti )
  3197 		{
  3198 			parser.setError (Aborted,"Nothing selected");
  3199 		} else if ( selectionType()!=TreeItem::Branch  && 
  3200 					selectionType()!=TreeItem::MapCenter  &&
  3201 					selectionType()!=TreeItem::Image )
  3202 		{				  
  3203 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3204 		} else if (parser.checkParCount(2))
  3205 		{	
  3206 			x=parser.parDouble (ok,0);
  3207 			if (ok)
  3208 			{
  3209 				y=parser.parDouble (ok,1);
  3210 				if (ok) moveRel (x,y);
  3211 			}
  3212 		}	
  3213 	/////////////////////////////////////////////////////////////////////
  3214 	} else if (com=="nop")
  3215 	{
  3216 	/////////////////////////////////////////////////////////////////////
  3217 	} else if (com=="paste")
  3218 	{
  3219 		if (!selti )
  3220 		{
  3221 			parser.setError (Aborted,"Nothing selected");
  3222 		} else if (! selbi )
  3223 		{				  
  3224 			parser.setError (Aborted,"Type of selection is not a branch");
  3225 		} else if (parser.checkParCount(1))
  3226 		{	
  3227 			n=parser.parInt (ok,0);
  3228 			if (ok) pasteNoSave(n);
  3229 		}	
  3230 	/////////////////////////////////////////////////////////////////////
  3231 	} else if (com=="qa")
  3232 	{
  3233 		if (!selti )
  3234 		{
  3235 			parser.setError (Aborted,"Nothing selected");
  3236 		} else if (! selbi )
  3237 		{				  
  3238 			parser.setError (Aborted,"Type of selection is not a branch");
  3239 		} else if (parser.checkParCount(4))
  3240 		{	
  3241 			QString c,u;
  3242 			c=parser.parString (ok,0);
  3243 			if (!ok)
  3244 			{
  3245 				parser.setError (Aborted,"No comment given");
  3246 			} else
  3247 			{
  3248 				s=parser.parString (ok,1);
  3249 				if (!ok)
  3250 				{
  3251 					parser.setError (Aborted,"First parameter is not a string");
  3252 				} else
  3253 				{
  3254 					t=parser.parString (ok,2);
  3255 					if (!ok)
  3256 					{
  3257 						parser.setError (Aborted,"Condition is not a string");
  3258 					} else
  3259 					{
  3260 						u=parser.parString (ok,3);
  3261 						if (!ok)
  3262 						{
  3263 							parser.setError (Aborted,"Third parameter is not a string");
  3264 						} else
  3265 						{
  3266 							if (s!="heading")
  3267 							{
  3268 								parser.setError (Aborted,"Unknown type: "+s);
  3269 							} else
  3270 							{
  3271 								if (! (t=="eq") ) 
  3272 								{
  3273 									parser.setError (Aborted,"Unknown operator: "+t);
  3274 								} else
  3275 								{
  3276 									if (! selbi    )
  3277 									{
  3278 										parser.setError (Aborted,"Type of selection is not a branch");
  3279 									} else
  3280 									{
  3281 										if (selbi->getHeading() == u)
  3282 										{
  3283 											cout << "PASSED: " << qPrintable (c)  << endl;
  3284 										} else
  3285 										{
  3286 											cout << "FAILED: " << qPrintable (c)  << endl;
  3287 										}
  3288 									}
  3289 								}
  3290 							}
  3291 						} 
  3292 					} 
  3293 				} 
  3294 			}
  3295 		}	
  3296 	/////////////////////////////////////////////////////////////////////
  3297 	} else if (com=="saveImage")
  3298 	{
  3299 		FloatImageObj *fio=selection.getFloatImage();
  3300 		if (!fio)
  3301 		{
  3302 			parser.setError (Aborted,"Type of selection is not an image");
  3303 		} else if (parser.checkParCount(2))
  3304 		{
  3305 			s=parser.parString(ok,0);
  3306 			if (ok)
  3307 			{
  3308 				t=parser.parString(ok,1);
  3309 				if (ok) saveFloatImageInt (fio,t,s);
  3310 			}
  3311 		}	
  3312 	/////////////////////////////////////////////////////////////////////
  3313 	} else if (com=="scroll")
  3314 	{
  3315 		if (!selti)
  3316 		{
  3317 			parser.setError (Aborted,"Nothing selected");
  3318 		} else if (! selbi )
  3319 		{				  
  3320 			parser.setError (Aborted,"Type of selection is not a branch");
  3321 		} else if (parser.checkParCount(0))
  3322 		{	
  3323 			if (!scrollBranch (selbi))	
  3324 				parser.setError (Aborted,"Could not scroll branch");
  3325 		}	
  3326 	/////////////////////////////////////////////////////////////////////
  3327 	} else if (com=="select")
  3328 	{
  3329 		if (parser.checkParCount(1))
  3330 		{
  3331 			s=parser.parString(ok,0);
  3332 			if (ok) select (s);
  3333 		}	
  3334 	/////////////////////////////////////////////////////////////////////
  3335 	} else if (com=="selectLastBranch")
  3336 	{
  3337 		if (!selti )
  3338 		{
  3339 			parser.setError (Aborted,"Nothing selected");
  3340 		} else if (! selbi )
  3341 		{				  
  3342 			parser.setError (Aborted,"Type of selection is not a branch");
  3343 		} else if (parser.checkParCount(0))
  3344 		{	
  3345 			BranchItem *bi=selbi->getLastBranch();
  3346 			if (!bi)
  3347 				parser.setError (Aborted,"Could not select last branch");
  3348 			select (bi);		// FIXME-3 was selectInt
  3349 				
  3350 		}	
  3351 	/////////////////////////////////////////////////////////////////////
  3352 	} else /* FIXME-2 if (com=="selectLastImage")
  3353 	{
  3354 		if (!selti )
  3355 		{
  3356 			parser.setError (Aborted,"Nothing selected");
  3357 		} else if (! selbi )
  3358 		{				  
  3359 			parser.setError (Aborted,"Type of selection is not a branch");
  3360 		} else if (parser.checkParCount(0))
  3361 		{	
  3362 			FloatImageObj *fio=selb->getLastFloatImage();
  3363 			if (!fio)
  3364 				parser.setError (Aborted,"Could not select last image");
  3365 			select (fio);		// FIXME-3 was selectInt
  3366 				
  3367 		}	
  3368 	/////////////////////////////////////////////////////////////////////
  3369 	} else */ if (com=="selectLatestAdded")
  3370 	{
  3371 		if (!latestAddedItem)
  3372 		{
  3373 			parser.setError (Aborted,"No latest added object");
  3374 		} else
  3375 		{	
  3376 			if (!select (latestAddedItem))
  3377 				parser.setError (Aborted,"Could not select latest added object ");
  3378 		}	
  3379 	/////////////////////////////////////////////////////////////////////
  3380 	} else if (com=="setFrameType")
  3381 	{
  3382 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3383 		{
  3384 			parser.setError (Aborted,"Type of selection does not allow setting frame type");
  3385 		}
  3386 		else if (parser.checkParCount(1))
  3387 		{
  3388 			s=parser.parString(ok,0);
  3389 			if (ok) setFrameType (s);
  3390 		}	
  3391 	/////////////////////////////////////////////////////////////////////
  3392 	} else if (com=="setFramePenColor")
  3393 	{
  3394 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3395 		{
  3396 			parser.setError (Aborted,"Type of selection does not allow setting of pen color");
  3397 		}
  3398 		else if (parser.checkParCount(1))
  3399 		{
  3400 			QColor c=parser.parColor(ok,0);
  3401 			if (ok) setFramePenColor (c);
  3402 		}	
  3403 	/////////////////////////////////////////////////////////////////////
  3404 	} else if (com=="setFrameBrushColor")
  3405 	{
  3406 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3407 		{
  3408 			parser.setError (Aborted,"Type of selection does not allow setting brush color");
  3409 		}
  3410 		else if (parser.checkParCount(1))
  3411 		{
  3412 			QColor c=parser.parColor(ok,0);
  3413 			if (ok) setFrameBrushColor (c);
  3414 		}	
  3415 	/////////////////////////////////////////////////////////////////////
  3416 	} else if (com=="setFramePadding")
  3417 	{
  3418 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3419 		{
  3420 			parser.setError (Aborted,"Type of selection does not allow setting frame padding");
  3421 		}
  3422 		else if (parser.checkParCount(1))
  3423 		{
  3424 			n=parser.parInt(ok,0);
  3425 			if (ok) setFramePadding(n);
  3426 		}	
  3427 	/////////////////////////////////////////////////////////////////////
  3428 	} else if (com=="setFrameBorderWidth")
  3429 	{
  3430 		if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3431 		{
  3432 			parser.setError (Aborted,"Type of selection does not allow setting frame border width");
  3433 		}
  3434 		else if (parser.checkParCount(1))
  3435 		{
  3436 			n=parser.parInt(ok,0);
  3437 			if (ok) setFrameBorderWidth (n);
  3438 		}	
  3439 	/////////////////////////////////////////////////////////////////////
  3440 	} else if (com=="setMapAuthor")
  3441 	{
  3442 		if (parser.checkParCount(1))
  3443 		{
  3444 			s=parser.parString(ok,0);
  3445 			if (ok) setAuthor (s);
  3446 		}	
  3447 	/////////////////////////////////////////////////////////////////////
  3448 	} else if (com=="setMapComment")
  3449 	{
  3450 		if (parser.checkParCount(1))
  3451 		{
  3452 			s=parser.parString(ok,0);
  3453 			if (ok) setComment(s);
  3454 		}	
  3455 	/////////////////////////////////////////////////////////////////////
  3456 	} else if (com=="setMapBackgroundColor")
  3457 	{
  3458 		if (!selti )
  3459 		{
  3460 			parser.setError (Aborted,"Nothing selected");
  3461 		} else if (! selbi )
  3462 		{				  
  3463 			parser.setError (Aborted,"Type of selection is not a branch");
  3464 		} else if (parser.checkParCount(1))
  3465 		{
  3466 			QColor c=parser.parColor (ok,0);
  3467 			if (ok) setMapBackgroundColor (c);
  3468 		}	
  3469 	/////////////////////////////////////////////////////////////////////
  3470 	} else if (com=="setMapDefLinkColor")
  3471 	{
  3472 		if (!selti )
  3473 		{
  3474 			parser.setError (Aborted,"Nothing selected");
  3475 		} else if (! selbi )
  3476 		{				  
  3477 			parser.setError (Aborted,"Type of selection is not a branch");
  3478 		} else if (parser.checkParCount(1))
  3479 		{
  3480 			QColor c=parser.parColor (ok,0);
  3481 			if (ok) setMapDefLinkColor (c);
  3482 		}	
  3483 	/////////////////////////////////////////////////////////////////////
  3484 	} else if (com=="setMapLinkStyle")
  3485 	{
  3486 		if (parser.checkParCount(1))
  3487 		{
  3488 			s=parser.parString (ok,0);
  3489 			if (ok) setMapLinkStyle(s);
  3490 		}	
  3491 	/////////////////////////////////////////////////////////////////////
  3492 	} else if (com=="setHeading")
  3493 	{
  3494 		if (!selti )
  3495 		{
  3496 			parser.setError (Aborted,"Nothing selected");
  3497 		} else if (! selbi )
  3498 		{				  
  3499 			parser.setError (Aborted,"Type of selection is not a branch");
  3500 		} else if (parser.checkParCount(1))
  3501 		{
  3502 			s=parser.parString (ok,0);
  3503 			if (ok) 
  3504 				setHeading (s);
  3505 		}	
  3506 	/////////////////////////////////////////////////////////////////////
  3507 	} else if (com=="setHideExport")
  3508 	{
  3509 		if (!selti )
  3510 		{
  3511 			parser.setError (Aborted,"Nothing selected");
  3512 		} else if (selectionType()!=TreeItem::Branch && selectionType() != TreeItem::MapCenter &&selectionType()!=TreeItem::Image)
  3513 		{				  
  3514 			parser.setError (Aborted,"Type of selection is not a branch or floatimage");
  3515 		} else if (parser.checkParCount(1))
  3516 		{
  3517 			b=parser.parBool(ok,0);
  3518 			if (ok) setHideExport (b);
  3519 		}
  3520 	/////////////////////////////////////////////////////////////////////
  3521 	} else if (com=="setIncludeImagesHorizontally")
  3522 	{ 
  3523 		if (!selti )
  3524 		{
  3525 			parser.setError (Aborted,"Nothing selected");
  3526 		} else if (! selbi)
  3527 		{				  
  3528 			parser.setError (Aborted,"Type of selection is not a branch");
  3529 		} else if (parser.checkParCount(1))
  3530 		{
  3531 			b=parser.parBool(ok,0);
  3532 			if (ok) setIncludeImagesHor(b);
  3533 		}
  3534 	/////////////////////////////////////////////////////////////////////
  3535 	} else if (com=="setIncludeImagesVertically")
  3536 	{
  3537 		if (!selti )
  3538 		{
  3539 			parser.setError (Aborted,"Nothing selected");
  3540 		} else if (! selbi)
  3541 		{				  
  3542 			parser.setError (Aborted,"Type of selection is not a branch");
  3543 		} else if (parser.checkParCount(1))
  3544 		{
  3545 			b=parser.parBool(ok,0);
  3546 			if (ok) setIncludeImagesVer(b);
  3547 		}
  3548 	/////////////////////////////////////////////////////////////////////
  3549 	} else if (com=="setHideLinkUnselected")
  3550 	{
  3551 		if (!selti )
  3552 		{
  3553 			parser.setError (Aborted,"Nothing selected");
  3554 		} else if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
  3555 		{				  
  3556 			parser.setError (Aborted,"Type of selection does not allow hiding the link");
  3557 		} else if (parser.checkParCount(1))
  3558 		{
  3559 			b=parser.parBool(ok,0);
  3560 			if (ok) setHideLinkUnselected(b);
  3561 		}
  3562 	/////////////////////////////////////////////////////////////////////
  3563 	} else if (com=="setSelectionColor")
  3564 	{
  3565 		if (parser.checkParCount(1))
  3566 		{
  3567 			QColor c=parser.parColor (ok,0);
  3568 			if (ok) setSelectionColorInt (c);
  3569 		}	
  3570 	/////////////////////////////////////////////////////////////////////
  3571 	} else if (com=="setURL")
  3572 	{
  3573 		if (!selti )
  3574 		{
  3575 			parser.setError (Aborted,"Nothing selected");
  3576 		} else if (! selbi )
  3577 		{				  
  3578 			parser.setError (Aborted,"Type of selection is not a branch");
  3579 		} else if (parser.checkParCount(1))
  3580 		{
  3581 			s=parser.parString (ok,0);
  3582 			if (ok) setURL(s);
  3583 		}	
  3584 	/////////////////////////////////////////////////////////////////////
  3585 	} else if (com=="setVymLink")
  3586 	{
  3587 		if (!selti )
  3588 		{
  3589 			parser.setError (Aborted,"Nothing selected");
  3590 		} else if (! selbi )
  3591 		{				  
  3592 			parser.setError (Aborted,"Type of selection is not a branch");
  3593 		} else if (parser.checkParCount(1))
  3594 		{
  3595 			s=parser.parString (ok,0);
  3596 			if (ok) setVymLink(s);
  3597 		}	
  3598 	}
  3599 	/////////////////////////////////////////////////////////////////////
  3600 	else /* FIXME-2 if (com=="setFlag")
  3601 	{
  3602 		if (!selti )
  3603 		{
  3604 			parser.setError (Aborted,"Nothing selected");
  3605 		} else if (! selbi )
  3606 		{				  
  3607 			parser.setError (Aborted,"Type of selection is not a branch");
  3608 		} else if (parser.checkParCount(1))
  3609 		{
  3610 			s=parser.parString(ok,0);
  3611 			if (ok) 
  3612 			{
  3613 				selb->activateStandardFlag(s);
  3614 				selb->updateFlagsToolbar();
  3615 			}	
  3616 		}
  3617 	/////////////////////////////////////////////////////////////////////
  3618 	} else */ /* FIXME-2 if (com=="setFrameType")
  3619 	{
  3620 		if (!selti )
  3621 		{
  3622 			parser.setError (Aborted,"Nothing selected");
  3623 		} else if (! selb )
  3624 		{				  
  3625 			parser.setError (Aborted,"Type of selection is not a branch");
  3626 		} else if (parser.checkParCount(1))
  3627 		{
  3628 			s=parser.parString(ok,0);
  3629 			if (ok) 
  3630 				setFrameType (s);
  3631 		}
  3632 	/////////////////////////////////////////////////////////////////////
  3633 	} else*/ if (com=="sortChildren")
  3634 	{
  3635 		if (!selti )
  3636 		{
  3637 			parser.setError (Aborted,"Nothing selected");
  3638 		} else if (! selbi )
  3639 		{				  
  3640 			parser.setError (Aborted,"Type of selection is not a branch");
  3641 		} else if (parser.checkParCount(0))
  3642 		{
  3643 			sortChildren();
  3644 		}
  3645 	/////////////////////////////////////////////////////////////////////
  3646 	} else /* FIXME-2 if (com=="toggleFlag")
  3647 	{
  3648 		if (!selti )
  3649 		{
  3650 			parser.setError (Aborted,"Nothing selected");
  3651 		} else if (! selbi )
  3652 		{				  
  3653 			parser.setError (Aborted,"Type of selection is not a branch");
  3654 		} else if (parser.checkParCount(1))
  3655 		{
  3656 			s=parser.parString(ok,0);
  3657 			if (ok) 
  3658 			{
  3659 				selbi->toggleStandardFlag(s);	
  3660 				selb->updateFlagsToolbar();
  3661 			}	
  3662 		}
  3663 	/////////////////////////////////////////////////////////////////////
  3664 	} else */ if (com=="unscroll")
  3665 	{
  3666 		if (!selti)
  3667 		{
  3668 			parser.setError (Aborted,"Nothing selected");
  3669 		} else if (! selbi )
  3670 		{				  
  3671 			parser.setError (Aborted,"Type of selection is not a branch");
  3672 		} else if (parser.checkParCount(0))
  3673 		{	
  3674 			if (!unscrollBranch (selbi))	
  3675 				parser.setError (Aborted,"Could not unscroll branch");
  3676 		}	
  3677 	/////////////////////////////////////////////////////////////////////
  3678 	} else if (com=="unscrollChildren")
  3679 	{
  3680 		if (!selti)
  3681 		{
  3682 			parser.setError (Aborted,"Nothing selected");
  3683 		} else if (! selbi )
  3684 		{				  
  3685 			parser.setError (Aborted,"Type of selection is not a branch");
  3686 		} else if (parser.checkParCount(0))
  3687 		{	
  3688 			unscrollChildren ();
  3689 		}	
  3690 	/////////////////////////////////////////////////////////////////////
  3691 	} else /* FIXME-2 if (com=="unsetFlag")
  3692 	{
  3693 		if (selection.isEmpty() )
  3694 		{
  3695 			parser.setError (Aborted,"Nothing selected");
  3696 		} else if (! selbi )
  3697 		{				  
  3698 			parser.setError (Aborted,"Type of selection is not a branch");
  3699 		} else if (parser.checkParCount(1))
  3700 		{
  3701 			s=parser.parString(ok,0);
  3702 			if (ok) 
  3703 			{
  3704 				selb->deactivateStandardFlag(s);
  3705 				selb->updateFlagsToolbar();
  3706 			}	
  3707 		}
  3708 	} else */
  3709 		parser.setError (Aborted,"Unknown command");
  3710 
  3711 	// Any errors?
  3712 	if (parser.errorLevel()==NoError)
  3713 	{
  3714 		// setChanged();  FIXME-2 should not be called e.g. for export?!
  3715 		reposition();
  3716 	}	
  3717 	else	
  3718 	{
  3719 		// TODO Error handling
  3720 		qWarning("VymModel::parseAtom: Error!");
  3721 		qWarning(parser.errorMessage());
  3722 	} 
  3723 }
  3724 
  3725 void VymModel::runScript (QString script)
  3726 {
  3727 	parser.setScript (script);
  3728 	parser.runScript();
  3729 	while (parser.next() ) 
  3730 		parseAtom(parser.getAtom());
  3731 }
  3732 
  3733 void VymModel::setExportMode (bool b)
  3734 {
  3735 	// should be called before and after exports
  3736 	// depending on the settings
  3737 	if (b && settings.value("/export/useHideExport","true")=="true")
  3738 		setHideTmpMode (TreeItem::HideExport);
  3739 	else	
  3740 		setHideTmpMode (TreeItem::HideNone);
  3741 }
  3742 
  3743 void VymModel::exportImage(QString fname, bool askName, QString format)
  3744 {
  3745 	if (fname=="")
  3746 	{
  3747 		fname=getMapName()+".png";
  3748 		format="PNG";
  3749 	} 	
  3750 
  3751 	if (askName)
  3752 	{
  3753 		QStringList fl;
  3754 		QFileDialog *fd=new QFileDialog (NULL);
  3755 		fd->setCaption (tr("Export map as image"));
  3756 		fd->setDirectory (lastImageDir);
  3757 		fd->setFileMode(QFileDialog::AnyFile);
  3758 		fd->setFilters  (imageIO.getFilters() );
  3759 		if (fd->exec())
  3760 		{
  3761 			fl=fd->selectedFiles();
  3762 			fname=fl.first();
  3763 			format=imageIO.getType(fd->selectedFilter());
  3764 		} 
  3765 	}
  3766 
  3767 	setExportMode (true);
  3768 	QPixmap pix (getPixmap());
  3769 	pix.save(fname, format);
  3770 	setExportMode (false);
  3771 }
  3772 
  3773 
  3774 void VymModel::exportXML(QString dir, bool askForName)
  3775 {
  3776 	if (askForName)
  3777 	{
  3778 		dir=browseDirectory(NULL,tr("Export XML to directory"));
  3779 		if (dir =="" && !reallyWriteDirectory(dir) )
  3780 		return;
  3781 	}
  3782 
  3783 	// Hide stuff during export, if settings want this
  3784 	setExportMode (true);
  3785 
  3786 	// Create subdirectories
  3787 	makeSubDirs (dir);
  3788 
  3789 	// write to directory
  3790 	QString saveFile=saveToDir (dir,mapName+"-",true,getTotalBBox().topLeft() ,NULL);
  3791 	QFile file;
  3792 
  3793 	file.setName ( dir + "/"+mapName+".xml");
  3794 	if ( !file.open( QIODevice::WriteOnly ) )
  3795 	{
  3796 		// This should neverever happen
  3797 		QMessageBox::critical (0,tr("Critical Export Error"),tr("VymModel::exportXML couldn't open %1").arg(file.name()));
  3798 		return;
  3799 	}	
  3800 
  3801 	// Write it finally, and write in UTF8, no matter what 
  3802 	QTextStream ts( &file );
  3803 	ts.setEncoding (QTextStream::UnicodeUTF8);
  3804 	ts << saveFile;
  3805 	file.close();
  3806 
  3807 	// Now write image, too
  3808 	exportImage (dir+"/images/"+mapName+".png",false,"PNG");
  3809 
  3810 	setExportMode (false);
  3811 }
  3812 
  3813 void VymModel::exportASCII(QString fname,bool askName)
  3814 {
  3815 	ExportASCII ex;
  3816 	ex.setModel (this);
  3817 	if (fname=="") 
  3818 		ex.setFile (mapName+".txt");	
  3819 	else
  3820 		ex.setFile (fname);
  3821 
  3822 	if (askName)
  3823 	{
  3824 		//ex.addFilter ("TXT (*.txt)");
  3825 		ex.setDir(lastImageDir);
  3826 		//ex.setCaption(vymName+ " -" +tr("Export as ASCII")+" "+tr("(still experimental)"));
  3827 		ex.execDialog() ; 
  3828 	} 
  3829 	if (!ex.canceled())
  3830 	{
  3831 		setExportMode(true);
  3832 		ex.doExport();
  3833 		setExportMode(false);
  3834 	}
  3835 }
  3836 
  3837 void VymModel::exportXHTML (const QString &dir, bool askForName)
  3838 {
  3839 			ExportXHTMLDialog dia(NULL);
  3840 			dia.setFilePath (filePath );
  3841 			dia.setMapName (mapName );
  3842 			dia.readSettings();
  3843 			if (dir!="") dia.setDir (dir);
  3844 
  3845 			bool ok=true;
  3846 			
  3847 			if (askForName)
  3848 			{
  3849 				if (dia.exec()!=QDialog::Accepted) 
  3850 					ok=false;
  3851 				else	
  3852 				{
  3853 					QDir d (dia.getDir());
  3854 					// Check, if warnings should be used before overwriting
  3855 					// the output directory
  3856 					if (d.exists() && d.count()>0)
  3857 					{
  3858 						WarningDialog warn;
  3859 						warn.showCancelButton (true);
  3860 						warn.setText(QString(
  3861 							"The directory %1 is not empty.\n"
  3862 							"Do you risk to overwrite some of its contents?").arg(d.path() ));
  3863 						warn.setCaption("Warning: Directory not empty");
  3864 						warn.setShowAgainName("mainwindow/overwrite-dir-xhtml");
  3865 
  3866 						if (warn.exec()!=QDialog::Accepted) ok=false;
  3867 					}
  3868 				}	
  3869 			}
  3870 
  3871 			if (ok)
  3872 			{
  3873 				exportXML (dia.getDir(),false );
  3874 				dia.doExport(mapName );
  3875 				//if (dia.hasChanged()) setChanged();
  3876 			}
  3877 }
  3878 
  3879 void VymModel::exportOOPresentation(const QString &fn, const QString &cf)
  3880 {
  3881 	ExportOO ex;
  3882 	ex.setFile (fn);
  3883 	ex.setModel (this);
  3884 	if (ex.setConfigFile(cf)) 
  3885 	{
  3886 		setExportMode (true);
  3887 		ex.exportPresentation();
  3888 		setExportMode (false);
  3889 	}
  3890 }
  3891 
  3892 
  3893 
  3894 
  3895 //////////////////////////////////////////////
  3896 // View related
  3897 //////////////////////////////////////////////
  3898 
  3899 void VymModel::registerEditor(QWidget *me)
  3900 {
  3901 	mapEditor=(MapEditor*)me;
  3902 }
  3903 
  3904 void VymModel::unregisterEditor(QWidget *)
  3905 {
  3906 	mapEditor=NULL;
  3907 }
  3908 
  3909 void VymModel::setContextPos(QPointF p)
  3910 {
  3911 	contextPos=p;
  3912 }
  3913 
  3914 void VymModel::unsetContextPos()
  3915 {
  3916 	contextPos=QPointF();
  3917 }
  3918 
  3919 void VymModel::updateNoteFlag()
  3920 {
  3921 	setChanged();
  3922 	cout << "VM::updateNoteFlag()\n";
  3923 	/* FIXME-1 modify note flag
  3924 	BranchObj *bo=getSelectedBranch();
  3925 	if (bo) 
  3926 	{
  3927 		bo->updateNoteFlag();
  3928 		mainWindow->updateActions();
  3929 	}	
  3930 	*/
  3931 }
  3932 
  3933 void VymModel::updateRelPositions()		//FIXME-2 VM should have no need to updateRelPos
  3934 {
  3935 	//cout << "VM::updateRelPos...\n";
  3936 	for (int i=0; i<rootItem->branchCount(); i++)
  3937 		((MapCenterObj*)rootItem->getBranchObjNum(i))->updateRelPositions();
  3938 }
  3939 
  3940 void VymModel::reposition()	//FIXME-3 VM should have no need to reposition, this is done in views???
  3941 {
  3942 	//cout << "VM::reposition blocked="<<blockReposition<<endl;
  3943 	if (blockReposition) return;
  3944 
  3945 	for (int i=0;i<rootItem->branchCount(); i++)
  3946 		rootItem->getBranchObjNum(i)->reposition();	//	for positioning heading
  3947 }
  3948 
  3949 QPolygonF VymModel::shape(BranchObj *bo)	//FIXME-4
  3950 {
  3951 /*
  3952 	// Creating (arbitrary) shapes
  3953 
  3954 	QPolygonF p;
  3955 	QRectF rb=bo->getBBox();
  3956 	if (bo->getDepth()==0)
  3957 	{
  3958 		// Just take BBox of this mapCenter
  3959 		p<<rb.topLeft()<<rb.topRight()<<rb.bottomRight()<<rb.bottomLeft();
  3960 		return p;
  3961 	}
  3962 
  3963 	// Take union of BBox and TotalBBox 
  3964 
  3965 	QRectF ra=bo->getTotalBBox();
  3966 	if (bo->getOrientation()==LinkableMapObj::LeftOfCenter)
  3967 		p   <<ra.bottomLeft()
  3968 			<<ra.topLeft()
  3969 			<<QPointF (rb.topLeft().x(), ra.topLeft().y() )
  3970 			<<rb.topRight()
  3971 			<<rb.bottomRight()
  3972 			<<QPointF (rb.bottomLeft().x(), ra.bottomLeft().y() ) ;
  3973 	else		
  3974 		p   <<ra.bottomRight()
  3975 			<<ra.topRight()
  3976 			<<QPointF (rb.topRight().x(), ra.topRight().y() )
  3977 			<<rb.topLeft()
  3978 			<<rb.bottomLeft()
  3979 			<<QPointF (rb.bottomRight().x(), ra.bottomRight().y() ) ;
  3980 	return p;		
  3981 	*/
  3982 }
  3983 
  3984 void VymModel::moveAway(LinkableMapObj *lmo)	//FIXME-5
  3985 {
  3986 	// Autolayout:
  3987 	//
  3988 	// Move all branches and MapCenters away from lmo 
  3989 	// to avoid collisions 
  3990 
  3991 		/*
  3992 	QPolygonF pA;
  3993 	QPolygonF pB;
  3994 
  3995 	BranchObj *boA=(BranchObj*)lmo;
  3996 	BranchObj *boB;
  3997 	for (int i=0; i<rootItem->branchCount(); i++)
  3998 	{
  3999 		boB=rootItem->getBranchNum(i);
  4000 		pA=shape (boA);
  4001 		pB=shape (boB);
  4002 		PolygonCollisionResult r = PolygonCollision(pA, pB, QPoint(0,0));
  4003 		cout <<"------->"
  4004 			<<"="<<r.intersect
  4005 			<<"  ("<<qPrintable(boA->getHeading() )<<")"
  4006 			<<"  with ("<< qPrintable (boB->getHeading() )
  4007 			<<")  willIntersect"
  4008 			<<r.willIntersect 
  4009 			<<"  minT="<<r.minTranslation<<endl<<endl;
  4010 	}
  4011 			*/
  4012 }
  4013 
  4014 QPixmap VymModel::getPixmap()
  4015 {
  4016 	QRectF mapRect=getTotalBBox();
  4017 	QPixmap pix((int)mapRect.width()+2,(int)mapRect.height()+1);
  4018 	QPainter pp (&pix);
  4019 	
  4020 	pp.setRenderHints(mapEditor->renderHints());
  4021 
  4022 	// Don't print the visualisation of selection
  4023 	selection.unselect();
  4024 
  4025 	mapScene->render (	&pp, 
  4026 		QRectF(0,0,mapRect.width()+2,mapRect.height()+2),
  4027 		QRectF(mapRect.x(),mapRect.y(),mapRect.width(),mapRect.height() ));
  4028 
  4029 	// Restore selection
  4030 	selection.reselect();
  4031 	
  4032 	return pix;
  4033 }
  4034 
  4035 
  4036 void VymModel::setMapLinkStyle (const QString & s)
  4037 {
  4038 	QString snow;
  4039 	switch (linkstyle)
  4040 	{
  4041 		case LinkableMapObj::Line :
  4042 			snow="StyleLine";
  4043 			break;
  4044 		case LinkableMapObj::Parabel:
  4045 			snow="StyleParabel";
  4046 			break;
  4047 		case LinkableMapObj::PolyLine:
  4048 			snow="StylePolyLine";
  4049 			break;
  4050 		case LinkableMapObj::PolyParabel:
  4051 			snow="StylePolyParabel";
  4052 			break;
  4053 		default:	
  4054 			snow="UndefinedStyle";
  4055 			break;
  4056 	}
  4057 
  4058 	saveState (
  4059 		QString("setMapLinkStyle (\"%1\")").arg(s),
  4060 		QString("setMapLinkStyle (\"%1\")").arg(snow),
  4061 		QString("Set map link style (\"%1\")").arg(s)
  4062 	);	
  4063 
  4064 	if (s=="StyleLine")
  4065 		linkstyle=LinkableMapObj::Line;
  4066 	else if (s=="StyleParabel")
  4067 		linkstyle=LinkableMapObj::Parabel;
  4068 	else if (s=="StylePolyLine")
  4069 		linkstyle=LinkableMapObj::PolyLine;
  4070 	else if (s=="StylePolyParabel")	
  4071 		linkstyle=LinkableMapObj::PolyParabel;
  4072 	else
  4073 		linkstyle=LinkableMapObj::UndefinedStyle;
  4074 
  4075 	BranchItem *cur=NULL;
  4076 	BranchItem *prev=NULL;
  4077 	int d=0;
  4078 	BranchObj *bo;
  4079 	next (cur,prev,d);
  4080 	while (cur) 
  4081 	{
  4082 		bo=(BranchObj*)(cur->getLMO() );
  4083 		bo->setLinkStyle(bo->getDefLinkStyle());
  4084 		cur=next(cur,prev,d);
  4085 	}
  4086 	reposition();
  4087 }
  4088 
  4089 LinkableMapObj::Style VymModel::getMapLinkStyle ()
  4090 {
  4091 	return linkstyle;
  4092 }	
  4093 
  4094 void VymModel::setMapDefLinkColor(QColor col)
  4095 {
  4096 	if ( !col.isValid() ) return;
  4097 	saveState (
  4098 		QString("setMapDefLinkColor (\"%1\")").arg(getMapDefLinkColor().name()),
  4099 		QString("setMapDefLinkColor (\"%1\")").arg(col.name()),
  4100 		QString("Set map link color to %1").arg(col.name())
  4101 	);
  4102 
  4103 	defLinkColor=col;
  4104 	BranchItem *cur=NULL;
  4105 	BranchItem *prev=NULL;
  4106 	int d=0;
  4107 	BranchObj *bo;
  4108 	cur=next(cur,prev,d);
  4109 	while (cur) 
  4110 	{
  4111 		bo=(BranchObj*)(cur->getLMO() );
  4112 		bo->setLinkColor();
  4113 		next(cur,prev,d);
  4114 	}
  4115 	updateActions();
  4116 }
  4117 
  4118 void VymModel::setMapLinkColorHintInt()
  4119 {
  4120 	// called from setMapLinkColorHint(lch) or at end of parse
  4121 	BranchItem *cur=NULL;
  4122 	BranchItem *prev=NULL;
  4123 	int d=0;
  4124 	BranchObj *bo;
  4125 	cur=next(cur,prev,d);
  4126 	while (cur) 
  4127 	{
  4128 		bo=(BranchObj*)(cur->getLMO() );
  4129 		bo->setLinkColor();
  4130 		cur=next(cur,prev,d);
  4131 	}
  4132 }
  4133 
  4134 void VymModel::setMapLinkColorHint(LinkableMapObj::ColorHint lch)
  4135 {
  4136 	linkcolorhint=lch;
  4137 	setMapLinkColorHintInt();
  4138 }
  4139 
  4140 void VymModel::toggleMapLinkColorHint()
  4141 {
  4142 	if (linkcolorhint==LinkableMapObj::HeadingColor)
  4143 		linkcolorhint=LinkableMapObj::DefaultColor;
  4144 	else	
  4145 		linkcolorhint=LinkableMapObj::HeadingColor;
  4146 	BranchItem *cur=NULL;
  4147 	BranchItem *prev=NULL;
  4148 	int d=0;
  4149 	BranchObj *bo;
  4150 	cur=next(cur,prev,d);
  4151 	while (cur) 
  4152 	{
  4153 		bo=(BranchObj*)(cur->getLMO() );
  4154 		bo->setLinkColor();
  4155 		next(cur,prev,d);
  4156 	}
  4157 }
  4158 
  4159 void VymModel::selectMapBackgroundImage ()	// FIXME-2 move to ME
  4160 {
  4161 	Q3FileDialog *fd=new Q3FileDialog( NULL);
  4162 	fd->setMode (Q3FileDialog::ExistingFile);
  4163 	fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
  4164 	ImagePreview *p =new ImagePreview (fd);
  4165 	fd->setContentsPreviewEnabled( TRUE );
  4166 	fd->setContentsPreview( p, p );
  4167 	fd->setPreviewMode( Q3FileDialog::Contents );
  4168 	fd->setCaption(vymName+" - " +tr("Load background image"));
  4169 	fd->setDir (lastImageDir);
  4170 	fd->show();
  4171 
  4172 	if ( fd->exec() == QDialog::Accepted )
  4173 	{
  4174 		// TODO selectMapBackgroundImg in QT4 use:	lastImageDir=fd->directory();
  4175 		lastImageDir=QDir (fd->dirPath());
  4176 		setMapBackgroundImage (fd->selectedFile());
  4177 	}
  4178 }	
  4179 
  4180 void VymModel::setMapBackgroundImage (const QString &fn)	//FIXME-2 missing savestate
  4181 {
  4182 	QColor oldcol=mapScene->backgroundBrush().color();
  4183 	/*
  4184 	saveState(
  4185 		selection,
  4186 		QString ("setMapBackgroundImage (%1)").arg(oldcol.name()),
  4187 		selection,
  4188 		QString ("setMapBackgroundImage (%1)").arg(col.name()),
  4189 		QString("Set background color of map to %1").arg(col.name()));
  4190 	*/	
  4191 	QBrush brush;
  4192 	brush.setTextureImage (QPixmap (fn));
  4193 	mapScene->setBackgroundBrush(brush);
  4194 }
  4195 
  4196 void VymModel::selectMapBackgroundColor()	// FIXME-3 move to ME
  4197 {
  4198 	QColor col = QColorDialog::getColor( mapScene->backgroundBrush().color(), NULL);
  4199 	if ( !col.isValid() ) return;
  4200 	setMapBackgroundColor( col );
  4201 }
  4202 
  4203 
  4204 void VymModel::setMapBackgroundColor(QColor col)	// FIXME-3 move to ME
  4205 {
  4206 	QColor oldcol=mapScene->backgroundBrush().color();
  4207 	saveState(
  4208 		QString ("setMapBackgroundColor (\"%1\")").arg(oldcol.name()),
  4209 		QString ("setMapBackgroundColor (\"%1\")").arg(col.name()),
  4210 		QString("Set background color of map to %1").arg(col.name()));
  4211 	mapScene->setBackgroundBrush(col);
  4212 }
  4213 
  4214 QColor VymModel::getMapBackgroundColor()	// FIXME-3 move to ME
  4215 {
  4216     return mapScene->backgroundBrush().color();
  4217 }
  4218 
  4219 
  4220 LinkableMapObj::ColorHint VymModel::getMapLinkColorHint()	// FIXME-3 move to ME
  4221 {
  4222 	return linkcolorhint;
  4223 }
  4224 
  4225 QColor VymModel::getMapDefLinkColor()	// FIXME-3 move to ME
  4226 {
  4227 	return defLinkColor;
  4228 }
  4229 
  4230 void VymModel::setMapDefXLinkColor(QColor col)	// FIXME-3 move to ME
  4231 {
  4232 	defXLinkColor=col;
  4233 }
  4234 
  4235 QColor VymModel::getMapDefXLinkColor()	// FIXME-3 move to ME
  4236 {
  4237 	return defXLinkColor;
  4238 }
  4239 
  4240 void VymModel::setMapDefXLinkWidth (int w)	// FIXME-3 move to ME
  4241 {
  4242 	defXLinkWidth=w;
  4243 }
  4244 
  4245 int VymModel::getMapDefXLinkWidth()	// FIXME-3 move to ME
  4246 {
  4247 	return defXLinkWidth;
  4248 }
  4249 
  4250 void VymModel::move(const double &x, const double &y)	// FIXME-3
  4251 {
  4252 	int i=x; i=y;
  4253 /*
  4254 	BranchObj *bo = getSelectedBranch();
  4255 	if (bo && 
  4256 		(selectionType()==TreeItem::Branch ||
  4257 		 selectionType()==TreeItem::MapCenter ||
  4258 		 selectionType()==TreeItem::Image
  4259 		))
  4260 	{
  4261         QPointF ap(bo->getAbsPos());
  4262         QPointF to(x, y);
  4263         if (ap != to)
  4264         {
  4265             QString ps=qpointfToString(ap);
  4266             QString s=getSelectString();
  4267             saveState(
  4268                 s, "move "+ps, 
  4269                 s, "move "+qpointfToString(to), 
  4270                 QString("Move %1 to %2").arg(getObjectName(bo)).arg(ps));
  4271             bo->move(x,y);
  4272             reposition();
  4273             selection.update();
  4274         }
  4275 	}
  4276 */	
  4277 }
  4278 
  4279 void VymModel::moveRel (const double &x, const double &y)	// FIXME-3
  4280 {
  4281 	int i=x; i=y;
  4282 /*
  4283 	BranchObj *bo = getSelectedBranch();
  4284 	if (bo && 
  4285 		(selectionType()==TreeItem::Branch ||
  4286 		 selectionType()==TreeItem::MapCenter ||
  4287 		 selectionType()==TreeItem::Image
  4288 		))
  4289 	if (bo)
  4290 	{
  4291         QPointF rp(bo->getRelPos());
  4292         QPointF to(x, y);
  4293         if (rp != to)
  4294         {
  4295             QString ps=qpointfToString (bo->getRelPos());
  4296             QString s=getSelectString(bo);
  4297             saveState(
  4298                 s, "moveRel "+ps, 
  4299                 s, "moveRel "+qpointfToString(to), 
  4300                 QString("Move %1 to relative position %2").arg(getObjectName(bo)).arg(ps));
  4301             ((OrnamentedObj*)bo)->move2RelPos (x,y);
  4302             reposition();
  4303             bo->updateLink();
  4304             selection.update();
  4305         }
  4306 	}
  4307 */	
  4308 }
  4309 
  4310 
  4311 void VymModel::animate()
  4312 {
  4313 	animationTimer->stop();
  4314 	BranchObj *bo;
  4315 	int i=0;
  4316 	while (i<animObjList.size() )
  4317 	{
  4318 		bo=(BranchObj*)animObjList.at(i);
  4319 		if (!bo->animate())
  4320 		{
  4321 			if (i>=0) 
  4322 			{	
  4323 				animObjList.removeAt(i);
  4324 				i--;
  4325 			}
  4326 		}
  4327 		bo->reposition();
  4328 		i++;
  4329 	} 
  4330 	QItemSelection sel=selModel->selection();
  4331 	emit (selectionChanged(sel,sel));
  4332 
  4333 	mapScene->update();
  4334 	if (!animObjList.isEmpty()) animationTimer->start();
  4335 }
  4336 
  4337 
  4338 void VymModel::startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest)
  4339 {
  4340 	if (bo && bo->getTreeItem()->depth()>0) 
  4341 	{
  4342 		AnimPoint ap;
  4343 		ap.setStart (start);
  4344 		ap.setDest  (dest);
  4345 		ap.setTicks (animationTicks);
  4346 		ap.setAnimated (true);
  4347 		bo->setAnimation (ap);
  4348 		animObjList.append( bo );
  4349 		animationTimer->setSingleShot (true);
  4350 		animationTimer->start(animationInterval);
  4351 	}
  4352 }
  4353 
  4354 void VymModel::stopAnimation (MapObj *mo)
  4355 {
  4356 	int i=animObjList.indexOf(mo);
  4357     if (i>=0)
  4358 		animObjList.removeAt (i);
  4359 }
  4360 
  4361 void VymModel::sendSelection()
  4362 {
  4363 	if (netstate!=Server) return;
  4364 	sendData (QString("select (\"%1\")").arg(selection.getSelectString()) );
  4365 }
  4366 
  4367 void VymModel::newServer()
  4368 {
  4369 	port=54321;
  4370 	sendCounter=0;
  4371     tcpServer = new QTcpServer(this);
  4372     if (!tcpServer->listen(QHostAddress::Any,port)) {
  4373         QMessageBox::critical(NULL, "vym server",
  4374                               QString("Unable to start the server: %1.").arg(tcpServer->errorString()));
  4375         //FIXME-3 needed? we are no widget any longer... close();
  4376         return;
  4377     }
  4378 	connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newClient()));
  4379 	netstate=Server;
  4380 	cout<<"Server is running on port "<<tcpServer->serverPort()<<endl;
  4381 }
  4382 
  4383 void VymModel::connectToServer()
  4384 {
  4385 	port=54321;
  4386 	server="salam.suse.de";
  4387 	server="localhost";
  4388 	clientSocket = new QTcpSocket (this);
  4389 	clientSocket->abort();
  4390     clientSocket->connectToHost(server ,port);
  4391 	connect(clientSocket, SIGNAL(readyRead()), this, SLOT(readData()));
  4392     connect(clientSocket, SIGNAL(error(QAbstractSocket::SocketError)),
  4393             this, SLOT(displayNetworkError(QAbstractSocket::SocketError)));
  4394 	netstate=Client;		
  4395 	cout<<"connected to "<<qPrintable (server)<<" port "<<port<<endl;
  4396 
  4397 	
  4398 }
  4399 
  4400 void VymModel::newClient()
  4401 {
  4402     QTcpSocket *newClient = tcpServer->nextPendingConnection();
  4403     connect(newClient, SIGNAL(disconnected()),
  4404             newClient, SLOT(deleteLater()));
  4405 
  4406 	cout <<"ME::newClient  at "<<qPrintable( newClient->peerAddress().toString() )<<endl;
  4407 
  4408 	clientList.append (newClient);
  4409 }
  4410 
  4411 
  4412 void VymModel::sendData(const QString &s)
  4413 {
  4414 	if (clientList.size()==0) return;
  4415 
  4416 	// Create bytearray to send
  4417 	QByteArray block;
  4418     QDataStream out(&block, QIODevice::WriteOnly);
  4419     out.setVersion(QDataStream::Qt_4_0);
  4420 
  4421 	// Reserve some space for blocksize
  4422     out << (quint16)0;
  4423 
  4424 	// Write sendCounter
  4425     out << sendCounter++;
  4426 
  4427 	// Write data
  4428     out << s;
  4429 
  4430 	// Go back and write blocksize so far
  4431     out.device()->seek(0);
  4432     quint16 bs=(quint16)(block.size() - 2*sizeof(quint16));
  4433 	out << bs;
  4434 
  4435 	if (debug)
  4436 		cout << "ME::sendData  bs="<<bs<<"  counter="<<sendCounter<<"  s="<<qPrintable(s)<<endl;
  4437 
  4438 	for (int i=0; i<clientList.size(); ++i)
  4439 	{
  4440 		//cout << "Sending \""<<qPrintable (s)<<"\" to "<<qPrintable (clientList.at(i)->peerAddress().toString())<<endl;
  4441 		clientList.at(i)->write (block);
  4442 	}
  4443 }
  4444 
  4445 void VymModel::readData ()
  4446 {
  4447 	while (clientSocket->bytesAvailable() >=(int)sizeof(quint16) )
  4448 	{
  4449 		if (debug)
  4450 			cout <<"readData  bytesAvail="<<clientSocket->bytesAvailable();
  4451 		quint16 recCounter;
  4452 		quint16 blockSize;
  4453 
  4454 		QDataStream in(clientSocket);
  4455 		in.setVersion(QDataStream::Qt_4_0);
  4456 
  4457 		in >> blockSize;
  4458 		in >> recCounter;
  4459 		
  4460 		QString t;
  4461 		in >>t;
  4462 		if (debug)
  4463 			cout << "  t="<<qPrintable (t)<<endl;
  4464 		parseAtom (t);
  4465 	}
  4466 	return;
  4467 }
  4468 
  4469 void VymModel::displayNetworkError(QAbstractSocket::SocketError socketError)
  4470 {
  4471     switch (socketError) {
  4472     case QAbstractSocket::RemoteHostClosedError:
  4473         break;
  4474     case QAbstractSocket::HostNotFoundError:
  4475         QMessageBox::information(NULL, vymName +" Network client",
  4476                                  "The host was not found. Please check the "
  4477                                     "host name and port settings.");
  4478         break;
  4479     case QAbstractSocket::ConnectionRefusedError:
  4480         QMessageBox::information(NULL, vymName + " Network client",
  4481                                  "The connection was refused by the peer. "
  4482                                     "Make sure the fortune server is running, "
  4483                                     "and check that the host name and port "
  4484                                     "settings are correct.");
  4485         break;
  4486     default:
  4487         QMessageBox::information(NULL, vymName + " Network client",
  4488                                  QString("The following error occurred: %1.")
  4489                                  .arg(clientSocket->errorString()));
  4490     }
  4491 }
  4492 
  4493 
  4494 
  4495 
  4496 void VymModel::selectMapSelectionColor()
  4497 {
  4498 	QColor col = QColorDialog::getColor( defLinkColor, NULL);
  4499 	setSelectionColor (col);
  4500 }
  4501 
  4502 void VymModel::setSelectionColorInt (QColor col)
  4503 {
  4504 	if ( !col.isValid() ) return;
  4505 	saveState (
  4506 		QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
  4507 		QString("setSelectionColor (%1)").arg(col.name()),
  4508 		QString("Set color of selection box to %1").arg(col.name())
  4509 	);
  4510 
  4511 	mapEditor->setSelectionColor (col);
  4512 }
  4513 
  4514 /*
  4515 void VymModel::changeSelection (const QItemSelection &newsel,const QItemSelection &oldsel)
  4516 {
  4517 	cout << "VymModel::changeSelection (";
  4518 	if (!newsel.indexes().isEmpty() )
  4519 		cout << getItem(newsel.indexes().first() )->getHeading().toStdString();
  4520 	cout << ",";
  4521 	if (!oldsel.indexes().isEmpty() )
  4522 		cout << getItem(oldsel.indexes().first() )->getHeading().toStdString();
  4523 	cout << ")\n";
  4524 }
  4525 */
  4526 
  4527 void VymModel::updateSelection(const QItemSelection &newsel)
  4528 {
  4529 	emit (selectionChanged(newsel,newsel));	// needed e.g. to update geometry in editor
  4530 	emitShowSelection();
  4531 	sendSelection();
  4532 }
  4533 
  4534 void VymModel::updateSelection()
  4535 {
  4536 	QItemSelection newsel=selModel->selection();
  4537 	updateSelection (newsel);
  4538 }
  4539 
  4540 void VymModel::setSelectionColor(QColor col)
  4541 {
  4542 	if ( !col.isValid() ) return;
  4543 	saveState (
  4544 		QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
  4545 		QString("setSelectionColor (%1)").arg(col.name()),
  4546 		QString("Set color of selection box to %1").arg(col.name())
  4547 	);
  4548 	setSelectionColorInt (col);
  4549 }
  4550 
  4551 QColor VymModel::getSelectionColor()
  4552 {
  4553 	return mapEditor->getSelectionColor();
  4554 }
  4555 
  4556 void VymModel::setHideTmpMode (TreeItem::HideTmpMode mode)
  4557 {
  4558 	hidemode=mode;
  4559 	for (int i=0;i<rootItem->childCount();i++)
  4560 		rootItem->child(i)->setHideTmp (mode);	
  4561 	reposition();
  4562 	// FIXME-3 needed? scene()->update();
  4563 }
  4564 
  4565 
  4566 QRectF VymModel::getTotalBBox()	//FIXME-2
  4567 {
  4568 	QRectF r;
  4569 /*
  4570 	for (int i=0;i<rootItem->branchCount(); i++)
  4571 		r=addBBox (rootItem->getBranchNum(i)->getTotalBBox(), r);
  4572 */ 
  4573 	return r;	
  4574 }
  4575 
  4576 //////////////////////////////////////////////
  4577 // Selection related
  4578 //////////////////////////////////////////////
  4579 
  4580 void VymModel::setSelectionModel (QItemSelectionModel *sm)
  4581 {
  4582 	selModel=sm;
  4583 }
  4584 
  4585 QItemSelectionModel* VymModel::getSelectionModel()
  4586 {
  4587 	return selModel;
  4588 }
  4589 
  4590 void VymModel::setSelectionBlocked (bool b)
  4591 {
  4592 	if (b)
  4593 		selection.block();
  4594 	else	
  4595 		selection.unblock();
  4596 }
  4597 
  4598 bool VymModel::isSelectionBlocked()
  4599 {
  4600 	return selection.isBlocked();
  4601 }
  4602 
  4603 bool VymModel::select ()
  4604 {
  4605 	QModelIndex index=selModel->selectedIndexes().first();	// TODO no multiselections yet
  4606 
  4607 	TreeItem *item = getItem (index);
  4608 	return select (item->getLMO() );
  4609 }
  4610 
  4611 bool VymModel::select (const QString &s)
  4612 {
  4613 	TreeItem *ti=findBySelectString(s);
  4614 	if (ti)
  4615 	{
  4616 		unselect();
  4617 		select (ti);
  4618 		return true;
  4619 	} 
  4620 	return false;
  4621 }
  4622 
  4623 bool VymModel::select (LinkableMapObj *lmo)
  4624 {
  4625 	QItemSelection oldsel=selModel->selection();
  4626 
  4627 	if (lmo)
  4628 		return select (lmo->getTreeItem() );
  4629 	else	
  4630 		return false;
  4631 }
  4632 
  4633 bool VymModel::select (TreeItem *ti)
  4634 {
  4635 	if (ti)
  4636 	{
  4637 		QModelIndex ix=index(ti);
  4638 		selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4639 		ti->setLastSelectedBranch();
  4640 		return true;
  4641 	}
  4642 	return false;
  4643 }
  4644 
  4645 void VymModel::unselect()
  4646 {
  4647 	selModel->clearSelection();
  4648 }	
  4649 
  4650 void VymModel::reselect()
  4651 {
  4652 	selection.reselect();
  4653 }	
  4654 
  4655 void VymModel::emitShowSelection()	
  4656 {
  4657 	if (!blockReposition)
  4658 		emit (showSelection() );
  4659 }
  4660 
  4661 void VymModel::emitNoteHasChanged (TreeItem *ti)
  4662 {
  4663 	QModelIndex ix=index(ti);
  4664 	emit (noteHasChanged (ix) );
  4665 }
  4666 
  4667 void VymModel::emitDataHasChanged (TreeItem *ti)
  4668 {
  4669 	QModelIndex ix=index(ti);
  4670 	emit (dataHasChanged (ix) );
  4671 }
  4672 
  4673 
  4674 //void VymModel::selectInt (LinkableMapObj *lmo)	// FIXME-3 still needed?
  4675 /*
  4676 {
  4677 	if (selection.select(lmo))
  4678 	{
  4679 		//selection.update();
  4680 		sendSelection ();	// FIXME-4 VM use signal
  4681 	}
  4682 }
  4683 
  4684 void VymModel::selectInt (TreeItem *ti)	
  4685 {
  4686 	if (selection.select(lmo))
  4687 	{
  4688 		//selection.update();
  4689 		sendSelection ();	// FIXME-4 VM use signal
  4690 	}
  4691 }
  4692 */
  4693 
  4694 void VymModel::selectNextBranchInt()
  4695 {
  4696 	BranchItem *bi=getSelectedBranchItem();
  4697 	if (bi)
  4698 	{
  4699 		TreeItem *pi=bi->parent();
  4700 		if (bi!=rootItem)
  4701 		{
  4702 			int i=bi->num();
  4703 			if (i<pi->branchCount() )
  4704 			{
  4705 				// select previous branch with same parent
  4706 				i++;
  4707 				select (pi->getBranchNum(i));
  4708 				return;
  4709 			}
  4710 		}
  4711 		
  4712 	}
  4713 }
  4714 
  4715 void VymModel::selectPrevBranchInt()
  4716 {
  4717 
  4718 	BranchItem *bi=getSelectedBranchItem();
  4719 	if (bi)
  4720 	{
  4721 		BranchItem *pi=(BranchItem*)bi->parent();
  4722 		if (bi!=rootItem)
  4723 		{
  4724 			int i=bi->num();
  4725 			if (i>0)
  4726 			{
  4727 				// select previous branch with same parent
  4728 				bi=pi->getBranchNum(i-1);
  4729 				select (bi);
  4730 				return;
  4731 			}
  4732 			bi=pi;
  4733 			while (bi->branchCount() >0)
  4734 				bi=bi->getLastBranch();
  4735 			select (bi);	
  4736 
  4737 			// Try to select last branch in parent pi2 previous to own parent pi
  4738 			/*
  4739 			TreeItem *pi2=pi->parent();
  4740 			if (pi2)
  4741 			{
  4742 				int j=pi->num();
  4743 				if (pi2->)
  4744 			}
  4745 			*/
  4746 		}
  4747 	}
  4748 }
  4749 
  4750 void VymModel::selectAboveBranchInt()
  4751 {
  4752 	BranchItem *bi=getSelectedBranchItem();
  4753 	if (bi)
  4754 	{
  4755 		BranchItem *newbi=NULL;
  4756 		BranchItem *pi=(BranchItem*)bi->parent();
  4757 		int i=bi->num();
  4758 		if (i>0)
  4759 		{
  4760 			// goto previous branch with same parent
  4761 			newbi=pi->getBranchNum(i-1);
  4762 			while (newbi->branchCount() >0 )
  4763 				newbi=newbi->getLastBranch();
  4764 		}
  4765 		else
  4766 			newbi=pi;
  4767 		if (newbi==rootItem) 
  4768  			// already at top branch (resp. mapcenter)
  4769 			return;
  4770 		select (newbi);
  4771 	}
  4772 }
  4773 
  4774 void VymModel::selectBelowBranchInt()
  4775 {
  4776 	BranchItem *bi=getSelectedBranchItem();
  4777 	if (bi)
  4778 	{
  4779 		BranchItem *newbi=NULL;
  4780 
  4781 		if (bi->branchCount() >0)
  4782 			newbi=bi->getFirstBranch();
  4783 		else
  4784 		{
  4785 			BranchItem *pi;
  4786 			int i;
  4787 			while (!newbi)
  4788 			{
  4789 				pi=(BranchItem*)bi->parent();
  4790 				i=bi->num();
  4791 				if (pi->branchCount()-1 > i)
  4792 				{
  4793 					newbi=(BranchItem*)pi->getBranchNum(i+1);
  4794 					//done...
  4795 					break;
  4796 				}	
  4797 				else
  4798 					// look for siblings of myself 
  4799 					// or parent, or parent of parent...
  4800 					bi=pi;
  4801 				if (bi==rootItem)
  4802 					// already at end
  4803 					return;
  4804 			}	
  4805 		}
  4806 		select (newbi);
  4807 	}
  4808 }
  4809 
  4810 void VymModel::selectUpperBranch()
  4811 {
  4812 	if (selection.isBlocked() ) return;
  4813 
  4814 	BranchItem *bi=getSelectedBranchItem();
  4815 	if (bi && bi->isBranchLikeType())
  4816 		selectAboveBranchInt();
  4817 }
  4818 
  4819 void VymModel::selectLowerBranch()
  4820 {
  4821 	if (selection.isBlocked() ) return;
  4822 
  4823 	BranchItem *bi=getSelectedBranchItem();
  4824 	if (bi && bi->isBranchLikeType())
  4825 		selectBelowBranchInt();
  4826 }
  4827 
  4828 
  4829 void VymModel::selectLeftBranch()
  4830 {
  4831 	if (selection.isBlocked() ) return;
  4832 
  4833 	QItemSelection oldsel=selModel->selection();
  4834 
  4835 	BranchItem* par;
  4836 	BranchItem *selbi=getSelectedBranchItem();
  4837 	TreeItem::Type type=selbi->getType();
  4838 	if (selbi)
  4839 	{
  4840 		if (type == TreeItem::MapCenter)
  4841 		{
  4842 			QModelIndex ix=index(selbi);
  4843 			selModel->select (index (rowCount(ix)-1,0,ix),QItemSelectionModel::ClearAndSelect  );
  4844 		} else
  4845 		{
  4846 			par=(BranchItem*)selbi->parent();
  4847 			if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter)	//FIXME-3 check getBO...
  4848 			{
  4849 				// right of center
  4850 				if (type == TreeItem::Branch ||
  4851 					type == TreeItem::Image)
  4852 				{
  4853 					QModelIndex ix=index (selbi->parent());
  4854 					selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4855 				}
  4856 			} else
  4857 			{
  4858 				// left of center
  4859 				if (type == TreeItem::Branch )
  4860 				{
  4861 					cout << "VM::selLeft\n";
  4862 					selectLastSelectedBranch();
  4863 					return;
  4864 				}
  4865 			}
  4866 		}	
  4867 	}
  4868 }
  4869 
  4870 void VymModel::selectRightBranch()
  4871 {
  4872 	if (selection.isBlocked() ) return;
  4873 
  4874 	QItemSelection oldsel=selModel->selection();
  4875 
  4876 	BranchItem* par;
  4877 	BranchItem *selbi=getSelectedBranchItem();
  4878 	TreeItem::Type type=selbi->getType();
  4879 	if (selbi)
  4880 	{
  4881 		if (type==TreeItem::MapCenter)
  4882 		{
  4883 			QModelIndex ix=index(selbi);
  4884 			selModel->select (index (0,0,ix),QItemSelectionModel::ClearAndSelect  );
  4885 		} else
  4886 		{
  4887 			par=(BranchItem*)selbi->parent();
  4888 			if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter)	//FIXME-3 check getBO
  4889 			{
  4890 				// right of center
  4891 				if ( type== TreeItem::Branch )
  4892 				{
  4893 					selectLastSelectedBranch();
  4894 					return;
  4895 				}
  4896 			} else
  4897 			{
  4898 				// left of center
  4899 				if (type == TreeItem::Branch ||
  4900 					type == TreeItem::Image)
  4901 				{
  4902 					cout << "VM::selRight\n";
  4903 					QModelIndex ix=index(selbi->parent());
  4904 					selModel->select (ix,QItemSelectionModel::ClearAndSelect  );
  4905 				}
  4906 			}
  4907 		}	
  4908 	}
  4909 }
  4910 
  4911 void VymModel::selectFirstBranch()
  4912 {
  4913 	TreeItem *ti=getSelectedBranchItem();
  4914 	if (ti)
  4915 	{
  4916 		TreeItem *par=ti->parent();
  4917 		if (!par) return;
  4918 		TreeItem *ti2=par->getFirstBranch();
  4919 		if (ti2) {
  4920 			select(ti2);
  4921 			selection.update();
  4922 			emitShowSelection();
  4923 			sendSelection();
  4924 		}
  4925 	}		
  4926 }
  4927 
  4928 void VymModel::selectLastBranch()
  4929 {
  4930 	TreeItem *ti=getSelectedBranchItem();
  4931 	if (ti)
  4932 	{
  4933 		TreeItem *par=ti->parent();
  4934 		if (!par) return;
  4935 		TreeItem *ti2=par->getLastBranch();
  4936 		if (ti2) {
  4937 			select(ti2);
  4938 			selection.update();
  4939 			emitShowSelection();
  4940 			sendSelection();
  4941 		}
  4942 	}		
  4943 }
  4944 
  4945 void VymModel::selectLastSelectedBranch()
  4946 {
  4947 	TreeItem *ti=getSelectedBranchItem();
  4948 	if (ti)
  4949 	{
  4950 		ti=ti->getLastSelectedBranch();
  4951 		if (ti) select (ti);
  4952 	}		
  4953 }
  4954 
  4955 void VymModel::selectParent()
  4956 {
  4957 	TreeItem *ti=getSelectedItem();
  4958 	TreeItem *par;
  4959 	if (ti)
  4960 	{
  4961 		par=ti->parent();
  4962 		if (!par) return;
  4963 		select(par);
  4964 		selection.update();
  4965 		emitShowSelection();
  4966 		sendSelection();
  4967 	}		
  4968 }
  4969 
  4970 TreeItem::Type VymModel::selectionType()
  4971 {
  4972 	QModelIndexList list=selModel->selectedIndexes();
  4973 	if (list.isEmpty()) return TreeItem::Undefined;	
  4974 	TreeItem *ti = getItem (list.first() );
  4975 	return ti->getType();
  4976 
  4977 }
  4978 
  4979 LinkableMapObj* VymModel::getSelectedLMO()
  4980 {
  4981 	QModelIndexList list=selModel->selectedIndexes();
  4982 	if (!list.isEmpty() )
  4983 	{
  4984 		TreeItem *ti = getItem (list.first() );
  4985 		TreeItem::Type type=ti->getType();
  4986 		if (type ==TreeItem::Branch || type==TreeItem::MapCenter || type==TreeItem::Image)
  4987 		{
  4988 			return ti->getLMO();
  4989 		}	
  4990 	}
  4991 	return NULL;
  4992 }
  4993 
  4994 BranchObj* VymModel::getSelectedBranchObj()	// FIXME-3 this should not be needed in the end!!!
  4995 {
  4996 	TreeItem *ti = getSelectedBranchItem();
  4997 	if (ti)
  4998 		return (BranchObj*)ti->getLMO();
  4999 	else	
  5000 		return NULL;
  5001 }
  5002 
  5003 BranchItem* VymModel::getSelectedBranchItem()
  5004 {
  5005 	QModelIndexList list=selModel->selectedIndexes();
  5006 	if (!list.isEmpty() )
  5007 	{
  5008 		TreeItem *ti = getItem (list.first() );
  5009 		TreeItem::Type type=ti->getType();
  5010 		if (type ==TreeItem::Branch || type==TreeItem::MapCenter)
  5011 			return (BranchItem*)ti;
  5012 	}
  5013 	return NULL;
  5014 }
  5015 
  5016 TreeItem* VymModel::getSelectedItem()
  5017 {
  5018 	QModelIndexList list=selModel->selectedIndexes();
  5019 	if (!list.isEmpty() )
  5020 		return getItem (list.first() );
  5021 	else	
  5022 		return NULL;
  5023 }
  5024 
  5025 QModelIndex VymModel::getSelectedIndex()
  5026 {
  5027 	QModelIndexList list=selModel->selectedIndexes();
  5028 	if (list.isEmpty() )
  5029 		return QModelIndex();
  5030 	else
  5031 		return list.first();
  5032 }
  5033 
  5034 FloatImageObj* VymModel::getSelectedFloatImage()
  5035 {
  5036 	return selection.getFloatImage();	
  5037 }
  5038 
  5039 QString VymModel::getSelectString ()
  5040 {
  5041 	LinkableMapObj *lmo=getSelectedLMO();
  5042 	if (lmo) 
  5043 		return getSelectString(lmo);
  5044 	else
  5045 		return QString();
  5046 }
  5047 
  5048 QString VymModel::getSelectString (LinkableMapObj *lmo)	// FIXME-2 VM needs to use TreeModel. Port all calls to this funtion to the one using TreeItem below...
  5049 {
  5050 	if (!lmo) return QString();
  5051 	return getSelectString (lmo->getTreeItem() );
  5052 }
  5053 
  5054 QString VymModel::getSelectString (TreeItem *ti)
  5055 {
  5056 	QString s;
  5057 	if (!ti) return s;
  5058 	if (ti->getType() == TreeItem::Branch ||
  5059 	    ti->getType() == TreeItem::MapCenter)
  5060 	{	
  5061 		TreeItem *par=ti->parent();
  5062 		if (par)
  5063 		{
  5064 			if (ti->depth() ==1)
  5065 				// Mainbranch, return 
  5066 				s= "bo:" + QString("%1").arg(ti->num() );
  5067 			else	
  5068 				// Branch, call myself recursively
  5069 				s= getSelectString(par) + ",bo:" + QString("%1").arg(ti->num());
  5070 		} else
  5071 		{
  5072 			// MapCenter
  5073 			int i=rootItem->num(ti);
  5074 			if (i>=0) s=QString("mc:%1").arg(i);
  5075 		}	
  5076 	}	
  5077 	return s;
  5078 }
  5079