1 #include <QApplication>
6 #include "attributeitem.h"
8 #include "branchitem.h"
9 #include "editxlinkdialog.h"
11 #include "exportxhtmldialog.h"
13 #include "geometry.h" // for addBBox
14 #include "mainwindow.h"
18 #include "warningdialog.h"
19 #include "xlinkitem.h"
20 #include "xml-freemind.h"
26 extern Main *mainWindow;
27 extern QDBusConnection dbusConnection;
29 extern Settings settings;
30 extern QString tmpVymDir;
32 extern TextEditor *textEditor;
33 extern FlagRow *standardFlagsMaster;
35 extern QString clipboardDir;
36 extern QString clipboardFile;
37 extern bool clipboardEmpty;
39 extern ImageIO imageIO;
41 extern QString vymName;
42 extern QString vymVersion;
43 extern QDir vymBaseDir;
45 extern QDir lastImageDir;
46 extern QDir lastFileDir;
48 extern Settings settings;
52 int VymModel::mapNum=0; // make instance
56 //cout << "Const VymModel\n";
58 rootItem->setModel (this);
64 //cout << "Destr VymModel\n";
65 autosaveTimer->stop();
66 fileChangedTimer->stop();
70 void VymModel::clear()
72 while (rootItem->childCount() >0)
73 deleteItem (rootItem->getChildNum(0) );
76 void VymModel::init ()
81 // Also no scene yet (should not be needed anyway) FIXME-3 VM
94 stepsTotal=settings.readNumEntry("/history/stepsTotal",100);
95 undoSet.setEntry ("/history/stepsTotal",QString::number(stepsTotal));
96 mainWindow->updateHistory (undoSet);
104 fileName=tr("unnamed");
106 blockReposition=false;
107 blockSaveState=false;
109 autosaveTimer=new QTimer (this);
110 connect(autosaveTimer, SIGNAL(timeout()), this, SLOT(autosave()));
112 fileChangedTimer=new QTimer (this);
113 fileChangedTimer->start(3000);
114 connect(fileChangedTimer, SIGNAL(timeout()), this, SLOT(fileChanged()));
119 selectionBlocked=false;
124 // animations // FIXME-3 switch to new animation system
125 animationUse=settings.readBoolEntry("/animation/use",false); // FIXME-3 add options to control _what_ is animated
126 animationTicks=settings.readNumEntry("/animation/ticks",10);
127 animationInterval=settings.readNumEntry("/animation/interval",50);
129 animationTimer=new QTimer (this);
130 connect(animationTimer, SIGNAL(timeout()), this, SLOT(animate()));
133 defLinkColor=QColor (0,0,255);
134 defXLinkColor=QColor (180,180,180);
135 linkcolorhint=LinkableMapObj::DefaultColor;
136 linkstyle=LinkableMapObj::PolyParabel;
138 defXLinkColor=QColor (230,230,230);
140 hidemode=TreeItem::HideNone;
146 // addMapCenter(); FIXME-2 VM create this in MapEditor until BO and MCO are independent of scene
148 //Initialize DBUS object
149 adaptorModel=new AdaptorModel(this); // Created and not deleted as documented in Qt
150 if (!dbusConnection.registerObject (QString("/vymmodel_%1").arg(mapNum),this))
151 qWarning ("VymModel: Couldn't register DBUS object!");
154 void VymModel::makeTmpDirectories()
156 // Create unique temporary directories
157 tmpMapDir = tmpVymDir+QString("/model-%1").arg(mapNum);
158 histPath = tmpMapDir+"/history";
164 MapEditor* VymModel::getMapEditor() // FIXME-3 VM better return favourite editor here
169 bool VymModel::isRepositionBlocked()
171 return blockReposition;
174 void VymModel::updateActions() // FIXME-2 maybe don't update if blockReposition is set
176 //cout << "VM::updateActions \n";
177 // Tell mainwindow to update states of actions
178 mainWindow->updateActions();
183 QString VymModel::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, TreeItem *saveSel)
185 // tmpdir temporary directory to which data will be written
186 // prefix mapname, which will be appended to images etc.
187 // writeflags Only write flags for "real" save of map, not undo
188 // offset offset of bbox of whole map in scene.
189 // Needed for XML export
198 case LinkableMapObj::Line:
201 case LinkableMapObj::Parabel:
204 case LinkableMapObj::PolyLine:
208 ls="StylePolyParabel";
212 QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
214 if (linkcolorhint==LinkableMapObj::HeadingColor)
215 colhint=xml.attribut("linkColorHint","HeadingColor");
217 QString mapAttr=xml.attribut("version",vymVersion);
219 mapAttr+= xml.attribut("author",author) +
220 xml.attribut("comment",comment) +
221 xml.attribut("date",getDate()) +
222 xml.attribut("branchCount", QString().number(branchCount())) +
223 xml.attribut("backgroundColor", mapScene->backgroundBrush().color().name() ) +
224 xml.attribut("selectionColor", mapEditor->getSelectionColor().name() ) +
225 xml.attribut("linkStyle", ls ) +
226 xml.attribut("linkColor", defLinkColor.name() ) +
227 xml.attribut("defXLinkColor", defXLinkColor.name() ) +
228 xml.attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
230 s+=xml.beginElement("vymmap",mapAttr);
233 // Find the used flags while traversing the tree // FIXME-3 this can be done local to vymmodel maybe...
234 standardFlagsMaster->resetUsedCounter();
236 // Build xml recursivly
238 // Save all mapcenters as complete map, if saveSel not set
239 s+=saveTreeToDir(tmpdir,prefix,offset);
242 switch (saveSel->getType())
244 case TreeItem::Branch:
246 s+=((BranchItem*)saveSel)->saveToDir(tmpdir,prefix,offset);
248 case TreeItem::MapCenter:
250 s+=((BranchItem*)saveSel)->saveToDir(tmpdir,prefix,offset);
252 case TreeItem::Image:
254 s+=((ImageItem*)saveSel)->saveToDir(tmpdir,prefix);
257 // other types shouldn't be safed directly...
262 // Save local settings
263 s+=settings.getDataXML (destPath);
266 if (getSelectedItem() && !saveSel )
267 s+=xml.valueElement("select",getSelectString());
270 s+=xml.endElement("vymmap");
272 //cout << s.toStdString() << endl;
274 if (writeflags) standardFlagsMaster->saveToDir (tmpdir+"/flags/","",writeflags);
278 QString VymModel::saveTreeToDir (const QString &tmpdir,const QString &prefix, const QPointF &offset)
282 for (int i=0; i<rootItem->branchCount(); i++)
283 s+=rootItem->getBranchNum(i)->saveToDir (tmpdir,prefix,offset);
287 void VymModel::setFilePath(QString fpath, QString destname)
289 if (fpath.isEmpty() || fpath=="")
296 filePath=fpath; // becomes absolute path
297 fileName=fpath; // gets stripped of path
298 destPath=destname; // needed for vymlinks and during load to reset fileChangedTime
300 // If fpath is not an absolute path, complete it
301 filePath=QDir(fpath).absPath();
302 fileDir=filePath.left (1+filePath.findRev ("/"));
304 // Set short name, too. Search from behind:
305 int i=fileName.findRev("/");
306 if (i>=0) fileName=fileName.remove (0,i+1);
308 // Forget the .vym (or .xml) for name of map
309 mapName=fileName.left(fileName.findRev(".",-1,true) );
313 void VymModel::setFilePath(QString fpath)
315 setFilePath (fpath,fpath);
318 QString VymModel::getFilePath()
323 QString VymModel::getFileName()
328 QString VymModel::getMapName()
333 QString VymModel::getDestPath()
338 ErrorCode VymModel::load (QString fname, const LoadMode &lmode, const FileType &ftype)
340 ErrorCode err=success;
342 parseBaseHandler *handler;
346 case VymMap: handler=new parseVYMHandler; break;
347 case FreemindMap : handler=new parseFreemindHandler; break;
349 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
350 "Unknown FileType in VymModel::load()");
354 bool zipped_org=zipped;
358 selModel->clearSelection();
359 // FIXME-2 VM not needed??? model->setMapEditor(this);
360 // (map state is set later at end of load...)
363 BranchItem *bi=getSelectedBranch();
364 if (!bi) return aborted;
365 if (lmode==ImportAdd)
366 saveStateChangingPart(
369 QString("addMapInsert (%1)").arg(fname),
370 QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
372 saveStateChangingPart(
375 QString("addMapReplace(%1)").arg(fname),
376 QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
380 // Create temporary directory for packing
382 QString tmpZipDir=makeTmpDir (ok,"vym-pack");
385 QMessageBox::critical( 0, tr( "Critical Load Error" ),
386 tr("Couldn't create temporary directory before load\n"));
391 err=unzipDir (tmpZipDir,fname);
401 // Look for mapname.xml
402 xmlfile= fname.left(fname.findRev(".",-1,true));
403 xmlfile=xmlfile.section( '/', -1 );
404 QFile mfile( tmpZipDir + "/" + xmlfile + ".xml");
405 if (!mfile.exists() )
407 // mapname.xml does not exist, well,
408 // maybe someone renamed the mapname.vym file...
409 // Try to find any .xml in the toplevel
410 // directory of the .vym file
411 QStringList flist=QDir (tmpZipDir).entryList("*.xml");
412 if (flist.count()==1)
414 // Only one entry, take this one
415 xmlfile=tmpZipDir + "/"+flist.first();
418 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it )
419 *it=tmpZipDir + "/" + *it;
420 // TODO Multiple entries, load all (but only the first one into this ME)
421 //mainWindow->fileLoadFromTmp (flist);
422 //returnCode=1; // Silently forget this attempt to load
423 qWarning ("MainWindow::load (fn) multimap found...");
426 if (flist.isEmpty() )
428 QMessageBox::critical( 0, tr( "Critical Load Error" ),
429 tr("Couldn't find a map (*.xml) in .vym archive.\n"));
432 } //file doesn't exist
434 xmlfile=mfile.name();
437 QFile file( xmlfile);
439 // I am paranoid: file should exist anyway
440 // according to check in mainwindow.
443 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
444 tr(QString("Couldn't open map %1").arg(file.name())));
448 bool blockSaveStateOrg=blockSaveState;
449 blockReposition=true;
451 mapEditor->setViewportUpdateMode (QGraphicsView::NoViewportUpdate);
452 QXmlInputSource source( file);
453 QXmlSimpleReader reader;
454 reader.setContentHandler( handler );
455 reader.setErrorHandler( handler );
456 handler->setModel ( this);
459 // We need to set the tmpDir in order to load files with rel. path
464 tmpdir=fname.left(fname.findRev("/",-1));
465 handler->setTmpDir (tmpdir);
466 handler->setInputFile (file.name());
467 handler->setLoadMode (lmode);
468 bool ok = reader.parse( source );
469 blockReposition=false;
470 blockSaveState=blockSaveStateOrg;
471 mapEditor->setViewportUpdateMode (QGraphicsView::MinimalViewportUpdate);
475 reposition(); // FIXME-2 VM reposition the view instead...
476 emitSelectionChanged();
482 autosaveTimer->stop();
485 // Reset timestamp to check for later updates of file
486 fileChangedTime=QFileInfo (destPath).lastModified();
489 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
490 tr( handler->errorProtocol() ) );
492 // Still return "success": the map maybe at least
493 // partially read by the parser
498 removeDir (QDir(tmpZipDir));
500 // Restore original zip state
507 ErrorCode VymModel::save (const SaveMode &savemode)
511 QString safeFilePath;
513 ErrorCode err=success;
517 mapFileName=mapName+".xml";
519 // use name given by user, even if he chooses .doc
520 mapFileName=fileName;
522 // Look, if we should zip the data:
525 QMessageBox mb( vymName,
526 tr("The map %1\ndid not use the compressed "
527 "vym file format.\nWriting it uncompressed will also write images \n"
528 "and flags and thus may overwrite files in the "
529 "given directory\n\nDo you want to write the map").arg(filePath),
530 QMessageBox::Warning,
531 QMessageBox::Yes | QMessageBox::Default,
533 QMessageBox::Cancel | QMessageBox::Escape);
534 mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
535 mb.setButtonText( QMessageBox::No, tr("uncompressed") );
536 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
539 case QMessageBox::Yes:
540 // save compressed (default file format)
543 case QMessageBox::No:
547 case QMessageBox::Cancel:
554 // First backup existing file, we
555 // don't want to add to old zip archives
559 if ( settings.value ("/mapeditor/writeBackupFile").toBool())
561 QString backupFileName(destPath + "~");
562 QFile backupFile(backupFileName);
563 if (backupFile.exists() && !backupFile.remove())
565 QMessageBox::warning(0, tr("Save Error"),
566 tr("%1\ncould not be removed before saving").arg(backupFileName));
568 else if (!f.rename(backupFileName))
570 QMessageBox::warning(0, tr("Save Error"),
571 tr("%1\ncould not be renamed before saving").arg(destPath));
578 // Create temporary directory for packing
580 tmpZipDir=makeTmpDir (ok,"vym-zip");
583 QMessageBox::critical( 0, tr( "Critical Load Error" ),
584 tr("Couldn't create temporary directory before save\n"));
588 safeFilePath=filePath;
589 setFilePath (tmpZipDir+"/"+ mapName+ ".xml", safeFilePath);
592 // Create mapName and fileDir
593 makeSubDirs (fileDir);
596 if (savemode==CompleteMap || selModel->selection().isEmpty())
599 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),NULL);
602 autosaveTimer->stop();
607 if (selectionType()==TreeItem::Image)
610 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),getSelectedBranch());
611 // TODO take care of multiselections
614 if (!saveStringToDisk(fileDir+mapFileName,saveFile))
617 qWarning ("ME::saveStringToDisk failed!");
623 if (err==success) err=zipDir (tmpZipDir,destPath);
626 removeDir (QDir(tmpZipDir));
628 // Restore original filepath outside of tmp zip dir
629 setFilePath (safeFilePath);
633 fileChangedTime=QFileInfo (destPath).lastModified();
637 void VymModel::addMapReplaceInt(const QString &undoSel, const QString &path)
639 QString pathDir=path.left(path.findRev("/"));
645 // We need to parse saved XML data
646 parseVYMHandler handler;
647 QXmlInputSource source( file);
648 QXmlSimpleReader reader;
649 reader.setContentHandler( &handler );
650 reader.setErrorHandler( &handler );
651 handler.setModel ( this);
652 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
653 if (undoSel.isEmpty())
657 handler.setLoadMode (NewMap);
661 handler.setLoadMode (ImportReplace);
663 blockReposition=true;
664 bool ok = reader.parse( source );
665 blockReposition=false;
668 // This should never ever happen
669 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
670 handler.errorProtocol());
673 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
676 bool VymModel::addMapInsertInt (const QString &path)
678 QString pathDir=path.left(path.findRev("/"));
684 // We need to parse saved XML data
685 parseVYMHandler handler;
686 QXmlInputSource source( file);
687 QXmlSimpleReader reader;
688 reader.setContentHandler( &handler );
689 reader.setErrorHandler( &handler );
690 handler.setModel (this);
691 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
692 handler.setLoadMode (ImportAdd);
693 blockReposition=true;
694 bool ok = reader.parse( source );
695 blockReposition=false;
696 if ( ok ) return true;
698 // This should never ever happen
699 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
700 handler.errorProtocol());
703 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
707 bool VymModel::addMapInsertInt (const QString &path, int pos)
709 BranchItem *selbi=getSelectedBranch();
712 if (addMapInsertInt (path))
714 if (selbi->depth()>0)
715 relinkBranch (selbi->getLastBranch(), selbi,pos);
719 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
723 qWarning ("ME::addMapInsertInt nothing selected");
727 ImageItem* VymModel::loadFloatImageInt (BranchItem *dst,QString fn)
729 ImageItem *ii=createImage(dst);
739 void VymModel::loadFloatImage ()
741 BranchItem *selbi=getSelectedBranch();
745 Q3FileDialog *fd=new Q3FileDialog( NULL); // FIXME-4 get rid of Q3FileDialog
746 fd->setMode (Q3FileDialog::ExistingFiles);
747 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
748 ImagePreview *p =new ImagePreview (fd);
749 fd->setContentsPreviewEnabled( TRUE );
750 fd->setContentsPreview( p, p );
751 fd->setPreviewMode( Q3FileDialog::Contents );
752 fd->setCaption(vymName+" - " +tr("Load image"));
753 fd->setDir (lastImageDir);
756 if ( fd->exec() == QDialog::Accepted )
758 // TODO loadFIO in QT4 use: lastImageDir=fd->directory();
759 lastImageDir=QDir (fd->dirPath());
762 for (int j=0; j<fd->selectedFiles().count(); j++)
764 s=fd->selectedFiles().at(j);
765 ii=loadFloatImageInt (selbi,s);
766 //FIXME-3 check savestate for loadImage
772 QString ("loadImage (%1)").arg(s ),
773 QString("Add image %1 to %2").arg(s).arg(getObjectName(selbi))
776 // TODO loadFIO error handling
777 qWarning ("Failed to load "+s);
785 void VymModel::saveFloatImageInt (ImageItem *ii, const QString &type, const QString &fn)
790 void VymModel::saveFloatImage ()
792 ImageItem *ii=getSelectedImage();
795 QFileDialog *fd=new QFileDialog( NULL);
796 fd->setFilters (imageIO.getFilters());
797 fd->setCaption(vymName+" - " +tr("Save image"));
798 fd->setFileMode( QFileDialog::AnyFile );
799 fd->setDirectory (lastImageDir);
800 // fd->setSelection (fio->getOriginalFilename());
804 if ( fd->exec() == QDialog::Accepted && fd->selectedFiles().count()==1)
806 fn=fd->selectedFiles().at(0);
807 if (QFile (fn).exists() )
809 QMessageBox mb( vymName,
810 tr("The file %1 exists already.\n"
811 "Do you want to overwrite it?").arg(fn),
812 QMessageBox::Warning,
813 QMessageBox::Yes | QMessageBox::Default,
814 QMessageBox::Cancel | QMessageBox::Escape,
815 QMessageBox::NoButton );
817 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
818 mb.setButtonText( QMessageBox::No, tr("Cancel"));
821 case QMessageBox::Yes:
824 case QMessageBox::Cancel:
831 saveFloatImageInt (ii,fd->selectedFilter(),fn );
838 void VymModel::importDirInt(BranchItem *dst, QDir d)
840 BranchItem *selbi=getSelectedBranch();
844 // Traverse directories
845 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
846 QFileInfoList list = d.entryInfoList();
849 for (int i = 0; i < list.size(); ++i)
852 if (fi.fileName() != "." && fi.fileName() != ".." )
854 bi=addNewBranchInt(dst,-2);
855 bi->setHeading (fi.fileName() ); // FIXME-3 check this
856 bi->setHeadingColor (QColor("blue"));
858 if ( !d.cd(fi.fileName()) )
859 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi.fileName()));
862 // Recursively add subdirs
869 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
870 list = d.entryInfoList();
872 for (int i = 0; i < list.size(); ++i)
875 bi=addNewBranchInt (dst,-2);
876 bi->setHeading (fi.fileName() );
877 bi->setHeadingColor (QColor("black"));
878 if (fi.fileName().right(4) == ".vym" )
879 bi->setVymLink (fi.filePath());
884 void VymModel::importDirInt (const QString &s)
886 BranchItem *selbi=getSelectedBranch();
889 saveStateChangingPart (selbi,selbi,QString ("importDir (\"%1\")").arg(s),QString("Import directory structure from %1").arg(s));
892 importDirInt (selbi,d);
896 void VymModel::importDir() //FIXME-3 check me... (not tested yet)
898 BranchItem *selbi=getSelectedBranch();
902 filters <<"VYM map (*.vym)";
903 QFileDialog *fd=new QFileDialog( NULL,vymName+ " - " +tr("Choose directory structure to import"));
904 fd->setMode (QFileDialog::DirectoryOnly);
905 fd->setFilters (filters);
906 fd->setCaption(vymName+" - " +tr("Choose directory structure to import"));
910 if ( fd->exec() == QDialog::Accepted )
912 importDirInt (fd->selectedFile() );
914 //FIXME-3 VM needed? scene()->update();
920 void VymModel::autosave()
925 cout << "VymModel::autosave rejected due to missing filePath\n";
928 QDateTime now=QDateTime().currentDateTime();
930 // Disable autosave, while we have gone back in history
931 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
932 if (redosAvail>0) return;
934 // Also disable autosave for new map without filename
935 if (filePath.isEmpty()) return;
938 if (mapUnsaved &&mapChanged && settings.value ("/mainwindow/autosave/use",true).toBool() )
940 if (QFileInfo(filePath).lastModified()<=fileChangedTime)
941 mainWindow->fileSave (this);
944 cout <<" ME::autosave rejected, file on disk is newer than last save.\n";
949 void VymModel::fileChanged()
951 // Check if file on disk has changed meanwhile
952 if (!filePath.isEmpty())
954 QDateTime tmod=QFileInfo (filePath).lastModified();
955 if (tmod>fileChangedTime)
957 // FIXME-2 VM switch to current mapeditor and finish lineedits...
958 QMessageBox mb( vymName,
959 tr("The file of the map on disk has changed:\n\n"
960 " %1\n\nDo you want to reload that map with the new file?").arg(filePath),
961 QMessageBox::Question,
963 QMessageBox::Cancel | QMessageBox::Default,
964 QMessageBox::NoButton );
966 mb.setButtonText( QMessageBox::Yes, tr("Reload"));
967 mb.setButtonText( QMessageBox::No, tr("Ignore"));
970 case QMessageBox::Yes:
972 load (filePath,NewMap,fileType);
973 case QMessageBox::Cancel:
974 fileChangedTime=tmod; // allow autosave to overwrite newer file!
980 bool VymModel::isDefault()
985 void VymModel::makeDefault()
991 bool VymModel::hasChanged()
996 void VymModel::setChanged()
999 autosaveTimer->start(settings.value("/mainwindow/autosave/ms/",300000).toInt());
1003 latestAddedItem=NULL;
1007 QString VymModel::getObjectName (LinkableMapObj *lmo) // FIXME-3 should be obsolete
1009 if (!lmo || !lmo->getTreeItem() ) return QString();
1010 return getObjectName (lmo->getTreeItem() );
1014 QString VymModel::getObjectName (TreeItem *ti)
1017 if (!ti) return QString("Error: NULL has no name!");
1019 if (s=="") s="unnamed";
1021 return QString ("%1 (%2)").arg(ti->getTypeName()).arg(s);
1024 void VymModel::redo()
1026 // Can we undo at all?
1027 if (redosAvail<1) return;
1029 bool blockSaveStateOrg=blockSaveState;
1030 blockSaveState=true;
1034 if (undosAvail<stepsTotal) undosAvail++;
1036 if (curStep>stepsTotal) curStep=1;
1037 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
1038 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
1039 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
1040 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
1041 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
1042 QString version=undoSet.readEntry ("/history/version");
1044 /* TODO Maybe check for version, if we save the history
1045 if (!checkVersion(version))
1046 QMessageBox::warning(0,tr("Warning"),
1047 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
1050 // Find out current undo directory
1051 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
1055 cout << "VymModel::redo() begin\n";
1056 cout << " undosAvail="<<undosAvail<<endl;
1057 cout << " redosAvail="<<redosAvail<<endl;
1058 cout << " curStep="<<curStep<<endl;
1059 cout << " ---------------------------"<<endl;
1060 cout << " comment="<<comment.toStdString()<<endl;
1061 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1062 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1063 cout << " redoCom="<<redoCommand.toStdString()<<endl;
1064 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1065 cout << " ---------------------------"<<endl<<endl;
1068 // select object before redo
1069 if (!redoSelection.isEmpty())
1070 select (redoSelection);
1075 parseAtom (redoCommand,noErr,errMsg);
1077 blockSaveState=blockSaveStateOrg;
1079 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1080 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1081 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1082 undoSet.writeSettings(histPath);
1084 mainWindow->updateHistory (undoSet);
1087 /* TODO remove testing
1088 cout << "ME::redo() end\n";
1089 cout << " undosAvail="<<undosAvail<<endl;
1090 cout << " redosAvail="<<redosAvail<<endl;
1091 cout << " curStep="<<curStep<<endl;
1092 cout << " ---------------------------"<<endl<<endl;
1098 bool VymModel::isRedoAvailable()
1100 if (undoSet.readNumEntry("/history/redosAvail",0)>0)
1106 void VymModel::undo()
1108 // Can we undo at all?
1109 if (undosAvail<1) return;
1111 mainWindow->statusMessage (tr("Autosave disabled during undo."));
1113 bool blockSaveStateOrg=blockSaveState;
1114 blockSaveState=true;
1116 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
1117 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
1118 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
1119 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
1120 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
1121 QString version=undoSet.readEntry ("/history/version");
1123 /* TODO Maybe check for version, if we save the history
1124 if (!checkVersion(version))
1125 QMessageBox::warning(0,tr("Warning"),
1126 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
1129 // Find out current undo directory
1130 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
1132 // select object before undo
1133 if (!select (undoSelection))
1135 qWarning ("VymModel::undo() Could not select object for undo");
1142 cout << "VymModel::undo() begin\n";
1143 cout << " undosAvail="<<undosAvail<<endl;
1144 cout << " redosAvail="<<redosAvail<<endl;
1145 cout << " curStep="<<curStep<<endl;
1146 cout << " ---------------------------"<<endl;
1147 cout << " comment="<<comment.toStdString()<<endl;
1148 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1149 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1150 cout << " redoCom="<<redoCommand.toStdString()<<endl;
1151 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1152 cout << " ---------------------------"<<endl<<endl;
1157 parseAtom (undoCommand,noErr,errMsg);
1161 if (curStep<1) curStep=stepsTotal;
1165 blockSaveState=blockSaveStateOrg;
1167 cout << "VymModel::undo() end\n";
1168 cout << " undosAvail="<<undosAvail<<endl;
1169 cout << " redosAvail="<<redosAvail<<endl;
1170 cout << " curStep="<<curStep<<endl;
1171 cout << " ---------------------------"<<endl<<endl;
1174 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1175 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1176 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1177 undoSet.writeSettings(histPath);
1179 mainWindow->updateHistory (undoSet);
1181 //emitSelectionChanged();
1184 bool VymModel::isUndoAvailable()
1186 if (undoSet.readNumEntry("/history/undosAvail",0)>0)
1192 void VymModel::gotoHistoryStep (int i)
1194 // Restore variables
1195 int undosAvail=undoSet.readNumEntry (QString("/history/undosAvail"));
1196 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
1198 if (i<0) i=undosAvail+redosAvail;
1200 // Clicking above current step makes us undo things
1203 for (int j=0; j<undosAvail-i; j++) undo();
1206 // Clicking below current step makes us redo things
1208 for (int j=undosAvail; j<i; j++)
1210 if (debug) cout << "VymModel::gotoHistoryStep redo "<<j<<"/"<<undosAvail<<" i="<<i<<endl;
1214 // And ignore clicking the current row ;-)
1218 QString VymModel::getHistoryPath()
1220 QString histName(QString("history-%1").arg(curStep));
1221 return (tmpMapDir+"/"+histName);
1224 void VymModel::saveState(const SaveMode &savemode, const QString &undoSelection, const QString &undoCom, const QString &redoSelection, const QString &redoCom, const QString &comment, TreeItem *saveSel)
1226 sendData(redoCom); //FIXME-3 testing
1231 if (blockSaveState) return;
1233 if (debug) cout << "VM::saveState() for "<<qPrintable (mapName)<<endl;
1235 // Find out current undo directory
1236 if (undosAvail<stepsTotal) undosAvail++;
1238 if (curStep>stepsTotal) curStep=1;
1240 QString backupXML="";
1241 QString histDir=getHistoryPath();
1242 QString bakMapPath=histDir+"/map.xml";
1244 // Create histDir if not available
1247 makeSubDirs (histDir);
1249 // Save depending on how much needs to be saved
1251 backupXML=saveToDir (histDir,mapName+"-",false, QPointF (),saveSel);
1253 QString undoCommand="";
1254 if (savemode==UndoCommand)
1256 undoCommand=undoCom;
1258 else if (savemode==PartOfMap )
1260 undoCommand=undoCom;
1261 undoCommand.replace ("PATH",bakMapPath);
1265 if (!backupXML.isEmpty())
1266 // Write XML Data to disk
1267 saveStringToDisk (bakMapPath,backupXML);
1269 // We would have to save all actions in a tree, to keep track of
1270 // possible redos after a action. Possible, but we are too lazy: forget about redos.
1273 // Write the current state to disk
1274 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1275 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1276 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1277 undoSet.setEntry (QString("/history/step-%1/undoCommand").arg(curStep),undoCommand);
1278 undoSet.setEntry (QString("/history/step-%1/undoSelection").arg(curStep),undoSelection);
1279 undoSet.setEntry (QString("/history/step-%1/redoCommand").arg(curStep),redoCom);
1280 undoSet.setEntry (QString("/history/step-%1/redoSelection").arg(curStep),redoSelection);
1281 undoSet.setEntry (QString("/history/step-%1/comment").arg(curStep),comment);
1282 undoSet.setEntry (QString("/history/version"),vymVersion);
1283 undoSet.writeSettings(histPath);
1287 // TODO remove after testing
1288 //cout << " into="<< histPath.toStdString()<<endl;
1289 cout << " stepsTotal="<<stepsTotal<<
1290 ", undosAvail="<<undosAvail<<
1291 ", redosAvail="<<redosAvail<<
1292 ", curStep="<<curStep<<endl;
1293 cout << " ---------------------------"<<endl;
1294 cout << " comment="<<comment.toStdString()<<endl;
1295 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1296 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1297 cout << " redoCom="<<redoCom.toStdString()<<endl;
1298 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1299 if (saveSel) cout << " saveSel="<<qPrintable (getSelectString(saveSel))<<endl;
1300 cout << " ---------------------------"<<endl;
1303 mainWindow->updateHistory (undoSet);
1309 void VymModel::saveStateChangingPart(TreeItem *undoSel, TreeItem* redoSel, const QString &rc, const QString &comment)
1311 // save the selected part of the map, Undo will replace part of map
1312 QString undoSelection="";
1314 undoSelection=getSelectString(undoSel);
1316 qWarning ("VymModel::saveStateChangingPart no undoSel given!");
1317 QString redoSelection="";
1319 redoSelection=getSelectString(undoSel);
1321 qWarning ("VymModel::saveStateChangingPart no redoSel given!");
1324 saveState (PartOfMap,
1325 undoSelection, "addMapReplace (\"PATH\")",
1331 void VymModel::saveStateRemovingPart(TreeItem* redoSel, const QString &comment)
1335 qWarning ("VymModel::saveStateRemovingPart no redoSel given!");
1338 QString undoSelection;
1339 QString redoSelection=getSelectString(redoSel);
1340 if (redoSel->getType()==TreeItem::Branch)
1342 undoSelection=getSelectString (redoSel->parent());
1343 // save the selected branch of the map, Undo will insert part of map
1344 saveState (PartOfMap,
1345 undoSelection, QString("addMapInsert (\"PATH\",%1)").arg(redoSel->num()),
1346 redoSelection, "delete ()",
1350 if (redoSel->getType()==TreeItem::MapCenter)
1352 // save the selected branch of the map, Undo will insert part of map
1353 saveState (PartOfMap,
1354 undoSelection, QString("addMapInsert (\"PATH\")"),
1355 redoSelection, "delete ()",
1362 void VymModel::saveState(TreeItem *undoSel, const QString &uc, TreeItem *redoSel, const QString &rc, const QString &comment)
1364 // "Normal" savestate: save commands, selections and comment
1365 // so just save commands for undo and redo
1366 // and use current selection
1368 QString redoSelection="";
1369 if (redoSel) redoSelection=getSelectString(redoSel);
1370 QString undoSelection="";
1371 if (undoSel) undoSelection=getSelectString(undoSel);
1373 saveState (UndoCommand,
1380 void VymModel::saveState(const QString &undoSel, const QString &uc, const QString &redoSel, const QString &rc, const QString &comment)
1382 // "Normal" savestate: save commands, selections and comment
1383 // so just save commands for undo and redo
1384 // and use current selection
1385 saveState (UndoCommand,
1392 void VymModel::saveState(const QString &uc, const QString &rc, const QString &comment)
1394 // "Normal" savestate applied to model (no selection needed):
1395 // save commands and comment
1396 saveState (UndoCommand,
1404 QGraphicsScene* VymModel::getScene ()
1409 TreeItem* VymModel::findBySelectString(QString s)
1411 if (s.isEmpty() ) return NULL;
1413 // Old maps don't have multiple mapcenters and don't save full path
1414 if (s.left(2) !="mc")
1417 QStringList parts=s.split (",");
1420 TreeItem *ti=rootItem;
1422 while (!parts.isEmpty() )
1424 typ=parts.first().left(2);
1425 n=parts.first().right(parts.first().length() - 3).toInt();
1426 parts.removeFirst();
1427 if (typ=="mc" || typ=="bo")
1428 ti=ti->getBranchNum (n);
1430 ti=ti->getImageNum (n);
1432 ti=ti->getAttributeNum (n);
1434 ti=ti->getXLinkNum (n);
1435 if(!ti) return NULL;
1440 TreeItem* VymModel::findID (const QString &s) //FIXME-4 Search also other types...
1442 BranchItem *cur=NULL;
1443 BranchItem *prev=NULL;
1444 nextBranch(cur,prev);
1447 if (s==cur->getID() ) return cur;
1448 nextBranch(cur,prev);
1453 //////////////////////////////////////////////
1455 //////////////////////////////////////////////
1456 void VymModel::setVersion (const QString &s)
1461 void VymModel::setAuthor (const QString &s)
1464 QString ("setMapAuthor (\"%1\")").arg(author),
1465 QString ("setMapAuthor (\"%1\")").arg(s),
1466 QString ("Set author of map to \"%1\"").arg(s)
1471 QString VymModel::getAuthor()
1476 void VymModel::setComment (const QString &s)
1479 QString ("setMapComment (\"%1\")").arg(comment),
1480 QString ("setMapComment (\"%1\")").arg(s),
1481 QString ("Set comment of map")
1486 QString VymModel::getComment ()
1491 QString VymModel::getDate ()
1493 return QDate::currentDate().toString ("yyyy-MM-dd");
1496 int VymModel::branchCount() // FIXME-4 Optimize this: use internal counter instead of going through whole map each time...
1499 BranchItem *cur=NULL;
1500 BranchItem *prev=NULL;
1501 nextBranch(cur,prev);
1505 nextBranch(cur,prev);
1510 void VymModel::setSortFilter (const QString &s)
1513 emit (sortFilterChanged (sortFilter));
1516 QString VymModel::getSortFilter ()
1521 void VymModel::setHeading(const QString &s)
1523 BranchItem *selbi=getSelectedBranch();
1528 "setHeading (\""+selbi->getHeading()+"\")",
1530 "setHeading (\""+s+"\")",
1531 QString("Set heading of %1 to \"%2\"").arg(getObjectName(selbi)).arg(s) );
1532 selbi->setHeading(s );
1533 emitDataHasChanged ( selbi); //FIXME-3 maybe emit signal from TreeItem?
1535 emitSelectionChanged();
1539 QString VymModel::getHeading()
1541 TreeItem *selti=getSelectedItem();
1543 return selti->getHeading();
1548 void VymModel::setNote(const QString &s) //FIXME-2 savestate missing // FIXME-2 call to VM::updateNoteFlag missing (fix signal handling here)
1550 TreeItem *selti=getSelectedItem();
1554 emitNoteHasChanged(selti);
1558 QString VymModel::getNote()
1560 TreeItem *selti=getSelectedItem();
1562 return selti->getNote();
1567 BranchItem* VymModel::findText (QString s, bool cs)
1569 if (!s.isEmpty() && s!=findString)
1575 QTextDocument::FindFlags flags=0;
1576 if (cs) flags=QTextDocument::FindCaseSensitively;
1579 { // Nothing found or new find process
1581 // nothing found, start again
1585 nextBranch (findCurrent,findPrevious);
1587 bool searching=true;
1588 bool foundNote=false;
1589 while (searching && !EOFind)
1593 // Searching in Note
1594 if (findCurrent->getNote().contains(findString,cs))
1596 select (findCurrent);
1598 if (getSelectedBranch()!=itFind)
1601 emitShowSelection();
1604 if (textEditor->findText(findString,flags))
1610 // Searching in Heading
1611 if (searching && findCurrent->getHeading().contains (findString,cs) )
1613 select(findCurrent);
1619 if (!nextBranch(findCurrent,findPrevious) )
1622 //cout <<"still searching... "<<qPrintable( itFind->getHeading())<<endl;
1625 return getSelectedBranch();
1630 void VymModel::findReset()
1631 { // Necessary if text to find changes during a find process
1638 void VymModel::emitShowFindWidget()
1640 emit (showFindWidget());
1643 void VymModel::setScene (QGraphicsScene *s)
1648 void VymModel::setURL(const QString &url)
1650 TreeItem *selti=getSelectedItem();
1653 QString oldurl=selti->getURL();
1654 selti->setURL (url);
1657 QString ("setURL (\"%1\")").arg(oldurl),
1659 QString ("setURL (\"%1\")").arg(url),
1660 QString ("set URL of %1 to %2").arg(getObjectName(selti)).arg(url)
1663 emitDataHasChanged (selti);
1664 emitShowSelection();
1668 QString VymModel::getURL()
1670 TreeItem *selti=getSelectedItem();
1672 return selti->getURL();
1677 QStringList VymModel::getURLs()
1680 BranchItem *selbi=getSelectedBranch();
1681 BranchItem *cur=selbi;
1682 BranchItem *prev=NULL;
1685 if (!cur->getURL().isEmpty()) urls.append( cur->getURL());
1686 cur=nextBranch (cur,prev,true,selbi);
1692 void VymModel::setFrameType(const FrameObj::FrameType &t) //FIXME-4 not saved if there is no LMO
1694 BranchItem *bi=getSelectedBranch();
1697 BranchObj *bo=(BranchObj*)(bi->getLMO());
1700 QString s=bo->getFrameTypeName();
1701 bo->setFrameType (t);
1702 saveState (bi, QString("setFrameType (\"%1\")").arg(s),
1703 bi, QString ("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),QString ("set type of frame to %1").arg(s));
1705 bo->updateLinkGeometry();
1710 void VymModel::setFrameType(const QString &s) //FIXME-4 not saved if there is no LMO
1712 BranchItem *bi=getSelectedBranch();
1715 BranchObj *bo=(BranchObj*)(bi->getLMO());
1718 saveState (bi, QString("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),
1719 bi, QString ("setFrameType (\"%1\")").arg(s),QString ("set type of frame to %1").arg(s));
1720 bo->setFrameType (s);
1722 bo->updateLinkGeometry();
1727 void VymModel::setFramePenColor(const QColor &c) //FIXME-4 not saved if there is no LMO
1730 BranchItem *bi=getSelectedBranch();
1733 BranchObj *bo=(BranchObj*)(bi->getLMO());
1736 saveState (bi, QString("setFramePenColor (\"%1\")").arg(bo->getFramePenColor().name() ),
1737 bi, QString ("setFramePenColor (\"%1\")").arg(c.name() ),QString ("set pen color of frame to %1").arg(c.name() ));
1738 bo->setFramePenColor (c);
1743 void VymModel::setFrameBrushColor(const QColor &c) //FIXME-4 not saved if there is no LMO
1745 BranchItem *bi=getSelectedBranch();
1748 BranchObj *bo=(BranchObj*)(bi->getLMO());
1751 saveState (bi, QString("setFrameBrushColor (\"%1\")").arg(bo->getFrameBrushColor().name() ),
1752 bi, QString ("setFrameBrushColor (\"%1\")").arg(c.name() ),QString ("set brush color of frame to %1").arg(c.name() ));
1753 bo->setFrameBrushColor (c);
1758 void VymModel::setFramePadding (const int &i) //FIXME-4 not saved if there is no LMO
1760 BranchItem *bi=getSelectedBranch();
1763 BranchObj *bo=(BranchObj*)(bi->getLMO());
1766 saveState (bi, QString("setFramePadding (\"%1\")").arg(bo->getFramePadding() ),
1767 bi, QString ("setFramePadding (\"%1\")").arg(i),QString ("set brush color of frame to %1").arg(i));
1768 bo->setFramePadding (i);
1770 bo->updateLinkGeometry();
1775 void VymModel::setFrameBorderWidth(const int &i) //FIXME-4 not saved if there is no LMO
1777 BranchItem *bi=getSelectedBranch();
1780 BranchObj *bo=(BranchObj*)(bi->getLMO());
1783 saveState (bi, QString("setFrameBorderWidth (\"%1\")").arg(bo->getFrameBorderWidth() ),
1784 bi, QString ("setFrameBorderWidth (\"%1\")").arg(i),QString ("set border width of frame to %1").arg(i));
1785 bo->setFrameBorderWidth (i);
1787 bo->updateLinkGeometry();
1792 void VymModel::setIncludeImagesVer(bool b)
1794 BranchItem *bi=getSelectedBranch();
1797 QString u= b ? "false" : "true";
1798 QString r=!b ? "false" : "true";
1802 QString("setIncludeImagesVertically (%1)").arg(u),
1804 QString("setIncludeImagesVertically (%1)").arg(r),
1805 QString("Include images vertically in %1").arg(getObjectName(bi))
1807 bi->setIncludeImagesVer(b);
1808 emitDataHasChanged ( bi);
1813 void VymModel::setIncludeImagesHor(bool b)
1815 BranchItem *bi=getSelectedBranch();
1818 QString u= b ? "false" : "true";
1819 QString r=!b ? "false" : "true";
1823 QString("setIncludeImagesHorizontally (%1)").arg(u),
1825 QString("setIncludeImagesHorizontally (%1)").arg(r),
1826 QString("Include images horizontally in %1").arg(getObjectName(bi))
1828 bi->setIncludeImagesHor(b);
1829 emitDataHasChanged ( bi);
1834 void VymModel::setHideLinkUnselected (bool b)//FIXME-2
1836 TreeItem *ti=getSelectedItem();
1837 if (ti && (ti->getType()==TreeItem::Image ||ti->isBranchLikeType()))
1839 QString u= b ? "false" : "true";
1840 QString r=!b ? "false" : "true";
1844 QString("setHideLinkUnselected (%1)").arg(u),
1846 QString("setHideLinkUnselected (%1)").arg(r),
1847 QString("Hide link of %1 if unselected").arg(getObjectName(ti))
1849 ((MapItem*)ti)->setHideLinkUnselected(b);
1853 void VymModel::setHideExport(bool b)
1855 TreeItem *ti=getSelectedItem();
1857 (ti->getType()==TreeItem::Image ||ti->isBranchLikeType()))
1859 ti->setHideInExport (b);
1860 QString u= b ? "false" : "true";
1861 QString r=!b ? "false" : "true";
1865 QString ("setHideExport (%1)").arg(u),
1867 QString ("setHideExport (%1)").arg(r),
1868 QString ("Set HideExport flag of %1 to %2").arg(getObjectName(ti)).arg (r)
1870 emitDataHasChanged(ti);
1871 emitSelectionChanged();
1874 // emitSelectionChanged();
1875 // FIXME-3 VM needed? scene()->update();
1879 void VymModel::toggleHideExport()
1881 TreeItem *selti=getSelectedItem();
1883 setHideExport ( !selti->hideInExport() );
1886 void VymModel::addTimestamp() //FIXME-3 new function, localize
1888 BranchItem *selbi=addNewBranch();
1891 QDate today=QDate::currentDate();
1893 selbi->setHeading (QString ("%1-%2-%3")
1894 .arg(today.year(),4,10,c)
1895 .arg(today.month(),2,10,c)
1896 .arg(today.day(),2,10,c));
1897 emitDataHasChanged ( selbi); //FIXME-3 maybe emit signal from TreeItem?
1904 void VymModel::copy()
1906 TreeItem *selti=getSelectedItem();
1908 (selti->getType() == TreeItem::Branch ||
1909 selti->getType() == TreeItem::MapCenter ||
1910 selti->getType() == TreeItem::Image ))
1912 if (redosAvail == 0)
1915 QString s=getSelectString(selti);
1916 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy selection to clipboard",selti );
1917 curClipboard=curStep;
1920 // Copy also to global clipboard, because we are at last step in history
1921 QString bakMapName(QString("history-%1").arg(curStep));
1922 QString bakMapDir(tmpMapDir +"/"+bakMapName);
1923 copyDir (bakMapDir,clipboardDir );
1925 clipboardEmpty=false;
1931 void VymModel::pasteNoSave(const int &n)
1933 bool old=blockSaveState;
1934 blockSaveState=true;
1935 bool zippedOrg=zipped;
1936 if (redosAvail > 0 || n!=0)
1938 // Use the "historical" buffer
1939 QString bakMapName(QString("history-%1").arg(n));
1940 QString bakMapDir(tmpMapDir +"/"+bakMapName);
1941 load (bakMapDir+"/"+clipboardFile,ImportAdd, VymMap);
1943 // Use the global buffer
1944 load (clipboardDir+"/"+clipboardFile,ImportAdd, VymMap);
1949 void VymModel::paste()
1951 BranchItem *selbi=getSelectedBranch();
1954 saveStateChangingPart(
1957 QString ("paste (%1)").arg(curClipboard),
1958 QString("Paste to %1").arg( getObjectName(selbi))
1965 void VymModel::cut()
1967 TreeItem *selti=getSelectedItem();
1968 if ( selti && (selti->isBranchLikeType() ||selti->getType()==TreeItem::Image))
1976 bool VymModel::moveUp(BranchItem *bi) //FIXME-2 crashes if trying to move MCO
1978 if (bi && bi->canMoveUp())
1979 return relinkBranch (bi,(BranchItem*)bi->parent(),bi->num()-1);
1984 void VymModel::moveUp()
1986 BranchItem *selbi=getSelectedBranch();
1989 QString oldsel=getSelectString();
1992 getSelectString(),"moveDown ()",
1994 QString("Move up %1").arg(getObjectName(selbi)));
1998 bool VymModel::moveDown(BranchItem *bi)
2000 if (bi && bi->canMoveDown())
2001 return relinkBranch (bi,(BranchItem*)bi->parent(),bi->num()+1);
2006 void VymModel::moveDown()
2008 BranchItem *selbi=getSelectedBranch();
2011 QString oldsel=getSelectString();
2012 if ( moveDown(selbi))
2014 getSelectString(),"moveUp ()",
2015 oldsel,"moveDown ()",
2016 QString("Move down %1").arg(getObjectName(selbi)));
2020 void VymModel::detach()
2022 BranchItem *selbi=getSelectedBranch();
2023 if (selbi && selbi->depth()>0)
2025 // if no relPos have been set before, try to use current rel positions
2026 if (selbi->getLMO())
2027 for (int i=0; i<selbi->branchCount();++i)
2028 selbi->getBranchNum(i)->getBranchObj()->setRelPos();
2030 QString oldsel=getSelectString();
2033 BranchObj *bo=selbi->getBranchObj();
2034 if (bo) p=bo->getAbsPos();
2035 QString parsel=getSelectString(selbi->parent());
2036 if ( relinkBranch (selbi,rootItem,-1) )
2038 getSelectString (selbi),
2039 QString("relinkTo (\"%1\",%2,%3,%4)").arg(parsel).arg(n).arg(p.x()).arg(p.y()),
2042 QString("Detach %1").arg(getObjectName(selbi))
2047 void VymModel::sortChildren()
2049 BranchItem* selbi=getSelectedBranch();
2052 if(selbi->branchCount()>1)
2054 saveStateChangingPart(
2055 selbi,selbi, "sortChildren ()",
2056 QString("Sort children of %1").arg(getObjectName(selbi)));
2057 selbi->sortChildren();
2059 emitShowSelection();
2064 BranchItem* VymModel::createMapCenter()
2066 BranchItem *newbi=addMapCenter (QPointF (0,0) );
2070 BranchItem* VymModel::createBranch(BranchItem *dst)
2073 return addNewBranchInt (dst,-2);
2078 ImageItem* VymModel::createImage(BranchItem *dst)
2085 QList<QVariant> cData;
2086 cData << "new" << "undef";
2088 ImageItem *newii=new ImageItem(cData) ;
2089 //newii->setHeading (QApplication::translate("Heading of new image in map", "new image"));
2091 emit (layoutAboutToBeChanged() );
2094 if (!parix.isValid()) cout << "VM::createII invalid index\n";
2095 n=dst->getRowNumAppend(newii);
2096 beginInsertRows (parix,n,n);
2097 dst->appendChild (newii);
2100 emit (layoutChanged() );
2102 // save scroll state. If scrolled, automatically select
2103 // new branch in order to tmp unscroll parent...
2104 newii->createMapObj(mapScene);
2111 XLinkItem* VymModel::createXLink(BranchItem *bi,bool createMO)
2118 QList<QVariant> cData;
2119 cData << "new xLink"<<"undef";
2121 XLinkItem *newxli=new XLinkItem(cData) ;
2122 newxli->setBegin (bi);
2124 emit (layoutAboutToBeChanged() );
2127 n=bi->getRowNumAppend(newxli);
2128 beginInsertRows (parix,n,n);
2129 bi->appendChild (newxli);
2132 emit (layoutChanged() );
2134 // save scroll state. If scrolled, automatically select
2135 // new branch in order to tmp unscroll parent...
2138 newxli->createMapObj(mapScene);
2146 AttributeItem* VymModel::addAttribute() // FIXME-2 savestate missing
2148 BranchItem *selbi=getSelectedBranch();
2151 QList<QVariant> cData;
2152 cData << "new attribute" << "undef";
2153 AttributeItem *a=new AttributeItem (cData);
2155 emit (layoutAboutToBeChanged() );
2157 QModelIndex parix=index(selbi);
2158 int n=selbi->getRowNumAppend (a);
2159 beginInsertRows (parix,n,n);
2160 selbi->appendChild (a);
2163 emit (layoutChanged() );
2171 BranchItem* VymModel::addMapCenter ()
2173 BranchItem *bi=addMapCenter (contextPos);
2175 emitShowSelection();
2180 QString ("addMapCenter (%1,%2)").arg (contextPos.x()).arg(contextPos.y()),
2181 QString ("Adding MapCenter to (%1,%2)").arg (contextPos.x()).arg(contextPos.y())
2186 BranchItem* VymModel::addMapCenter(QPointF absPos)
2187 // createMapCenter could then probably be merged with createBranch
2191 QModelIndex parix=index(rootItem);
2193 QList<QVariant> cData;
2194 cData << "VM:addMapCenter" << "undef";
2195 BranchItem *newbi=new BranchItem (cData,rootItem);
2196 newbi->setHeading (QApplication::translate("Heading of mapcenter in new map", "New map"));
2197 int n=rootItem->getRowNumAppend (newbi);
2199 emit (layoutAboutToBeChanged() );
2200 beginInsertRows (parix,n,n);
2202 rootItem->appendChild (newbi);
2205 emit (layoutChanged() );
2208 newbi->setPositionMode (MapItem::Absolute);
2209 BranchObj *bo=newbi->createMapObj(mapScene);
2210 if (bo) bo->move (absPos);
2215 BranchItem* VymModel::addNewBranchInt(BranchItem *dst,int num)
2217 // Depending on pos:
2218 // -3 insert in children of parent above selection
2219 // -2 add branch to selection
2220 // -1 insert in children of parent below selection
2221 // 0..n insert in children of parent at pos
2224 QList<QVariant> cData;
2225 cData << "" << "undef";
2230 BranchItem *newbi=new BranchItem (cData);
2231 //newbi->setHeading (QApplication::translate("Heading of new branch in map", "new"));
2233 emit (layoutAboutToBeChanged() );
2239 n=parbi->getRowNumAppend (newbi);
2240 beginInsertRows (parix,n,n);
2241 parbi->appendChild (newbi);
2243 }else if (num==-1 || num==-3)
2245 // insert below selection
2246 parbi=(BranchItem*)dst->parent();
2249 n=dst->childNumber() + (3+num)/2; //-1 |-> 1;-3 |-> 0
2250 beginInsertRows (parix,n,n);
2251 parbi->insertBranch(n,newbi);
2254 emit (layoutChanged() );
2256 // Set color of heading to that of parent
2257 newbi->setHeadingColor (parbi->getHeadingColor());
2259 // save scroll state. If scrolled, automatically select
2260 // new branch in order to tmp unscroll parent...
2261 newbi->createMapObj(mapScene);
2266 BranchItem* VymModel::addNewBranch(int pos)
2268 // Different meaning than num in addNewBranchInt!
2272 BranchItem *newbi=NULL;
2273 BranchItem *selbi=getSelectedBranch();
2277 // FIXME-3 setCursor (Qt::ArrowCursor); //Still needed?
2279 newbi=addNewBranchInt (selbi,pos-2);
2287 QString ("addBranch (%1)").arg(pos),
2288 QString ("Add new branch to %1").arg(getObjectName(selbi)));
2291 // emitSelectionChanged(); FIXME-3
2292 latestAddedItem=newbi;
2293 // In Network mode, the client needs to know where the new branch is,
2294 // so we have to pass on this information via saveState.
2295 // TODO: Get rid of this positioning workaround
2296 /* FIXME-4 network problem: QString ps=qpointfToString (newbo->getAbsPos());
2297 sendData ("selectLatestAdded ()");
2298 sendData (QString("move %1").arg(ps));
2307 BranchItem* VymModel::addNewBranchBefore()
2309 BranchItem *newbi=NULL;
2310 BranchItem *selbi=getSelectedBranch();
2311 if (selbi && selbi->getType()==TreeItem::Branch)
2312 // We accept no MapCenter here, so we _have_ a parent
2314 //QPointF p=bo->getRelPos();
2317 // add below selection
2318 newbi=addNewBranchInt (selbi,-1);
2322 //newbi->move2RelPos (p);
2324 // Move selection to new branch
2325 relinkBranch (selbi,newbi,0);
2327 saveState (newbi, "deleteKeepChildren ()", newbi, "addBranchBefore ()",
2328 QString ("Add branch before %1").arg(getObjectName(selbi)));
2330 // FIXME-3 needed? reposition();
2331 // emitSelectionChanged(); FIXME-3
2337 bool VymModel::relinkBranch (BranchItem *branch, BranchItem *dst, int pos)
2343 emit (layoutAboutToBeChanged() );
2344 BranchItem *branchpi=(BranchItem*)branch->parent();
2345 // Remove at current position
2346 int n=branch->childNum();
2348 /* FIXME-4 seg since 20091207, if ModelTest active. strange.
2349 // error occured if relinking branch to empty mainbranch
2350 cout<<"VM::relinkBranch:\n";
2351 cout<<" b="<<branch->getHeadingStd()<<endl;
2352 cout<<" dst="<<dst->getHeadingStd()<<endl;
2353 cout<<" pos="<<pos<<endl;
2354 cout<<" n1="<<n<<endl;
2356 beginRemoveRows (index(branchpi),n,n);
2357 branchpi->removeChild (n);
2360 if (pos<0 ||pos>dst->branchCount() ) pos=dst->branchCount();
2362 // Append as last branch to dst
2363 if (dst->branchCount()==0)
2366 n=dst->getFirstBranch()->childNumber();
2367 beginInsertRows (index(dst),n+pos,n+pos);
2368 dst->insertBranch (pos,branch);
2371 // Correct type if necessesary
2372 if (branch->getType()==TreeItem::MapCenter)
2373 branch->setType(TreeItem::Branch);
2375 // reset parObj, fonts, frame, etc in related LMO or other view-objects
2376 branch->updateStyles();
2378 emit (layoutChanged() );
2379 reposition(); // both for moveUp/Down and relinking
2380 if (dst->isScrolled() )
2383 branch->updateVisibility();
2392 bool VymModel::relinkImage (ImageItem *image, BranchItem *dst)
2396 emit (layoutAboutToBeChanged() );
2398 BranchItem *pi=(BranchItem*)(image->parent());
2399 QString oldParString=getSelectString (pi);
2400 // Remove at current position
2401 int n=image->childNum();
2402 beginRemoveRows (index(pi),n,n);
2403 pi->removeChild (n);
2407 QModelIndex dstix=index(dst);
2408 n=dst->getRowNumAppend (image);
2409 beginInsertRows (dstix,n,n+1);
2410 dst->appendChild (image);
2413 // Set new parent also for lmo
2414 if (image->getLMO() && dst->getLMO() )
2415 image->getLMO()->setParObj (dst->getLMO() );
2417 emit (layoutChanged() );
2420 QString("relinkTo (\"%1\")").arg(oldParString),
2422 QString ("relinkTo (\"%1\")").arg(getSelectString (dst)),
2423 QString ("Relink floatimage to %1").arg(getObjectName(dst)));
2429 void VymModel::deleteSelection()
2431 BranchItem *selbi=getSelectedBranch();
2436 saveStateRemovingPart (selbi, QString ("Delete %1").arg(getObjectName(selbi)));
2438 TreeItem *pi=deleteItem (selbi);
2442 emitShowSelection();
2446 TreeItem *ti=getSelectedItem();
2448 { // Delete other item
2449 TreeItem *pi=ti->parent();
2451 if (ti->getType()==TreeItem::Image || ti->getType()==TreeItem::Attribute)
2453 saveStateChangingPart(
2457 QString("Delete %1").arg(getObjectName(ti))
2461 emitDataHasChanged (pi);
2464 emitShowSelection();
2465 } else if (ti->getType()==TreeItem::XLink)
2467 //FIXME-2 savestate missing
2470 qWarning ("VymmModel::deleteSelection() unknown type?!");
2474 void VymModel::deleteKeepChildren() //FIXME-3 does not work yet for mapcenters
2477 BranchItem *selbi=getSelectedBranch();
2481 // Don't use this on mapcenter
2482 if (selbi->depth()<2) return;
2484 pi=(BranchItem*)(selbi->parent());
2485 // Check if we have childs at all to keep
2486 if (selbi->branchCount()==0)
2493 if (selbi->getLMO()) p=selbi->getLMO()->getRelPos();
2494 saveStateChangingPart(
2497 "deleteKeepChildren ()",
2498 QString("Remove %1 and keep its children").arg(getObjectName(selbi))
2501 QString sel=getSelectString(selbi);
2503 int pos=selbi->num();
2504 BranchItem *bi=selbi->getFirstBranch();
2507 relinkBranch (bi,pi,pos);
2508 bi=selbi->getFirstBranch();
2514 BranchObj *bo=getSelectedBranchObj();
2517 bo->move2RelPos (p);
2523 void VymModel::deleteChildren()
2526 BranchItem *selbi=getSelectedBranch();
2529 saveStateChangingPart(
2532 "deleteChildren ()",
2533 QString( "Remove children of branch %1").arg(getObjectName(selbi))
2535 emit (layoutAboutToBeChanged() );
2537 QModelIndex ix=index (selbi);
2538 int n=selbi->branchCount()-1;
2539 beginRemoveRows (ix,0,n);
2540 removeRows (0,n+1,ix);
2542 if (selbi->isScrolled()) selbi->unScroll();
2543 emit (layoutChanged() );
2548 TreeItem* VymModel::deleteItem (TreeItem *ti)
2552 TreeItem *pi=ti->parent();
2553 QModelIndex parentIndex=index(pi);
2555 emit (layoutAboutToBeChanged() );
2557 int n=ti->childNum();
2558 beginRemoveRows (parentIndex,n,n);
2559 removeRows (n,1,parentIndex);
2563 emit (layoutChanged() );
2564 if (pi->depth()>=0) return pi;
2569 void VymModel::clearItem (TreeItem *ti)
2573 QModelIndex parentIndex=index(ti);
2574 if (!parentIndex.isValid()) return;
2576 int n=ti->childCount();
2579 emit (layoutAboutToBeChanged() );
2581 beginRemoveRows (parentIndex,0,n-1);
2582 removeRows (0,n,parentIndex);
2586 emit (layoutChanged() );
2592 bool VymModel::scrollBranch(BranchItem *bi)
2596 if (bi->isScrolled()) return false;
2597 if (bi->branchCount()==0) return false;
2598 if (bi->depth()==0) return false;
2599 if (bi->toggleScroll())
2607 QString ("%1 ()").arg(u),
2609 QString ("%1 ()").arg(r),
2610 QString ("%1 %2").arg(r).arg(getObjectName(bi))
2612 emitDataHasChanged(bi);
2613 emitSelectionChanged();
2614 mapScene->update(); //Needed for _quick_ update, even in 1.13.x
2621 bool VymModel::unscrollBranch(BranchItem *bi)
2625 if (!bi->isScrolled()) return false;
2626 if (bi->branchCount()==0) return false;
2627 if (bi->depth()==0) return false;
2628 if (bi->toggleScroll())
2636 QString ("%1 ()").arg(u),
2638 QString ("%1 ()").arg(r),
2639 QString ("%1 %2").arg(r).arg(getObjectName(bi))
2641 emitDataHasChanged(bi);
2642 emitSelectionChanged();
2643 mapScene->update(); //Needed for _quick_ update, even in 1.13.x
2650 void VymModel::toggleScroll()
2652 BranchItem *bi=(BranchItem*)getSelectedBranch();
2653 if (bi && bi->isBranchLikeType() )
2655 if (bi->isScrolled())
2656 unscrollBranch (bi);
2660 // saveState & reposition are called in above functions
2663 void VymModel::unscrollChildren() //FIXME-2 does not update flag yet, possible segfault
2665 BranchItem *selbi=getSelectedBranch();
2666 BranchItem *prev=NULL;
2667 BranchItem *cur=selbi;
2670 saveStateChangingPart(
2673 QString ("unscrollChildren ()"),
2674 QString ("unscroll all children of %1").arg(getObjectName(selbi))
2678 if (cur->isScrolled())
2680 cur->toggleScroll();
2681 emitDataHasChanged (cur);
2683 cur=nextBranch (cur,prev,true,selbi);
2690 void VymModel::emitExpandAll()
2692 emit (expandAll() );
2695 void VymModel::emitExpandOneLevel()
2697 emit (expandOneLevel () );
2700 void VymModel::emitCollapseOneLevel()
2702 emit (collapseOneLevel () );
2705 void VymModel::toggleStandardFlag (const QString &name, FlagRow *master)
2707 BranchItem *bi=getSelectedBranch();
2711 if (bi->isActiveStandardFlag(name))
2723 QString("%1 (\"%2\")").arg(u).arg(name),
2725 QString("%1 (\"%2\")").arg(r).arg(name),
2726 QString("Toggling standard flag \"%1\" of %2").arg(name).arg(getObjectName(bi)));
2727 bi->toggleStandardFlag (name, master);
2729 emitSelectionChanged();
2733 void VymModel::addFloatImage (const QPixmap &img)
2735 BranchItem *selbi=getSelectedBranch();
2738 ImageItem *ii=createImage (selbi);
2740 ii->setOriginalFilename("No original filename (image added by dropevent)");
2741 QString s=getSelectString(selbi);
2742 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy dropped image to clipboard",ii );
2743 saveState (ii,"delete ()", selbi,QString("paste(%1)").arg(curStep),"Pasting dropped image");
2745 // FIXME-3 VM needed? scene()->update();
2750 void VymModel::colorBranch (QColor c)
2752 BranchItem *selbi=getSelectedBranch();
2757 QString ("colorBranch (\"%1\")").arg(selbi->getHeadingColor().name()),
2759 QString ("colorBranch (\"%1\")").arg(c.name()),
2760 QString("Set color of %1 to %2").arg(getObjectName(selbi)).arg(c.name())
2762 selbi->setHeadingColor(c); // color branch
2767 void VymModel::colorSubtree (QColor c)
2769 BranchItem *selbi=getSelectedBranch();
2772 saveStateChangingPart(
2775 QString ("colorSubtree (\"%1\")").arg(c.name()),
2776 QString ("Set color of %1 and children to %2").arg(getObjectName(selbi)).arg(c.name())
2778 BranchItem *prev=NULL;
2779 BranchItem *cur=selbi;
2782 cur->setHeadingColor(c); // color links, color children
2783 cur=nextBranch (cur,prev,true,selbi);
2789 QColor VymModel::getCurrentHeadingColor()
2791 BranchItem *selbi=getSelectedBranch();
2792 if (selbi) return selbi->getHeadingColor();
2794 QMessageBox::warning(0,"Warning","Can't get color of heading,\nthere's no branch selected");
2800 void VymModel::editURL()
2802 TreeItem *selti=getSelectedItem();
2806 QString text = QInputDialog::getText(
2807 "VYM", tr("Enter URL:"), QLineEdit::Normal,
2808 selti->getURL(), &ok, NULL);
2810 // user entered something and pressed OK
2815 void VymModel::editLocalURL()
2817 TreeItem *selti=getSelectedItem();
2820 QStringList filters;
2821 filters <<"All files (*)";
2822 filters << tr("Text","Filedialog") + " (*.txt)";
2823 filters << tr("Spreadsheet","Filedialog") + " (*.odp,*.sxc)";
2824 filters << tr("Textdocument","Filedialog") +" (*.odw,*.sxw)";
2825 filters << tr("Images","Filedialog") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)";
2826 QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Set URL to a local file"));
2827 fd->setFilters (filters);
2828 fd->setCaption(vymName+" - " +tr("Set URL to a local file"));
2829 fd->setDirectory (lastFileDir);
2830 if (! selti->getVymLink().isEmpty() )
2831 fd->selectFile( selti->getURL() );
2834 if ( fd->exec() == QDialog::Accepted )
2836 lastFileDir=QDir (fd->directory().path());
2837 setURL (fd->selectedFile() );
2843 void VymModel::editHeading2URL()
2845 TreeItem *selti=getSelectedItem();
2847 setURL (selti->getHeading());
2850 void VymModel::editBugzilla2URL()
2852 TreeItem *selti=getSelectedItem();
2855 QString h=selti->getHeading();
2856 QRegExp rx("^(\\d+)");
2857 if (rx.indexIn(h) !=-1)
2858 setURL ("https://bugzilla.novell.com/show_bug.cgi?id="+rx.cap(1) );
2862 void VymModel::editFATE2URL()
2864 TreeItem *selti=getSelectedItem();
2867 QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+selti->getHeading();
2870 "setURL (\""+selti->getURL()+"\")",
2872 "setURL (\""+url+"\")",
2873 QString("Use heading of %1 as link to FATE").arg(getObjectName(selti))
2875 selti->setURL (url);
2876 // FIXME-4 updateActions();
2880 void VymModel::editVymLink()
2882 BranchItem *bi=getSelectedBranch();
2885 QStringList filters;
2886 filters <<"VYM map (*.vym)";
2887 QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Link to another map"));
2888 fd->setFilters (filters);
2889 fd->setCaption(vymName+" - " +tr("Link to another map"));
2890 fd->setDirectory (lastFileDir);
2891 if (! bi->getVymLink().isEmpty() )
2892 fd->selectFile( bi->getVymLink() );
2896 if ( fd->exec() == QDialog::Accepted )
2898 lastFileDir=QDir (fd->directory().path());
2901 "setVymLink (\""+bi->getVymLink()+"\")",
2903 "setVymLink (\""+fd->selectedFile()+"\")",
2904 QString("Set vymlink of %1 to %2").arg(getObjectName(bi)).arg(fd->selectedFile())
2906 setVymLink (fd->selectedFile() ); // FIXME-2 ok?
2911 void VymModel::setVymLink (const QString &s) // FIXME-3 no savestate?
2913 // Internal function, no saveState needed
2914 TreeItem *selti=getSelectedItem();
2917 selti->setVymLink(s);
2919 emitDataHasChanged (selti);
2920 emitShowSelection();
2924 void VymModel::deleteVymLink()
2926 BranchItem *bi=getSelectedBranch();
2931 "setVymLink (\""+bi->getVymLink()+"\")",
2933 "setVymLink (\"\")",
2934 QString("Unset vymlink of %1").arg(getObjectName(bi))
2936 bi->setVymLink ("" );
2942 QString VymModel::getVymLink()
2944 BranchItem *bi=getSelectedBranch();
2946 return bi->getVymLink();
2952 QStringList VymModel::getVymLinks()
2955 BranchItem *selbi=getSelectedBranch();
2956 BranchItem *cur=selbi;
2957 BranchItem *prev=NULL;
2960 if (!cur->getVymLink().isEmpty()) links.append( cur->getVymLink());
2961 cur=nextBranch (cur,prev,true,selbi);
2967 void VymModel::followXLink(int i)
2970 BranchItem *selbi=getSelectedBranch();
2973 selbi=selbi->getXLinkNum(i)->getPartnerBranch();
2974 if (selbi) select (selbi);
2978 void VymModel::editXLink(int i)
2981 BranchItem *selbi=getSelectedBranch();
2984 XLinkItem *xli=selbi->getXLinkNum(i);
2987 EditXLinkDialog dia;
2989 dia.setSelection(selbi);
2990 if (dia.exec() == QDialog::Accepted)
2992 if (dia.useSettingsGlobal() )
2994 setMapDefXLinkColor (xli->getColor() );
2995 setMapDefXLinkWidth (xli->getWidth() );
2997 if (dia.deleteXLink()) deleteItem (xli);
3007 //////////////////////////////////////////////
3009 //////////////////////////////////////////////
3011 QVariant VymModel::parseAtom(const QString &atom, bool &noErr, QString &errorMsg)
3013 TreeItem* selti=getSelectedItem();
3014 BranchItem *selbi=getSelectedBranch();
3019 QVariant returnValue;
3021 // Split string s into command and parameters
3022 parser.parseAtom (atom);
3023 QString com=parser.getCommand();
3025 // External commands
3026 /////////////////////////////////////////////////////////////////////
3027 if (com=="addBranch")
3031 parser.setError (Aborted,"Nothing selected");
3032 } else if (! selbi )
3034 parser.setError (Aborted,"Type of selection is not a branch");
3039 if (parser.checkParCount(pl))
3041 if (parser.parCount()==0)
3045 n=parser.parInt (ok,0);
3046 if (ok ) addNewBranch (n);
3050 /////////////////////////////////////////////////////////////////////
3051 } else if (com=="addBranchBefore")
3055 parser.setError (Aborted,"Nothing selected");
3056 } else if (! selbi )
3058 parser.setError (Aborted,"Type of selection is not a branch");
3061 if (parser.parCount()==0)
3063 addNewBranchBefore ();
3066 /////////////////////////////////////////////////////////////////////
3067 } else if (com==QString("addMapCenter"))
3069 if (parser.checkParCount(2))
3071 x=parser.parDouble (ok,0);
3074 y=parser.parDouble (ok,1);
3075 if (ok) addMapCenter (QPointF(x,y));
3078 /////////////////////////////////////////////////////////////////////
3079 } else if (com==QString("addMapReplace"))
3083 parser.setError (Aborted,"Nothing selected");
3084 } else if (! selbi )
3086 parser.setError (Aborted,"Type of selection is not a branch");
3087 } else if (parser.checkParCount(1))
3089 //s=parser.parString (ok,0); // selection
3090 t=parser.parString (ok,0); // path to map
3091 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
3092 addMapReplaceInt(getSelectString(selbi),t);
3094 /////////////////////////////////////////////////////////////////////
3095 } else if (com==QString("addMapInsert"))
3097 if (parser.parCount()==2)
3102 parser.setError (Aborted,"Nothing selected");
3103 } else if (! selbi )
3105 parser.setError (Aborted,"Type of selection is not a branch");
3108 t=parser.parString (ok,0); // path to map
3109 n=parser.parInt(ok,1); // position
3110 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
3111 addMapInsertInt(t,n);
3113 } else if (parser.parCount()==1)
3115 t=parser.parString (ok,0); // path to map
3116 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
3119 parser.setError (Aborted,"Wrong number of parameters");
3120 /////////////////////////////////////////////////////////////////////
3121 } else if (com==QString("addXLink"))
3123 if (parser.parCount()>1)
3125 s=parser.parString (ok,0); // begin
3126 t=parser.parString (ok,1); // end
3127 BranchItem *begin=(BranchItem*)findBySelectString(s);
3128 BranchItem *end=(BranchItem*)findBySelectString(t);
3131 if (begin->isBranchLikeType() && end->isBranchLikeType())
3133 XLinkItem *xl=createXLink (begin,true);
3139 parser.setError (Aborted,"Failed to create xLink");
3142 parser.setError (Aborted,"begin or end of xLink are not branch or mapcenter");
3145 parser.setError (Aborted,"Couldn't select begin or end of xLink");
3147 parser.setError (Aborted,"Need at least 2 parameters for begin and end");
3148 /////////////////////////////////////////////////////////////////////
3149 } else if (com=="clearFlags")
3153 parser.setError (Aborted,"Nothing selected");
3154 } else if (! selbi )
3156 parser.setError (Aborted,"Type of selection is not a branch");
3157 } else if (parser.checkParCount(0))
3159 selbi->deactivateAllStandardFlags();
3161 /////////////////////////////////////////////////////////////////////
3162 } else if (com=="colorBranch")
3166 parser.setError (Aborted,"Nothing selected");
3167 } else if (! selbi )
3169 parser.setError (Aborted,"Type of selection is not a branch");
3170 } else if (parser.checkParCount(1))
3172 QColor c=parser.parColor (ok,0);
3173 if (ok) colorBranch (c);
3175 /////////////////////////////////////////////////////////////////////
3176 } else if (com=="colorSubtree")
3180 parser.setError (Aborted,"Nothing selected");
3181 } else if (! selbi )
3183 parser.setError (Aborted,"Type of selection is not a branch");
3184 } else if (parser.checkParCount(1))
3186 QColor c=parser.parColor (ok,0);
3187 if (ok) colorSubtree (c);
3189 /////////////////////////////////////////////////////////////////////
3190 } else if (com=="copy")
3194 parser.setError (Aborted,"Nothing selected");
3195 } else if ( selectionType()!=TreeItem::Branch &&
3196 selectionType()!=TreeItem::MapCenter &&
3197 selectionType()!=TreeItem::Image )
3199 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3200 } else if (parser.checkParCount(0))
3204 /////////////////////////////////////////////////////////////////////
3205 } else if (com=="cut")
3209 parser.setError (Aborted,"Nothing selected");
3210 } else if ( selectionType()!=TreeItem::Branch &&
3211 selectionType()!=TreeItem::MapCenter &&
3212 selectionType()!=TreeItem::Image )
3214 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3215 } else if (parser.checkParCount(0))
3219 /////////////////////////////////////////////////////////////////////
3220 } else if (com=="delete")
3224 parser.setError (Aborted,"Nothing selected");
3226 /*else if (selectionType() != TreeItem::Branch && selectionType() != TreeItem::Image )
3228 parser.setError (Aborted,"Type of selection is wrong.");
3231 else if (parser.checkParCount(0))
3235 /////////////////////////////////////////////////////////////////////
3236 } else if (com=="deleteKeepChildren")
3240 parser.setError (Aborted,"Nothing selected");
3241 } else if (! selbi )
3243 parser.setError (Aborted,"Type of selection is not a branch");
3244 } else if (parser.checkParCount(0))
3246 deleteKeepChildren();
3248 /////////////////////////////////////////////////////////////////////
3249 } else if (com=="deleteChildren")
3253 parser.setError (Aborted,"Nothing selected");
3256 parser.setError (Aborted,"Type of selection is not a branch");
3257 } else if (parser.checkParCount(0))
3261 /////////////////////////////////////////////////////////////////////
3262 } else if (com=="exportAO")
3266 if (parser.parCount()>=1)
3267 // Hey, we even have a filename
3268 fname=parser.parString(ok,0);
3271 parser.setError (Aborted,"Could not read filename");
3274 exportAO (fname,false);
3276 /////////////////////////////////////////////////////////////////////
3277 } else if (com=="exportASCII")
3281 if (parser.parCount()>=1)
3282 // Hey, we even have a filename
3283 fname=parser.parString(ok,0);
3286 parser.setError (Aborted,"Could not read filename");
3289 exportASCII (fname,false);
3291 /////////////////////////////////////////////////////////////////////
3292 } else if (com=="exportImage")
3296 if (parser.parCount()>=2)
3297 // Hey, we even have a filename
3298 fname=parser.parString(ok,0);
3301 parser.setError (Aborted,"Could not read filename");
3304 QString format="PNG";
3305 if (parser.parCount()>=2)
3307 format=parser.parString(ok,1);
3309 exportImage (fname,false,format);
3311 /////////////////////////////////////////////////////////////////////
3312 } else if (com=="exportXHTML")
3316 if (parser.parCount()>=2)
3317 // Hey, we even have a filename
3318 fname=parser.parString(ok,1);
3321 parser.setError (Aborted,"Could not read filename");
3324 exportXHTML (fname,false);
3326 /////////////////////////////////////////////////////////////////////
3327 } else if (com=="exportXML")
3331 if (parser.parCount()>=2)
3332 // Hey, we even have a filename
3333 fname=parser.parString(ok,1);
3336 parser.setError (Aborted,"Could not read filename");
3339 exportXML (fname,false);
3341 /////////////////////////////////////////////////////////////////////
3342 } else if (com=="getHeading")
3346 parser.setError (Aborted,"Nothing selected");
3347 } else if (parser.checkParCount(0))
3348 returnValue=selti->getHeading();
3349 /////////////////////////////////////////////////////////////////////
3350 } else if (com=="importDir")
3354 parser.setError (Aborted,"Nothing selected");
3355 } else if (! selbi )
3357 parser.setError (Aborted,"Type of selection is not a branch");
3358 } else if (parser.checkParCount(1))
3360 s=parser.parString(ok,0);
3361 if (ok) importDirInt(s);
3363 /////////////////////////////////////////////////////////////////////
3364 } else if (com=="relinkTo")
3368 parser.setError (Aborted,"Nothing selected");
3371 if (parser.checkParCount(4))
3373 // 0 selectstring of parent
3374 // 1 num in parent (for branches)
3375 // 2,3 x,y of mainbranch or mapcenter
3376 s=parser.parString(ok,0);
3377 TreeItem *dst=findBySelectString (s);
3380 if (dst->getType()==TreeItem::Branch)
3382 // Get number in parent
3383 n=parser.parInt (ok,1);
3386 relinkBranch (selbi,(BranchItem*)dst,n);
3387 emitSelectionChanged();
3389 } else if (dst->getType()==TreeItem::MapCenter)
3391 relinkBranch (selbi,(BranchItem*)dst);
3392 // Get coordinates of mainbranch
3393 x=parser.parDouble(ok,2);
3396 y=parser.parDouble(ok,3);
3399 if (selbi->getLMO()) selbi->getLMO()->move (x,y);
3400 emitSelectionChanged();
3406 } else if ( selti->getType() == TreeItem::Image)
3408 if (parser.checkParCount(1))
3410 // 0 selectstring of parent
3411 s=parser.parString(ok,0);
3412 TreeItem *dst=findBySelectString (s);
3415 if (dst->isBranchLikeType())
3416 relinkImage ( ((ImageItem*)selti),(BranchItem*)dst);
3418 parser.setError (Aborted,"Destination is not a branch");
3421 parser.setError (Aborted,"Type of selection is not a floatimage or branch");
3422 /////////////////////////////////////////////////////////////////////
3423 } else if (com=="loadImage")
3427 parser.setError (Aborted,"Nothing selected");
3428 } else if (! selbi )
3430 parser.setError (Aborted,"Type of selection is not a branch");
3431 } else if (parser.checkParCount(1))
3433 s=parser.parString(ok,0);
3434 if (ok) loadFloatImageInt (selbi,s);
3436 /////////////////////////////////////////////////////////////////////
3437 } else if (com=="moveUp")
3441 parser.setError (Aborted,"Nothing selected");
3442 } else if (! selbi )
3444 parser.setError (Aborted,"Type of selection is not a branch");
3445 } else if (parser.checkParCount(0))
3449 /////////////////////////////////////////////////////////////////////
3450 } else if (com=="moveDown")
3454 parser.setError (Aborted,"Nothing selected");
3455 } else if (! selbi )
3457 parser.setError (Aborted,"Type of selection is not a branch");
3458 } else if (parser.checkParCount(0))
3462 /////////////////////////////////////////////////////////////////////
3463 } else if (com=="move")
3467 parser.setError (Aborted,"Nothing selected");
3468 } else if ( selectionType()!=TreeItem::Branch &&
3469 selectionType()!=TreeItem::MapCenter &&
3470 selectionType()!=TreeItem::Image )
3472 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3473 } else if (parser.checkParCount(2))
3475 x=parser.parDouble (ok,0);
3478 y=parser.parDouble (ok,1);
3482 /////////////////////////////////////////////////////////////////////
3483 } else if (com=="moveRel")
3487 parser.setError (Aborted,"Nothing selected");
3488 } else if ( selectionType()!=TreeItem::Branch &&
3489 selectionType()!=TreeItem::MapCenter &&
3490 selectionType()!=TreeItem::Image )
3492 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3493 } else if (parser.checkParCount(2))
3495 x=parser.parDouble (ok,0);
3498 y=parser.parDouble (ok,1);
3499 if (ok) moveRel (x,y);
3502 /////////////////////////////////////////////////////////////////////
3503 } else if (com=="nop")
3505 /////////////////////////////////////////////////////////////////////
3506 } else if (com=="paste")
3510 parser.setError (Aborted,"Nothing selected");
3511 } else if (! selbi )
3513 parser.setError (Aborted,"Type of selection is not a branch");
3514 } else if (parser.checkParCount(1))
3516 n=parser.parInt (ok,0);
3517 if (ok) pasteNoSave(n);
3519 /////////////////////////////////////////////////////////////////////
3520 } else if (com=="qa")
3524 parser.setError (Aborted,"Nothing selected");
3525 } else if (! selbi )
3527 parser.setError (Aborted,"Type of selection is not a branch");
3528 } else if (parser.checkParCount(4))
3531 c=parser.parString (ok,0);
3534 parser.setError (Aborted,"No comment given");
3537 s=parser.parString (ok,1);
3540 parser.setError (Aborted,"First parameter is not a string");
3543 t=parser.parString (ok,2);
3546 parser.setError (Aborted,"Condition is not a string");
3549 u=parser.parString (ok,3);
3552 parser.setError (Aborted,"Third parameter is not a string");
3557 parser.setError (Aborted,"Unknown type: "+s);
3562 parser.setError (Aborted,"Unknown operator: "+t);
3567 parser.setError (Aborted,"Type of selection is not a branch");
3570 if (selbi->getHeading() == u)
3572 cout << "PASSED: " << qPrintable (c) << endl;
3575 cout << "FAILED: " << qPrintable (c) << endl;
3585 /////////////////////////////////////////////////////////////////////
3586 } else if (com=="saveImage")
3588 ImageItem *ii=getSelectedImage();
3591 parser.setError (Aborted,"No image selected");
3592 } else if (parser.checkParCount(2))
3594 s=parser.parString(ok,0);
3597 t=parser.parString(ok,1);
3598 if (ok) saveFloatImageInt (ii,t,s);
3601 /////////////////////////////////////////////////////////////////////
3602 } else if (com=="scroll")
3606 parser.setError (Aborted,"Nothing selected");
3607 } else if (! selbi )
3609 parser.setError (Aborted,"Type of selection is not a branch");
3610 } else if (parser.checkParCount(0))
3612 if (!scrollBranch (selbi))
3613 parser.setError (Aborted,"Could not scroll branch");
3615 /////////////////////////////////////////////////////////////////////
3616 } else if (com=="select")
3618 if (parser.checkParCount(1))
3620 s=parser.parString(ok,0);
3623 /////////////////////////////////////////////////////////////////////
3624 } else if (com=="selectLastBranch")
3628 parser.setError (Aborted,"Nothing selected");
3629 } else if (! selbi )
3631 parser.setError (Aborted,"Type of selection is not a branch");
3632 } else if (parser.checkParCount(0))
3634 BranchItem *bi=selbi->getLastBranch();
3636 parser.setError (Aborted,"Could not select last branch");
3637 select (bi); // FIXME-3 was selectInt
3640 /////////////////////////////////////////////////////////////////////
3641 } else /* FIXME-2 if (com=="selectLastImage")
3645 parser.setError (Aborted,"Nothing selected");
3646 } else if (! selbi )
3648 parser.setError (Aborted,"Type of selection is not a branch");
3649 } else if (parser.checkParCount(0))
3651 FloatImageObj *fio=selb->getLastFloatImage();
3653 parser.setError (Aborted,"Could not select last image");
3654 select (fio); // FIXME-3 was selectInt
3657 /////////////////////////////////////////////////////////////////////
3658 } else */ if (com=="selectLatestAdded")
3660 if (!latestAddedItem)
3662 parser.setError (Aborted,"No latest added object");
3665 if (!select (latestAddedItem))
3666 parser.setError (Aborted,"Could not select latest added object ");
3668 /////////////////////////////////////////////////////////////////////
3669 } else if (com=="setFlag")
3673 parser.setError (Aborted,"Nothing selected");
3674 } else if (! selbi )
3676 parser.setError (Aborted,"Type of selection is not a branch");
3677 } else if (parser.checkParCount(1))
3679 s=parser.parString(ok,0);
3681 selbi->activateStandardFlag(s);
3683 /////////////////////////////////////////////////////////////////////
3684 } else if (com=="setFrameType")
3686 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3688 parser.setError (Aborted,"Type of selection does not allow setting frame type");
3690 else if (parser.checkParCount(1))
3692 s=parser.parString(ok,0);
3693 if (ok) setFrameType (s);
3695 /////////////////////////////////////////////////////////////////////
3696 } else if (com=="setFramePenColor")
3698 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3700 parser.setError (Aborted,"Type of selection does not allow setting of pen color");
3702 else if (parser.checkParCount(1))
3704 QColor c=parser.parColor(ok,0);
3705 if (ok) setFramePenColor (c);
3707 /////////////////////////////////////////////////////////////////////
3708 } else if (com=="setFrameBrushColor")
3710 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3712 parser.setError (Aborted,"Type of selection does not allow setting brush color");
3714 else if (parser.checkParCount(1))
3716 QColor c=parser.parColor(ok,0);
3717 if (ok) setFrameBrushColor (c);
3719 /////////////////////////////////////////////////////////////////////
3720 } else if (com=="setFramePadding")
3722 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3724 parser.setError (Aborted,"Type of selection does not allow setting frame padding");
3726 else if (parser.checkParCount(1))
3728 n=parser.parInt(ok,0);
3729 if (ok) setFramePadding(n);
3731 /////////////////////////////////////////////////////////////////////
3732 } else if (com=="setFrameBorderWidth")
3734 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3736 parser.setError (Aborted,"Type of selection does not allow setting frame border width");
3738 else if (parser.checkParCount(1))
3740 n=parser.parInt(ok,0);
3741 if (ok) setFrameBorderWidth (n);
3743 /////////////////////////////////////////////////////////////////////
3744 /* FIXME-2 else if (com=="setFrameType")
3748 parser.setError (Aborted,"Nothing selected");
3751 parser.setError (Aborted,"Type of selection is not a branch");
3752 } else if (parser.checkParCount(1))
3754 s=parser.parString(ok,0);
3758 /////////////////////////////////////////////////////////////////////
3760 /////////////////////////////////////////////////////////////////////
3761 } else if (com=="setHeading")
3765 parser.setError (Aborted,"Nothing selected");
3766 } else if (! selbi )
3768 parser.setError (Aborted,"Type of selection is not a branch");
3769 } else if (parser.checkParCount(1))
3771 s=parser.parString (ok,0);
3775 /////////////////////////////////////////////////////////////////////
3776 } else if (com=="setHideExport")
3780 parser.setError (Aborted,"Nothing selected");
3781 } else if (selectionType()!=TreeItem::Branch && selectionType() != TreeItem::MapCenter &&selectionType()!=TreeItem::Image)
3783 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3784 } else if (parser.checkParCount(1))
3786 b=parser.parBool(ok,0);
3787 if (ok) setHideExport (b);
3789 /////////////////////////////////////////////////////////////////////
3790 } else if (com=="setIncludeImagesHorizontally")
3794 parser.setError (Aborted,"Nothing selected");
3797 parser.setError (Aborted,"Type of selection is not a branch");
3798 } else if (parser.checkParCount(1))
3800 b=parser.parBool(ok,0);
3801 if (ok) setIncludeImagesHor(b);
3803 /////////////////////////////////////////////////////////////////////
3804 } else if (com=="setIncludeImagesVertically")
3808 parser.setError (Aborted,"Nothing selected");
3811 parser.setError (Aborted,"Type of selection is not a branch");
3812 } else if (parser.checkParCount(1))
3814 b=parser.parBool(ok,0);
3815 if (ok) setIncludeImagesVer(b);
3817 /////////////////////////////////////////////////////////////////////
3818 } else if (com=="setHideLinkUnselected")
3822 parser.setError (Aborted,"Nothing selected");
3823 } else if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3825 parser.setError (Aborted,"Type of selection does not allow hiding the link");
3826 } else if (parser.checkParCount(1))
3828 b=parser.parBool(ok,0);
3829 if (ok) setHideLinkUnselected(b);
3831 /////////////////////////////////////////////////////////////////////
3832 } else if (com=="setMapAuthor")
3834 if (parser.checkParCount(1))
3836 s=parser.parString(ok,0);
3837 if (ok) setAuthor (s);
3839 /////////////////////////////////////////////////////////////////////
3840 } else if (com=="setMapComment")
3842 if (parser.checkParCount(1))
3844 s=parser.parString(ok,0);
3845 if (ok) setComment(s);
3847 /////////////////////////////////////////////////////////////////////
3848 } else if (com=="setMapBackgroundColor")
3852 parser.setError (Aborted,"Nothing selected");
3853 } else if (! selbi )
3855 parser.setError (Aborted,"Type of selection is not a branch");
3856 } else if (parser.checkParCount(1))
3858 QColor c=parser.parColor (ok,0);
3859 if (ok) setMapBackgroundColor (c);
3861 /////////////////////////////////////////////////////////////////////
3862 } else if (com=="setMapDefLinkColor")
3866 parser.setError (Aborted,"Nothing selected");
3867 } else if (! selbi )
3869 parser.setError (Aborted,"Type of selection is not a branch");
3870 } else if (parser.checkParCount(1))
3872 QColor c=parser.parColor (ok,0);
3873 if (ok) setMapDefLinkColor (c);
3875 /////////////////////////////////////////////////////////////////////
3876 } else if (com=="setMapLinkStyle")
3878 if (parser.checkParCount(1))
3880 s=parser.parString (ok,0);
3881 if (ok) setMapLinkStyle(s);
3883 /////////////////////////////////////////////////////////////////////
3884 } else if (com=="setNote")
3888 parser.setError (Aborted,"Nothing selected");
3889 } else if (! selbi )
3891 parser.setError (Aborted,"Type of selection is not a branch");
3892 } else if (parser.checkParCount(1))
3894 s=parser.parString (ok,0);
3898 /////////////////////////////////////////////////////////////////////
3899 } else if (com=="setSelectionColor")
3901 if (parser.checkParCount(1))
3903 QColor c=parser.parColor (ok,0);
3904 if (ok) setSelectionColorInt (c);
3906 /////////////////////////////////////////////////////////////////////
3907 } else if (com=="setURL")
3911 parser.setError (Aborted,"Nothing selected");
3912 } else if (! selbi )
3914 parser.setError (Aborted,"Type of selection is not a branch");
3915 } else if (parser.checkParCount(1))
3917 s=parser.parString (ok,0);
3920 /////////////////////////////////////////////////////////////////////
3921 } else if (com=="setVymLink")
3925 parser.setError (Aborted,"Nothing selected");
3926 } else if (! selbi )
3928 parser.setError (Aborted,"Type of selection is not a branch");
3929 } else if (parser.checkParCount(1))
3931 s=parser.parString (ok,0);
3932 if (ok) setVymLink(s);
3934 } else if (com=="sortChildren")
3938 parser.setError (Aborted,"Nothing selected");
3939 } else if (! selbi )
3941 parser.setError (Aborted,"Type of selection is not a branch");
3942 } else if (parser.checkParCount(0))
3946 /////////////////////////////////////////////////////////////////////
3947 } else if (com=="toggleFlag")
3951 parser.setError (Aborted,"Nothing selected");
3952 } else if (! selbi )
3954 parser.setError (Aborted,"Type of selection is not a branch");
3955 } else if (parser.checkParCount(1))
3957 s=parser.parString(ok,0);
3959 selbi->toggleStandardFlag(s);
3961 /////////////////////////////////////////////////////////////////////
3962 } else if (com=="unscroll")
3966 parser.setError (Aborted,"Nothing selected");
3967 } else if (! selbi )
3969 parser.setError (Aborted,"Type of selection is not a branch");
3970 } else if (parser.checkParCount(0))
3972 if (!unscrollBranch (selbi))
3973 parser.setError (Aborted,"Could not unscroll branch");
3975 /////////////////////////////////////////////////////////////////////
3976 } else if (com=="unscrollChildren")
3980 parser.setError (Aborted,"Nothing selected");
3981 } else if (! selbi )
3983 parser.setError (Aborted,"Type of selection is not a branch");
3984 } else if (parser.checkParCount(0))
3986 unscrollChildren ();
3988 /////////////////////////////////////////////////////////////////////
3989 } else if (com=="unsetFlag")
3993 parser.setError (Aborted,"Nothing selected");
3994 } else if (! selbi )
3996 parser.setError (Aborted,"Type of selection is not a branch");
3997 } else if (parser.checkParCount(1))
3999 s=parser.parString(ok,0);
4001 selbi->deactivateStandardFlag(s);
4004 parser.setError (Aborted,"Unknown command");
4007 if (parser.errorLevel()==NoError)
4009 // setChanged(); FIXME-2 should not be called e.g. for export?!
4016 // TODO Error handling
4017 qWarning("VymModel::parseAtom: Error!");
4019 qWarning(parser.errorMessage());
4021 errorMsg=parser.errorMessage();
4026 QVariant VymModel::runScript (const QString &script)
4028 parser.setScript (script);
4033 while (parser.next() && noErr)
4035 r=parseAtom(parser.getAtom(),noErr,errMsg);
4036 if (!noErr) //FIXME-3 need dialog box here
4037 cout << "VM::runScript aborted:\n"<<errMsg.toStdString()<<endl;
4042 void VymModel::setExportMode (bool b)
4044 // should be called before and after exports
4045 // depending on the settings
4046 if (b && settings.value("/export/useHideExport","true")=="true")
4047 setHideTmpMode (TreeItem::HideExport);
4049 setHideTmpMode (TreeItem::HideNone);
4052 void VymModel::exportImage(QString fname, bool askName, QString format)
4056 fname=getMapName()+".png";
4063 QFileDialog *fd=new QFileDialog (NULL);
4064 fd->setCaption (tr("Export map as image"));
4065 fd->setDirectory (lastImageDir);
4066 fd->setFileMode(QFileDialog::AnyFile);
4067 fd->setFilters (imageIO.getFilters() );
4070 fl=fd->selectedFiles();
4072 format=imageIO.getType(fd->selectedFilter());
4076 setExportMode (true);
4077 QPixmap pix (mapEditor->getPixmap());
4078 pix.save(fname, format);
4079 setExportMode (false);
4083 void VymModel::exportXML(QString dir, bool askForName)
4087 dir=browseDirectory(NULL,tr("Export XML to directory"));
4088 if (dir =="" && !reallyWriteDirectory(dir) )
4092 // Hide stuff during export, if settings want this
4093 setExportMode (true);
4095 // Create subdirectories
4098 // write to directory //FIXME-4 check totalBBox here...
4099 QString saveFile=saveToDir (dir,mapName+"-",true,mapEditor->getTotalBBox().topLeft() ,NULL);
4102 file.setName ( dir + "/"+mapName+".xml");
4103 if ( !file.open( QIODevice::WriteOnly ) )
4105 // This should neverever happen
4106 QMessageBox::critical (0,tr("Critical Export Error"),tr("VymModel::exportXML couldn't open %1").arg(file.name()));
4110 // Write it finally, and write in UTF8, no matter what
4111 QTextStream ts( &file );
4112 ts.setEncoding (QTextStream::UnicodeUTF8);
4116 // Now write image, too
4117 exportImage (dir+"/images/"+mapName+".png",false,"PNG");
4119 setExportMode (false);
4122 void VymModel::exportAO (QString fname,bool askName)
4127 ex.setFile (mapName+".txt");
4133 //ex.addFilter ("TXT (*.txt)");
4134 ex.setDir(lastImageDir);
4135 //ex.setCaption(vymName+ " -" +tr("Export as A&O report")+" "+tr("(still experimental)"));
4140 setExportMode(true);
4142 setExportMode(false);
4146 void VymModel::exportASCII(QString fname,bool askName)
4151 ex.setFile (mapName+".txt");
4157 //ex.addFilter ("TXT (*.txt)");
4158 ex.setDir(lastImageDir);
4159 //ex.setCaption(vymName+ " -" +tr("Export as ASCII")+" "+tr("(still experimental)"));
4164 setExportMode(true);
4166 setExportMode(false);
4170 void VymModel::exportXHTML (const QString &dir, bool askForName)
4172 ExportXHTMLDialog dia(NULL);
4173 dia.setFilePath (filePath );
4174 dia.setMapName (mapName );
4176 if (dir!="") dia.setDir (dir);
4182 if (dia.exec()!=QDialog::Accepted)
4186 QDir d (dia.getDir());
4187 // Check, if warnings should be used before overwriting
4188 // the output directory
4189 if (d.exists() && d.count()>0)
4192 warn.showCancelButton (true);
4193 warn.setText(QString(
4194 "The directory %1 is not empty.\n"
4195 "Do you risk to overwrite some of its contents?").arg(d.path() ));
4196 warn.setCaption("Warning: Directory not empty");
4197 warn.setShowAgainName("mainwindow/overwrite-dir-xhtml");
4199 if (warn.exec()!=QDialog::Accepted) ok=false;
4206 exportXML (dia.getDir(),false );
4207 dia.doExport(mapName );
4208 //if (dia.hasChanged()) setChanged();
4212 void VymModel::exportOOPresentation(const QString &fn, const QString &cf)
4217 if (ex.setConfigFile(cf))
4219 setExportMode (true);
4220 ex.exportPresentation();
4221 setExportMode (false);
4228 //////////////////////////////////////////////
4230 //////////////////////////////////////////////
4232 void VymModel::registerEditor(QWidget *me)
4234 mapEditor=(MapEditor*)me;
4237 void VymModel::unregisterEditor(QWidget *)
4242 void VymModel::setContextPos(QPointF p)
4247 void VymModel::unsetContextPos()
4249 contextPos=QPointF();
4252 void VymModel::updateNoteFlag()
4255 TreeItem *selti=getSelectedItem();
4258 if (textEditor->isEmpty())
4261 selti->setNote (textEditor->getText());
4262 emitDataHasChanged(selti);
4263 emitSelectionChanged();
4268 void VymModel::reposition() //FIXME-4 VM should have no need to reposition, but the views...
4270 //cout << "VM::reposition blocked="<<blockReposition<<endl;
4271 if (blockReposition) return;
4273 for (int i=0;i<rootItem->branchCount(); i++)
4274 rootItem->getBranchObjNum(i)->reposition(); // for positioning heading
4275 //emitSelectionChanged();
4279 void VymModel::setMapLinkStyle (const QString & s)
4284 case LinkableMapObj::Line :
4287 case LinkableMapObj::Parabel:
4288 snow="StyleParabel";
4290 case LinkableMapObj::PolyLine:
4291 snow="StylePolyLine";
4293 case LinkableMapObj::PolyParabel:
4294 snow="StylePolyParabel";
4297 snow="UndefinedStyle";
4302 QString("setMapLinkStyle (\"%1\")").arg(s),
4303 QString("setMapLinkStyle (\"%1\")").arg(snow),
4304 QString("Set map link style (\"%1\")").arg(s)
4308 linkstyle=LinkableMapObj::Line;
4309 else if (s=="StyleParabel")
4310 linkstyle=LinkableMapObj::Parabel;
4311 else if (s=="StylePolyLine")
4312 linkstyle=LinkableMapObj::PolyLine;
4313 else if (s=="StylePolyParabel")
4314 linkstyle=LinkableMapObj::PolyParabel;
4316 linkstyle=LinkableMapObj::UndefinedStyle;
4318 BranchItem *cur=NULL;
4319 BranchItem *prev=NULL;
4321 nextBranch (cur,prev);
4324 bo=(BranchObj*)(cur->getLMO() );
4325 bo->setLinkStyle(bo->getDefLinkStyle(cur->parent() )); //FIXME-3 better emit dataCHanged and leave the changes to View
4326 cur=nextBranch(cur,prev);
4331 LinkableMapObj::Style VymModel::getMapLinkStyle ()
4336 void VymModel::setMapDefLinkColor(QColor col)
4338 if ( !col.isValid() ) return;
4340 QString("setMapDefLinkColor (\"%1\")").arg(getMapDefLinkColor().name()),
4341 QString("setMapDefLinkColor (\"%1\")").arg(col.name()),
4342 QString("Set map link color to %1").arg(col.name())
4346 BranchItem *cur=NULL;
4347 BranchItem *prev=NULL;
4349 cur=nextBranch(cur,prev);
4352 bo=(BranchObj*)(cur->getLMO() );
4354 nextBranch(cur,prev);
4359 void VymModel::setMapLinkColorHintInt()
4361 // called from setMapLinkColorHint(lch) or at end of parse
4362 BranchItem *cur=NULL;
4363 BranchItem *prev=NULL;
4365 cur=nextBranch(cur,prev);
4368 bo=(BranchObj*)(cur->getLMO() );
4370 cur=nextBranch(cur,prev);
4374 void VymModel::setMapLinkColorHint(LinkableMapObj::ColorHint lch)
4377 setMapLinkColorHintInt();
4380 void VymModel::toggleMapLinkColorHint()
4382 if (linkcolorhint==LinkableMapObj::HeadingColor)
4383 linkcolorhint=LinkableMapObj::DefaultColor;
4385 linkcolorhint=LinkableMapObj::HeadingColor;
4386 BranchItem *cur=NULL;
4387 BranchItem *prev=NULL;
4389 cur=nextBranch(cur,prev);
4392 bo=(BranchObj*)(cur->getLMO() );
4394 nextBranch(cur,prev);
4398 void VymModel::selectMapBackgroundImage () // FIXME-2 move to ME
4399 // FIXME-4 for using background image: view.setCacheMode(QGraphicsView::CacheBackground);
4401 Q3FileDialog *fd=new Q3FileDialog( NULL);
4402 fd->setMode (Q3FileDialog::ExistingFile);
4403 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
4404 ImagePreview *p =new ImagePreview (fd);
4405 fd->setContentsPreviewEnabled( TRUE );
4406 fd->setContentsPreview( p, p );
4407 fd->setPreviewMode( Q3FileDialog::Contents );
4408 fd->setCaption(vymName+" - " +tr("Load background image"));
4409 fd->setDir (lastImageDir);
4412 if ( fd->exec() == QDialog::Accepted )
4414 // TODO selectMapBackgroundImg in QT4 use: lastImageDir=fd->directory();
4415 lastImageDir=QDir (fd->dirPath());
4416 setMapBackgroundImage (fd->selectedFile());
4420 void VymModel::setMapBackgroundImage (const QString &fn) //FIXME-3 missing savestate, move to ME
4422 QColor oldcol=mapScene->backgroundBrush().color();
4426 QString ("setMapBackgroundImage (%1)").arg(oldcol.name()),
4428 QString ("setMapBackgroundImage (%1)").arg(col.name()),
4429 QString("Set background color of map to %1").arg(col.name()));
4432 brush.setTextureImage (QPixmap (fn));
4433 mapScene->setBackgroundBrush(brush);
4436 void VymModel::selectMapBackgroundColor() // FIXME-3 move to ME
4438 QColor col = QColorDialog::getColor( mapScene->backgroundBrush().color(), NULL);
4439 if ( !col.isValid() ) return;
4440 setMapBackgroundColor( col );
4444 void VymModel::setMapBackgroundColor(QColor col) // FIXME-3 move to ME
4446 QColor oldcol=mapScene->backgroundBrush().color();
4448 QString ("setMapBackgroundColor (\"%1\")").arg(oldcol.name()),
4449 QString ("setMapBackgroundColor (\"%1\")").arg(col.name()),
4450 QString("Set background color of map to %1").arg(col.name()));
4451 mapScene->setBackgroundBrush(col);
4454 QColor VymModel::getMapBackgroundColor() // FIXME-3 move to ME
4456 return mapScene->backgroundBrush().color();
4460 LinkableMapObj::ColorHint VymModel::getMapLinkColorHint() // FIXME-3 move to ME
4462 return linkcolorhint;
4465 QColor VymModel::getMapDefLinkColor() // FIXME-3 move to ME
4467 return defLinkColor;
4470 void VymModel::setMapDefXLinkColor(QColor col) // FIXME-3 move to ME
4475 QColor VymModel::getMapDefXLinkColor() // FIXME-3 move to ME
4477 return defXLinkColor;
4480 void VymModel::setMapDefXLinkWidth (int w) // FIXME-3 move to ME
4485 int VymModel::getMapDefXLinkWidth() // FIXME-3 move to ME
4487 return defXLinkWidth;
4490 void VymModel::move(const double &x, const double &y)
4493 MapItem *seli = (MapItem*)getSelectedItem();
4494 if (seli && (seli->isBranchLikeType() || seli->getType()==TreeItem::Image))
4496 LinkableMapObj *lmo=seli->getLMO();
4499 QPointF ap(lmo->getAbsPos());
4503 QString ps=qpointFToString(ap);
4504 QString s=getSelectString(seli);
4507 s, "move "+qpointFToString(to),
4508 QString("Move %1 to %2").arg(getObjectName(seli)).arg(ps));
4511 emitSelectionChanged();
4517 void VymModel::moveRel (const double &x, const double &y)
4520 MapItem *seli = (MapItem*)getSelectedItem();
4521 if (seli && (seli->isBranchLikeType() || seli->getType()==TreeItem::Image))
4523 LinkableMapObj *lmo=seli->getLMO();
4526 QPointF rp(lmo->getRelPos());
4530 QString ps=qpointFToString (lmo->getRelPos());
4531 QString s=getSelectString(seli);
4534 s, "moveRel "+qpointFToString(to),
4535 QString("Move %1 to relative position %2").arg(getObjectName(seli)).arg(ps));
4536 ((OrnamentedObj*)lmo)->move2RelPos (x,y);
4538 lmo->updateLinkGeometry();
4539 emitSelectionChanged();
4546 void VymModel::animate()
4548 animationTimer->stop();
4551 while (i<animObjList.size() )
4553 bo=(BranchObj*)animObjList.at(i);
4558 animObjList.removeAt(i);
4565 QItemSelection sel=selModel->selection();
4566 emit (selectionChanged(sel,sel));
4569 if (!animObjList.isEmpty()) animationTimer->start();
4573 void VymModel::startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest)
4575 if (start==dest) return;
4576 if (bo && bo->getTreeItem()->depth()>0)
4579 ap.setStart (start);
4581 ap.setTicks (animationTicks);
4582 ap.setAnimated (true);
4583 bo->setAnimation (ap);
4584 animObjList.append( bo );
4585 animationTimer->setSingleShot (true);
4586 animationTimer->start(animationInterval);
4590 void VymModel::stopAnimation (MapObj *mo)
4592 int i=animObjList.indexOf(mo);
4594 animObjList.removeAt (i);
4597 void VymModel::sendSelection()
4599 if (netstate!=Server) return;
4600 sendData (QString("select (\"%1\")").arg(getSelectString()) );
4603 void VymModel::newServer()
4607 tcpServer = new QTcpServer(this);
4608 if (!tcpServer->listen(QHostAddress::Any,port)) {
4609 QMessageBox::critical(NULL, "vym server",
4610 QString("Unable to start the server: %1.").arg(tcpServer->errorString()));
4611 //FIXME-3 needed? we are no widget any longer... close();
4614 connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newClient()));
4616 cout<<"Server is running on port "<<tcpServer->serverPort()<<endl;
4619 void VymModel::connectToServer()
4622 server="salam.suse.de";
4624 clientSocket = new QTcpSocket (this);
4625 clientSocket->abort();
4626 clientSocket->connectToHost(server ,port);
4627 connect(clientSocket, SIGNAL(readyRead()), this, SLOT(readData()));
4628 connect(clientSocket, SIGNAL(error(QAbstractSocket::SocketError)),
4629 this, SLOT(displayNetworkError(QAbstractSocket::SocketError)));
4631 cout<<"connected to "<<qPrintable (server)<<" port "<<port<<endl;
4636 void VymModel::newClient()
4638 QTcpSocket *newClient = tcpServer->nextPendingConnection();
4639 connect(newClient, SIGNAL(disconnected()),
4640 newClient, SLOT(deleteLater()));
4642 cout <<"ME::newClient at "<<qPrintable( newClient->peerAddress().toString() )<<endl;
4644 clientList.append (newClient);
4648 void VymModel::sendData(const QString &s)
4650 if (clientList.size()==0) return;
4652 // Create bytearray to send
4654 QDataStream out(&block, QIODevice::WriteOnly);
4655 out.setVersion(QDataStream::Qt_4_0);
4657 // Reserve some space for blocksize
4660 // Write sendCounter
4661 out << sendCounter++;
4666 // Go back and write blocksize so far
4667 out.device()->seek(0);
4668 quint16 bs=(quint16)(block.size() - 2*sizeof(quint16));
4672 cout << "ME::sendData bs="<<bs<<" counter="<<sendCounter<<" s="<<qPrintable(s)<<endl;
4674 for (int i=0; i<clientList.size(); ++i)
4676 //cout << "Sending \""<<qPrintable (s)<<"\" to "<<qPrintable (clientList.at(i)->peerAddress().toString())<<endl;
4677 clientList.at(i)->write (block);
4681 void VymModel::readData ()
4683 while (clientSocket->bytesAvailable() >=(int)sizeof(quint16) )
4686 cout <<"readData bytesAvail="<<clientSocket->bytesAvailable();
4690 QDataStream in(clientSocket);
4691 in.setVersion(QDataStream::Qt_4_0);
4699 cout << "VymModel::readData command="<<qPrintable (t)<<endl;
4702 parseAtom (t,noErr,errMsg);
4708 void VymModel::displayNetworkError(QAbstractSocket::SocketError socketError)
4710 switch (socketError) {
4711 case QAbstractSocket::RemoteHostClosedError:
4713 case QAbstractSocket::HostNotFoundError:
4714 QMessageBox::information(NULL, vymName +" Network client",
4715 "The host was not found. Please check the "
4716 "host name and port settings.");
4718 case QAbstractSocket::ConnectionRefusedError:
4719 QMessageBox::information(NULL, vymName + " Network client",
4720 "The connection was refused by the peer. "
4721 "Make sure the fortune server is running, "
4722 "and check that the host name and port "
4723 "settings are correct.");
4726 QMessageBox::information(NULL, vymName + " Network client",
4727 QString("The following error occurred: %1.")
4728 .arg(clientSocket->errorString()));
4732 /* FIXME-3 Playing with DBUS...
4733 QDBusVariant VymModel::query (const QString &query)
4735 TreeItem *selti=getSelectedItem();
4737 return QDBusVariant (selti->getHeading());
4739 return QDBusVariant ("Nothing selected.");
4743 void VymModel::testslot() //FIXME-3 Playing with DBUS
4745 cout << "VM::testslot called\n";
4748 void VymModel::selectMapSelectionColor()
4750 QColor col = QColorDialog::getColor( defLinkColor, NULL);
4751 setSelectionColor (col);
4754 void VymModel::setSelectionColorInt (QColor col)
4756 if ( !col.isValid() ) return;
4758 QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
4759 QString("setSelectionColor (%1)").arg(col.name()),
4760 QString("Set color of selection box to %1").arg(col.name())
4763 mapEditor->setSelectionColor (col);
4766 void VymModel::emitSelectionChanged(const QItemSelection &newsel)
4768 emit (selectionChanged(newsel,newsel)); // needed e.g. to update geometry in editor
4769 //FIXME-3 emitShowSelection();
4773 void VymModel::emitSelectionChanged()
4775 QItemSelection newsel=selModel->selection();
4776 emitSelectionChanged (newsel);
4779 void VymModel::setSelectionColor(QColor col)
4781 if ( !col.isValid() ) return;
4783 QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
4784 QString("setSelectionColor (%1)").arg(col.name()),
4785 QString("Set color of selection box to %1").arg(col.name())
4787 setSelectionColorInt (col);
4790 QColor VymModel::getSelectionColor()
4792 return mapEditor->getSelectionColor();
4795 void VymModel::setHideTmpMode (TreeItem::HideTmpMode mode)
4798 for (int i=0;i<rootItem->childCount();i++)
4799 rootItem->child(i)->setHideTmp (mode);
4801 // FIXME-3 needed? scene()->update();
4804 //////////////////////////////////////////////
4805 // Selection related
4806 //////////////////////////////////////////////
4808 void VymModel::setSelectionModel (QItemSelectionModel *sm)
4813 QItemSelectionModel* VymModel::getSelectionModel()
4818 void VymModel::setSelectionBlocked (bool b)
4823 bool VymModel::isSelectionBlocked()
4825 return selectionBlocked;
4828 bool VymModel::select ()
4830 return select (selModel->selectedIndexes().first()); // TODO no multiselections yet
4833 bool VymModel::select (const QString &s)
4840 TreeItem *ti=findBySelectString(s);
4841 if (ti) return select (index(ti));
4845 bool VymModel::select (LinkableMapObj *lmo)
4847 QItemSelection oldsel=selModel->selection();
4850 return select (index (lmo->getTreeItem()) );
4855 bool VymModel::select (TreeItem *ti)
4857 if (ti) return select (index(ti));
4861 bool VymModel::select (const QModelIndex &index)
4863 if (index.isValid() )
4865 selModel->select (index,QItemSelectionModel::ClearAndSelect );
4866 BranchItem *bi=getSelectedBranch();
4867 if (bi) bi->setLastSelectedBranch();
4873 void VymModel::unselect()
4875 if (!selModel->selectedIndexes().isEmpty())
4877 lastSelectString=getSelectString();
4878 selModel->clearSelection();
4882 bool VymModel::reselect()
4884 return select (lastSelectString);
4887 void VymModel::emitShowSelection()
4889 if (!blockReposition)
4890 emit (showSelection() );
4893 void VymModel::emitNoteHasChanged (TreeItem *ti)
4895 QModelIndex ix=index(ti);
4896 emit (noteHasChanged (ix) );
4899 void VymModel::emitDataHasChanged (TreeItem *ti)
4901 QModelIndex ix=index(ti);
4902 emit (dataChanged (ix,ix) );
4906 bool VymModel::selectFirstBranch()
4908 TreeItem *ti=getSelectedBranch();
4911 TreeItem *par=ti->parent();
4914 TreeItem *ti2=par->getFirstBranch();
4915 if (ti2) return select(ti2);
4921 bool VymModel::selectLastBranch()
4923 TreeItem *ti=getSelectedBranch();
4926 TreeItem *par=ti->parent();
4929 TreeItem *ti2=par->getLastBranch();
4930 if (ti2) return select(ti2);
4936 bool VymModel::selectLastSelectedBranch()
4938 BranchItem *bi=getSelectedBranch();
4941 bi=bi->getLastSelectedBranch();
4942 if (bi) return select (bi);
4947 bool VymModel::selectParent()
4949 TreeItem *ti=getSelectedItem();
4960 TreeItem::Type VymModel::selectionType()
4962 QModelIndexList list=selModel->selectedIndexes();
4963 if (list.isEmpty()) return TreeItem::Undefined;
4964 TreeItem *ti = getItem (list.first() );
4965 return ti->getType();
4969 LinkableMapObj* VymModel::getSelectedLMO()
4971 QModelIndexList list=selModel->selectedIndexes();
4972 if (!list.isEmpty() )
4974 TreeItem *ti = getItem (list.first() );
4975 TreeItem::Type type=ti->getType();
4976 if (type ==TreeItem::Branch || type==TreeItem::MapCenter || type==TreeItem::Image)
4977 return ((MapItem*)ti)->getLMO();
4982 BranchObj* VymModel::getSelectedBranchObj() // FIXME-3 this should not be needed in the end!!!
4984 TreeItem *ti = getSelectedBranch();
4986 return (BranchObj*)( ((MapItem*)ti)->getLMO());
4991 BranchItem* VymModel::getSelectedBranch()
4993 QModelIndexList list=selModel->selectedIndexes();
4994 if (!list.isEmpty() )
4996 TreeItem *ti = getItem (list.first() );
4997 TreeItem::Type type=ti->getType();
4998 if (type ==TreeItem::Branch || type==TreeItem::MapCenter)
4999 return (BranchItem*)ti;
5004 ImageItem* VymModel::getSelectedImage()
5006 QModelIndexList list=selModel->selectedIndexes();
5007 if (!list.isEmpty())
5009 TreeItem *ti=getItem (list.first());
5010 if (ti && ti->getType()==TreeItem::Image)
5011 return (ImageItem*)ti;
5016 AttributeItem* VymModel::getSelectedAttribute()
5018 QModelIndexList list=selModel->selectedIndexes();
5019 if (!list.isEmpty() )
5021 TreeItem *ti = getItem (list.first() );
5022 TreeItem::Type type=ti->getType();
5023 if (type ==TreeItem::Attribute)
5024 return (AttributeItem*)ti;
5029 TreeItem* VymModel::getSelectedItem()
5031 QModelIndexList list=selModel->selectedIndexes();
5032 if (!list.isEmpty() )
5033 return getItem (list.first() );
5038 QModelIndex VymModel::getSelectedIndex()
5040 QModelIndexList list=selModel->selectedIndexes();
5041 if (list.isEmpty() )
5042 return QModelIndex();
5044 return list.first();
5047 QString VymModel::getSelectString ()
5049 return getSelectString (getSelectedItem());
5052 QString VymModel::getSelectString (LinkableMapObj *lmo) // only for convenience. Used in MapEditor
5054 if (!lmo) return QString();
5055 return getSelectString (lmo->getTreeItem() );
5058 QString VymModel::getSelectString (TreeItem *ti)
5062 switch (ti->getType())
5064 case TreeItem::MapCenter: s="mc:"; break;
5065 case TreeItem::Branch: s="bo:";break;
5066 case TreeItem::Image: s="fi:";break;
5067 case TreeItem::Attribute: s="ai:";break;
5068 case TreeItem::XLink: s="xl:";break;
5070 s="unknown type in VymModel::getSelectString()";
5073 s= s + QString("%1").arg(ti->num());
5075 // call myself recursively
5076 s= getSelectString(ti->parent()) +","+s;