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