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