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