1 #include <QApplication>
7 #include "branchitem.h"
8 #include "mapcenteritem.h"
9 #include "editxlinkdialog.h"
11 #include "exportxhtmldialog.h"
13 #include "geometry.h" // for addBBox
14 #include "mainwindow.h"
15 #include "mapcenterobj.h"
18 #include "selection.h"
21 #include "warningdialog.h"
22 #include "xml-freemind.h"
28 extern Main *mainWindow;
29 extern Settings settings;
30 extern QString tmpVymDir;
32 extern TextEditor *textEditor;
34 extern QString clipboardDir;
35 extern QString clipboardFile;
36 extern bool clipboardEmpty;
38 extern ImageIO imageIO;
40 extern QString vymName;
41 extern QString vymVersion;
42 extern QDir vymBaseDir;
44 extern QDir lastImageDir;
45 extern QDir lastFileDir;
47 extern FlagRowObj *standardFlagsDefault;
49 extern Settings settings;
53 int VymModel::mapNum=0; // make instance
57 // cout << "Const VymModel\n";
59 rootItem->setModel (this);
65 // cout << "Destr VymModel\n";
66 autosaveTimer->stop();
67 fileChangedTimer->stop();
71 void VymModel::clear()
73 selModel->clearSelection();
75 //QModelIndex ri=index(rootItem);
76 //removeRows (0, rowCount(ri),ri); // FIXME-2 here should be at least a beginRemoveRows...
79 void VymModel::init ()
81 // We should have at least one map center to start with
82 // addMapCenter(); FIXME-2 VM create this in MapEditor as long as model is part of that
87 // Also no scene yet (should not be needed anyway) FIXME-3 VM
100 stepsTotal=settings.readNumEntry("/history/stepsTotal",100);
101 undoSet.setEntry ("/history/stepsTotal",QString::number(stepsTotal));
102 mainWindow->updateHistory (undoSet);
105 makeTmpDirectories();
110 fileName=tr("unnamed");
112 blockReposition=false;
113 blockSaveState=false;
115 autosaveTimer=new QTimer (this);
116 connect(autosaveTimer, SIGNAL(timeout()), this, SLOT(autosave()));
118 fileChangedTimer=new QTimer (this);
119 fileChangedTimer->start(3000);
120 connect(fileChangedTimer, SIGNAL(timeout()), this, SLOT(fileChanged()));
132 animationUse=settings.readBoolEntry("/animation/use",false);
133 animationTicks=settings.readNumEntry("/animation/ticks",10);
134 animationInterval=settings.readNumEntry("/animation/interval",50);
136 animationTimer=new QTimer (this);
137 connect(animationTimer, SIGNAL(timeout()), this, SLOT(animate()));
140 defLinkColor=QColor (0,0,255);
141 defXLinkColor=QColor (180,180,180);
142 linkcolorhint=LinkableMapObj::DefaultColor;
143 linkstyle=LinkableMapObj::PolyParabel;
145 defXLinkColor=QColor (230,230,230);
147 hidemode=TreeItem::HideNone;
153 // addMapCenter(); FIXME-2 VM create this in MapEditor until BO and MCO are independent of scene
157 void VymModel::makeTmpDirectories()
159 // Create unique temporary directories
160 tmpMapDir = tmpVymDir+QString("/model-%1").arg(mapNum);
161 histPath = tmpMapDir+"/history";
167 MapEditor* VymModel::getMapEditor() // FIXME-2 VM better return favourite editor here
172 bool VymModel::isRepositionBlocked()
174 return blockReposition;
177 void VymModel::updateActions() // FIXME-2 maybe don't update if blockReposition is set
179 //cout << "VM::updateActions \n";
180 // Tell mainwindow to update states of actions
181 mainWindow->updateActions();
186 QString VymModel::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, TreeItem *saveSel)
188 // tmpdir temporary directory to which data will be written
189 // prefix mapname, which will be appended to images etc.
190 // writeflags Only write flags for "real" save of map, not undo
191 // offset offset of bbox of whole map in scene.
192 // Needed for XML export
201 case LinkableMapObj::Line:
204 case LinkableMapObj::Parabel:
207 case LinkableMapObj::PolyLine:
211 ls="StylePolyParabel";
215 QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
217 if (linkcolorhint==LinkableMapObj::HeadingColor)
218 colhint=xml.attribut("linkColorHint","HeadingColor");
220 QString mapAttr=xml.attribut("version",vymVersion);
222 mapAttr+= xml.attribut("author",author) +
223 xml.attribut("comment",comment) +
224 xml.attribut("date",getDate()) +
225 xml.attribut("branchCount", QString().number(branchCount())) +
226 xml.attribut("backgroundColor", mapScene->backgroundBrush().color().name() ) +
227 xml.attribut("selectionColor", mapEditor->getSelectionColor().name() ) +
228 xml.attribut("linkStyle", ls ) +
229 xml.attribut("linkColor", defLinkColor.name() ) +
230 xml.attribut("defXLinkColor", defXLinkColor.name() ) +
231 xml.attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
233 s+=xml.beginElement("vymmap",mapAttr);
236 // Find the used flags while traversing the tree // FIXME-2 this can be done local to vymmodel maybe...
237 standardFlagsDefault->resetUsedCounter();
239 // Reset the counters before saving
240 // TODO constr. of FIO creates lots of objects, better do this in some other way...
241 FloatImageObj (mapScene).resetSaveCounter();// FIXME-2 this can be done local to vymmodel maybe...
243 cout << "VM::saveToDir 0 " <<saveSel<<endl;
244 // Build xml recursivly
245 if (!saveSel || saveSel->getType()==TreeItem::MapCenter)
246 // Save all mapcenters as complete map, if saveSel not set
247 s+=saveTreeToDir(tmpdir,prefix,writeflags,offset);
250 if (saveSel->getType()==TreeItem::Branch)
252 s+=saveSel->saveToDir(tmpdir,prefix,offset);
253 //FIXME-2 else if (saveSel->getType()==TreeItem::Image)
255 //s+=((FloatImageObj*)(saveSel))->saveToDir(tmpdir,prefix);
258 cout << "VM::saveToDir 1 \n";
259 // Save local settings
260 s+=settings.getDataXML (destPath);
262 cout << "VM::saveToDir 2 \n";
264 if (getSelectedItem() && !saveSel )
265 s+=xml.valueElement("select",getSelectString());
268 s+=xml.endElement("vymmap");
271 standardFlagsDefault->saveToDir (tmpdir+"/flags/","",writeflags);
275 QString VymModel::saveTreeToDir (const QString &tmpdir,const QString &prefix, int verbose, const QPointF &offset) // FIXME-4 verbose not needed (used to write icons)
279 for (int i=0; i<rootItem->branchCount(); i++)
280 s+=((MapCenterItem*)rootItem->getBranchNum(i))->saveToDir (tmpdir,prefix,offset);
284 void VymModel::setFilePath(QString fpath, QString destname)
286 if (fpath.isEmpty() || fpath=="")
293 filePath=fpath; // becomes absolute path
294 fileName=fpath; // gets stripped of path
295 destPath=destname; // needed for vymlinks and during load to reset fileChangedTime
297 // If fpath is not an absolute path, complete it
298 filePath=QDir(fpath).absPath();
299 fileDir=filePath.left (1+filePath.findRev ("/"));
301 // Set short name, too. Search from behind:
302 int i=fileName.findRev("/");
303 if (i>=0) fileName=fileName.remove (0,i+1);
305 // Forget the .vym (or .xml) for name of map
306 mapName=fileName.left(fileName.findRev(".",-1,true) );
310 void VymModel::setFilePath(QString fpath)
312 setFilePath (fpath,fpath);
315 QString VymModel::getFilePath()
320 QString VymModel::getFileName()
325 QString VymModel::getMapName()
330 QString VymModel::getDestPath()
335 ErrorCode VymModel::load (QString fname, const LoadMode &lmode, const FileType &ftype)
337 ErrorCode err=success;
339 parseBaseHandler *handler;
343 case VymMap: handler=new parseVYMHandler; break;
344 case FreemindMap : handler=new parseFreemindHandler; break;
346 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
347 "Unknown FileType in VymModel::load()");
351 bool zipped_org=zipped;
355 selModel->clearSelection();
356 // FIXME-2 VM not needed??? model->setMapEditor(this);
357 // (map state is set later at end of load...)
360 BranchItem *bi=getSelectedBranchItem();
361 if (!bi) return aborted;
362 if (lmode==ImportAdd)
363 saveStateChangingPart(
366 QString("addMapInsert (%1)").arg(fname),
367 QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
369 saveStateChangingPart(
372 QString("addMapReplace(%1)").arg(fname),
373 QString("Add map %1 to %2").arg(fname).arg(getObjectName(bi)));
377 // Create temporary directory for packing
379 QString tmpZipDir=makeTmpDir (ok,"vym-pack");
382 QMessageBox::critical( 0, tr( "Critical Load Error" ),
383 tr("Couldn't create temporary directory before load\n"));
388 err=unzipDir (tmpZipDir,fname);
398 // Look for mapname.xml
399 xmlfile= fname.left(fname.findRev(".",-1,true));
400 xmlfile=xmlfile.section( '/', -1 );
401 QFile mfile( tmpZipDir + "/" + xmlfile + ".xml");
402 if (!mfile.exists() )
404 // mapname.xml does not exist, well,
405 // maybe someone renamed the mapname.vym file...
406 // Try to find any .xml in the toplevel
407 // directory of the .vym file
408 QStringList flist=QDir (tmpZipDir).entryList("*.xml");
409 if (flist.count()==1)
411 // Only one entry, take this one
412 xmlfile=tmpZipDir + "/"+flist.first();
415 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it )
416 *it=tmpZipDir + "/" + *it;
417 // TODO Multiple entries, load all (but only the first one into this ME)
418 //mainWindow->fileLoadFromTmp (flist);
419 //returnCode=1; // Silently forget this attempt to load
420 qWarning ("MainWindow::load (fn) multimap found...");
423 if (flist.isEmpty() )
425 QMessageBox::critical( 0, tr( "Critical Load Error" ),
426 tr("Couldn't find a map (*.xml) in .vym archive.\n"));
429 } //file doesn't exist
431 xmlfile=mfile.name();
434 QFile file( xmlfile);
436 // I am paranoid: file should exist anyway
437 // according to check in mainwindow.
440 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
441 tr(QString("Couldn't open map %1").arg(file.name())));
445 bool blockSaveStateOrg=blockSaveState;
446 blockReposition=true;
448 mapEditor->setViewportUpdateMode (QGraphicsView::NoViewportUpdate);
449 QXmlInputSource source( file);
450 QXmlSimpleReader reader;
451 reader.setContentHandler( handler );
452 reader.setErrorHandler( handler );
453 handler->setModel ( this);
456 // We need to set the tmpDir in order to load files with rel. path
461 tmpdir=fname.left(fname.findRev("/",-1));
462 handler->setTmpDir (tmpdir);
463 handler->setInputFile (file.name());
464 handler->setLoadMode (lmode);
465 bool ok = reader.parse( source );
466 blockReposition=false;
467 blockSaveState=blockSaveStateOrg;
468 mapEditor->setViewportUpdateMode (QGraphicsView::MinimalViewportUpdate);
472 reposition(); // FIXME-2 VM reposition the view instead...
479 autosaveTimer->stop();
482 // Reset timestamp to check for later updates of file
483 fileChangedTime=QFileInfo (destPath).lastModified();
486 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
487 tr( handler->errorProtocol() ) );
489 // Still return "success": the map maybe at least
490 // partially read by the parser
495 removeDir (QDir(tmpZipDir));
497 // Restore original zip state
504 ErrorCode VymModel::save (const SaveMode &savemode)
508 QString safeFilePath;
510 ErrorCode err=success;
514 mapFileName=mapName+".xml";
516 // use name given by user, even if he chooses .doc
517 mapFileName=fileName;
519 // Look, if we should zip the data:
522 QMessageBox mb( vymName,
523 tr("The map %1\ndid not use the compressed "
524 "vym file format.\nWriting it uncompressed will also write images \n"
525 "and flags and thus may overwrite files in the "
526 "given directory\n\nDo you want to write the map").arg(filePath),
527 QMessageBox::Warning,
528 QMessageBox::Yes | QMessageBox::Default,
530 QMessageBox::Cancel | QMessageBox::Escape);
531 mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
532 mb.setButtonText( QMessageBox::No, tr("uncompressed") );
533 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
536 case QMessageBox::Yes:
537 // save compressed (default file format)
540 case QMessageBox::No:
544 case QMessageBox::Cancel:
551 // First backup existing file, we
552 // don't want to add to old zip archives
556 if ( settings.value ("/mapeditor/writeBackupFile").toBool())
558 QString backupFileName(destPath + "~");
559 QFile backupFile(backupFileName);
560 if (backupFile.exists() && !backupFile.remove())
562 QMessageBox::warning(0, tr("Save Error"),
563 tr("%1\ncould not be removed before saving").arg(backupFileName));
565 else if (!f.rename(backupFileName))
567 QMessageBox::warning(0, tr("Save Error"),
568 tr("%1\ncould not be renamed before saving").arg(destPath));
575 // Create temporary directory for packing
577 tmpZipDir=makeTmpDir (ok,"vym-zip");
580 QMessageBox::critical( 0, tr( "Critical Load Error" ),
581 tr("Couldn't create temporary directory before save\n"));
585 safeFilePath=filePath;
586 setFilePath (tmpZipDir+"/"+ mapName+ ".xml", safeFilePath);
589 // Create mapName and fileDir
590 makeSubDirs (fileDir);
593 if (savemode==CompleteMap || selection.isEmpty())
596 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),NULL);
599 autosaveTimer->stop();
604 if (selectionType()==TreeItem::Image)
607 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),getSelectedBranchItem());
608 // TODO take care of multiselections
611 if (!saveStringToDisk(fileDir+mapFileName,saveFile))
614 qWarning ("ME::saveStringToDisk failed!");
620 if (err==success) err=zipDir (tmpZipDir,destPath);
623 removeDir (QDir(tmpZipDir));
625 // Restore original filepath outside of tmp zip dir
626 setFilePath (safeFilePath);
630 fileChangedTime=QFileInfo (destPath).lastModified();
634 void VymModel::addMapReplaceInt(const QString &undoSel, const QString &path)
636 QString pathDir=path.left(path.findRev("/"));
642 // We need to parse saved XML data
643 parseVYMHandler handler;
644 QXmlInputSource source( file);
645 QXmlSimpleReader reader;
646 reader.setContentHandler( &handler );
647 reader.setErrorHandler( &handler );
648 handler.setModel ( this);
649 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
650 if (undoSel.isEmpty())
654 handler.setLoadMode (NewMap);
658 handler.setLoadMode (ImportReplace);
660 blockReposition=true;
661 bool ok = reader.parse( source );
662 blockReposition=false;
665 // This should never ever happen
666 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
667 handler.errorProtocol());
670 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
673 void VymModel::addMapInsertInt (const QString &path, int pos)
675 /* FIXME-2 addMapInsertInt not ported yet
676 BranchObj *sel=getSelectedBranch();
679 QString pathDir=path.left(path.findRev("/"));
685 // We need to parse saved XML data
686 parseVYMHandler handler;
687 QXmlInputSource source( file);
688 QXmlSimpleReader reader;
689 reader.setContentHandler( &handler );
690 reader.setErrorHandler( &handler );
691 handler.setModel (this);
692 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
693 handler.setLoadMode (ImportAdd);
694 blockReposition=true;
695 bool ok = reader.parse( source );
696 blockReposition=false;
699 // This should never ever happen
700 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
701 handler.errorProtocol());
703 if (sel->getDepth()>0)
704 sel->getLastBranch()->linkTo (sel,pos);
706 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
711 FloatImageObj* VymModel::loadFloatImageInt (QString fn)
713 TreeItem *fi=createImage();
716 FloatImageObj *fio= ((FloatImageObj*)fi->getLMO());
724 void VymModel::loadFloatImage () // FIXME-2
727 BranchObj *bo=getSelectedBranch();
731 Q3FileDialog *fd=new Q3FileDialog( NULL);
732 fd->setMode (Q3FileDialog::ExistingFiles);
733 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
734 ImagePreview *p =new ImagePreview (fd);
735 fd->setContentsPreviewEnabled( TRUE );
736 fd->setContentsPreview( p, p );
737 fd->setPreviewMode( Q3FileDialog::Contents );
738 fd->setCaption(vymName+" - " +tr("Load image"));
739 fd->setDir (lastImageDir);
742 if ( fd->exec() == QDialog::Accepted )
744 // TODO loadFIO in QT4 use: lastImageDir=fd->directory();
745 lastImageDir=QDir (fd->dirPath());
748 for (int j=0; j<fd->selectedFiles().count(); j++)
750 s=fd->selectedFiles().at(j);
751 fio=loadFloatImageInt (s);
754 (LinkableMapObj*)fio,
757 QString ("loadImage (%1)").arg(s ),
758 QString("Add image %1 to %2").arg(s).arg(getObjectName(bo))
761 // TODO loadFIO error handling
762 qWarning ("Failed to load "+s);
771 void VymModel::saveFloatImageInt (FloatImageObj *fio, const QString &type, const QString &fn)
776 void VymModel::saveFloatImage ()
778 FloatImageObj *fio=selection.getFloatImage();
781 QFileDialog *fd=new QFileDialog( NULL);
782 fd->setFilters (imageIO.getFilters());
783 fd->setCaption(vymName+" - " +tr("Save image"));
784 fd->setFileMode( QFileDialog::AnyFile );
785 fd->setDirectory (lastImageDir);
786 // fd->setSelection (fio->getOriginalFilename());
790 if ( fd->exec() == QDialog::Accepted && fd->selectedFiles().count()==1)
792 fn=fd->selectedFiles().at(0);
793 if (QFile (fn).exists() )
795 QMessageBox mb( vymName,
796 tr("The file %1 exists already.\n"
797 "Do you want to overwrite it?").arg(fn),
798 QMessageBox::Warning,
799 QMessageBox::Yes | QMessageBox::Default,
800 QMessageBox::Cancel | QMessageBox::Escape,
801 QMessageBox::NoButton );
803 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
804 mb.setButtonText( QMessageBox::No, tr("Cancel"));
807 case QMessageBox::Yes:
810 case QMessageBox::Cancel:
817 saveFloatImageInt (fio,fd->selectedFilter(),fn );
824 void VymModel::importDirInt(BranchObj *dst, QDir d)
826 /* FIXME-2 importDirInt not ported yet
827 BranchObj *bo=getSelectedBranch();
830 // Traverse directories
831 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
832 QFileInfoList list = d.entryInfoList();
835 for (int i = 0; i < list.size(); ++i)
838 if (fi.fileName() != "." && fi.fileName() != ".." )
841 bo=dst->getLastBranch();
842 BranchItem *bi=(BranchItem*)(bo->getTreeItem());
843 bi->setHeading (fi.fileName() ); // FIXME-3 check this
844 bo->setColor (QColor("blue"));
846 if ( !d.cd(fi.fileName()) )
847 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi.fileName()));
850 // Recursively add subdirs
857 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
858 list = d.entryInfoList();
860 for (int i = 0; i < list.size(); ++i)
864 bo=dst->getLastBranch();
865 bo->setHeading (fi.fileName() );
866 bo->setColor (QColor("black"));
867 if (fi.fileName().right(4) == ".vym" )
868 bo->setVymLink (fi.filePath());
874 void VymModel::importDirInt (const QString &s) // FIXME-2
877 BranchObj *bo=getSelectedBranch();
880 saveStateChangingPart (bo,bo,QString ("importDir (\"%1\")").arg(s),QString("Import directory structure from %1").arg(s));
888 void VymModel::importDir() //FIXME-2
891 BranchObj *bo=getSelectedBranch();
895 filters <<"VYM map (*.vym)";
896 QFileDialog *fd=new QFileDialog( NULL,vymName+ " - " +tr("Choose directory structure to import"));
897 fd->setMode (QFileDialog::DirectoryOnly);
898 fd->setFilters (filters);
899 fd->setCaption(vymName+" - " +tr("Choose directory structure to import"));
903 if ( fd->exec() == QDialog::Accepted )
905 importDirInt (fd->selectedFile() );
907 //FIXME-3 VM needed? scene()->update();
914 void VymModel::autosave()
919 cout << "VymModel::autosave rejected due to missing filePath\n";
922 QDateTime now=QDateTime().currentDateTime();
924 // Disable autosave, while we have gone back in history
925 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
926 if (redosAvail>0) return;
928 // Also disable autosave for new map without filename
929 if (filePath.isEmpty()) return;
932 if (mapUnsaved &&mapChanged && settings.value ("/mainwindow/autosave/use",true).toBool() )
934 if (QFileInfo(filePath).lastModified()<=fileChangedTime)
935 mainWindow->fileSave (this);
938 cout <<" ME::autosave rejected, file on disk is newer than last save.\n";
943 void VymModel::fileChanged()
945 // Check if file on disk has changed meanwhile
946 if (!filePath.isEmpty())
948 QDateTime tmod=QFileInfo (filePath).lastModified();
949 if (tmod>fileChangedTime)
951 // FIXME-2 VM switch to current mapeditor and finish lineedits...
952 QMessageBox mb( vymName,
953 tr("The file of the map on disk has changed:\n\n"
954 " %1\n\nDo you want to reload that map with the new file?").arg(filePath),
955 QMessageBox::Question,
957 QMessageBox::Cancel | QMessageBox::Default,
958 QMessageBox::NoButton );
960 mb.setButtonText( QMessageBox::Yes, tr("Reload"));
961 mb.setButtonText( QMessageBox::No, tr("Ignore"));
964 case QMessageBox::Yes:
966 load (filePath,NewMap,fileType);
967 case QMessageBox::Cancel:
968 fileChangedTime=tmod; // allow autosave to overwrite newer file!
974 bool VymModel::isDefault()
979 void VymModel::makeDefault()
985 bool VymModel::hasChanged()
990 void VymModel::setChanged()
993 autosaveTimer->start(settings.value("/mainwindow/autosave/ms/",300000).toInt());
997 latestAddedItem=NULL;
1001 QString VymModel::getObjectName (const LinkableMapObj *lmo) // FIXME-3 should be obsolete
1004 if (!lmo) return QString("Error: NULL has no name!");
1006 if ((typeid(*lmo) == typeid(BranchObj) ||
1007 typeid(*lmo) == typeid(MapCenterObj)))
1010 s=lmo->getTreeItem()->getHeading();
1011 if (s=="") s="unnamed";
1012 return QString("branch (%1)").arg(s);
1014 if ((typeid(*lmo) == typeid(FloatImageObj) ))
1015 return QString ("floatimage [%1]").arg(((FloatImageObj*)lmo)->getOriginalFilename());
1016 return QString("Unknown type has no name!");
1020 QString VymModel::getObjectName (const TreeItem *ti)
1023 if (!ti) return QString("Error: NULL has no name!");
1025 if (ti->isBranchLikeType() )
1028 if (s=="") s="unnamed";
1029 return QString("branch (%1)").arg(s);
1031 /* FIXME-2 move floatimage to TreeModel first
1032 if (type==TreeItem::Image)
1033 return QString ("floatimage [%1]").arg(((FloatImageObj*)lmo)->getOriginalFilename());
1035 return QString("Unknown type has no name!");
1038 void VymModel::redo()
1040 // Can we undo at all?
1041 if (redosAvail<1) return;
1043 bool blockSaveStateOrg=blockSaveState;
1044 blockSaveState=true;
1048 if (undosAvail<stepsTotal) undosAvail++;
1050 if (curStep>stepsTotal) curStep=1;
1051 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
1052 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
1053 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
1054 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
1055 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
1056 QString version=undoSet.readEntry ("/history/version");
1058 /* TODO Maybe check for version, if we save the history
1059 if (!checkVersion(version))
1060 QMessageBox::warning(0,tr("Warning"),
1061 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
1064 // Find out current undo directory
1065 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
1069 cout << "VymModel::redo() begin\n";
1070 cout << " undosAvail="<<undosAvail<<endl;
1071 cout << " redosAvail="<<redosAvail<<endl;
1072 cout << " curStep="<<curStep<<endl;
1073 cout << " ---------------------------"<<endl;
1074 cout << " comment="<<comment.toStdString()<<endl;
1075 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1076 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1077 cout << " redoCom="<<redoCommand.toStdString()<<endl;
1078 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1079 cout << " ---------------------------"<<endl<<endl;
1082 // select object before redo
1083 if (!redoSelection.isEmpty())
1084 select (redoSelection);
1087 parseAtom (redoCommand);
1090 blockSaveState=blockSaveStateOrg;
1092 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1093 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1094 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1095 undoSet.writeSettings(histPath);
1097 mainWindow->updateHistory (undoSet);
1100 /* TODO remove testing
1101 cout << "ME::redo() end\n";
1102 cout << " undosAvail="<<undosAvail<<endl;
1103 cout << " redosAvail="<<redosAvail<<endl;
1104 cout << " curStep="<<curStep<<endl;
1105 cout << " ---------------------------"<<endl<<endl;
1111 bool VymModel::isRedoAvailable()
1113 if (undoSet.readNumEntry("/history/redosAvail",0)>0)
1119 void VymModel::undo()
1121 // Can we undo at all?
1122 if (undosAvail<1) return;
1124 mainWindow->statusMessage (tr("Autosave disabled during undo."));
1126 bool blockSaveStateOrg=blockSaveState;
1127 blockSaveState=true;
1129 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
1130 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
1131 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
1132 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
1133 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
1134 QString version=undoSet.readEntry ("/history/version");
1136 /* TODO Maybe check for version, if we save the history
1137 if (!checkVersion(version))
1138 QMessageBox::warning(0,tr("Warning"),
1139 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
1142 // Find out current undo directory
1143 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
1145 // select object before undo
1146 if (!undoSelection.isEmpty())
1147 select (undoSelection);
1151 cout << "VymModel::undo() begin\n";
1152 cout << " undosAvail="<<undosAvail<<endl;
1153 cout << " redosAvail="<<redosAvail<<endl;
1154 cout << " curStep="<<curStep<<endl;
1155 cout << " ---------------------------"<<endl;
1156 cout << " comment="<<comment.toStdString()<<endl;
1157 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1158 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1159 cout << " redoCom="<<redoCommand.toStdString()<<endl;
1160 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1161 cout << " ---------------------------"<<endl<<endl;
1163 parseAtom (undoCommand);
1168 if (curStep<1) curStep=stepsTotal;
1172 blockSaveState=blockSaveStateOrg;
1173 /* TODO remove testing
1174 cout << "VymModel::undo() end\n";
1175 cout << " undosAvail="<<undosAvail<<endl;
1176 cout << " redosAvail="<<redosAvail<<endl;
1177 cout << " curStep="<<curStep<<endl;
1178 cout << " ---------------------------"<<endl<<endl;
1181 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1182 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1183 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1184 undoSet.writeSettings(histPath);
1186 mainWindow->updateHistory (undoSet);
1189 emitShowSelection();
1192 bool VymModel::isUndoAvailable()
1194 if (undoSet.readNumEntry("/history/undosAvail",0)>0)
1200 void VymModel::gotoHistoryStep (int i)
1202 // Restore variables
1203 int undosAvail=undoSet.readNumEntry (QString("/history/undosAvail"));
1204 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
1206 if (i<0) i=undosAvail+redosAvail;
1208 // Clicking above current step makes us undo things
1211 for (int j=0; j<undosAvail-i; j++) undo();
1214 // Clicking below current step makes us redo things
1216 for (int j=undosAvail; j<i; j++)
1218 if (debug) cout << "VymModel::gotoHistoryStep redo "<<j<<"/"<<undosAvail<<" i="<<i<<endl;
1222 // And ignore clicking the current row ;-)
1226 QString VymModel::getHistoryPath()
1228 QString histName(QString("history-%1").arg(curStep));
1229 return (tmpMapDir+"/"+histName);
1232 void VymModel::saveState(const SaveMode &savemode, const QString &undoSelection, const QString &undoCom, const QString &redoSelection, const QString &redoCom, const QString &comment, TreeItem *saveSel)
1234 sendData(redoCom); //FIXME-3 testing
1239 if (blockSaveState) return;
1241 if (debug) cout << "VM::saveState() for "<<qPrintable (mapName)<<endl;
1243 // Find out current undo directory
1244 if (undosAvail<stepsTotal) undosAvail++;
1246 if (curStep>stepsTotal) curStep=1;
1248 QString backupXML="";
1249 QString histDir=getHistoryPath();
1250 QString bakMapPath=histDir+"/map.xml";
1252 // Create histDir if not available
1255 makeSubDirs (histDir);
1257 // Save depending on how much needs to be saved
1259 backupXML=saveToDir (histDir,mapName+"-",false, QPointF (),saveSel);
1261 QString undoCommand="";
1262 if (savemode==UndoCommand)
1264 undoCommand=undoCom;
1266 else if (savemode==PartOfMap )
1268 undoCommand=undoCom;
1269 undoCommand.replace ("PATH",bakMapPath);
1273 if (!backupXML.isEmpty())
1274 // Write XML Data to disk
1275 saveStringToDisk (bakMapPath,backupXML);
1277 // We would have to save all actions in a tree, to keep track of
1278 // possible redos after a action. Possible, but we are too lazy: forget about redos.
1281 // Write the current state to disk
1282 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
1283 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
1284 undoSet.setEntry ("/history/curStep",QString::number(curStep));
1285 undoSet.setEntry (QString("/history/step-%1/undoCommand").arg(curStep),undoCommand);
1286 undoSet.setEntry (QString("/history/step-%1/undoSelection").arg(curStep),undoSelection);
1287 undoSet.setEntry (QString("/history/step-%1/redoCommand").arg(curStep),redoCom);
1288 undoSet.setEntry (QString("/history/step-%1/redoSelection").arg(curStep),redoSelection);
1289 undoSet.setEntry (QString("/history/step-%1/comment").arg(curStep),comment);
1290 undoSet.setEntry (QString("/history/version"),vymVersion);
1291 undoSet.writeSettings(histPath);
1295 // TODO remove after testing
1296 //cout << " into="<< histPath.toStdString()<<endl;
1297 cout << " stepsTotal="<<stepsTotal<<
1298 ", undosAvail="<<undosAvail<<
1299 ", redosAvail="<<redosAvail<<
1300 ", curStep="<<curStep<<endl;
1301 cout << " ---------------------------"<<endl;
1302 cout << " comment="<<comment.toStdString()<<endl;
1303 cout << " undoCom="<<undoCommand.toStdString()<<endl;
1304 cout << " undoSel="<<undoSelection.toStdString()<<endl;
1305 cout << " redoCom="<<redoCom.toStdString()<<endl;
1306 cout << " redoSel="<<redoSelection.toStdString()<<endl;
1307 if (saveSel) cout << " saveSel="<<qPrintable (getSelectString(saveSel))<<endl;
1308 cout << " ---------------------------"<<endl;
1311 mainWindow->updateHistory (undoSet);
1317 void VymModel::saveStateChangingPart(TreeItem *undoSel, TreeItem* redoSel, const QString &rc, const QString &comment)
1319 // save the selected part of the map, Undo will replace part of map
1320 QString undoSelection="";
1322 undoSelection=getSelectString(undoSel);
1324 qWarning ("VymModel::saveStateChangingPart no undoSel given!");
1325 QString redoSelection="";
1327 redoSelection=getSelectString(undoSel);
1329 qWarning ("VymModel::saveStateChangingPart no redoSel given!");
1332 saveState (PartOfMap,
1333 undoSelection, "addMapReplace (\"PATH\")",
1339 void VymModel::saveStateRemovingPart(TreeItem* redoSel, const QString &comment)
1343 qWarning ("VymModel::saveStateRemovingPart no redoSel given!");
1346 QString undoSelection=getSelectString (redoSel->parent() );
1347 QString redoSelection=getSelectString(redoSel);
1348 if (redoSel->getType()==TreeItem::Branch)
1350 // save the selected branch of the map, Undo will insert part of map
1351 saveState (PartOfMap,
1352 undoSelection, QString("addMapInsert (\"PATH\",%1)").arg(redoSel->num()),
1353 redoSelection, "delete ()",
1360 void VymModel::saveState(TreeItem *undoSel, const QString &uc, TreeItem *redoSel, const QString &rc, const QString &comment)
1362 // "Normal" savestate: save commands, selections and comment
1363 // so just save commands for undo and redo
1364 // and use current selection
1366 QString redoSelection="";
1367 if (redoSel) redoSelection=getSelectString(redoSel);
1368 QString undoSelection="";
1369 if (undoSel) undoSelection=getSelectString(undoSel);
1371 saveState (UndoCommand,
1378 void VymModel::saveState(const QString &undoSel, const QString &uc, const QString &redoSel, const QString &rc, const QString &comment)
1380 // "Normal" savestate: save commands, selections and comment
1381 // so just save commands for undo and redo
1382 // and use current selection
1383 saveState (UndoCommand,
1390 void VymModel::saveState(const QString &uc, const QString &rc, const QString &comment)
1392 // "Normal" savestate applied to model (no selection needed):
1393 // save commands and comment
1394 saveState (UndoCommand,
1402 QGraphicsScene* VymModel::getScene ()
1407 TreeItem* VymModel::findBySelectString(QString s)
1409 if (s.isEmpty() ) return NULL;
1411 // Old maps don't have multiple mapcenters and don't save full path
1412 if (s.left(2) !="mc")
1415 QStringList parts=s.split (",");
1418 TreeItem *ti=rootItem;
1420 while (!parts.isEmpty() )
1422 typ=parts.first().left(2);
1423 n=parts.first().right(parts.first().length() - 3).toInt();
1424 parts.removeFirst();
1425 if (typ=="mc" || typ=="bo")
1426 ti=ti->getBranchNum (n);
1430 ti=ti->getImageNum (n);
1436 TreeItem* VymModel::findID (const QString &s)
1439 for (int i=0; i<rootItem->branchCount(); i++)
1441 ti=rootItem->getBranchNum(i)->findID (s);
1447 //////////////////////////////////////////////
1449 //////////////////////////////////////////////
1450 void VymModel::setVersion (const QString &s)
1455 void VymModel::setAuthor (const QString &s)
1458 QString ("setMapAuthor (\"%1\")").arg(author),
1459 QString ("setMapAuthor (\"%1\")").arg(s),
1460 QString ("Set author of map to \"%1\"").arg(s)
1465 QString VymModel::getAuthor()
1470 void VymModel::setComment (const QString &s)
1473 QString ("setMapComment (\"%1\")").arg(comment),
1474 QString ("setMapComment (\"%1\")").arg(s),
1475 QString ("Set comment of map")
1480 QString VymModel::getComment ()
1485 QString VymModel::getDate ()
1487 return QDate::currentDate().toString ("yyyy-MM-dd");
1490 int VymModel::branchCount() // FIXME-2 Optimize this: use internal counter instead of going through whole map each time...
1493 BranchItem *cur=NULL;
1494 BranchItem *prev=NULL;
1505 void VymModel::setHeading(const QString &s)
1507 BranchItem *selbi=getSelectedBranchItem();
1512 "setHeading (\""+selbi->getHeading()+"\")",
1514 "setHeading (\""+s+"\")",
1515 QString("Set heading of %1 to \"%2\"").arg(getObjectName(selbi)).arg(s) );
1516 selbi->setHeading(s );
1517 QModelIndex ix2=index (selbi);
1518 emit (dataChanged ( ix2,ix2));
1519 /* FIXME-3 testing only
1523 // selection.update(); //FIXME-4
1524 emitShowSelection();
1528 BranchItem* VymModel::findText (QString s, bool cs)
1531 QTextDocument::FindFlags flags=0;
1532 if (cs) flags=QTextDocument::FindCaseSensitively;
1535 { // Nothing found or new find process
1537 // nothing found, start again
1541 next (findCurrent,findPrevious,d);
1543 bool searching=true;
1544 bool foundNote=false;
1545 while (searching && !EOFind)
1549 // Searching in Note
1550 if (findCurrent->getNote().contains(s,cs))
1552 select (findCurrent);
1554 if (getSelectedBranch()!=itFind)
1557 emitShowSelection();
1560 if (textEditor->findText(s,flags))
1566 // Searching in Heading
1567 if (searching && findCurrent->getHeading().contains (s,cs) )
1569 select(findCurrent);
1575 if (!next(findCurrent,findPrevious,d) )
1578 //cout <<"still searching... "<<qPrintable( itFind->getHeading())<<endl;
1581 return getSelectedBranchItem();
1586 void VymModel::findReset()
1587 { // Necessary if text to find changes during a find process
1593 void VymModel::setScene (QGraphicsScene *s)
1595 mapScene=s; // FIXME-2 VM should not be necessary anymore, move all occurences to MapEditor
1596 //init(); // Here we have a mapScene set,
1597 // which is (still) needed to create MapCenters
1600 void VymModel::setURL(const QString &url) //FIXME-2
1603 BranchObj *bo=getSelectedBranch();
1606 QString oldurl=bo->getURL();
1610 QString ("setURL (\"%1\")").arg(oldurl),
1612 QString ("setURL (\"%1\")").arg(url),
1613 QString ("set URL of %1 to %2").arg(getObjectName(bo)).arg(url)
1618 emitShowSelection();
1623 QString VymModel::getURL() //FIXME-2
1626 BranchObj *bo=getSelectedBranch();
1628 return bo->getURL();
1634 QStringList VymModel::getURLs() // FIXME-1 first, next moved to vymmodel
1636 return QStringList();
1639 BranchObj *bo=getSelectedBranch();
1645 if (!bo->getURL().isEmpty()) urls.append( bo->getURL());
1653 void VymModel::linkFloatImageTo(const QString &dstString) // FIXME-2
1655 FloatImageObj *fio=selection.getFloatImage();
1658 TreeItem *dst=findBySelectString (dstString);
1659 if (dst && dst->isBranchLikeType() )
1661 TreeItem *dstPar=dst->parent();
1662 QString parString=getSelectString(dstPar);
1663 QString fioPreSelectString=getSelectString(fio);
1664 QString fioPreParentSelectString=getSelectString (fio->getParObj());
1665 // FIXME-2 ((BranchObj*)dst)->addFloatImage (fio);
1667 // ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
1668 fio=((BranchObj*)dst)->getLastFloatImage();
1673 getSelectString(fio),
1674 QString("linkTo (\"%1\")").arg(fioPreParentSelectString),
1676 QString ("linkTo (\"%1\")").arg(dstString),
1677 QString ("Link floatimage to %1").arg(getObjectName(dst)));
1683 void VymModel::setFrameType(const FrameObj::FrameType &t) //FIXME-2
1686 BranchObj *bo=getSelectedBranch();
1689 QString s=bo->getFrameTypeName();
1690 bo->setFrameType (t);
1691 saveState (bo, QString("setFrameType (\"%1\")").arg(s),
1692 bo, QString ("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),QString ("set type of frame to %1").arg(s));
1699 void VymModel::setFrameType(const QString &s) //FIXME-2
1702 BranchObj *bo=getSelectedBranch();
1705 saveState (bo, QString("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),
1706 bo, QString ("setFrameType (\"%1\")").arg(s),QString ("set type of frame to %1").arg(s));
1707 bo->setFrameType (s);
1714 void VymModel::setFramePenColor(const QColor &c) //FIXME-2
1717 BranchObj *bo=getSelectedBranch();
1720 saveState (bo, QString("setFramePenColor (\"%1\")").arg(bo->getFramePenColor().name() ),
1721 bo, QString ("setFramePenColor (\"%1\")").arg(c.name() ),QString ("set pen color of frame to %1").arg(c.name() ));
1722 bo->setFramePenColor (c);
1727 void VymModel::setFrameBrushColor(const QColor &c) //FIXME-2
1730 BranchObj *bo=getSelectedBranch();
1733 saveState (bo, QString("setFrameBrushColor (\"%1\")").arg(bo->getFrameBrushColor().name() ),
1734 bo, QString ("setFrameBrushColor (\"%1\")").arg(c.name() ),QString ("set brush color of frame to %1").arg(c.name() ));
1735 bo->setFrameBrushColor (c);
1739 void VymModel::setFramePadding (const int &i) //FIXME-2
1742 BranchObj *bo=getSelectedBranch();
1745 saveState (bo, QString("setFramePadding (\"%1\")").arg(bo->getFramePadding() ),
1746 bo, QString ("setFramePadding (\"%1\")").arg(i),QString ("set brush color of frame to %1").arg(i));
1747 bo->setFramePadding (i);
1754 void VymModel::setFrameBorderWidth(const int &i) //FIXME-2
1757 BranchObj *bo=getSelectedBranch();
1760 saveState (bo, QString("setFrameBorderWidth (\"%1\")").arg(bo->getFrameBorderWidth() ),
1761 bo, QString ("setFrameBorderWidth (\"%1\")").arg(i),QString ("set border width of frame to %1").arg(i));
1762 bo->setFrameBorderWidth (i);
1769 void VymModel::setIncludeImagesVer(bool b) //FIXME-2
1772 BranchObj *bo=getSelectedBranch();
1775 QString u= b ? "false" : "true";
1776 QString r=!b ? "false" : "true";
1780 QString("setIncludeImagesVertically (%1)").arg(u),
1782 QString("setIncludeImagesVertically (%1)").arg(r),
1783 QString("Include images vertically in %1").arg(getObjectName(bo))
1785 bo->setIncludeImagesVer(b);
1790 void VymModel::setIncludeImagesHor(bool b) //FIXME-2
1793 BranchObj *bo=getSelectedBranch();
1796 QString u= b ? "false" : "true";
1797 QString r=!b ? "false" : "true";
1801 QString("setIncludeImagesHorizontally (%1)").arg(u),
1803 QString("setIncludeImagesHorizontally (%1)").arg(r),
1804 QString("Include images horizontally in %1").arg(getObjectName(bo))
1806 bo->setIncludeImagesHor(b);
1812 void VymModel::setHideLinkUnselected (bool b)//FIXME-2
1815 LinkableMapObj *sel=getSelectedLMO();
1817 (selectionType() == TreeItem::Branch ||
1818 selectionType() == TreeItem::MapCenter ||
1819 selectionType() == TreeItem::Image ))
1821 QString u= b ? "false" : "true";
1822 QString r=!b ? "false" : "true";
1826 QString("setHideLinkUnselected (%1)").arg(u),
1828 QString("setHideLinkUnselected (%1)").arg(r),
1829 QString("Hide link of %1 if unselected").arg(getObjectName(sel))
1831 sel->setHideLinkUnselected(b);
1836 void VymModel::setHideExport(bool b)
1838 BranchItem *bi=getSelectedBranchItem();
1841 bi->setHideInExport (b);
1842 QString u= b ? "false" : "true";
1843 QString r=!b ? "false" : "true";
1847 QString ("setHideExport (%1)").arg(u),
1849 QString ("setHideExport (%1)").arg(r),
1850 QString ("Set HideExport flag of %1 to %2").arg(getObjectName(bi)).arg (r)
1854 // selection.update();
1855 // FIXME-3 VM needed? scene()->update();
1859 void VymModel::toggleHideExport()
1861 BranchItem *selbi=getSelectedBranchItem();
1863 setHideExport ( !selbi->hideInExport() );
1867 void VymModel::copy() //FIXME-2
1870 LinkableMapObj *sel=getSelectedLMO();
1872 (selectionType() == TreeItem::Branch ||
1873 selectionType() == TreeItem::MapCenter ||
1874 selectionType() == TreeItem::Image ))
1876 if (redosAvail == 0)
1879 QString s=getSelectString(sel);
1880 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy selection to clipboard",sel );
1881 curClipboard=curStep;
1884 // Copy also to global clipboard, because we are at last step in history
1885 QString bakMapName(QString("history-%1").arg(curStep));
1886 QString bakMapDir(tmpMapDir +"/"+bakMapName);
1887 copyDir (bakMapDir,clipboardDir );
1889 clipboardEmpty=false;
1896 void VymModel::pasteNoSave(const int &n) //FIXME-2
1899 bool old=blockSaveState;
1900 blockSaveState=true;
1901 bool zippedOrg=zipped;
1902 if (redosAvail > 0 || n!=0)
1904 // Use the "historical" buffer
1905 QString bakMapName(QString("history-%1").arg(n));
1906 QString bakMapDir(tmpMapDir +"/"+bakMapName);
1907 load (bakMapDir+"/"+clipboardFile,ImportAdd, VymMap);
1909 // Use the global buffer
1910 load (clipboardDir+"/"+clipboardFile,ImportAdd, VymMap);
1916 void VymModel::paste() //FIXME-2
1919 BranchObj *sel=getSelectedBranch();
1922 saveStateChangingPart(
1925 QString ("paste (%1)").arg(curClipboard),
1926 QString("Paste to %1").arg( getObjectName(sel))
1934 void VymModel::cut() //FIXME-2
1937 LinkableMapObj *sel=getSelectedLMO();
1938 if ( sel && (selectionType() == TreeItem::Branch ||
1939 selectionType()==TreeItem::MapCenter ||
1940 selectionType()==TreeItem::Image))
1943 /* No savestate! savestate is called in cutNoSave
1944 saveStateChangingPart(
1948 QString("Cut %1").arg(getObjectName(sel ))
1958 void VymModel::moveBranchUp() //FIXME-2
1961 BranchObj* bo=getSelectedBranch();
1965 if (!bo->canMoveBranchUp()) return;
1966 par=(BranchObj*)(bo->getParObj());
1967 BranchObj *obo=par->moveBranchUp (bo); // bo will be the one below selection
1968 saveState (getSelectString(bo),"moveBranchDown ()",getSelectString(obo),"moveBranchUp ()",QString("Move up %1").arg(getObjectName(bo)));
1970 //FIXME-3 VM needed? scene()->update();
1972 emitShowSelection();
1977 void VymModel::moveBranchDown() //FIXME-2
1980 BranchObj* bo=getSelectedBranch();
1984 if (!bo->canMoveBranchDown()) return;
1985 par=(BranchObj*)(bo->getParObj());
1986 BranchObj *obo=par->moveBranchDown(bo); // bo will be the one above selection
1987 saveState(getSelectString(bo),"moveBranchUp ()",getSelectString(obo),"moveBranchDown ()",QString("Move down %1").arg(getObjectName(bo)));
1989 //FIXME-3 VM needed? scene()->update();
1991 emitShowSelection();
1996 void VymModel::sortChildren() // FIXME-2 not implemented yet
1999 BranchObj* bo=getSelectedBranch();
2002 if(treeItem->branchCount()>1)
2004 saveStateChangingPart(bo,bo, "sortChildren ()",QString("Sort children of %1").arg(getObjectName(bo)));
2007 emitShowSelection();
2013 MapCenterItem* VymModel::createMapCenter()
2015 MapCenterItem *mci=addMapCenter (QPointF (0,0) );
2020 BranchItem* VymModel::createBranch()
2022 return addNewBranchInt (-2);
2025 TreeItem* VymModel::createImage() //FIXME-2
2028 BranchObj *bo=getSelectedBranch();
2031 FloatImageObj *newfio=bo->addFloatImage(); // FIXME-1 VM Old model, merge with below
2034 QList<QVariant> cData;
2035 cData << "VM:createImage" << "undef"<<"undef";
2036 TreeItem *parti=bo->getTreeItem();
2037 TreeItem *ti=new TreeItem (cData,parti);
2038 ti->setLMO (newfio);
2039 ti->setType (TreeItem::Image);
2040 parti->appendChild (ti);
2044 newfio->setTreeItem (ti);
2045 select (newfio); // FIXME-2 VM really needed here?
2053 MapCenterItem* VymModel::addMapCenter ()
2055 MapCenterItem *mci=addMapCenter (contextPos);
2056 //FIXME-3 selection.select (mco);
2058 emitShowSelection();
2063 QString ("addMapCenter (%1,%2)").arg (contextPos.x()).arg(contextPos.y()),
2064 QString ("Adding MapCenter to (%1,%2)").arg (contextPos.x()).arg(contextPos.y())
2069 MapCenterItem* VymModel::addMapCenter(QPointF absPos)
2073 QModelIndex parix=index(rootItem);
2075 int n=rootItem->branchCount();
2077 emit (layoutAboutToBeChanged() );
2078 beginInsertRows (parix,n,n+1);
2080 QList<QVariant> cData;
2081 cData << "VM:addMapCenter" << "undef"<<"undef";
2082 MapCenterItem *mci=new MapCenterItem (cData);
2083 mci->setHeading (QApplication::translate("Heading of mapcenter in new map", "New map"));
2084 rootItem->appendChild (mci);
2087 emit (newChildObject (parix));
2088 emit (layoutChanged() );
2091 BranchObj *newbo=mci->createMapObj(mapScene);
2095 if (!mci->getHeading().isEmpty() )
2097 newbo->updateHeading();
2098 newbo->setColor (headingColor);
2102 //newbo->updateLink(); //FIXME-3
2105 //mapCenter->setMapEditor(mapEditor); //FIXME-3 VM needed to get defLinkStyle, mapLinkColorHint ... for later added objects
2106 mapCenter->setTreeItem (mci); // TreeItem needs to exist before setVisibility
2107 mci->setLMO (mapCenter);
2108 mapCenter->updateHeading();
2109 mapCenter->move (absPos);
2110 mapCenter->setVisibility (true);
2111 //mapCenter->setHeading (QApplication::translate("Heading of mapcenter in new map", "New map"));
2116 BranchItem* VymModel::addNewBranchInt(int num)
2118 // Depending on pos:
2119 // -3 insert in children of parent above selection
2120 // -2 add branch to selection
2121 // -1 insert in children of parent below selection
2122 // 0..n insert in children of parent at pos
2123 BranchItem *selbi=getSelectedBranchItem();
2127 QList<QVariant> cData;
2128 cData << "new" << "undef"<<"undef";
2133 BranchItem *newbi=new BranchItem (cData);
2134 newbi->setHeading (QApplication::translate("Heading of new branch in map", "new"));
2136 emit (layoutAboutToBeChanged() );
2142 n=parbi->childCount();
2143 beginInsertRows (parix,n,n+1);
2144 parbi->appendChild (newbi);
2148 // insert below selection
2149 parbi=(BranchItem*)selbi->parent();
2151 n=selbi->childNumber()+1;
2152 beginInsertRows (parix,n,n);
2153 parbi->insertBranch(n,newbi);
2157 // insert above selection
2158 parbi=(BranchItem*)selbi->parent();
2160 n=selbi->childNumber();
2161 beginInsertRows (parix,n,n);
2162 parbi->insertBranch(n,newbi);
2165 emit (newChildObject (parix));
2166 emit (layoutChanged() );
2168 // save scroll state. If scrolled, automatically select
2169 // new branch in order to tmp unscroll parent...
2170 newbi->createMapObj(mapScene);
2177 BranchItem* VymModel::addNewBranch(int pos)
2179 // Different meaning than num in addNewBranchInt!
2183 BranchItem *newbi=NULL;
2184 BranchItem *selbi=getSelectedBranchItem();
2188 // FIXME-3 VM do we still need this in model? setCursor (Qt::ArrowCursor);
2190 newbi=addNewBranchInt (pos-2);
2198 QString ("addBranch (%1)").arg(pos),
2199 QString ("Add new branch to %1").arg(getObjectName(selbi)));
2202 // selection.update(); FIXME-3
2203 latestAddedItem=newbi;
2204 // In Network mode, the client needs to know where the new branch is,
2205 // so we have to pass on this information via saveState.
2206 // TODO: Get rid of this positioning workaround
2207 /* FIXME-4 network problem: QString ps=qpointfToString (newbo->getAbsPos());
2208 sendData ("selectLatestAdded ()");
2209 sendData (QString("move %1").arg(ps));
2218 BranchItem* VymModel::addNewBranchBefore() //FIXME-2
2221 BranchObj *newbo=NULL;
2222 BranchObj *bo = getSelectedBranch();
2223 if (bo && selectionType()==TreeItem::Branch)
2224 // We accept no MapCenterObj here, so we _have_ a parent
2226 QPointF p=bo->getRelPos();
2229 BranchObj *parbo=(BranchObj*)(bo->getParObj());
2231 // add below selection
2232 newbo=parbo->insertBranch(bo->getTreeItem()->num()+1); //FIXME-1 VM still missing
2236 newbo->move2RelPos (p);
2238 // Move selection to new branch
2239 bo->linkTo (newbo,-1);
2241 saveState (newbo, "deleteKeepChildren ()", newbo, "addBranchBefore ()",
2242 QString ("Add branch before %1").arg(getObjectName(bo)));
2245 // selection.update(); FIXME-3
2248 latestSelectionString=selection.getSelectString();
2254 BranchItem* VymModel::relinkBranch (BranchItem *branch, BranchItem *dst, int pos)
2258 emit (layoutAboutToBeChanged() );
2259 BranchItem *branchpi=(BranchItem*)branch->parent();
2260 // Remove at current position
2261 int n=branch->childNum();
2262 beginRemoveRows (index(branchpi),n,n);
2263 branchpi->removeChild (n);
2266 if (pos<0 ||pos>dst->branchCount() ) pos=dst->branchCount();
2268 // Append as last branch to dst
2269 if (dst->branchCount()==0)
2272 n=dst->getFirstBranch()->childNumber();
2273 beginInsertRows (index(dst),n+pos,n+pos);
2274 dst->insertBranch (pos,branch);
2277 branch->getLMO()->setParObj(dst->getLMO()); //FIXME-5 update parObj in View
2278 emit (layoutChanged() );
2283 void VymModel::deleteSelection()
2285 BranchItem *selbi=getSelectedBranchItem();
2289 TreeItem *pi=selbi->parent();
2290 QModelIndex parentIndex=index(pi);
2292 if (selbi->isBranchLikeType() )
2295 saveStateRemovingPart (selbi, QString ("Delete %1").arg(getObjectName(selbi)));
2297 emit (layoutAboutToBeChanged() );
2299 int n=selbi->childNum();
2300 beginRemoveRows (parentIndex,n,n);
2301 removeRows (n,1,parentIndex);
2304 emitShowSelection();
2307 emit (layoutChanged() );
2310 //FloatImageObj *fio=selection.getFloatImage(); //FIXME-1 VM still missing
2315 BranchObj* par=(BranchObj*)fio->getParObj();
2316 saveStateChangingPart(
2320 QString("Delete %1").arg(getObjectName(fio))
2323 par->removeFloatImage(fio);
2326 emitShowSelection();
2332 void VymModel::deleteKeepChildren() //FIXME-2 VM still missing
2336 BranchObj *bo=getSelectedBranch();
2340 par=(BranchObj*)(bo->getParObj());
2342 // Don't use this on mapcenter
2345 // Check if we have childs at all to keep
2346 if (bo->getTreeItem()->branchCount()==0)
2352 QPointF p=bo->getRelPos();
2353 saveStateChangingPart(
2356 "deleteKeepChildren ()",
2357 QString("Remove %1 and keep its children").arg(getObjectName(bo))
2360 QString sel=getSelectString(bo);
2362 par->removeBranchHere(bo);
2365 getSelectedBranch()->move2RelPos (p);
2370 void VymModel::deleteChildren() //FIXME-2 VM still missing
2374 BranchObj *bo=getSelectedBranch();
2377 saveStateChangingPart(
2380 "deleteChildren ()",
2381 QString( "Remove children of branch %1").arg(getObjectName(bo))
2383 bo->removeChildren();
2389 bool VymModel::scrollBranch(BranchItem *bi)
2393 if (bi->isScrolled()) return false;
2394 if (bi->branchCount()==0) return false;
2395 if (bi->depth()==0) return false;
2399 /* FIXME-3 no savestate yet
2402 QString ("%1 ()").arg(u),
2404 QString ("%1 ()").arg(r),
2405 QString ("%1 %2").arg(r).arg(getObjectName(bo))
2409 mapScene->update(); //Needed for _quick_ update
2415 bool VymModel::unscrollBranch(BranchItem *bi)
2419 if (!bi->isScrolled()) return false;
2420 if (bi->branchCount()==0) return false;
2421 if (bi->depth()==0) return false;
2426 /* FIXME-3 no savestate yet
2429 QString ("%1 ()").arg(u),
2431 QString ("%1 ()").arg(r),
2432 QString ("%1 %2").arg(r).arg(getObjectName(bo))
2436 mapScene->update(); // Needed for _quick_ update
2442 void VymModel::toggleScroll()
2444 BranchItem *bi=(BranchItem*)getSelectedBranchItem();
2445 if (bi && bi->getType()==TreeItem::Branch )
2447 if (bi->isScrolled())
2448 unscrollBranch (bi);
2454 void VymModel::unscrollChildren() // FIXME-2 first, next moved to vymmodel
2458 BranchObj *bo=getSelectedBranch();
2464 if (bo->isScrolled()) unscrollBranch (bo);
2471 void VymModel::emitExpandAll()
2473 emit (expandAll() );
2476 void VymModel::toggleStandardFlag (const QString &name)
2478 cout << "VM::toggleStandardFlag "<<name.toStdString()<<endl;
2479 BranchItem *bi=getSelectedBranchItem();
2483 if (bi->isActiveStandardFlag(name))
2495 QString("%1 (\"%2\")").arg(u).arg(name),
2497 QString("%1 (\"%2\")").arg(r).arg(name),
2498 QString("Toggling standard flag \"%1\" of %2").arg(name).arg(getObjectName(bi)));
2499 bi->toggleStandardFlag (name); //FIXME-0,mainWindow->useFlagGroups());
2500 //FIXME-0 model->updateSelection(); // geometry has changed
2504 void VymModel::addFloatImage (const QPixmap &img) //FIXME-2
2507 BranchObj *bo=getSelectedBranch();
2510 FloatImageObj *fio=bo->addFloatImage();
2512 fio->setOriginalFilename("No original filename (image added by dropevent)");
2513 QString s=getSelectString(bo);
2514 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy dropped image to clipboard",fio );
2515 saveState (fio,"delete ()", bo,QString("paste(%1)").arg(curStep),"Pasting dropped image");
2517 // FIXME-3 VM needed? scene()->update();
2523 void VymModel::colorBranch (QColor c) //FIXME-2
2526 BranchObj *bo=getSelectedBranch();
2531 QString ("colorBranch (\"%1\")").arg(bo->getColor().name()),
2533 QString ("colorBranch (\"%1\")").arg(c.name()),
2534 QString("Set color of %1 to %2").arg(getObjectName(bo)).arg(c.name())
2536 bo->setColor(c); // color branch
2541 void VymModel::colorSubtree (QColor c) //FIXME-2
2544 BranchObj *bo=getSelectedBranch();
2547 saveStateChangingPart(
2550 QString ("colorSubtree (\"%1\")").arg(c.name()),
2551 QString ("Set color of %1 and children to %2").arg(getObjectName(bo)).arg(c.name())
2553 bo->setColorSubtree (c); // color links, color children
2558 QColor VymModel::getCurrentHeadingColor() //FIXME-2
2561 BranchObj *bo=getSelectedBranch();
2562 if (bo) return bo->getColor();
2564 QMessageBox::warning(0,"Warning","Can't get color of heading,\nthere's no branch selected");
2571 void VymModel::editURL() //FIXME-2
2574 BranchObj *bo=getSelectedBranch();
2578 QString text = QInputDialog::getText(
2579 "VYM", tr("Enter URL:"), QLineEdit::Normal,
2580 bo->getURL(), &ok, NULL);
2582 // user entered something and pressed OK
2588 void VymModel::editLocalURL() //FIXME-2
2591 BranchObj *bo=getSelectedBranch();
2594 QStringList filters;
2595 filters <<"All files (*)";
2596 filters << tr("Text","Filedialog") + " (*.txt)";
2597 filters << tr("Spreadsheet","Filedialog") + " (*.odp,*.sxc)";
2598 filters << tr("Textdocument","Filedialog") +" (*.odw,*.sxw)";
2599 filters << tr("Images","Filedialog") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)";
2600 QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Set URL to a local file"));
2601 fd->setFilters (filters);
2602 fd->setCaption(vymName+" - " +tr("Set URL to a local file"));
2603 fd->setDirectory (lastFileDir);
2604 if (! bo->getVymLink().isEmpty() )
2605 fd->selectFile( bo->getURL() );
2608 if ( fd->exec() == QDialog::Accepted )
2610 lastFileDir=QDir (fd->directory().path());
2611 setURL (fd->selectedFile() );
2618 void VymModel::editHeading2URL() //FIXME-2
2621 BranchObj *bo=getSelectedBranch();
2623 setURL (bo->getHeading());
2627 void VymModel::editBugzilla2URL() //FIXME-2
2630 BranchObj *bo=getSelectedBranch();
2633 QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
2639 void VymModel::editFATE2URL() //FIXME-2
2642 BranchObj *bo=getSelectedBranch();
2645 QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
2648 "setURL (\""+bo->getURL()+"\")",
2650 "setURL (\""+url+"\")",
2651 QString("Use heading of %1 as link to FATE").arg(getObjectName(bo))
2659 void VymModel::editVymLink()
2661 BranchItem *bi=getSelectedBranchItem();
2664 QStringList filters;
2665 filters <<"VYM map (*.vym)";
2666 QFileDialog *fd=new QFileDialog( NULL,vymName+" - " +tr("Link to another map"));
2667 fd->setFilters (filters);
2668 fd->setCaption(vymName+" - " +tr("Link to another map"));
2669 fd->setDirectory (lastFileDir);
2670 if (! bi->getVymLink().isEmpty() )
2671 fd->selectFile( bi->getVymLink() );
2675 if ( fd->exec() == QDialog::Accepted )
2677 lastFileDir=QDir (fd->directory().path());
2680 "setVymLink (\""+bi->getVymLink()+"\")",
2682 "setVymLink (\""+fd->selectedFile()+"\")",
2683 QString("Set vymlink of %1 to %2").arg(getObjectName(bi)).arg(fd->selectedFile())
2685 setVymLink (fd->selectedFile() ); // FIXME-2 ok?
2690 void VymModel::setVymLink (const QString &s) // FIXME-3 no savestate?
2692 // Internal function, no saveState needed
2693 BranchItem *bi=getSelectedBranchItem();
2696 bi->getBranchObj()->setVymLink(s); //FIXME-3 check getBO
2699 //selection.update();
2700 emitShowSelection();
2704 void VymModel::deleteVymLink()
2706 BranchItem *bi=getSelectedBranchItem();
2711 "setVymLink (\""+bi->getBranchObj()->getVymLink()+"\")", //FIXME-3 check getBO
2714 "setVymLink (\"\")",
2715 QString("Unset vymlink of %1").arg(getObjectName(bi))
2717 bi->getBranchObj()->setVymLink ("" ); //FIXME-3 check getBO
2720 // FIXME-3 VM needed? scene()->update();
2724 QString VymModel::getVymLink()
2726 BranchItem *bi=getSelectedBranchItem();
2728 return bi->getBranchObj()->getVymLink(); //FIXME-3 check getBO here...
2734 QStringList VymModel::getVymLinks() // FIXME-1 first, next moved to vymmodel
2736 return QStringList();
2739 BranchObj *bo=getSelectedBranch();
2745 if (!bo->getVymLink().isEmpty()) links.append( bo->getVymLink());
2754 void VymModel::followXLink(int i) // FIXME-2
2758 BranchObj *bo=getSelectedBranch();
2761 bo=bo->XLinkTargetAt(i);
2764 selection.select(bo);
2765 emitShowSelection();
2771 void VymModel::editXLink(int i) // FIXME-2 VM missing saveState
2775 BranchObj *bo=getSelectedBranch();
2778 XLinkObj *xlo=bo->XLinkAt(i);
2781 EditXLinkDialog dia;
2783 dia.setSelection(bo);
2784 if (dia.exec() == QDialog::Accepted)
2786 if (dia.useSettingsGlobal() )
2788 setMapDefXLinkColor (xlo->getColor() );
2789 setMapDefXLinkWidth (xlo->getWidth() );
2791 if (dia.deleteXLink())
2792 bo->deleteXLinkAt(i);
2803 //////////////////////////////////////////////
2805 //////////////////////////////////////////////
2807 void VymModel::parseAtom(const QString &atom)
2809 //BranchObj *selb=getSelectedBranch(); // FIXME-4
2810 TreeItem* selti=getSelectedItem();
2811 BranchItem *selbi=getSelectedBranchItem();
2817 // Split string s into command and parameters
2818 parser.parseAtom (atom);
2819 QString com=parser.getCommand();
2821 // External commands
2822 /////////////////////////////////////////////////////////////////////
2823 if (com=="addBranch")
2827 parser.setError (Aborted,"Nothing selected");
2828 } else if (! selbi )
2830 parser.setError (Aborted,"Type of selection is not a branch");
2835 if (parser.checkParCount(pl))
2837 if (parser.parCount()==0)
2841 n=parser.parInt (ok,0);
2842 if (ok ) addNewBranch (n);
2846 /////////////////////////////////////////////////////////////////////
2847 } else if (com=="addBranchBefore")
2851 parser.setError (Aborted,"Nothing selected");
2852 } else if (! selbi )
2854 parser.setError (Aborted,"Type of selection is not a branch");
2857 if (parser.parCount()==0)
2859 addNewBranchBefore ();
2862 /////////////////////////////////////////////////////////////////////
2863 } else if (com==QString("addMapCenter"))
2865 if (parser.checkParCount(2))
2867 x=parser.parDouble (ok,0);
2870 y=parser.parDouble (ok,1);
2871 if (ok) addMapCenter (QPointF(x,y));
2874 /////////////////////////////////////////////////////////////////////
2875 } else if (com==QString("addMapReplace"))
2879 parser.setError (Aborted,"Nothing selected");
2880 } else if (! selbi )
2882 parser.setError (Aborted,"Type of selection is not a branch");
2883 } else if (parser.checkParCount(1))
2885 //s=parser.parString (ok,0); // selection
2886 t=parser.parString (ok,0); // path to map
2887 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
2888 addMapReplaceInt(getSelectString(selbi),t);
2890 /////////////////////////////////////////////////////////////////////
2891 } else if (com==QString("addMapInsert"))
2895 parser.setError (Aborted,"Nothing selected");
2896 } else if (! selbi )
2898 parser.setError (Aborted,"Type of selection is not a branch");
2901 if (parser.checkParCount(2))
2903 t=parser.parString (ok,0); // path to map
2904 n=parser.parInt(ok,1); // position
2905 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
2906 addMapInsertInt(t,n);
2909 /////////////////////////////////////////////////////////////////////
2910 } else /*if (com=="clearFlags") // FIXME-2
2914 parser.setError (Aborted,"Nothing selected");
2915 } else if (! selbi )
2917 parser.setError (Aborted,"Type of selection is not a branch");
2918 } else if (parser.checkParCount(0))
2920 selb->clearStandardFlags();
2921 selb->updateFlagsToolbar();
2923 /////////////////////////////////////////////////////////////////////
2924 } else */ if (com=="colorBranch")
2928 parser.setError (Aborted,"Nothing selected");
2929 } else if (! selbi )
2931 parser.setError (Aborted,"Type of selection is not a branch");
2932 } else if (parser.checkParCount(1))
2934 QColor c=parser.parColor (ok,0);
2935 if (ok) colorBranch (c);
2937 /////////////////////////////////////////////////////////////////////
2938 } else if (com=="colorSubtree")
2942 parser.setError (Aborted,"Nothing selected");
2943 } else if (! selbi )
2945 parser.setError (Aborted,"Type of selection is not a branch");
2946 } else if (parser.checkParCount(1))
2948 QColor c=parser.parColor (ok,0);
2949 if (ok) colorSubtree (c);
2951 /////////////////////////////////////////////////////////////////////
2952 } else if (com=="copy")
2956 parser.setError (Aborted,"Nothing selected");
2957 } else if (! selbi )
2959 parser.setError (Aborted,"Type of selection is not a branch");
2960 } else if (parser.checkParCount(0))
2962 //FIXME-1 missing action for copy
2964 /////////////////////////////////////////////////////////////////////
2965 } else if (com=="cut")
2969 parser.setError (Aborted,"Nothing selected");
2970 } else if ( selectionType()!=TreeItem::Branch &&
2971 selectionType()!=TreeItem::MapCenter &&
2972 selectionType()!=TreeItem::Image )
2974 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
2975 } else if (parser.checkParCount(0))
2979 /////////////////////////////////////////////////////////////////////
2980 } else if (com=="delete")
2984 parser.setError (Aborted,"Nothing selected");
2986 /*else if (selectionType() != TreeItem::Branch && selectionType() != TreeItem::Image )
2988 parser.setError (Aborted,"Type of selection is wrong.");
2991 else if (parser.checkParCount(0))
2995 /////////////////////////////////////////////////////////////////////
2996 } else if (com=="deleteKeepChildren")
3000 parser.setError (Aborted,"Nothing selected");
3001 } else if (! selbi )
3003 parser.setError (Aborted,"Type of selection is not a branch");
3004 } else if (parser.checkParCount(0))
3006 deleteKeepChildren();
3008 /////////////////////////////////////////////////////////////////////
3009 } else if (com=="deleteChildren")
3013 parser.setError (Aborted,"Nothing selected");
3016 parser.setError (Aborted,"Type of selection is not a branch");
3017 } else if (parser.checkParCount(0))
3021 /////////////////////////////////////////////////////////////////////
3022 } else if (com=="exportASCII")
3026 if (parser.parCount()>=1)
3027 // Hey, we even have a filename
3028 fname=parser.parString(ok,0);
3031 parser.setError (Aborted,"Could not read filename");
3034 exportASCII (fname,false);
3036 /////////////////////////////////////////////////////////////////////
3037 } else if (com=="exportImage")
3041 if (parser.parCount()>=2)
3042 // Hey, we even have a filename
3043 fname=parser.parString(ok,0);
3046 parser.setError (Aborted,"Could not read filename");
3049 QString format="PNG";
3050 if (parser.parCount()>=2)
3052 format=parser.parString(ok,1);
3054 exportImage (fname,false,format);
3056 /////////////////////////////////////////////////////////////////////
3057 } else if (com=="exportXHTML")
3061 if (parser.parCount()>=2)
3062 // Hey, we even have a filename
3063 fname=parser.parString(ok,1);
3066 parser.setError (Aborted,"Could not read filename");
3069 exportXHTML (fname,false);
3071 /////////////////////////////////////////////////////////////////////
3072 } else if (com=="exportXML")
3076 if (parser.parCount()>=2)
3077 // Hey, we even have a filename
3078 fname=parser.parString(ok,1);
3081 parser.setError (Aborted,"Could not read filename");
3084 exportXML (fname,false);
3086 /////////////////////////////////////////////////////////////////////
3087 } else if (com=="importDir")
3091 parser.setError (Aborted,"Nothing selected");
3092 } else if (! selbi )
3094 parser.setError (Aborted,"Type of selection is not a branch");
3095 } else if (parser.checkParCount(1))
3097 s=parser.parString(ok,0);
3098 if (ok) importDirInt(s);
3100 /////////////////////////////////////////////////////////////////////
3101 } else /* FIXME-2 if (com=="linkTo")
3105 parser.setError (Aborted,"Nothing selected");
3108 if (parser.checkParCount(4))
3110 // 0 selectstring of parent
3111 // 1 num in parent (for branches)
3112 // 2,3 x,y of mainbranch or mapcenter
3113 s=parser.parString(ok,0);
3114 LinkableMapObj *dst=findObjBySelect (s);
3117 if (typeid(*dst) == typeid(BranchObj) )
3119 // Get number in parent
3120 n=parser.parInt (ok,1);
3123 selb->linkTo ((BranchObj*)(dst),n);
3126 } else if (typeid(*dst) == typeid(MapCenterObj) )
3128 selb->linkTo ((BranchObj*)(dst),-1);
3129 // Get coordinates of mainbranch
3130 x=parser.parDouble(ok,2);
3133 y=parser.parDouble(ok,3);
3143 } else if ( selectionType() == TreeItem::Image)
3145 if (parser.checkParCount(1))
3147 // 0 selectstring of parent
3148 s=parser.parString(ok,0);
3149 LinkableMapObj *dst=findObjBySelect (s);
3152 if (typeid(*dst) == typeid(BranchObj) ||
3153 typeid(*dst) == typeid(MapCenterObj))
3154 linkFloatImageTo (getSelectString(dst));
3156 parser.setError (Aborted,"Destination is not a branch");
3159 parser.setError (Aborted,"Type of selection is not a floatimage or branch");
3160 /////////////////////////////////////////////////////////////////////
3161 } else */ if (com=="loadImage")
3165 parser.setError (Aborted,"Nothing selected");
3166 } else if (! selbi )
3168 parser.setError (Aborted,"Type of selection is not a branch");
3169 } else if (parser.checkParCount(1))
3171 s=parser.parString(ok,0);
3172 if (ok) loadFloatImageInt (s);
3174 /////////////////////////////////////////////////////////////////////
3175 } else if (com=="moveBranchUp")
3179 parser.setError (Aborted,"Nothing selected");
3180 } else if (! selbi )
3182 parser.setError (Aborted,"Type of selection is not a branch");
3183 } else if (parser.checkParCount(0))
3187 /////////////////////////////////////////////////////////////////////
3188 } else if (com=="moveBranchDown")
3192 parser.setError (Aborted,"Nothing selected");
3193 } else if (! selbi )
3195 parser.setError (Aborted,"Type of selection is not a branch");
3196 } else if (parser.checkParCount(0))
3200 /////////////////////////////////////////////////////////////////////
3201 } else if (com=="move")
3205 parser.setError (Aborted,"Nothing selected");
3206 } else if ( selectionType()!=TreeItem::Branch &&
3207 selectionType()!=TreeItem::MapCenter &&
3208 selectionType()!=TreeItem::Image )
3210 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3211 } else if (parser.checkParCount(2))
3213 x=parser.parDouble (ok,0);
3216 y=parser.parDouble (ok,1);
3220 /////////////////////////////////////////////////////////////////////
3221 } else if (com=="moveRel")
3225 parser.setError (Aborted,"Nothing selected");
3226 } else if ( selectionType()!=TreeItem::Branch &&
3227 selectionType()!=TreeItem::MapCenter &&
3228 selectionType()!=TreeItem::Image )
3230 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3231 } else if (parser.checkParCount(2))
3233 x=parser.parDouble (ok,0);
3236 y=parser.parDouble (ok,1);
3237 if (ok) moveRel (x,y);
3240 /////////////////////////////////////////////////////////////////////
3241 } else if (com=="nop")
3243 /////////////////////////////////////////////////////////////////////
3244 } else if (com=="paste")
3248 parser.setError (Aborted,"Nothing selected");
3249 } else if (! selbi )
3251 parser.setError (Aborted,"Type of selection is not a branch");
3252 } else if (parser.checkParCount(1))
3254 n=parser.parInt (ok,0);
3255 if (ok) pasteNoSave(n);
3257 /////////////////////////////////////////////////////////////////////
3258 } else if (com=="qa")
3262 parser.setError (Aborted,"Nothing selected");
3263 } else if (! selbi )
3265 parser.setError (Aborted,"Type of selection is not a branch");
3266 } else if (parser.checkParCount(4))
3269 c=parser.parString (ok,0);
3272 parser.setError (Aborted,"No comment given");
3275 s=parser.parString (ok,1);
3278 parser.setError (Aborted,"First parameter is not a string");
3281 t=parser.parString (ok,2);
3284 parser.setError (Aborted,"Condition is not a string");
3287 u=parser.parString (ok,3);
3290 parser.setError (Aborted,"Third parameter is not a string");
3295 parser.setError (Aborted,"Unknown type: "+s);
3300 parser.setError (Aborted,"Unknown operator: "+t);
3305 parser.setError (Aborted,"Type of selection is not a branch");
3308 if (selbi->getHeading() == u)
3310 cout << "PASSED: " << qPrintable (c) << endl;
3313 cout << "FAILED: " << qPrintable (c) << endl;
3323 /////////////////////////////////////////////////////////////////////
3324 } else if (com=="saveImage")
3326 FloatImageObj *fio=selection.getFloatImage();
3329 parser.setError (Aborted,"Type of selection is not an image");
3330 } else if (parser.checkParCount(2))
3332 s=parser.parString(ok,0);
3335 t=parser.parString(ok,1);
3336 if (ok) saveFloatImageInt (fio,t,s);
3339 /////////////////////////////////////////////////////////////////////
3340 } else if (com=="scroll")
3344 parser.setError (Aborted,"Nothing selected");
3345 } else if (! selbi )
3347 parser.setError (Aborted,"Type of selection is not a branch");
3348 } else if (parser.checkParCount(0))
3350 if (!scrollBranch (selbi))
3351 parser.setError (Aborted,"Could not scroll branch");
3353 /////////////////////////////////////////////////////////////////////
3354 } else if (com=="select")
3356 if (parser.checkParCount(1))
3358 s=parser.parString(ok,0);
3361 /////////////////////////////////////////////////////////////////////
3362 } else if (com=="selectLastBranch")
3366 parser.setError (Aborted,"Nothing selected");
3367 } else if (! selbi )
3369 parser.setError (Aborted,"Type of selection is not a branch");
3370 } else if (parser.checkParCount(0))
3372 BranchItem *bi=selbi->getLastBranch();
3374 parser.setError (Aborted,"Could not select last branch");
3375 select (bi); // FIXME-3 was selectInt
3378 /////////////////////////////////////////////////////////////////////
3379 } else /* FIXME-2 if (com=="selectLastImage")
3383 parser.setError (Aborted,"Nothing selected");
3384 } else if (! selbi )
3386 parser.setError (Aborted,"Type of selection is not a branch");
3387 } else if (parser.checkParCount(0))
3389 FloatImageObj *fio=selb->getLastFloatImage();
3391 parser.setError (Aborted,"Could not select last image");
3392 select (fio); // FIXME-3 was selectInt
3395 /////////////////////////////////////////////////////////////////////
3396 } else */ if (com=="selectLatestAdded")
3398 if (!latestAddedItem)
3400 parser.setError (Aborted,"No latest added object");
3403 if (!select (latestAddedItem))
3404 parser.setError (Aborted,"Could not select latest added object ");
3406 /////////////////////////////////////////////////////////////////////
3407 } else if (com=="setFrameType")
3409 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3411 parser.setError (Aborted,"Type of selection does not allow setting frame type");
3413 else if (parser.checkParCount(1))
3415 s=parser.parString(ok,0);
3416 if (ok) setFrameType (s);
3418 /////////////////////////////////////////////////////////////////////
3419 } else if (com=="setFramePenColor")
3421 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3423 parser.setError (Aborted,"Type of selection does not allow setting of pen color");
3425 else if (parser.checkParCount(1))
3427 QColor c=parser.parColor(ok,0);
3428 if (ok) setFramePenColor (c);
3430 /////////////////////////////////////////////////////////////////////
3431 } else if (com=="setFrameBrushColor")
3433 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3435 parser.setError (Aborted,"Type of selection does not allow setting brush color");
3437 else if (parser.checkParCount(1))
3439 QColor c=parser.parColor(ok,0);
3440 if (ok) setFrameBrushColor (c);
3442 /////////////////////////////////////////////////////////////////////
3443 } else if (com=="setFramePadding")
3445 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3447 parser.setError (Aborted,"Type of selection does not allow setting frame padding");
3449 else if (parser.checkParCount(1))
3451 n=parser.parInt(ok,0);
3452 if (ok) setFramePadding(n);
3454 /////////////////////////////////////////////////////////////////////
3455 } else if (com=="setFrameBorderWidth")
3457 if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3459 parser.setError (Aborted,"Type of selection does not allow setting frame border width");
3461 else if (parser.checkParCount(1))
3463 n=parser.parInt(ok,0);
3464 if (ok) setFrameBorderWidth (n);
3466 /////////////////////////////////////////////////////////////////////
3467 } else if (com=="setMapAuthor")
3469 if (parser.checkParCount(1))
3471 s=parser.parString(ok,0);
3472 if (ok) setAuthor (s);
3474 /////////////////////////////////////////////////////////////////////
3475 } else if (com=="setMapComment")
3477 if (parser.checkParCount(1))
3479 s=parser.parString(ok,0);
3480 if (ok) setComment(s);
3482 /////////////////////////////////////////////////////////////////////
3483 } else if (com=="setMapBackgroundColor")
3487 parser.setError (Aborted,"Nothing selected");
3488 } else if (! selbi )
3490 parser.setError (Aborted,"Type of selection is not a branch");
3491 } else if (parser.checkParCount(1))
3493 QColor c=parser.parColor (ok,0);
3494 if (ok) setMapBackgroundColor (c);
3496 /////////////////////////////////////////////////////////////////////
3497 } else if (com=="setMapDefLinkColor")
3501 parser.setError (Aborted,"Nothing selected");
3502 } else if (! selbi )
3504 parser.setError (Aborted,"Type of selection is not a branch");
3505 } else if (parser.checkParCount(1))
3507 QColor c=parser.parColor (ok,0);
3508 if (ok) setMapDefLinkColor (c);
3510 /////////////////////////////////////////////////////////////////////
3511 } else if (com=="setMapLinkStyle")
3513 if (parser.checkParCount(1))
3515 s=parser.parString (ok,0);
3516 if (ok) setMapLinkStyle(s);
3518 /////////////////////////////////////////////////////////////////////
3519 } else if (com=="setHeading")
3523 parser.setError (Aborted,"Nothing selected");
3524 } else if (! selbi )
3526 parser.setError (Aborted,"Type of selection is not a branch");
3527 } else if (parser.checkParCount(1))
3529 s=parser.parString (ok,0);
3533 /////////////////////////////////////////////////////////////////////
3534 } else if (com=="setHideExport")
3538 parser.setError (Aborted,"Nothing selected");
3539 } else if (selectionType()!=TreeItem::Branch && selectionType() != TreeItem::MapCenter &&selectionType()!=TreeItem::Image)
3541 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
3542 } else if (parser.checkParCount(1))
3544 b=parser.parBool(ok,0);
3545 if (ok) setHideExport (b);
3547 /////////////////////////////////////////////////////////////////////
3548 } else if (com=="setIncludeImagesHorizontally")
3552 parser.setError (Aborted,"Nothing selected");
3555 parser.setError (Aborted,"Type of selection is not a branch");
3556 } else if (parser.checkParCount(1))
3558 b=parser.parBool(ok,0);
3559 if (ok) setIncludeImagesHor(b);
3561 /////////////////////////////////////////////////////////////////////
3562 } else if (com=="setIncludeImagesVertically")
3566 parser.setError (Aborted,"Nothing selected");
3569 parser.setError (Aborted,"Type of selection is not a branch");
3570 } else if (parser.checkParCount(1))
3572 b=parser.parBool(ok,0);
3573 if (ok) setIncludeImagesVer(b);
3575 /////////////////////////////////////////////////////////////////////
3576 } else if (com=="setHideLinkUnselected")
3580 parser.setError (Aborted,"Nothing selected");
3581 } else if ( selectionType()!=TreeItem::Branch && selectionType()!= TreeItem::MapCenter && selectionType()!=TreeItem::Image)
3583 parser.setError (Aborted,"Type of selection does not allow hiding the link");
3584 } else if (parser.checkParCount(1))
3586 b=parser.parBool(ok,0);
3587 if (ok) setHideLinkUnselected(b);
3589 /////////////////////////////////////////////////////////////////////
3590 } else if (com=="setSelectionColor")
3592 if (parser.checkParCount(1))
3594 QColor c=parser.parColor (ok,0);
3595 if (ok) setSelectionColorInt (c);
3597 /////////////////////////////////////////////////////////////////////
3598 } else if (com=="setURL")
3602 parser.setError (Aborted,"Nothing selected");
3603 } else if (! selbi )
3605 parser.setError (Aborted,"Type of selection is not a branch");
3606 } else if (parser.checkParCount(1))
3608 s=parser.parString (ok,0);
3611 /////////////////////////////////////////////////////////////////////
3612 } else if (com=="setVymLink")
3616 parser.setError (Aborted,"Nothing selected");
3617 } else if (! selbi )
3619 parser.setError (Aborted,"Type of selection is not a branch");
3620 } else if (parser.checkParCount(1))
3622 s=parser.parString (ok,0);
3623 if (ok) setVymLink(s);
3626 /////////////////////////////////////////////////////////////////////
3627 else /* FIXME-2 if (com=="setFlag")
3631 parser.setError (Aborted,"Nothing selected");
3632 } else if (! selbi )
3634 parser.setError (Aborted,"Type of selection is not a branch");
3635 } else if (parser.checkParCount(1))
3637 s=parser.parString(ok,0);
3640 selb->activateStandardFlag(s);
3641 selb->updateFlagsToolbar();
3644 /////////////////////////////////////////////////////////////////////
3645 } else */ /* FIXME-2 if (com=="setFrameType")
3649 parser.setError (Aborted,"Nothing selected");
3652 parser.setError (Aborted,"Type of selection is not a branch");
3653 } else if (parser.checkParCount(1))
3655 s=parser.parString(ok,0);
3659 /////////////////////////////////////////////////////////////////////
3660 } else*/ if (com=="sortChildren")
3664 parser.setError (Aborted,"Nothing selected");
3665 } else if (! selbi )
3667 parser.setError (Aborted,"Type of selection is not a branch");
3668 } else if (parser.checkParCount(0))
3672 /////////////////////////////////////////////////////////////////////
3673 } else /* FIXME-2 if (com=="toggleFlag")
3677 parser.setError (Aborted,"Nothing selected");
3678 } else if (! selbi )
3680 parser.setError (Aborted,"Type of selection is not a branch");
3681 } else if (parser.checkParCount(1))
3683 s=parser.parString(ok,0);
3686 selbi->toggleStandardFlag(s);
3687 selb->updateFlagsToolbar();
3690 /////////////////////////////////////////////////////////////////////
3691 } else */ if (com=="unscroll")
3695 parser.setError (Aborted,"Nothing selected");
3696 } else if (! selbi )
3698 parser.setError (Aborted,"Type of selection is not a branch");
3699 } else if (parser.checkParCount(0))
3701 if (!unscrollBranch (selbi))
3702 parser.setError (Aborted,"Could not unscroll branch");
3704 /////////////////////////////////////////////////////////////////////
3705 } else if (com=="unscrollChildren")
3709 parser.setError (Aborted,"Nothing selected");
3710 } else if (! selbi )
3712 parser.setError (Aborted,"Type of selection is not a branch");
3713 } else if (parser.checkParCount(0))
3715 unscrollChildren ();
3717 /////////////////////////////////////////////////////////////////////
3718 } else /* FIXME-2 if (com=="unsetFlag")
3720 if (selection.isEmpty() )
3722 parser.setError (Aborted,"Nothing selected");
3723 } else if (! selbi )
3725 parser.setError (Aborted,"Type of selection is not a branch");
3726 } else if (parser.checkParCount(1))
3728 s=parser.parString(ok,0);
3731 selb->deactivateStandardFlag(s);
3732 selb->updateFlagsToolbar();
3736 parser.setError (Aborted,"Unknown command");
3739 if (parser.errorLevel()==NoError)
3741 // setChanged(); FIXME-2 should not be called e.g. for export?!
3746 // TODO Error handling
3747 qWarning("VymModel::parseAtom: Error!");
3748 qWarning(parser.errorMessage());
3752 void VymModel::runScript (QString script)
3754 parser.setScript (script);
3756 while (parser.next() )
3757 parseAtom(parser.getAtom());
3760 void VymModel::setExportMode (bool b)
3762 // should be called before and after exports
3763 // depending on the settings
3764 if (b && settings.value("/export/useHideExport","true")=="true")
3765 setHideTmpMode (TreeItem::HideExport);
3767 setHideTmpMode (TreeItem::HideNone);
3770 void VymModel::exportImage(QString fname, bool askName, QString format)
3774 fname=getMapName()+".png";
3781 QFileDialog *fd=new QFileDialog (NULL);
3782 fd->setCaption (tr("Export map as image"));
3783 fd->setDirectory (lastImageDir);
3784 fd->setFileMode(QFileDialog::AnyFile);
3785 fd->setFilters (imageIO.getFilters() );
3788 fl=fd->selectedFiles();
3790 format=imageIO.getType(fd->selectedFilter());
3794 setExportMode (true);
3795 QPixmap pix (getPixmap());
3796 pix.save(fname, format);
3797 setExportMode (false);
3801 void VymModel::exportXML(QString dir, bool askForName)
3805 dir=browseDirectory(NULL,tr("Export XML to directory"));
3806 if (dir =="" && !reallyWriteDirectory(dir) )
3810 // Hide stuff during export, if settings want this
3811 setExportMode (true);
3813 // Create subdirectories
3816 // write to directory
3817 QString saveFile=saveToDir (dir,mapName+"-",true,getTotalBBox().topLeft() ,NULL);
3820 file.setName ( dir + "/"+mapName+".xml");
3821 if ( !file.open( QIODevice::WriteOnly ) )
3823 // This should neverever happen
3824 QMessageBox::critical (0,tr("Critical Export Error"),tr("VymModel::exportXML couldn't open %1").arg(file.name()));
3828 // Write it finally, and write in UTF8, no matter what
3829 QTextStream ts( &file );
3830 ts.setEncoding (QTextStream::UnicodeUTF8);
3834 // Now write image, too
3835 exportImage (dir+"/images/"+mapName+".png",false,"PNG");
3837 setExportMode (false);
3840 void VymModel::exportASCII(QString fname,bool askName)
3845 ex.setFile (mapName+".txt");
3851 //ex.addFilter ("TXT (*.txt)");
3852 ex.setDir(lastImageDir);
3853 //ex.setCaption(vymName+ " -" +tr("Export as ASCII")+" "+tr("(still experimental)"));
3858 setExportMode(true);
3860 setExportMode(false);
3864 void VymModel::exportXHTML (const QString &dir, bool askForName)
3866 ExportXHTMLDialog dia(NULL);
3867 dia.setFilePath (filePath );
3868 dia.setMapName (mapName );
3870 if (dir!="") dia.setDir (dir);
3876 if (dia.exec()!=QDialog::Accepted)
3880 QDir d (dia.getDir());
3881 // Check, if warnings should be used before overwriting
3882 // the output directory
3883 if (d.exists() && d.count()>0)
3886 warn.showCancelButton (true);
3887 warn.setText(QString(
3888 "The directory %1 is not empty.\n"
3889 "Do you risk to overwrite some of its contents?").arg(d.path() ));
3890 warn.setCaption("Warning: Directory not empty");
3891 warn.setShowAgainName("mainwindow/overwrite-dir-xhtml");
3893 if (warn.exec()!=QDialog::Accepted) ok=false;
3900 exportXML (dia.getDir(),false );
3901 dia.doExport(mapName );
3902 //if (dia.hasChanged()) setChanged();
3906 void VymModel::exportOOPresentation(const QString &fn, const QString &cf)
3911 if (ex.setConfigFile(cf))
3913 setExportMode (true);
3914 ex.exportPresentation();
3915 setExportMode (false);
3922 //////////////////////////////////////////////
3924 //////////////////////////////////////////////
3926 void VymModel::registerEditor(QWidget *me)
3928 mapEditor=(MapEditor*)me;
3931 void VymModel::unregisterEditor(QWidget *)
3936 void VymModel::setContextPos(QPointF p)
3941 void VymModel::unsetContextPos()
3943 contextPos=QPointF();
3946 void VymModel::updateNoteFlag()
3949 cout << "VM::updateNoteFlag()\n";
3950 /* FIXME-1 modify note flag
3951 BranchObj *bo=getSelectedBranch();
3954 bo->updateNoteFlag();
3955 mainWindow->updateActions();
3960 void VymModel::updateRelPositions() //FIXME-2 VM should have no need to updateRelPos
3962 //cout << "VM::updateRelPos...\n";
3963 for (int i=0; i<rootItem->branchCount(); i++)
3964 ((MapCenterObj*)rootItem->getBranchObjNum(i))->updateRelPositions();
3967 void VymModel::reposition() //FIXME-3 VM should have no need to reposition, this is done in views???
3969 //cout << "VM::reposition blocked="<<blockReposition<<endl;
3970 if (blockReposition) return;
3972 for (int i=0;i<rootItem->branchCount(); i++)
3973 rootItem->getBranchObjNum(i)->reposition(); // for positioning heading
3976 QPolygonF VymModel::shape(BranchObj *bo) //FIXME-4
3979 // Creating (arbitrary) shapes
3982 QRectF rb=bo->getBBox();
3983 if (bo->getDepth()==0)
3985 // Just take BBox of this mapCenter
3986 p<<rb.topLeft()<<rb.topRight()<<rb.bottomRight()<<rb.bottomLeft();
3990 // Take union of BBox and TotalBBox
3992 QRectF ra=bo->getTotalBBox();
3993 if (bo->getOrientation()==LinkableMapObj::LeftOfCenter)
3996 <<QPointF (rb.topLeft().x(), ra.topLeft().y() )
3999 <<QPointF (rb.bottomLeft().x(), ra.bottomLeft().y() ) ;
4001 p <<ra.bottomRight()
4003 <<QPointF (rb.topRight().x(), ra.topRight().y() )
4006 <<QPointF (rb.bottomRight().x(), ra.bottomRight().y() ) ;
4011 void VymModel::moveAway(LinkableMapObj *lmo) //FIXME-5
4015 // Move all branches and MapCenters away from lmo
4016 // to avoid collisions
4022 BranchObj *boA=(BranchObj*)lmo;
4024 for (int i=0; i<rootItem->branchCount(); i++)
4026 boB=rootItem->getBranchNum(i);
4029 PolygonCollisionResult r = PolygonCollision(pA, pB, QPoint(0,0));
4032 <<" ("<<qPrintable(boA->getHeading() )<<")"
4033 <<" with ("<< qPrintable (boB->getHeading() )
4036 <<" minT="<<r.minTranslation<<endl<<endl;
4041 QPixmap VymModel::getPixmap()
4043 QRectF mapRect=getTotalBBox();
4044 QPixmap pix((int)mapRect.width()+2,(int)mapRect.height()+1);
4047 pp.setRenderHints(mapEditor->renderHints());
4049 // Don't print the visualisation of selection
4050 selection.unselect();
4052 mapScene->render ( &pp,
4053 QRectF(0,0,mapRect.width()+2,mapRect.height()+2),
4054 QRectF(mapRect.x(),mapRect.y(),mapRect.width(),mapRect.height() ));
4056 // Restore selection
4057 selection.reselect();
4063 void VymModel::setMapLinkStyle (const QString & s)
4068 case LinkableMapObj::Line :
4071 case LinkableMapObj::Parabel:
4072 snow="StyleParabel";
4074 case LinkableMapObj::PolyLine:
4075 snow="StylePolyLine";
4077 case LinkableMapObj::PolyParabel:
4078 snow="StylePolyParabel";
4081 snow="UndefinedStyle";
4086 QString("setMapLinkStyle (\"%1\")").arg(s),
4087 QString("setMapLinkStyle (\"%1\")").arg(snow),
4088 QString("Set map link style (\"%1\")").arg(s)
4092 linkstyle=LinkableMapObj::Line;
4093 else if (s=="StyleParabel")
4094 linkstyle=LinkableMapObj::Parabel;
4095 else if (s=="StylePolyLine")
4096 linkstyle=LinkableMapObj::PolyLine;
4097 else if (s=="StylePolyParabel")
4098 linkstyle=LinkableMapObj::PolyParabel;
4100 linkstyle=LinkableMapObj::UndefinedStyle;
4102 BranchItem *cur=NULL;
4103 BranchItem *prev=NULL;
4109 bo=(BranchObj*)(cur->getLMO() );
4110 bo->setLinkStyle(bo->getDefLinkStyle());
4111 cur=next(cur,prev,d);
4116 LinkableMapObj::Style VymModel::getMapLinkStyle ()
4121 void VymModel::setMapDefLinkColor(QColor col)
4123 if ( !col.isValid() ) return;
4125 QString("setMapDefLinkColor (\"%1\")").arg(getMapDefLinkColor().name()),
4126 QString("setMapDefLinkColor (\"%1\")").arg(col.name()),
4127 QString("Set map link color to %1").arg(col.name())
4131 BranchItem *cur=NULL;
4132 BranchItem *prev=NULL;
4135 cur=next(cur,prev,d);
4138 bo=(BranchObj*)(cur->getLMO() );
4145 void VymModel::setMapLinkColorHintInt()
4147 // called from setMapLinkColorHint(lch) or at end of parse
4148 BranchItem *cur=NULL;
4149 BranchItem *prev=NULL;
4152 cur=next(cur,prev,d);
4155 bo=(BranchObj*)(cur->getLMO() );
4157 cur=next(cur,prev,d);
4161 void VymModel::setMapLinkColorHint(LinkableMapObj::ColorHint lch)
4164 setMapLinkColorHintInt();
4167 void VymModel::toggleMapLinkColorHint()
4169 if (linkcolorhint==LinkableMapObj::HeadingColor)
4170 linkcolorhint=LinkableMapObj::DefaultColor;
4172 linkcolorhint=LinkableMapObj::HeadingColor;
4173 BranchItem *cur=NULL;
4174 BranchItem *prev=NULL;
4177 cur=next(cur,prev,d);
4180 bo=(BranchObj*)(cur->getLMO() );
4186 void VymModel::selectMapBackgroundImage () // FIXME-2 move to ME
4188 Q3FileDialog *fd=new Q3FileDialog( NULL);
4189 fd->setMode (Q3FileDialog::ExistingFile);
4190 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
4191 ImagePreview *p =new ImagePreview (fd);
4192 fd->setContentsPreviewEnabled( TRUE );
4193 fd->setContentsPreview( p, p );
4194 fd->setPreviewMode( Q3FileDialog::Contents );
4195 fd->setCaption(vymName+" - " +tr("Load background image"));
4196 fd->setDir (lastImageDir);
4199 if ( fd->exec() == QDialog::Accepted )
4201 // TODO selectMapBackgroundImg in QT4 use: lastImageDir=fd->directory();
4202 lastImageDir=QDir (fd->dirPath());
4203 setMapBackgroundImage (fd->selectedFile());
4207 void VymModel::setMapBackgroundImage (const QString &fn) //FIXME-2 missing savestate
4209 QColor oldcol=mapScene->backgroundBrush().color();
4213 QString ("setMapBackgroundImage (%1)").arg(oldcol.name()),
4215 QString ("setMapBackgroundImage (%1)").arg(col.name()),
4216 QString("Set background color of map to %1").arg(col.name()));
4219 brush.setTextureImage (QPixmap (fn));
4220 mapScene->setBackgroundBrush(brush);
4223 void VymModel::selectMapBackgroundColor() // FIXME-3 move to ME
4225 QColor col = QColorDialog::getColor( mapScene->backgroundBrush().color(), NULL);
4226 if ( !col.isValid() ) return;
4227 setMapBackgroundColor( col );
4231 void VymModel::setMapBackgroundColor(QColor col) // FIXME-3 move to ME
4233 QColor oldcol=mapScene->backgroundBrush().color();
4235 QString ("setMapBackgroundColor (\"%1\")").arg(oldcol.name()),
4236 QString ("setMapBackgroundColor (\"%1\")").arg(col.name()),
4237 QString("Set background color of map to %1").arg(col.name()));
4238 mapScene->setBackgroundBrush(col);
4241 QColor VymModel::getMapBackgroundColor() // FIXME-3 move to ME
4243 return mapScene->backgroundBrush().color();
4247 LinkableMapObj::ColorHint VymModel::getMapLinkColorHint() // FIXME-3 move to ME
4249 return linkcolorhint;
4252 QColor VymModel::getMapDefLinkColor() // FIXME-3 move to ME
4254 return defLinkColor;
4257 void VymModel::setMapDefXLinkColor(QColor col) // FIXME-3 move to ME
4262 QColor VymModel::getMapDefXLinkColor() // FIXME-3 move to ME
4264 return defXLinkColor;
4267 void VymModel::setMapDefXLinkWidth (int w) // FIXME-3 move to ME
4272 int VymModel::getMapDefXLinkWidth() // FIXME-3 move to ME
4274 return defXLinkWidth;
4277 void VymModel::move(const double &x, const double &y) // FIXME-3
4281 BranchObj *bo = getSelectedBranch();
4283 (selectionType()==TreeItem::Branch ||
4284 selectionType()==TreeItem::MapCenter ||
4285 selectionType()==TreeItem::Image
4288 QPointF ap(bo->getAbsPos());
4292 QString ps=qpointfToString(ap);
4293 QString s=getSelectString();
4296 s, "move "+qpointfToString(to),
4297 QString("Move %1 to %2").arg(getObjectName(bo)).arg(ps));
4306 void VymModel::moveRel (const double &x, const double &y) // FIXME-3
4310 BranchObj *bo = getSelectedBranch();
4312 (selectionType()==TreeItem::Branch ||
4313 selectionType()==TreeItem::MapCenter ||
4314 selectionType()==TreeItem::Image
4318 QPointF rp(bo->getRelPos());
4322 QString ps=qpointfToString (bo->getRelPos());
4323 QString s=getSelectString(bo);
4326 s, "moveRel "+qpointfToString(to),
4327 QString("Move %1 to relative position %2").arg(getObjectName(bo)).arg(ps));
4328 ((OrnamentedObj*)bo)->move2RelPos (x,y);
4338 void VymModel::animate()
4340 animationTimer->stop();
4343 while (i<animObjList.size() )
4345 bo=(BranchObj*)animObjList.at(i);
4350 animObjList.removeAt(i);
4357 QItemSelection sel=selModel->selection();
4358 emit (selectionChanged(sel,sel));
4361 if (!animObjList.isEmpty()) animationTimer->start();
4365 void VymModel::startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest)
4367 if (bo && bo->getTreeItem()->depth()>0)
4370 ap.setStart (start);
4372 ap.setTicks (animationTicks);
4373 ap.setAnimated (true);
4374 bo->setAnimation (ap);
4375 animObjList.append( bo );
4376 animationTimer->setSingleShot (true);
4377 animationTimer->start(animationInterval);
4381 void VymModel::stopAnimation (MapObj *mo)
4383 int i=animObjList.indexOf(mo);
4385 animObjList.removeAt (i);
4388 void VymModel::sendSelection()
4390 if (netstate!=Server) return;
4391 sendData (QString("select (\"%1\")").arg(selection.getSelectString()) );
4394 void VymModel::newServer()
4398 tcpServer = new QTcpServer(this);
4399 if (!tcpServer->listen(QHostAddress::Any,port)) {
4400 QMessageBox::critical(NULL, "vym server",
4401 QString("Unable to start the server: %1.").arg(tcpServer->errorString()));
4402 //FIXME-3 needed? we are no widget any longer... close();
4405 connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newClient()));
4407 cout<<"Server is running on port "<<tcpServer->serverPort()<<endl;
4410 void VymModel::connectToServer()
4413 server="salam.suse.de";
4415 clientSocket = new QTcpSocket (this);
4416 clientSocket->abort();
4417 clientSocket->connectToHost(server ,port);
4418 connect(clientSocket, SIGNAL(readyRead()), this, SLOT(readData()));
4419 connect(clientSocket, SIGNAL(error(QAbstractSocket::SocketError)),
4420 this, SLOT(displayNetworkError(QAbstractSocket::SocketError)));
4422 cout<<"connected to "<<qPrintable (server)<<" port "<<port<<endl;
4427 void VymModel::newClient()
4429 QTcpSocket *newClient = tcpServer->nextPendingConnection();
4430 connect(newClient, SIGNAL(disconnected()),
4431 newClient, SLOT(deleteLater()));
4433 cout <<"ME::newClient at "<<qPrintable( newClient->peerAddress().toString() )<<endl;
4435 clientList.append (newClient);
4439 void VymModel::sendData(const QString &s)
4441 if (clientList.size()==0) return;
4443 // Create bytearray to send
4445 QDataStream out(&block, QIODevice::WriteOnly);
4446 out.setVersion(QDataStream::Qt_4_0);
4448 // Reserve some space for blocksize
4451 // Write sendCounter
4452 out << sendCounter++;
4457 // Go back and write blocksize so far
4458 out.device()->seek(0);
4459 quint16 bs=(quint16)(block.size() - 2*sizeof(quint16));
4463 cout << "ME::sendData bs="<<bs<<" counter="<<sendCounter<<" s="<<qPrintable(s)<<endl;
4465 for (int i=0; i<clientList.size(); ++i)
4467 //cout << "Sending \""<<qPrintable (s)<<"\" to "<<qPrintable (clientList.at(i)->peerAddress().toString())<<endl;
4468 clientList.at(i)->write (block);
4472 void VymModel::readData ()
4474 while (clientSocket->bytesAvailable() >=(int)sizeof(quint16) )
4477 cout <<"readData bytesAvail="<<clientSocket->bytesAvailable();
4481 QDataStream in(clientSocket);
4482 in.setVersion(QDataStream::Qt_4_0);
4490 cout << " t="<<qPrintable (t)<<endl;
4496 void VymModel::displayNetworkError(QAbstractSocket::SocketError socketError)
4498 switch (socketError) {
4499 case QAbstractSocket::RemoteHostClosedError:
4501 case QAbstractSocket::HostNotFoundError:
4502 QMessageBox::information(NULL, vymName +" Network client",
4503 "The host was not found. Please check the "
4504 "host name and port settings.");
4506 case QAbstractSocket::ConnectionRefusedError:
4507 QMessageBox::information(NULL, vymName + " Network client",
4508 "The connection was refused by the peer. "
4509 "Make sure the fortune server is running, "
4510 "and check that the host name and port "
4511 "settings are correct.");
4514 QMessageBox::information(NULL, vymName + " Network client",
4515 QString("The following error occurred: %1.")
4516 .arg(clientSocket->errorString()));
4523 void VymModel::selectMapSelectionColor()
4525 QColor col = QColorDialog::getColor( defLinkColor, NULL);
4526 setSelectionColor (col);
4529 void VymModel::setSelectionColorInt (QColor col)
4531 if ( !col.isValid() ) return;
4533 QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
4534 QString("setSelectionColor (%1)").arg(col.name()),
4535 QString("Set color of selection box to %1").arg(col.name())
4538 mapEditor->setSelectionColor (col);
4542 void VymModel::changeSelection (const QItemSelection &newsel,const QItemSelection &oldsel)
4544 cout << "VymModel::changeSelection (";
4545 if (!newsel.indexes().isEmpty() )
4546 cout << getItem(newsel.indexes().first() )->getHeading().toStdString();
4548 if (!oldsel.indexes().isEmpty() )
4549 cout << getItem(oldsel.indexes().first() )->getHeading().toStdString();
4554 void VymModel::updateSelection(const QItemSelection &newsel)
4556 emit (selectionChanged(newsel,newsel)); // needed e.g. to update geometry in editor
4557 emitShowSelection();
4561 void VymModel::updateSelection()
4563 QItemSelection newsel=selModel->selection();
4564 updateSelection (newsel);
4567 void VymModel::setSelectionColor(QColor col)
4569 if ( !col.isValid() ) return;
4571 QString("setSelectionColor (%1)").arg(mapEditor->getSelectionColor().name()),
4572 QString("setSelectionColor (%1)").arg(col.name()),
4573 QString("Set color of selection box to %1").arg(col.name())
4575 setSelectionColorInt (col);
4578 QColor VymModel::getSelectionColor()
4580 return mapEditor->getSelectionColor();
4583 void VymModel::setHideTmpMode (TreeItem::HideTmpMode mode)
4586 for (int i=0;i<rootItem->childCount();i++)
4587 rootItem->child(i)->setHideTmp (mode);
4589 // FIXME-3 needed? scene()->update();
4593 QRectF VymModel::getTotalBBox() //FIXME-2
4597 for (int i=0;i<rootItem->branchCount(); i++)
4598 r=addBBox (rootItem->getBranchNum(i)->getTotalBBox(), r);
4603 //////////////////////////////////////////////
4604 // Selection related
4605 //////////////////////////////////////////////
4607 void VymModel::setSelectionModel (QItemSelectionModel *sm)
4612 QItemSelectionModel* VymModel::getSelectionModel()
4617 void VymModel::setSelectionBlocked (bool b)
4622 selection.unblock();
4625 bool VymModel::isSelectionBlocked()
4627 return selection.isBlocked();
4630 bool VymModel::select ()
4632 QModelIndex index=selModel->selectedIndexes().first(); // TODO no multiselections yet
4634 TreeItem *item = getItem (index);
4635 return select (item->getLMO() );
4638 bool VymModel::select (const QString &s)
4640 TreeItem *ti=findBySelectString(s);
4650 bool VymModel::select (LinkableMapObj *lmo)
4652 QItemSelection oldsel=selModel->selection();
4655 return select (lmo->getTreeItem() );
4660 bool VymModel::select (TreeItem *ti)
4664 QModelIndex ix=index(ti);
4665 selModel->select (ix,QItemSelectionModel::ClearAndSelect );
4666 ti->setLastSelectedBranch();
4672 void VymModel::unselect()
4674 selModel->clearSelection();
4677 void VymModel::reselect()
4679 selection.reselect();
4682 void VymModel::emitShowSelection()
4684 if (!blockReposition)
4685 emit (showSelection() );
4688 void VymModel::emitNoteHasChanged (TreeItem *ti)
4690 QModelIndex ix=index(ti);
4691 emit (noteHasChanged (ix) );
4694 void VymModel::emitDataHasChanged (TreeItem *ti)
4696 QModelIndex ix=index(ti);
4697 emit (dataHasChanged (ix) );
4701 //void VymModel::selectInt (LinkableMapObj *lmo) // FIXME-3 still needed?
4704 if (selection.select(lmo))
4706 //selection.update();
4707 sendSelection (); // FIXME-4 VM use signal
4711 void VymModel::selectInt (TreeItem *ti)
4713 if (selection.select(lmo))
4715 //selection.update();
4716 sendSelection (); // FIXME-4 VM use signal
4721 void VymModel::selectNextBranchInt()
4723 BranchItem *bi=getSelectedBranchItem();
4726 TreeItem *pi=bi->parent();
4730 if (i<pi->branchCount() )
4732 // select previous branch with same parent
4734 select (pi->getBranchNum(i));
4742 void VymModel::selectPrevBranchInt()
4745 BranchItem *bi=getSelectedBranchItem();
4748 BranchItem *pi=(BranchItem*)bi->parent();
4754 // select previous branch with same parent
4755 bi=pi->getBranchNum(i-1);
4760 while (bi->branchCount() >0)
4761 bi=bi->getLastBranch();
4764 // Try to select last branch in parent pi2 previous to own parent pi
4766 TreeItem *pi2=pi->parent();
4777 void VymModel::selectAboveBranchInt()
4779 BranchItem *bi=getSelectedBranchItem();
4782 BranchItem *newbi=NULL;
4783 BranchItem *pi=(BranchItem*)bi->parent();
4787 // goto previous branch with same parent
4788 newbi=pi->getBranchNum(i-1);
4789 while (newbi->branchCount() >0 )
4790 newbi=newbi->getLastBranch();
4794 if (newbi==rootItem)
4795 // already at top branch (resp. mapcenter)
4801 void VymModel::selectBelowBranchInt()
4803 BranchItem *bi=getSelectedBranchItem();
4806 BranchItem *newbi=NULL;
4808 if (bi->branchCount() >0)
4809 newbi=bi->getFirstBranch();
4816 pi=(BranchItem*)bi->parent();
4818 if (pi->branchCount()-1 > i)
4820 newbi=(BranchItem*)pi->getBranchNum(i+1);
4825 // look for siblings of myself
4826 // or parent, or parent of parent...
4837 void VymModel::selectUpperBranch()
4839 if (selection.isBlocked() ) return;
4841 BranchItem *bi=getSelectedBranchItem();
4842 if (bi && bi->isBranchLikeType())
4843 selectAboveBranchInt();
4846 void VymModel::selectLowerBranch()
4848 if (selection.isBlocked() ) return;
4850 BranchItem *bi=getSelectedBranchItem();
4851 if (bi && bi->isBranchLikeType())
4852 selectBelowBranchInt();
4856 void VymModel::selectLeftBranch()
4858 if (selection.isBlocked() ) return;
4860 QItemSelection oldsel=selModel->selection();
4863 BranchItem *selbi=getSelectedBranchItem();
4864 TreeItem::Type type=selbi->getType();
4867 if (type == TreeItem::MapCenter)
4869 QModelIndex ix=index(selbi);
4870 selModel->select (index (rowCount(ix)-1,0,ix),QItemSelectionModel::ClearAndSelect );
4873 par=(BranchItem*)selbi->parent();
4874 if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter) //FIXME-3 check getBO...
4877 if (type == TreeItem::Branch ||
4878 type == TreeItem::Image)
4880 QModelIndex ix=index (selbi->parent());
4881 selModel->select (ix,QItemSelectionModel::ClearAndSelect );
4886 if (type == TreeItem::Branch )
4888 selectLastSelectedBranch();
4896 void VymModel::selectRightBranch()
4898 if (selection.isBlocked() ) return;
4900 QItemSelection oldsel=selModel->selection();
4903 BranchItem *selbi=getSelectedBranchItem();
4904 TreeItem::Type type=selbi->getType();
4907 if (type==TreeItem::MapCenter)
4909 QModelIndex ix=index(selbi);
4910 selModel->select (index (0,0,ix),QItemSelectionModel::ClearAndSelect );
4913 par=(BranchItem*)selbi->parent();
4914 if (selbi->getBranchObj()->getOrientation()==LinkableMapObj::RightOfCenter) //FIXME-3 check getBO
4917 if ( type== TreeItem::Branch )
4919 selectLastSelectedBranch();
4925 if (type == TreeItem::Branch ||
4926 type == TreeItem::Image)
4928 QModelIndex ix=index(selbi->parent());
4929 selModel->select (ix,QItemSelectionModel::ClearAndSelect );
4936 void VymModel::selectFirstBranch()
4938 TreeItem *ti=getSelectedBranchItem();
4941 TreeItem *par=ti->parent();
4943 TreeItem *ti2=par->getFirstBranch();
4947 emitShowSelection();
4953 void VymModel::selectLastBranch()
4955 TreeItem *ti=getSelectedBranchItem();
4958 TreeItem *par=ti->parent();
4960 TreeItem *ti2=par->getLastBranch();
4964 emitShowSelection();
4970 void VymModel::selectLastSelectedBranch()
4972 TreeItem *ti=getSelectedBranchItem();
4975 ti=ti->getLastSelectedBranch();
4976 if (ti) select (ti);
4980 void VymModel::selectParent()
4982 TreeItem *ti=getSelectedItem();
4990 emitShowSelection();
4995 TreeItem::Type VymModel::selectionType()
4997 QModelIndexList list=selModel->selectedIndexes();
4998 if (list.isEmpty()) return TreeItem::Undefined;
4999 TreeItem *ti = getItem (list.first() );
5000 return ti->getType();
5004 LinkableMapObj* VymModel::getSelectedLMO()
5006 QModelIndexList list=selModel->selectedIndexes();
5007 if (!list.isEmpty() )
5009 TreeItem *ti = getItem (list.first() );
5010 TreeItem::Type type=ti->getType();
5011 if (type ==TreeItem::Branch || type==TreeItem::MapCenter || type==TreeItem::Image)
5013 return ti->getLMO();
5019 BranchObj* VymModel::getSelectedBranchObj() // FIXME-3 this should not be needed in the end!!!
5021 TreeItem *ti = getSelectedBranchItem();
5023 return (BranchObj*)ti->getLMO();
5028 BranchItem* VymModel::getSelectedBranchItem()
5030 QModelIndexList list=selModel->selectedIndexes();
5031 if (!list.isEmpty() )
5033 TreeItem *ti = getItem (list.first() );
5034 TreeItem::Type type=ti->getType();
5035 if (type ==TreeItem::Branch || type==TreeItem::MapCenter)
5036 return (BranchItem*)ti;
5041 TreeItem* VymModel::getSelectedItem()
5043 QModelIndexList list=selModel->selectedIndexes();
5044 if (!list.isEmpty() )
5045 return getItem (list.first() );
5050 QModelIndex VymModel::getSelectedIndex()
5052 QModelIndexList list=selModel->selectedIndexes();
5053 if (list.isEmpty() )
5054 return QModelIndex();
5056 return list.first();
5059 FloatImageObj* VymModel::getSelectedFloatImage()
5061 return selection.getFloatImage();
5064 QString VymModel::getSelectString ()
5066 LinkableMapObj *lmo=getSelectedLMO();
5068 return getSelectString(lmo);
5073 QString VymModel::getSelectString (LinkableMapObj *lmo) // FIXME-2 VM needs to use TreeModel. Port all calls to this funtion to the one using TreeItem below...
5075 if (!lmo) return QString();
5076 return getSelectString (lmo->getTreeItem() );
5079 QString VymModel::getSelectString (TreeItem *ti)
5083 if (ti->getType() == TreeItem::Branch ||
5084 ti->getType() == TreeItem::MapCenter)
5086 TreeItem *par=ti->parent();
5089 if (ti->depth() ==1)
5090 // Mainbranch, return
5091 s= "bo:" + QString("%1").arg(ti->num() );
5093 // Branch, call myself recursively
5094 s= getSelectString(par) + ",bo:" + QString("%1").arg(ti->num());
5098 int i=rootItem->num(ti);
5099 if (i>=0) s=QString("mc:%1").arg(i);