3 #include <q3filedialog.h>
10 #include "editxlinkdialog.h"
12 #include "exportxhtmldialog.h"
13 #include "extrainfodialog.h"
15 #include "linkablemapobj.h"
16 #include "mainwindow.h"
18 #include "texteditor.h"
19 #include "warningdialog.h"
20 #include "xml-freemind.h"
24 extern TextEditor *textEditor;
25 extern int statusbarTime;
26 extern Main *mainWindow;
27 extern QString tmpVymDir;
28 extern QString clipboardDir;
29 extern QString clipboardFile;
30 extern bool clipboardEmpty;
32 extern FlagRowObj *standardFlagsDefault;
34 extern QMenu* branchContextMenu;
35 extern QMenu* branchAddContextMenu;
36 extern QMenu* branchRemoveContextMenu;
37 extern QMenu* branchLinksContextMenu;
38 extern QMenu* branchXLinksContextMenuEdit;
39 extern QMenu* branchXLinksContextMenuFollow;
40 extern QMenu* floatimageContextMenu;
41 extern QMenu* canvasContextMenu;
44 extern Settings settings;
45 extern ImageIO imageIO;
47 extern QString vymName;
48 extern QString vymVersion;
50 extern QString iconPath;
51 extern QDir vymBaseDir;
52 extern QDir lastImageDir;
53 extern QDir lastFileDir;
55 int MapEditor::mapNum=0; // make instance
57 ///////////////////////////////////////////////////////////////////////
58 ///////////////////////////////////////////////////////////////////////
59 MapEditor::MapEditor( QWidget* parent) :
62 setObjectName ("MapEditor");
64 //cout << "Constructor ME "<<this<<endl;
68 mapScene= new QGraphicsScene(parent);
69 //mapScene= new QGraphicsScene(QRectF(0,0,width(),height()), parent);
70 mapScene->setBackgroundBrush (QBrush(Qt::white, Qt::SolidPattern));
73 model->setScene (mapScene);
74 model->setMapEditor (this);
80 defLinkColor=QColor (0,0,255);
81 defXLinkColor=QColor (180,180,180);
82 linkcolorhint=LinkableMapObj::DefaultColor;
83 linkstyle=LinkableMapObj::PolyParabel;
85 // Create bitmap cursors, platform dependant
86 HandOpenCursor=QCursor (QPixmap(iconPath+"cursorhandopen.png"),1,1);
87 PickColorCursor=QCursor ( QPixmap(iconPath+"cursorcolorpicker.png"), 5,27 );
88 CopyCursor=QCursor ( QPixmap(iconPath+"cursorcopy.png"), 1,1 );
89 XLinkCursor=QCursor ( QPixmap(iconPath+"cursorxlink.png"), 1,7 );
91 setFocusPolicy (Qt::StrongFocus);
100 xelection.setModel (model);
101 xelection.unselect();
104 defXLinkColor=QColor (230,230,230);
112 fileName=tr("unnamed");
115 stepsTotal=settings.readNumEntry("/mapeditor/stepsTotal",100);
116 undoSet.setEntry ("/history/stepsTotal",QString::number(stepsTotal));
117 mainWindow->updateHistory (undoSet);
119 // Initialize find routine
126 blockReposition=false;
127 blockSaveState=false;
131 // Create temporary files
138 setAcceptDrops (true);
143 autosaveTimer=new QTimer (this);
144 connect(autosaveTimer, SIGNAL(timeout()), this, SLOT(autosave()));
146 fileChangedTimer=new QTimer (this);
147 fileChangedTimer->start(3000);
148 connect(fileChangedTimer, SIGNAL(timeout()), this, SLOT(fileChanged()));
153 // Attributes //FIXME testing only...
156 attrTable= new AttributeTable();
158 ad=attrTable->addKey (k,StringList);
162 sl <<"val 1"<<"val 2"<< "val 3";
163 ad->setValue (QVariant (sl));
165 //attrTable->addValue ("Key A","P 1");
166 //attrTable->addValue ("Key A","P 2");
167 //attrTable->addValue ("Key A","P 3");
168 //attrTable->addValue ("Key A","P 4");
170 ad=attrTable->addKey (k,FreeString);
173 //attrTable->addValue ("Key B","w1");
174 //attrTable->addValue ("Key B","w2");
176 k="C - UniqueString";
177 ad=attrTable->addKey (k,UniqueString);
180 //attrTable->addKey ("Key Prio");
181 //attrTable->addValue ("Key Prio","Prio 1");
182 //attrTable->addValue ("Key Prio","Prio 2");
186 MapEditor::~MapEditor()
188 //cout <<"Destructor MapEditor\n";
189 autosaveTimer->stop();
190 fileChangedTimer->stop();
192 // tmpMapDir is in tmpVymDir, so it gets removed automagically when vym closes
194 //removeDir(QDir(tmpMapDir));
198 VymModel* MapEditor::getModel()
203 QGraphicsScene * MapEditor::getScene()
208 MapEditor::State MapEditor::getState()
213 void MapEditor::setStateEditHeading(bool s)
217 if (state==Idle) state=EditHeading;
223 bool MapEditor::isRepositionBlocked()
225 return blockReposition;
228 void MapEditor::setSaveStateBlocked(bool b)
233 bool MapEditor::isSelectBlocked()
235 if (state==EditHeading)
241 QString MapEditor::getName (const LinkableMapObj *lmo)
244 if (!lmo) return QString("Error: NULL has no name!");
246 if ((typeid(*lmo) == typeid(BranchObj) ||
247 typeid(*lmo) == typeid(MapCenterObj)))
250 s=(((BranchObj*)lmo)->getHeading());
251 if (s=="") s="unnamed";
252 return QString("branch (%1)").arg(s);
254 if ((typeid(*lmo) == typeid(FloatImageObj) ))
255 return QString ("floatimage [%1]").arg(((FloatImageObj*)lmo)->getOriginalFilename());
256 return QString("Unknown type has no name!");
259 void MapEditor::makeTmpDirs()
261 // Create unique temporary directories
262 tmpMapDir = tmpVymDir+QString("/mapeditor-%1").arg(mapNum);
263 histPath = tmpMapDir+"/history";
268 QString MapEditor::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, LinkableMapObj *saveSel)
270 // tmpdir temporary directory to which data will be written
271 // prefix mapname, which will be appended to images etc.
272 // writeflags Only write flags for "real" save of map, not undo
273 // offset offset of bbox of whole map in scene.
274 // Needed for XML export
280 case LinkableMapObj::Line:
283 case LinkableMapObj::Parabel:
286 case LinkableMapObj::PolyLine:
290 ls="StylePolyParabel";
294 QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
296 if (linkcolorhint==LinkableMapObj::HeadingColor)
297 colhint=attribut("linkColorHint","HeadingColor");
299 QString mapAttr=attribut("version",vymVersion);
301 mapAttr+= attribut("author",model->getAuthor()) +
302 attribut("comment",model->getComment()) +
303 attribut("date",model->getDate()) +
304 attribut("backgroundColor", mapScene->backgroundBrush().color().name() ) +
305 attribut("selectionColor", xelection.getColor().name() ) +
306 attribut("linkStyle", ls ) +
307 attribut("linkColor", defLinkColor.name() ) +
308 attribut("defXLinkColor", defXLinkColor.name() ) +
309 attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
311 s+=beginElement("vymmap",mapAttr);
314 // Find the used flags while traversing the tree
315 standardFlagsDefault->resetUsedCounter();
317 // Reset the counters before saving
318 // TODO constr. of FIO creates lots of objects, better do this in some other way...
319 FloatImageObj (mapScene).resetSaveCounter();
321 // Build xml recursivly
322 if (!saveSel || typeid (*saveSel) == typeid (MapCenterObj))
323 // Save complete map, if saveSel not set
324 s+=model->saveToDir(tmpdir,prefix,writeflags,offset);
327 if ( typeid(*saveSel) == typeid(BranchObj) )
329 s+=((BranchObj*)(saveSel))->saveToDir(tmpdir,prefix,offset);
330 else if ( typeid(*saveSel) == typeid(FloatImageObj) )
332 s+=((FloatImageObj*)(saveSel))->saveToDir(tmpdir,prefix);
335 // Save local settings
336 s+=settings.getDataXML (destPath);
339 if (!xelection.isEmpty() && !saveSel )
340 s+=valueElement("select",xelection.getSelectString());
343 s+=endElement("vymmap");
346 standardFlagsDefault->saveToDir (tmpdir+"/flags/","",writeflags);
350 QString MapEditor::getHistoryDir()
352 QString histName(QString("history-%1").arg(curStep));
353 return (tmpMapDir+"/"+histName);
356 void MapEditor::saveState(const SaveMode &savemode, const QString &undoSelection, const QString &undoCom, const QString &redoSelection, const QString &redoCom, const QString &comment, LinkableMapObj *saveSel)
358 sendData(redoCom); //FIXME testing
363 if (blockSaveState) return;
365 if (debug) cout << "ME::saveState() for "<<qPrintable (mapName)<<endl;
367 // Find out current undo directory
368 if (undosAvail<stepsTotal) undosAvail++;
370 if (curStep>stepsTotal) curStep=1;
372 QString backupXML="";
373 QString histDir=getHistoryDir();
374 QString bakMapPath=histDir+"/map.xml";
376 // Create histDir if not available
379 makeSubDirs (histDir);
381 // Save depending on how much needs to be saved
383 backupXML=saveToDir (histDir,mapName+"-",false, QPointF (),saveSel);
385 QString undoCommand="";
386 if (savemode==UndoCommand)
390 else if (savemode==PartOfMap )
393 undoCommand.replace ("PATH",bakMapPath);
396 if (!backupXML.isEmpty())
397 // Write XML Data to disk
398 saveStringToDisk (bakMapPath,backupXML);
400 // We would have to save all actions in a tree, to keep track of
401 // possible redos after a action. Possible, but we are too lazy: forget about redos.
404 // Write the current state to disk
405 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
406 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
407 undoSet.setEntry ("/history/curStep",QString::number(curStep));
408 undoSet.setEntry (QString("/history/step-%1/undoCommand").arg(curStep),undoCommand);
409 undoSet.setEntry (QString("/history/step-%1/undoSelection").arg(curStep),undoSelection);
410 undoSet.setEntry (QString("/history/step-%1/redoCommand").arg(curStep),redoCom);
411 undoSet.setEntry (QString("/history/step-%1/redoSelection").arg(curStep),redoSelection);
412 undoSet.setEntry (QString("/history/step-%1/comment").arg(curStep),comment);
413 undoSet.setEntry (QString("/history/version"),vymVersion);
414 undoSet.writeSettings(histPath);
418 // TODO remove after testing
419 //cout << " into="<< histPath.toStdString()<<endl;
420 cout << " stepsTotal="<<stepsTotal<<
421 ", undosAvail="<<undosAvail<<
422 ", redosAvail="<<redosAvail<<
423 ", curStep="<<curStep<<endl;
424 cout << " ---------------------------"<<endl;
425 cout << " comment="<<comment.toStdString()<<endl;
426 cout << " undoCom="<<undoCommand.toStdString()<<endl;
427 cout << " undoSel="<<undoSelection.toStdString()<<endl;
428 cout << " redoCom="<<redoCom.toStdString()<<endl;
429 cout << " redoSel="<<redoSelection.toStdString()<<endl;
430 if (saveSel) cout << " saveSel="<<qPrintable (model->getSelectString(saveSel))<<endl;
431 cout << " ---------------------------"<<endl;
434 mainWindow->updateHistory (undoSet);
440 void MapEditor::saveStateChangingPart(LinkableMapObj *undoSel, LinkableMapObj* redoSel, const QString &rc, const QString &comment)
442 // save the selected part of the map, Undo will replace part of map
443 QString undoSelection="";
445 undoSelection=model->getSelectString(undoSel);
447 qWarning ("MapEditor::saveStateChangingPart no undoSel given!");
448 QString redoSelection="";
450 redoSelection=model->getSelectString(undoSel);
452 qWarning ("MapEditor::saveStateChangingPart no redoSel given!");
455 saveState (PartOfMap,
456 undoSelection, "addMapReplace (\"PATH\")",
462 void MapEditor::saveStateRemovingPart(LinkableMapObj *redoSel, const QString &comment)
466 qWarning ("MapEditor::saveStateRemovingPart no redoSel given!");
469 QString undoSelection=model->getSelectString (redoSel->getParObj());
470 QString redoSelection=model->getSelectString(redoSel);
471 if (typeid(*redoSel) == typeid(BranchObj) )
473 // save the selected branch of the map, Undo will insert part of map
474 saveState (PartOfMap,
475 undoSelection, QString("addMapInsert (\"PATH\",%1)").arg(((BranchObj*)redoSel)->getNum()),
476 redoSelection, "delete ()",
483 void MapEditor::saveState(LinkableMapObj *undoSel, const QString &uc, LinkableMapObj *redoSel, const QString &rc, const QString &comment)
485 // "Normal" savestate: save commands, selections and comment
486 // so just save commands for undo and redo
487 // and use current selection
489 QString redoSelection="";
490 if (redoSel) redoSelection=model->getSelectString(redoSel);
491 QString undoSelection="";
492 if (undoSel) undoSelection=model->getSelectString(undoSel);
494 saveState (UndoCommand,
501 void MapEditor::saveState(const QString &undoSel, const QString &uc, const QString &redoSel, const QString &rc, const QString &comment)
503 // "Normal" savestate: save commands, selections and comment
504 // so just save commands for undo and redo
505 // and use current selection
506 saveState (UndoCommand,
513 void MapEditor::saveState(const QString &uc, const QString &rc, const QString &comment)
515 // "Normal" savestate applied to model (no selection needed):
516 // save commands and comment
517 saveState (UndoCommand,
525 void MapEditor::parseAtom(const QString &atom)
527 BranchObj *selb=xelection.getBranch();
533 // Split string s into command and parameters
534 parser.parseAtom (atom);
535 QString com=parser.getCommand();
538 /////////////////////////////////////////////////////////////////////
539 if (com=="addBranch")
541 if (xelection.isEmpty())
543 parser.setError (Aborted,"Nothing selected");
546 parser.setError (Aborted,"Type of selection is not a branch");
551 if (parser.checkParCount(pl))
553 if (parser.parCount()==0)
557 n=parser.parInt (ok,0);
558 if (ok ) addNewBranch (n);
562 /////////////////////////////////////////////////////////////////////
563 } else if (com=="addBranchBefore")
565 if (xelection.isEmpty())
567 parser.setError (Aborted,"Nothing selected");
570 parser.setError (Aborted,"Type of selection is not a branch");
573 if (parser.parCount()==0)
575 addNewBranchBefore ();
578 /////////////////////////////////////////////////////////////////////
579 } else if (com==QString("addMapCenter"))
581 if (parser.checkParCount(2))
583 x=parser.parDouble (ok,0);
586 y=parser.parDouble (ok,1);
587 if (ok) model->addMapCenter (QPointF(x,y));
590 /////////////////////////////////////////////////////////////////////
591 } else if (com==QString("addMapReplace"))
593 if (xelection.isEmpty())
595 parser.setError (Aborted,"Nothing selected");
598 parser.setError (Aborted,"Type of selection is not a branch");
599 } else if (parser.checkParCount(1))
601 //s=parser.parString (ok,0); // selection
602 t=parser.parString (ok,0); // path to map
603 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
604 addMapReplaceInt(model->getSelectString(selb),t);
606 /////////////////////////////////////////////////////////////////////
607 } else if (com==QString("addMapInsert"))
609 if (xelection.isEmpty())
611 parser.setError (Aborted,"Nothing selected");
614 parser.setError (Aborted,"Type of selection is not a branch");
617 if (parser.checkParCount(2))
619 t=parser.parString (ok,0); // path to map
620 n=parser.parInt(ok,1); // position
621 if (QDir::isRelativePath(t)) t=(tmpMapDir + "/"+t);
622 addMapInsertInt(t,n);
625 /////////////////////////////////////////////////////////////////////
626 } else if (com=="clearFlags")
628 if (xelection.isEmpty() )
630 parser.setError (Aborted,"Nothing selected");
633 parser.setError (Aborted,"Type of selection is not a branch");
634 } else if (parser.checkParCount(0))
636 selb->clearStandardFlags();
637 selb->updateFlagsToolbar();
639 /////////////////////////////////////////////////////////////////////
640 } else if (com=="colorBranch")
642 if (xelection.isEmpty())
644 parser.setError (Aborted,"Nothing selected");
647 parser.setError (Aborted,"Type of selection is not a branch");
648 } else if (parser.checkParCount(1))
650 QColor c=parser.parColor (ok,0);
651 if (ok) colorBranch (c);
653 /////////////////////////////////////////////////////////////////////
654 } else if (com=="colorSubtree")
656 if (xelection.isEmpty())
658 parser.setError (Aborted,"Nothing selected");
661 parser.setError (Aborted,"Type of selection is not a branch");
662 } else if (parser.checkParCount(1))
664 QColor c=parser.parColor (ok,0);
665 if (ok) colorSubtree (c);
667 /////////////////////////////////////////////////////////////////////
668 } else if (com=="copy")
670 if (xelection.isEmpty())
672 parser.setError (Aborted,"Nothing selected");
675 parser.setError (Aborted,"Type of selection is not a branch");
676 } else if (parser.checkParCount(0))
678 //FIXME missing action for copy
680 /////////////////////////////////////////////////////////////////////
681 } else if (com=="cut")
683 if (xelection.isEmpty())
685 parser.setError (Aborted,"Nothing selected");
686 } else if ( xelection.type()!=Selection::Branch &&
687 xelection.type()!=Selection::MapCenter &&
688 xelection.type()!=Selection::FloatImage )
690 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
691 } else if (parser.checkParCount(0))
695 /////////////////////////////////////////////////////////////////////
696 } else if (com=="delete")
698 if (xelection.isEmpty())
700 parser.setError (Aborted,"Nothing selected");
702 /*else if (xelection.type() != Selection::Branch && xelection.type() != Selection::FloatImage )
704 parser.setError (Aborted,"Type of selection is wrong.");
707 else if (parser.checkParCount(0))
711 /////////////////////////////////////////////////////////////////////
712 } else if (com=="deleteKeepChilds")
714 if (xelection.isEmpty())
716 parser.setError (Aborted,"Nothing selected");
719 parser.setError (Aborted,"Type of selection is not a branch");
720 } else if (parser.checkParCount(0))
724 /////////////////////////////////////////////////////////////////////
725 } else if (com=="deleteChilds")
727 if (xelection.isEmpty())
729 parser.setError (Aborted,"Nothing selected");
732 parser.setError (Aborted,"Type of selection is not a branch");
733 } else if (parser.checkParCount(0))
737 /////////////////////////////////////////////////////////////////////
738 } else if (com=="exportASCII")
742 if (parser.parCount()>=1)
743 // Hey, we even have a filename
744 fname=parser.parString(ok,0);
747 parser.setError (Aborted,"Could not read filename");
750 exportASCII (fname,false);
752 /////////////////////////////////////////////////////////////////////
753 } else if (com=="exportImage")
757 if (parser.parCount()>=2)
758 // Hey, we even have a filename
759 fname=parser.parString(ok,0);
762 parser.setError (Aborted,"Could not read filename");
765 QString format="PNG";
766 if (parser.parCount()>=2)
768 format=parser.parString(ok,1);
770 exportImage (fname,false,format);
772 /////////////////////////////////////////////////////////////////////
773 } else if (com=="exportXHTML")
777 if (parser.parCount()>=2)
778 // Hey, we even have a filename
779 fname=parser.parString(ok,1);
782 parser.setError (Aborted,"Could not read filename");
785 exportXHTML (fname,false);
787 /////////////////////////////////////////////////////////////////////
788 } else if (com=="exportXML")
792 if (parser.parCount()>=2)
793 // Hey, we even have a filename
794 fname=parser.parString(ok,1);
797 parser.setError (Aborted,"Could not read filename");
800 exportXML (fname,false);
802 /////////////////////////////////////////////////////////////////////
803 } else if (com=="importDir")
805 if (xelection.isEmpty())
807 parser.setError (Aborted,"Nothing selected");
810 parser.setError (Aborted,"Type of selection is not a branch");
811 } else if (parser.checkParCount(1))
813 s=parser.parString(ok,0);
814 if (ok) importDirInt(s);
816 /////////////////////////////////////////////////////////////////////
817 } else if (com=="linkTo")
819 if (xelection.isEmpty())
821 parser.setError (Aborted,"Nothing selected");
824 if (parser.checkParCount(4))
826 // 0 selectstring of parent
827 // 1 num in parent (for branches)
828 // 2,3 x,y of mainbranch or mapcenter
829 s=parser.parString(ok,0);
830 LinkableMapObj *dst=model->findObjBySelect (s);
833 if (typeid(*dst) == typeid(BranchObj) )
835 // Get number in parent
836 n=parser.parInt (ok,1);
839 selb->linkTo ((BranchObj*)(dst),n);
842 } else if (typeid(*dst) == typeid(MapCenterObj) )
844 selb->linkTo ((BranchObj*)(dst),-1);
845 // Get coordinates of mainbranch
846 x=parser.parDouble(ok,2);
849 y=parser.parDouble(ok,3);
859 } else if ( xelection.type() == Selection::FloatImage)
861 if (parser.checkParCount(1))
863 // 0 selectstring of parent
864 s=parser.parString(ok,0);
865 LinkableMapObj *dst=model->findObjBySelect (s);
868 if (typeid(*dst) == typeid(BranchObj) ||
869 typeid(*dst) == typeid(MapCenterObj))
870 linkTo (model->getSelectString(dst));
872 parser.setError (Aborted,"Destination is not a branch");
875 parser.setError (Aborted,"Type of selection is not a floatimage or branch");
876 /////////////////////////////////////////////////////////////////////
877 } else if (com=="loadImage")
879 if (xelection.isEmpty())
881 parser.setError (Aborted,"Nothing selected");
884 parser.setError (Aborted,"Type of selection is not a branch");
885 } else if (parser.checkParCount(1))
887 s=parser.parString(ok,0);
888 if (ok) loadFloatImageInt (s);
890 /////////////////////////////////////////////////////////////////////
891 } else if (com=="moveBranchUp")
893 if (xelection.isEmpty() )
895 parser.setError (Aborted,"Nothing selected");
898 parser.setError (Aborted,"Type of selection is not a branch");
899 } else if (parser.checkParCount(0))
903 /////////////////////////////////////////////////////////////////////
904 } else if (com=="moveBranchDown")
906 if (xelection.isEmpty() )
908 parser.setError (Aborted,"Nothing selected");
911 parser.setError (Aborted,"Type of selection is not a branch");
912 } else if (parser.checkParCount(0))
916 /////////////////////////////////////////////////////////////////////
917 } else if (com=="move")
919 if (xelection.isEmpty() )
921 parser.setError (Aborted,"Nothing selected");
922 } else if ( xelection.type()!=Selection::Branch &&
923 xelection.type()!=Selection::MapCenter &&
924 xelection.type()!=Selection::FloatImage )
926 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
927 } else if (parser.checkParCount(2))
929 x=parser.parDouble (ok,0);
932 y=parser.parDouble (ok,1);
936 /////////////////////////////////////////////////////////////////////
937 } else if (com=="moveRel")
939 if (xelection.isEmpty() )
941 parser.setError (Aborted,"Nothing selected");
942 } else if ( xelection.type()!=Selection::Branch &&
943 xelection.type()!=Selection::MapCenter &&
944 xelection.type()!=Selection::FloatImage )
946 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
947 } else if (parser.checkParCount(2))
949 x=parser.parDouble (ok,0);
952 y=parser.parDouble (ok,1);
953 if (ok) moveRel (x,y);
956 /////////////////////////////////////////////////////////////////////
957 } else if (com=="nop")
959 /////////////////////////////////////////////////////////////////////
960 } else if (com=="paste")
962 if (xelection.isEmpty() )
964 parser.setError (Aborted,"Nothing selected");
967 parser.setError (Aborted,"Type of selection is not a branch");
968 } else if (parser.checkParCount(1))
970 n=parser.parInt (ok,0);
971 if (ok) pasteNoSave(n);
973 /////////////////////////////////////////////////////////////////////
974 } else if (com=="qa")
976 if (xelection.isEmpty() )
978 parser.setError (Aborted,"Nothing selected");
981 parser.setError (Aborted,"Type of selection is not a branch");
982 } else if (parser.checkParCount(4))
985 c=parser.parString (ok,0);
988 parser.setError (Aborted,"No comment given");
991 s=parser.parString (ok,1);
994 parser.setError (Aborted,"First parameter is not a string");
997 t=parser.parString (ok,2);
1000 parser.setError (Aborted,"Condition is not a string");
1003 u=parser.parString (ok,3);
1006 parser.setError (Aborted,"Third parameter is not a string");
1011 parser.setError (Aborted,"Unknown type: "+s);
1016 parser.setError (Aborted,"Unknown operator: "+t);
1021 parser.setError (Aborted,"Type of selection is not a branch");
1024 if (selb->getHeading() == u)
1026 cout << "PASSED: " << qPrintable (c) << endl;
1029 cout << "FAILED: " << qPrintable (c) << endl;
1039 /////////////////////////////////////////////////////////////////////
1040 } else if (com=="saveImage")
1042 FloatImageObj *fio=xelection.getFloatImage();
1045 parser.setError (Aborted,"Type of selection is not an image");
1046 } else if (parser.checkParCount(2))
1048 s=parser.parString(ok,0);
1051 t=parser.parString(ok,1);
1052 if (ok) saveFloatImageInt (fio,t,s);
1055 /////////////////////////////////////////////////////////////////////
1056 } else if (com=="scroll")
1058 if (xelection.isEmpty() )
1060 parser.setError (Aborted,"Nothing selected");
1063 parser.setError (Aborted,"Type of selection is not a branch");
1064 } else if (parser.checkParCount(0))
1066 if (!scrollBranch (selb))
1067 parser.setError (Aborted,"Could not scroll branch");
1069 /////////////////////////////////////////////////////////////////////
1070 } else if (com=="select")
1072 if (parser.checkParCount(1))
1074 s=parser.parString(ok,0);
1077 /////////////////////////////////////////////////////////////////////
1078 } else if (com=="selectLastBranch")
1080 if (xelection.isEmpty() )
1082 parser.setError (Aborted,"Nothing selected");
1085 parser.setError (Aborted,"Type of selection is not a branch");
1086 } else if (parser.checkParCount(0))
1088 BranchObj *bo=selb->getLastBranch();
1090 parser.setError (Aborted,"Could not select last branch");
1094 /////////////////////////////////////////////////////////////////////
1095 } else if (com=="selectLastImage")
1097 if (xelection.isEmpty() )
1099 parser.setError (Aborted,"Nothing selected");
1102 parser.setError (Aborted,"Type of selection is not a branch");
1103 } else if (parser.checkParCount(0))
1105 FloatImageObj *fio=selb->getLastFloatImage();
1107 parser.setError (Aborted,"Could not select last image");
1111 /////////////////////////////////////////////////////////////////////
1112 } else if (com=="selectLatestAdded")
1114 if (latestSelection.isEmpty() )
1116 parser.setError (Aborted,"No latest added object");
1119 if (!select (latestSelection))
1120 parser.setError (Aborted,"Could not select latest added object "+latestSelection);
1122 /////////////////////////////////////////////////////////////////////
1123 } else if (com=="setFrameType")
1125 if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1127 parser.setError (Aborted,"Type of selection does not allow setting frame type");
1129 else if (parser.checkParCount(1))
1131 s=parser.parString(ok,0);
1132 if (ok) setFrameType (s);
1134 /////////////////////////////////////////////////////////////////////
1135 } else if (com=="setFramePenColor")
1137 if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1139 parser.setError (Aborted,"Type of selection does not allow setting of pen color");
1141 else if (parser.checkParCount(1))
1143 QColor c=parser.parColor(ok,0);
1144 if (ok) setFramePenColor (c);
1146 /////////////////////////////////////////////////////////////////////
1147 } else if (com=="setFrameBrushColor")
1149 if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1151 parser.setError (Aborted,"Type of selection does not allow setting brush color");
1153 else if (parser.checkParCount(1))
1155 QColor c=parser.parColor(ok,0);
1156 if (ok) setFrameBrushColor (c);
1158 /////////////////////////////////////////////////////////////////////
1159 } else if (com=="setFramePadding")
1161 if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1163 parser.setError (Aborted,"Type of selection does not allow setting frame padding");
1165 else if (parser.checkParCount(1))
1167 n=parser.parInt(ok,0);
1168 if (ok) setFramePadding(n);
1170 /////////////////////////////////////////////////////////////////////
1171 } else if (com=="setFrameBorderWidth")
1173 if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1175 parser.setError (Aborted,"Type of selection does not allow setting frame border width");
1177 else if (parser.checkParCount(1))
1179 n=parser.parInt(ok,0);
1180 if (ok) setFrameBorderWidth (n);
1182 /////////////////////////////////////////////////////////////////////
1183 } else if (com=="setMapAuthor")
1185 if (parser.checkParCount(1))
1187 s=parser.parString(ok,0);
1188 if (ok) setMapAuthor (s);
1190 /////////////////////////////////////////////////////////////////////
1191 } else if (com=="setMapComment")
1193 if (parser.checkParCount(1))
1195 s=parser.parString(ok,0);
1196 if (ok) setMapComment(s);
1198 /////////////////////////////////////////////////////////////////////
1199 } else if (com=="setMapBackgroundColor")
1201 if (xelection.isEmpty() )
1203 parser.setError (Aborted,"Nothing selected");
1204 } else if (! xelection.getBranch() )
1206 parser.setError (Aborted,"Type of selection is not a branch");
1207 } else if (parser.checkParCount(1))
1209 QColor c=parser.parColor (ok,0);
1210 if (ok) setMapBackgroundColor (c);
1212 /////////////////////////////////////////////////////////////////////
1213 } else if (com=="setMapDefLinkColor")
1215 if (xelection.isEmpty() )
1217 parser.setError (Aborted,"Nothing selected");
1220 parser.setError (Aborted,"Type of selection is not a branch");
1221 } else if (parser.checkParCount(1))
1223 QColor c=parser.parColor (ok,0);
1224 if (ok) setMapDefLinkColor (c);
1226 /////////////////////////////////////////////////////////////////////
1227 } else if (com=="setMapLinkStyle")
1229 if (parser.checkParCount(1))
1231 s=parser.parString (ok,0);
1232 if (ok) setMapLinkStyle(s);
1234 /////////////////////////////////////////////////////////////////////
1235 } else if (com=="setHeading")
1237 if (xelection.isEmpty() )
1239 parser.setError (Aborted,"Nothing selected");
1242 parser.setError (Aborted,"Type of selection is not a branch");
1243 } else if (parser.checkParCount(1))
1245 s=parser.parString (ok,0);
1249 /////////////////////////////////////////////////////////////////////
1250 } else if (com=="setHideExport")
1252 if (xelection.isEmpty() )
1254 parser.setError (Aborted,"Nothing selected");
1255 } else if (xelection.type()!=Selection::Branch && xelection.type() != Selection::MapCenter &&xelection.type()!=Selection::FloatImage)
1257 parser.setError (Aborted,"Type of selection is not a branch or floatimage");
1258 } else if (parser.checkParCount(1))
1260 b=parser.parBool(ok,0);
1261 if (ok) setHideExport (b);
1263 /////////////////////////////////////////////////////////////////////
1264 } else if (com=="setIncludeImagesHorizontally")
1266 if (xelection.isEmpty() )
1268 parser.setError (Aborted,"Nothing selected");
1271 parser.setError (Aborted,"Type of selection is not a branch");
1272 } else if (parser.checkParCount(1))
1274 b=parser.parBool(ok,0);
1275 if (ok) setIncludeImagesHor(b);
1277 /////////////////////////////////////////////////////////////////////
1278 } else if (com=="setIncludeImagesVertically")
1280 if (xelection.isEmpty() )
1282 parser.setError (Aborted,"Nothing selected");
1285 parser.setError (Aborted,"Type of selection is not a branch");
1286 } else if (parser.checkParCount(1))
1288 b=parser.parBool(ok,0);
1289 if (ok) setIncludeImagesVer(b);
1291 /////////////////////////////////////////////////////////////////////
1292 } else if (com=="setHideLinkUnselected")
1294 if (xelection.isEmpty() )
1296 parser.setError (Aborted,"Nothing selected");
1297 } else if ( xelection.type()!=Selection::Branch && xelection.type()!= Selection::MapCenter && xelection.type()!=Selection::FloatImage)
1299 parser.setError (Aborted,"Type of selection does not allow hiding the link");
1300 } else if (parser.checkParCount(1))
1302 b=parser.parBool(ok,0);
1303 if (ok) setHideLinkUnselected(b);
1305 /////////////////////////////////////////////////////////////////////
1306 } else if (com=="setSelectionColor")
1308 if (parser.checkParCount(1))
1310 QColor c=parser.parColor (ok,0);
1311 if (ok) setSelectionColorInt (c);
1313 /////////////////////////////////////////////////////////////////////
1314 } else if (com=="setURL")
1316 if (xelection.isEmpty() )
1318 parser.setError (Aborted,"Nothing selected");
1321 parser.setError (Aborted,"Type of selection is not a branch");
1322 } else if (parser.checkParCount(1))
1324 s=parser.parString (ok,0);
1327 /////////////////////////////////////////////////////////////////////
1328 } else if (com=="setVymLink")
1330 if (xelection.isEmpty() )
1332 parser.setError (Aborted,"Nothing selected");
1335 parser.setError (Aborted,"Type of selection is not a branch");
1336 } else if (parser.checkParCount(1))
1338 s=parser.parString (ok,0);
1339 if (ok) setVymLinkInt(s);
1342 /////////////////////////////////////////////////////////////////////
1343 else if (com=="setFlag")
1345 if (xelection.isEmpty() )
1347 parser.setError (Aborted,"Nothing selected");
1350 parser.setError (Aborted,"Type of selection is not a branch");
1351 } else if (parser.checkParCount(1))
1353 s=parser.parString(ok,0);
1356 selb->activateStandardFlag(s);
1357 selb->updateFlagsToolbar();
1360 /////////////////////////////////////////////////////////////////////
1361 } else if (com=="setFrameType")
1363 if (xelection.isEmpty() )
1365 parser.setError (Aborted,"Nothing selected");
1368 parser.setError (Aborted,"Type of selection is not a branch");
1369 } else if (parser.checkParCount(1))
1371 s=parser.parString(ok,0);
1375 /////////////////////////////////////////////////////////////////////
1376 } else if (com=="sortChildren")
1378 if (xelection.isEmpty() )
1380 parser.setError (Aborted,"Nothing selected");
1383 parser.setError (Aborted,"Type of selection is not a branch");
1384 } else if (parser.checkParCount(0))
1388 /////////////////////////////////////////////////////////////////////
1389 } else if (com=="toggleFlag")
1391 if (xelection.isEmpty() )
1393 parser.setError (Aborted,"Nothing selected");
1396 parser.setError (Aborted,"Type of selection is not a branch");
1397 } else if (parser.checkParCount(1))
1399 s=parser.parString(ok,0);
1402 selb->toggleStandardFlag(s);
1403 selb->updateFlagsToolbar();
1406 /////////////////////////////////////////////////////////////////////
1407 } else if (com=="unscroll")
1409 if (xelection.isEmpty() )
1411 parser.setError (Aborted,"Nothing selected");
1414 parser.setError (Aborted,"Type of selection is not a branch");
1415 } else if (parser.checkParCount(0))
1417 if (!unscrollBranch (selb))
1418 parser.setError (Aborted,"Could not unscroll branch");
1420 /////////////////////////////////////////////////////////////////////
1421 } else if (com=="unscrollChilds")
1423 if (xelection.isEmpty() )
1425 parser.setError (Aborted,"Nothing selected");
1428 parser.setError (Aborted,"Type of selection is not a branch");
1429 } else if (parser.checkParCount(0))
1433 /////////////////////////////////////////////////////////////////////
1434 } else if (com=="unsetFlag")
1436 if (xelection.isEmpty() )
1438 parser.setError (Aborted,"Nothing selected");
1441 parser.setError (Aborted,"Type of selection is not a branch");
1442 } else if (parser.checkParCount(1))
1444 s=parser.parString(ok,0);
1447 selb->deactivateStandardFlag(s);
1448 selb->updateFlagsToolbar();
1452 parser.setError (Aborted,"Unknown command");
1455 if (parser.errorLevel()==NoError)
1457 // setChanged(); FIXME should not be called e.g. for export?!
1458 model->reposition();
1462 // TODO Error handling
1463 qWarning("MapEditor::parseAtom: Error!");
1464 qWarning(parser.errorMessage());
1468 void MapEditor::runScript (QString script)
1470 parser.setScript (script);
1472 while (parser.next() )
1473 parseAtom(parser.getAtom());
1476 bool MapEditor::isDefault()
1481 bool MapEditor::hasChanged()
1486 void MapEditor::setChanged()
1489 autosaveTimer->start(settings.value("/mapeditor/autosave/ms/",300000).toInt());
1497 void MapEditor::closeMap()
1499 // Unselect before disabling the toolbar actions
1500 if (!xelection.isEmpty() ) xelection.unselect();
1505 // close(); FIXME needed?
1508 void MapEditor::setFilePath(QString fpath, QString destname)
1510 if (fpath.isEmpty() || fpath=="")
1517 filePath=fpath; // becomes absolute path
1518 fileName=fpath; // gets stripped of path
1519 destPath=destname; // needed for vymlinks and during load to reset fileChangedTime
1521 // If fpath is not an absolute path, complete it
1522 filePath=QDir(fpath).absPath();
1523 fileDir=filePath.left (1+filePath.findRev ("/"));
1525 // Set short name, too. Search from behind:
1526 int i=fileName.findRev("/");
1527 if (i>=0) fileName=fileName.remove (0,i+1);
1529 // Forget the .vym (or .xml) for name of map
1530 mapName=fileName.left(fileName.findRev(".",-1,true) );
1534 void MapEditor::setFilePath(QString fpath)
1536 setFilePath (fpath,fpath);
1539 QString MapEditor::getFilePath()
1544 QString MapEditor::getFileName()
1549 QString MapEditor::getMapName()
1554 QString MapEditor::getDestPath()
1559 ErrorCode MapEditor::load (QString fname, const LoadMode &lmode, const FileType &ftype)
1561 ErrorCode err=success;
1563 parseBaseHandler *handler;
1567 case VymMap: handler=new parseVYMHandler; break;
1568 case FreemindMap : handler=new parseFreemindHandler; break;
1570 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
1571 "Unknown FileType in MapEditor::load()");
1577 model->setMapEditor(this);
1578 // (map state is set later at end of load...)
1581 BranchObj *bo=xelection.getBranch();
1582 if (!bo) return aborted;
1583 if (lmode==ImportAdd)
1584 saveStateChangingPart(
1587 QString("addMapInsert (%1)").arg(fname),
1588 QString("Add map %1 to %2").arg(fname).arg(getName(bo)));
1590 saveStateChangingPart(
1593 QString("addMapReplace(%1)").arg(fname),
1594 QString("Add map %1 to %2").arg(fname).arg(getName(bo)));
1598 // Create temporary directory for packing
1600 QString tmpZipDir=makeTmpDir (ok,"vym-pack");
1603 QMessageBox::critical( 0, tr( "Critical Load Error" ),
1604 tr("Couldn't create temporary directory before load\n"));
1608 // Try to unzip file
1609 err=unzipDir (tmpZipDir,fname);
1619 // Look for mapname.xml
1620 xmlfile= fname.left(fname.findRev(".",-1,true));
1621 xmlfile=xmlfile.section( '/', -1 );
1622 QFile mfile( tmpZipDir + "/" + xmlfile + ".xml");
1623 if (!mfile.exists() )
1625 // mapname.xml does not exist, well,
1626 // maybe someone renamed the mapname.vym file...
1627 // Try to find any .xml in the toplevel
1628 // directory of the .vym file
1629 QStringList flist=QDir (tmpZipDir).entryList("*.xml");
1630 if (flist.count()==1)
1632 // Only one entry, take this one
1633 xmlfile=tmpZipDir + "/"+flist.first();
1636 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it )
1637 *it=tmpZipDir + "/" + *it;
1638 // TODO Multiple entries, load all (but only the first one into this ME)
1639 //mainWindow->fileLoadFromTmp (flist);
1640 //returnCode=1; // Silently forget this attempt to load
1641 qWarning ("MainWindow::load (fn) multimap found...");
1644 if (flist.isEmpty() )
1646 QMessageBox::critical( 0, tr( "Critical Load Error" ),
1647 tr("Couldn't find a map (*.xml) in .vym archive.\n"));
1650 } //file doesn't exist
1652 xmlfile=mfile.name();
1655 QFile file( xmlfile);
1657 // I am paranoid: file should exist anyway
1658 // according to check in mainwindow.
1659 if (!file.exists() )
1661 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
1662 tr(QString("Couldn't open map %1").arg(file.name())));
1666 bool blockSaveStateOrg=blockSaveState;
1667 blockReposition=true;
1668 blockSaveState=true;
1669 QXmlInputSource source( file);
1670 QXmlSimpleReader reader;
1671 reader.setContentHandler( handler );
1672 reader.setErrorHandler( handler );
1673 handler->setModel ( model);
1676 // We need to set the tmpDir in order to load files with rel. path
1681 tmpdir=fname.left(fname.findRev("/",-1));
1682 handler->setTmpDir (tmpdir);
1683 handler->setInputFile (file.name());
1684 handler->setLoadMode (lmode);
1685 bool ok = reader.parse( source );
1686 blockReposition=false;
1687 blockSaveState=blockSaveStateOrg;
1691 model->reposition(); // FIXME reposition the view instead...
1698 autosaveTimer->stop();
1701 // Reset timestamp to check for later updates of file
1702 fileChangedTime=QFileInfo (destPath).lastModified();
1705 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
1706 tr( handler->errorProtocol() ) );
1708 // Still return "success": the map maybe at least
1709 // partially read by the parser
1714 removeDir (QDir(tmpZipDir));
1721 ErrorCode MapEditor::save (const SaveMode &savemode)
1724 QString mapFileName;
1725 QString safeFilePath;
1727 ErrorCode err=success;
1731 mapFileName=mapName+".xml";
1733 // use name given by user, even if he chooses .doc
1734 mapFileName=fileName;
1736 // Look, if we should zip the data:
1739 QMessageBox mb( vymName,
1740 tr("The map %1\ndid not use the compressed "
1741 "vym file format.\nWriting it uncompressed will also write images \n"
1742 "and flags and thus may overwrite files in the "
1743 "given directory\n\nDo you want to write the map").arg(filePath),
1744 QMessageBox::Warning,
1745 QMessageBox::Yes | QMessageBox::Default,
1747 QMessageBox::Cancel | QMessageBox::Escape);
1748 mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
1749 mb.setButtonText( QMessageBox::No, tr("uncompressed") );
1750 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
1753 case QMessageBox::Yes:
1754 // save compressed (default file format)
1757 case QMessageBox::No:
1758 // save uncompressed
1761 case QMessageBox::Cancel:
1768 // First backup existing file, we
1769 // don't want to add to old zip archives
1773 if ( settings.value ("/mapeditor/writeBackupFile").toBool())
1775 QString backupFileName(destPath + "~");
1776 QFile backupFile(backupFileName);
1777 if (backupFile.exists() && !backupFile.remove())
1779 QMessageBox::warning(0, tr("Save Error"),
1780 tr("%1\ncould not be removed before saving").arg(backupFileName));
1782 else if (!f.rename(backupFileName))
1784 QMessageBox::warning(0, tr("Save Error"),
1785 tr("%1\ncould not be renamed before saving").arg(destPath));
1792 // Create temporary directory for packing
1794 tmpZipDir=makeTmpDir (ok,"vym-zip");
1797 QMessageBox::critical( 0, tr( "Critical Load Error" ),
1798 tr("Couldn't create temporary directory before save\n"));
1802 safeFilePath=filePath;
1803 setFilePath (tmpZipDir+"/"+ mapName+ ".xml", safeFilePath);
1806 // Create mapName and fileDir
1807 makeSubDirs (fileDir);
1810 if (savemode==CompleteMap || xelection.isEmpty())
1812 // Save complete map
1813 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),NULL);
1816 autosaveTimer->stop();
1818 cout <<"ME::save filePath="<<filePath.toStdString()<<endl;
1819 cout <<"ME::save saveFilePath="<<safeFilePath.toStdString()<<endl;
1820 cout <<"ME::save destPath="<<destPath.toStdString()<<endl;
1821 cout <<"ME::save mapName="<<mapName.toStdString()<<endl;
1822 cout <<"ME::save mapFileName="<<mapFileName.toStdString()<<endl;
1828 if (xelection.type()==Selection::FloatImage)
1831 saveFile=saveToDir (fileDir,mapName+"-",true,QPointF(),xelection.getBranch());
1832 // TODO take care of multiselections
1835 if (!saveStringToDisk(fileDir+mapFileName,saveFile))
1838 qWarning ("ME::saveStringToDisk failed!");
1844 if (err==success) err=zipDir (tmpZipDir,destPath);
1847 removeDir (QDir(tmpZipDir));
1849 // Restore original filepath outside of tmp zip dir
1850 setFilePath (safeFilePath);
1854 fileChangedTime=QFileInfo (destPath).lastModified();
1859 void MapEditor::print()
1863 printer = new QPrinter;
1864 printer->setColorMode (QPrinter::Color);
1865 printer->setPrinterName (settings.value("/mainwindow/printerName",printer->printerName()).toString());
1866 printer->setOutputFormat((QPrinter::OutputFormat)settings.value("/mainwindow/printerFormat",printer->outputFormat()).toInt());
1867 printer->setOutputFileName(settings.value("/mainwindow/printerFileName",printer->outputFileName()).toString());
1870 QRectF totalBBox=model->getTotalBBox();
1872 // Try to set orientation automagically
1873 // Note: Interpretation of generated postscript is amibiguous, if
1874 // there are problems with landscape mode, see
1875 // http://sdb.suse.de/de/sdb/html/jsmeix_print-cups-landscape-81.html
1877 if (totalBBox.width()>totalBBox.height())
1878 // recommend landscape
1879 printer->setOrientation (QPrinter::Landscape);
1881 // recommend portrait
1882 printer->setOrientation (QPrinter::Portrait);
1884 if ( printer->setup(this) )
1885 // returns false, if printing is canceled
1887 QPainter pp(printer);
1889 pp.setRenderHint(QPainter::Antialiasing,true);
1891 // Don't print the visualisation of selection
1892 xelection.unselect();
1894 QRectF mapRect=totalBBox;
1895 QGraphicsRectItem *frame=NULL;
1899 // Print frame around map
1900 mapRect.setRect (totalBBox.x()-10, totalBBox.y()-10,
1901 totalBBox.width()+20, totalBBox.height()+20);
1902 frame=mapScene->addRect (mapRect, QPen(Qt::black),QBrush(Qt::NoBrush));
1903 frame->setZValue(0);
1908 double paperAspect = (double)printer->width() / (double)printer->height();
1909 double mapAspect = (double)mapRect.width() / (double)mapRect.height();
1911 if (mapAspect>=paperAspect)
1913 // Fit horizontally to paper width
1914 //pp.setViewport(0,0, printer->width(),(int)(printer->width()/mapAspect) );
1915 viewBottom=(int)(printer->width()/mapAspect);
1918 // Fit vertically to paper height
1919 //pp.setViewport(0,0,(int)(printer->height()*mapAspect),printer->height());
1920 viewBottom=printer->height();
1925 // Print footer below map
1927 font.setPointSize(10);
1929 QRectF footerBox(0,viewBottom,printer->width(),15);
1930 pp.drawText ( footerBox,Qt::AlignLeft,"VYM - " +fileName);
1931 pp.drawText ( footerBox, Qt::AlignRight, QDate::currentDate().toString(Qt::TextDate));
1935 QRectF (0,0,printer->width(),printer->height()-15),
1936 QRectF(mapRect.x(),mapRect.y(),mapRect.width(),mapRect.height())
1939 // Viewport has paper dimension
1940 if (frame) delete (frame);
1942 // Restore selection
1943 xelection.reselect();
1945 // Save settings in vymrc
1946 settings.writeEntry("/mainwindow/printerName",printer->printerName());
1947 settings.writeEntry("/mainwindow/printerFormat",printer->outputFormat());
1948 settings.writeEntry("/mainwindow/printerFileName",printer->outputFileName());
1952 void MapEditor::setAntiAlias (bool b)
1954 setRenderHint(QPainter::Antialiasing,b);
1957 void MapEditor::setSmoothPixmap(bool b)
1959 setRenderHint(QPainter::SmoothPixmapTransform,b);
1962 QPixmap MapEditor::getPixmap()
1964 QRectF mapRect=model->getTotalBBox();
1965 QPixmap pix((int)mapRect.width()+2,(int)mapRect.height()+1);
1968 pp.setRenderHints(renderHints());
1970 // Don't print the visualisation of selection
1971 xelection.unselect();
1973 mapScene->render ( &pp,
1974 QRectF(0,0,mapRect.width()+1,mapRect.height()+1),
1975 QRectF(mapRect.x(),mapRect.y(),mapRect.width(),mapRect.height() ));
1977 // Restore selection
1978 xelection.reselect();
1983 void MapEditor::setHideTmpMode (HideTmpMode mode)
1986 model->setHideTmp (hidemode);
1987 model->reposition();
1991 HideTmpMode MapEditor::getHideTmpMode()
1996 void MapEditor::setExportMode (bool b)
1998 // should be called before and after exports
1999 // depending on the settings
2000 if (b && settings.value("/export/useHideExport","true")=="true")
2001 setHideTmpMode (HideExport);
2003 setHideTmpMode (HideNone);
2006 void MapEditor::exportASCII(QString fname,bool askName)
2009 ex.setModel (model);
2011 ex.setFile (mapName+".txt");
2017 //ex.addFilter ("TXT (*.txt)");
2018 ex.setDir(lastImageDir);
2019 //ex.setCaption(vymName+ " -" +tr("Export as ASCII")+" "+tr("(still experimental)"));
2024 setExportMode(true);
2026 setExportMode(false);
2030 void MapEditor::exportImage(QString fname, bool askName, QString format)
2034 fname=mapName+".png";
2041 QFileDialog *fd=new QFileDialog (this);
2042 fd->setCaption (tr("Export map as image"));
2043 fd->setDirectory (lastImageDir);
2044 fd->setFileMode(QFileDialog::AnyFile);
2045 fd->setFilters (imageIO.getFilters() );
2048 fl=fd->selectedFiles();
2050 format=imageIO.getType(fd->selectedFilter());
2054 setExportMode (true);
2055 QPixmap pix (getPixmap());
2056 pix.save(fname, format);
2057 setExportMode (false);
2060 void MapEditor::exportOOPresentation(const QString &fn, const QString &cf)
2064 ex.setModel (model);
2065 if (ex.setConfigFile(cf))
2067 setExportMode (true);
2068 ex.exportPresentation();
2069 setExportMode (false);
2073 void MapEditor::exportXHTML (const QString &dir, bool askForName)
2075 ExportXHTMLDialog dia(this);
2076 dia.setFilePath (filePath );
2077 dia.setMapName (mapName );
2079 if (dir!="") dia.setDir (dir);
2085 if (dia.exec()!=QDialog::Accepted)
2089 QDir d (dia.getDir());
2090 // Check, if warnings should be used before overwriting
2091 // the output directory
2092 if (d.exists() && d.count()>0)
2095 warn.showCancelButton (true);
2096 warn.setText(QString(
2097 "The directory %1 is not empty.\n"
2098 "Do you risk to overwrite some of its contents?").arg(d.path() ));
2099 warn.setCaption("Warning: Directory not empty");
2100 warn.setShowAgainName("mainwindow/overwrite-dir-xhtml");
2102 if (warn.exec()!=QDialog::Accepted) ok=false;
2109 exportXML (dia.getDir(),false );
2110 dia.doExport(mapName );
2111 //if (dia.hasChanged()) setChanged();
2115 void MapEditor::exportXML(QString dir, bool askForName)
2119 dir=browseDirectory(this,tr("Export XML to directory"));
2120 if (dir =="" && !reallyWriteDirectory(dir) )
2124 // Hide stuff during export, if settings want this
2125 setExportMode (true);
2127 // Create subdirectories
2130 // write to directory
2131 QString saveFile=saveToDir (dir,mapName+"-",true,model->getTotalBBox().topLeft() ,NULL);
2134 file.setName ( dir + "/"+mapName+".xml");
2135 if ( !file.open( QIODevice::WriteOnly ) )
2137 // This should neverever happen
2138 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open %1").arg(file.name()));
2142 // Write it finally, and write in UTF8, no matter what
2143 QTextStream ts( &file );
2144 ts.setEncoding (QTextStream::UnicodeUTF8);
2148 // Now write image, too
2149 exportImage (dir+"/images/"+mapName+".png",false,"PNG");
2151 setExportMode (false);
2154 void MapEditor::clear()
2156 xelection.unselect();
2160 void MapEditor::copy()
2162 LinkableMapObj *sel=xelection.single();
2165 if (redosAvail == 0)
2168 QString s=model->getSelectString(sel);
2169 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy selection to clipboard",sel );
2170 curClipboard=curStep;
2173 // Copy also to global clipboard, because we are at last step in history
2174 QString bakMapName(QString("history-%1").arg(curStep));
2175 QString bakMapDir(tmpMapDir +"/"+bakMapName);
2176 copyDir (bakMapDir,clipboardDir );
2178 clipboardEmpty=false;
2183 void MapEditor::redo()
2185 // Can we undo at all?
2186 if (redosAvail<1) return;
2188 bool blockSaveStateOrg=blockSaveState;
2189 blockSaveState=true;
2193 if (undosAvail<stepsTotal) undosAvail++;
2195 if (curStep>stepsTotal) curStep=1;
2196 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
2197 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
2198 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
2199 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
2200 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
2201 QString version=undoSet.readEntry ("/history/version");
2203 /* TODO Maybe check for version, if we save the history
2204 if (!checkVersion(version))
2205 QMessageBox::warning(0,tr("Warning"),
2206 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
2209 // Find out current undo directory
2210 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
2214 cout << "ME::redo() begin\n";
2215 cout << " undosAvail="<<undosAvail<<endl;
2216 cout << " redosAvail="<<redosAvail<<endl;
2217 cout << " curStep="<<curStep<<endl;
2218 cout << " ---------------------------"<<endl;
2219 cout << " comment="<<comment.toStdString()<<endl;
2220 cout << " undoCom="<<undoCommand.toStdString()<<endl;
2221 cout << " undoSel="<<undoSelection.toStdString()<<endl;
2222 cout << " redoCom="<<redoCommand.toStdString()<<endl;
2223 cout << " redoSel="<<redoSelection.toStdString()<<endl;
2224 cout << " ---------------------------"<<endl<<endl;
2227 // select object before redo
2228 if (!redoSelection.isEmpty())
2229 select (redoSelection);
2232 parseAtom (redoCommand);
2233 model->reposition();
2235 blockSaveState=blockSaveStateOrg;
2237 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
2238 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
2239 undoSet.setEntry ("/history/curStep",QString::number(curStep));
2240 undoSet.writeSettings(histPath);
2242 mainWindow->updateHistory (undoSet);
2245 /* TODO remove testing
2246 cout << "ME::redo() end\n";
2247 cout << " undosAvail="<<undosAvail<<endl;
2248 cout << " redosAvail="<<redosAvail<<endl;
2249 cout << " curStep="<<curStep<<endl;
2250 cout << " ---------------------------"<<endl<<endl;
2256 bool MapEditor::isRedoAvailable()
2258 if (undoSet.readNumEntry("/history/redosAvail",0)>0)
2264 void MapEditor::undo()
2266 // Can we undo at all?
2267 if (undosAvail<1) return;
2269 mainWindow->statusMessage (tr("Autosave disabled during undo."));
2271 bool blockSaveStateOrg=blockSaveState;
2272 blockSaveState=true;
2274 QString undoCommand= undoSet.readEntry (QString("/history/step-%1/undoCommand").arg(curStep));
2275 QString undoSelection=undoSet.readEntry (QString("/history/step-%1/undoSelection").arg(curStep));
2276 QString redoCommand= undoSet.readEntry (QString("/history/step-%1/redoCommand").arg(curStep));
2277 QString redoSelection=undoSet.readEntry (QString("/history/step-%1/redoSelection").arg(curStep));
2278 QString comment=undoSet.readEntry (QString("/history/step-%1/comment").arg(curStep));
2279 QString version=undoSet.readEntry ("/history/version");
2281 /* TODO Maybe check for version, if we save the history
2282 if (!checkVersion(version))
2283 QMessageBox::warning(0,tr("Warning"),
2284 tr("Version %1 of saved undo/redo data\ndoes not match current vym version %2.").arg(version).arg(vymVersion));
2287 // Find out current undo directory
2288 QString bakMapDir(QString(tmpMapDir+"/undo-%1").arg(curStep));
2290 // select object before undo
2291 if (!undoSelection.isEmpty())
2292 select (undoSelection);
2296 cout << "ME::undo() begin\n";
2297 cout << " undosAvail="<<undosAvail<<endl;
2298 cout << " redosAvail="<<redosAvail<<endl;
2299 cout << " curStep="<<curStep<<endl;
2300 cout << " ---------------------------"<<endl;
2301 cout << " comment="<<comment.toStdString()<<endl;
2302 cout << " undoCom="<<undoCommand.toStdString()<<endl;
2303 cout << " undoSel="<<undoSelection.toStdString()<<endl;
2304 cout << " redoCom="<<redoCommand.toStdString()<<endl;
2305 cout << " redoSel="<<redoSelection.toStdString()<<endl;
2306 cout << " ---------------------------"<<endl<<endl;
2308 parseAtom (undoCommand);
2309 model->reposition();
2313 if (curStep<1) curStep=stepsTotal;
2317 blockSaveState=blockSaveStateOrg;
2318 /* TODO remove testing
2319 cout << "ME::undo() end\n";
2320 cout << " undosAvail="<<undosAvail<<endl;
2321 cout << " redosAvail="<<redosAvail<<endl;
2322 cout << " curStep="<<curStep<<endl;
2323 cout << " ---------------------------"<<endl<<endl;
2326 undoSet.setEntry ("/history/undosAvail",QString::number(undosAvail));
2327 undoSet.setEntry ("/history/redosAvail",QString::number(redosAvail));
2328 undoSet.setEntry ("/history/curStep",QString::number(curStep));
2329 undoSet.writeSettings(histPath);
2331 mainWindow->updateHistory (undoSet);
2334 ensureSelectionVisible();
2337 bool MapEditor::isUndoAvailable()
2339 if (undoSet.readNumEntry("/history/undosAvail",0)>0)
2345 void MapEditor::gotoHistoryStep (int i)
2347 // Restore variables
2348 int undosAvail=undoSet.readNumEntry (QString("/history/undosAvail"));
2349 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
2351 if (i<0) i=undosAvail+redosAvail;
2353 // Clicking above current step makes us undo things
2356 for (int j=0; j<undosAvail-i; j++) undo();
2359 // Clicking below current step makes us redo things
2361 for (int j=undosAvail; j<i; j++)
2363 if (debug) cout << "ME::gotoHistoryStep redo "<<j<<"/"<<undosAvail<<" i="<<i<<endl;
2367 // And ignore clicking the current row ;-)
2370 void MapEditor::addMapReplaceInt(const QString &undoSel, const QString &path)
2372 QString pathDir=path.left(path.findRev("/"));
2378 // We need to parse saved XML data
2379 parseVYMHandler handler;
2380 QXmlInputSource source( file);
2381 QXmlSimpleReader reader;
2382 reader.setContentHandler( &handler );
2383 reader.setErrorHandler( &handler );
2384 handler.setModel ( model);
2385 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
2386 if (undoSel.isEmpty())
2390 handler.setLoadMode (NewMap);
2394 handler.setLoadMode (ImportReplace);
2396 blockReposition=true;
2397 bool ok = reader.parse( source );
2398 blockReposition=false;
2401 // This should never ever happen
2402 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
2403 handler.errorProtocol());
2406 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
2409 void MapEditor::addMapInsertInt (const QString &path, int pos)
2411 BranchObj *sel=xelection.getBranch();
2414 QString pathDir=path.left(path.findRev("/"));
2420 // We need to parse saved XML data
2421 parseVYMHandler handler;
2422 QXmlInputSource source( file);
2423 QXmlSimpleReader reader;
2424 reader.setContentHandler( &handler );
2425 reader.setErrorHandler( &handler );
2426 handler.setModel (model);
2427 handler.setTmpDir ( pathDir ); // needed to load files with rel. path
2428 handler.setLoadMode (ImportAdd);
2429 blockReposition=true;
2430 bool ok = reader.parse( source );
2431 blockReposition=false;
2434 // This should never ever happen
2435 QMessageBox::critical( 0, tr( "Critical Parse Error while reading %1").arg(path),
2436 handler.errorProtocol());
2438 if (sel->getDepth()>0)
2439 sel->getLastBranch()->linkTo (sel,pos);
2441 QMessageBox::critical( 0, tr( "Critical Error" ), tr("Could not read %1").arg(path));
2445 void MapEditor::pasteNoSave(const int &n)
2447 bool old=blockSaveState;
2448 blockSaveState=true;
2449 bool zippedOrg=zipped;
2450 if (redosAvail > 0 || n!=0)
2452 // Use the "historical" buffer
2453 QString bakMapName(QString("history-%1").arg(n));
2454 QString bakMapDir(tmpMapDir +"/"+bakMapName);
2455 load (bakMapDir+"/"+clipboardFile,ImportAdd, VymMap);
2457 // Use the global buffer
2458 load (clipboardDir+"/"+clipboardFile,ImportAdd, VymMap);
2463 void MapEditor::paste()
2465 BranchObj *sel=xelection.getBranch();
2468 saveStateChangingPart(
2471 QString ("paste (%1)").arg(curClipboard),
2472 QString("Paste to %1").arg( getName(sel))
2475 model->reposition();
2479 void MapEditor::cut()
2481 LinkableMapObj *sel=xelection.single();
2482 if ( sel && (xelection.type() == Selection::Branch ||
2483 xelection.type()==Selection::MapCenter ||
2484 xelection.type()==Selection::FloatImage))
2486 /* No savestate! savestate is called in cutNoSave
2487 saveStateChangingPart(
2491 QString("Cut %1").arg(getName(sel ))
2496 model->reposition();
2500 void MapEditor::move(const double &x, const double &y)
2502 LinkableMapObj *sel=xelection.single();
2505 QPointF ap(sel->getAbsPos());
2509 QString ps=qpointfToString(ap);
2510 QString s=xelection.getSelectString();
2513 s, "move "+qpointfToString(to),
2514 QString("Move %1 to %2").arg(getName(sel)).arg(ps));
2516 model->reposition();
2522 void MapEditor::moveRel (const double &x, const double &y)
2524 LinkableMapObj *sel=xelection.single();
2527 QPointF rp(sel->getRelPos());
2531 QString ps=qpointfToString (sel->getRelPos());
2532 QString s=model->getSelectString(sel);
2535 s, "moveRel "+qpointfToString(to),
2536 QString("Move %1 to relative position %2").arg(getName(sel)).arg(ps));
2537 ((OrnamentedObj*)sel)->move2RelPos (x,y);
2538 model->reposition();
2545 void MapEditor::moveBranchUp()
2547 BranchObj* bo=xelection.getBranch();
2551 if (!bo->canMoveBranchUp()) return;
2552 par=(BranchObj*)(bo->getParObj());
2553 BranchObj *obo=par->moveBranchUp (bo); // bo will be the one below selection
2554 saveState (model->getSelectString(bo),"moveBranchDown ()",model->getSelectString(obo),"moveBranchUp ()",QString("Move up %1").arg(getName(bo)));
2555 model->reposition();
2558 ensureSelectionVisible();
2562 void MapEditor::moveBranchDown()
2564 BranchObj* bo=xelection.getBranch();
2568 if (!bo->canMoveBranchDown()) return;
2569 par=(BranchObj*)(bo->getParObj());
2570 BranchObj *obo=par->moveBranchDown(bo); // bo will be the one above selection
2571 saveState(model->getSelectString(bo),"moveBranchUp ()",model->getSelectString(obo),"moveBranchDown ()",QString("Move down %1").arg(getName(bo)));
2572 model->reposition();
2575 ensureSelectionVisible();
2579 void MapEditor::sortChildren()
2581 BranchObj* bo=xelection.getBranch();
2584 if(bo->countBranches()>1)
2586 saveStateChangingPart(bo,bo, "sortChildren ()",QString("Sort children of %1").arg(getName(bo)));
2588 model->reposition();
2589 ensureSelectionVisible();
2594 void MapEditor::linkTo(const QString &dstString)
2596 FloatImageObj *fio=xelection.getFloatImage();
2599 BranchObj *dst=(BranchObj*)(model->findObjBySelect(dstString));
2600 if (dst && (typeid(*dst)==typeid (BranchObj) ||
2601 typeid(*dst)==typeid (MapCenterObj)))
2603 LinkableMapObj *dstPar=dst->getParObj();
2604 QString parString=model->getSelectString(dstPar);
2605 QString fioPreSelectString=model->getSelectString(fio);
2606 QString fioPreParentSelectString=model->getSelectString (fio->getParObj());
2607 ((BranchObj*)(dst))->addFloatImage (fio);
2608 xelection.unselect();
2609 ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
2610 fio=((BranchObj*)(dst))->getLastFloatImage();
2613 xelection.select(fio);
2615 model->getSelectString(fio),
2616 QString("linkTo (\"%1\")").arg(fioPreParentSelectString),
2618 QString ("linkTo (\"%1\")").arg(dstString),
2619 QString ("Link floatimage to %1").arg(getName(dst)));
2624 QString MapEditor::getHeading(bool &ok, QPoint &p)
2626 BranchObj *bo=xelection.getBranch();
2630 p=mapFromScene(bo->getAbsPos());
2631 return bo->getHeading();
2637 void MapEditor::setHeading(const QString &s)
2639 BranchObj *sel=xelection.getBranch();
2644 "setHeading (\""+sel->getHeading()+"\")",
2646 "setHeading (\""+s+"\")",
2647 QString("Set heading of %1 to \"%2\"").arg(getName(sel)).arg(s) );
2648 sel->setHeading(s );
2649 model->reposition();
2651 ensureSelectionVisible();
2655 void MapEditor::setHeadingInt(const QString &s)
2657 BranchObj *bo=xelection.getBranch();
2661 model->reposition();
2663 ensureSelectionVisible();
2667 void MapEditor::setVymLinkInt (const QString &s)
2669 // Internal function, no saveState needed
2670 BranchObj *bo=xelection.getBranch();
2674 model->reposition();
2677 ensureSelectionVisible();
2681 BranchObj* MapEditor::addMapCenter ()
2683 MapCenterObj *mco= model->addMapCenter(contextMenuPos);
2684 xelection.select (mco);
2686 ensureSelectionVisible();
2691 QString ("addMapCenter (%1,%2)").arg (contextMenuPos.x()).arg(contextMenuPos.y()),
2692 QString ("Adding MapCenter to (%1,%2").arg (contextMenuPos.x()).arg(contextMenuPos.y())
2697 BranchObj* MapEditor::addNewBranchInt(int num)
2699 // Depending on pos:
2700 // -3 insert in childs of parent above selection
2701 // -2 add branch to selection
2702 // -1 insert in childs of parent below selection
2703 // 0..n insert in childs of parent at pos
2704 BranchObj *newbo=NULL;
2705 BranchObj *bo=xelection.getBranch();
2710 // save scroll state. If scrolled, automatically select
2711 // new branch in order to tmp unscroll parent...
2712 newbo=bo->addBranch();
2717 bo=(BranchObj*)bo->getParObj();
2718 if (bo) newbo=bo->insertBranch(num);
2722 bo=(BranchObj*)bo->getParObj();
2723 if (bo) newbo=bo->insertBranch(num);
2725 if (!newbo) return NULL;
2730 BranchObj* MapEditor::addNewBranch(int pos)
2732 // Different meaning than num in addNewBranchInt!
2736 BranchObj *bo = xelection.getBranch();
2737 BranchObj *newbo=NULL;
2741 setCursor (Qt::ArrowCursor);
2743 newbo=addNewBranchInt (pos-2);
2751 QString ("addBranch (%1)").arg(pos),
2752 QString ("Add new branch to %1").arg(getName(bo)));
2754 model->reposition();
2756 latestSelection=model->getSelectString(newbo);
2757 // In Network mode, the client needs to know where the new branch is,
2758 // so we have to pass on this information via saveState.
2759 // TODO: Get rid of this positioning workaround
2760 QString ps=qpointfToString (newbo->getAbsPos());
2761 sendData ("selectLatestAdded ()");
2762 sendData (QString("move %1").arg(ps));
2770 BranchObj* MapEditor::addNewBranchBefore()
2772 BranchObj *newbo=NULL;
2773 BranchObj *bo = xelection.getBranch();
2774 if (bo && xelection.type()==Selection::Branch)
2775 // We accept no MapCenterObj here, so we _have_ a parent
2777 QPointF p=bo->getRelPos();
2780 BranchObj *parbo=(BranchObj*)(bo->getParObj());
2782 // add below selection
2783 newbo=parbo->insertBranch(bo->getNum()+1);
2786 newbo->move2RelPos (p);
2788 // Move selection to new branch
2789 bo->linkTo (newbo,-1);
2791 saveState (newbo, "deleteKeepChilds ()", newbo, "addBranchBefore ()",
2792 QString ("Add branch before %1").arg(getName(bo)));
2794 model->reposition();
2798 latestSelection=xelection.getSelectString();
2802 void MapEditor::deleteSelection()
2804 BranchObj *bo = xelection.getBranch();
2805 if (bo && xelection.type()==Selection::MapCenter)
2807 // BranchObj* par=(BranchObj*)(bo->getParObj());
2808 xelection.unselect();
2809 /* FIXME Note: does saveStateRemovingPart work for MCO? (No parent!)
2810 saveStateRemovingPart (bo, QString ("Delete %1").arg(getName(bo)));
2812 bo=model->removeMapCenter ((MapCenterObj*)bo);
2815 xelection.select (bo);
2816 ensureSelectionVisible();
2819 model->reposition();
2822 if (bo && xelection.type()==Selection::Branch)
2824 BranchObj* par=(BranchObj*)bo->getParObj();
2825 xelection.unselect();
2826 saveStateRemovingPart (bo, QString ("Delete %1").arg(getName(bo)));
2827 par->removeBranch(bo);
2828 xelection.select (par);
2829 ensureSelectionVisible();
2830 model->reposition();
2831 // xelection.update();
2835 FloatImageObj *fio=xelection.getFloatImage();
2838 BranchObj* par=(BranchObj*)fio->getParObj();
2839 saveStateChangingPart(
2843 QString("Delete %1").arg(getName(fio))
2845 xelection.unselect();
2846 par->removeFloatImage(fio);
2847 xelection.select (par);
2848 model->reposition();
2850 ensureSelectionVisible();
2855 LinkableMapObj* MapEditor::getSelection()
2857 return xelection.single();
2860 BranchObj* MapEditor::getSelectedBranch()
2862 return xelection.getBranch();
2865 FloatImageObj* MapEditor::getSelectedFloatImage()
2867 return xelection.getFloatImage();
2870 void MapEditor::unselect()
2872 xelection.unselect();
2875 void MapEditor::reselect()
2877 xelection.reselect();
2880 bool MapEditor::select (const QString &s)
2882 if (xelection.select(s))
2885 ensureSelectionVisible();
2892 bool MapEditor::select (LinkableMapObj *lmo)
2894 if (xelection.select(lmo))
2897 ensureSelectionVisible();
2904 QString MapEditor::getSelectString()
2906 return xelection.getSelectString();
2909 void MapEditor::selectInt (LinkableMapObj *lmo)
2911 if (lmo && xelection.single()!= lmo && isSelectBlocked()==false )
2913 xelection.select(lmo);
2919 void MapEditor::selectNextBranchInt()
2921 // Increase number of branch
2922 LinkableMapObj *sel=xelection.single();
2925 QString s=xelection.getSelectString();
2931 part=s.section(",",-1);
2933 num=part.right(part.length() - 3);
2935 s=s.left (s.length() -num.length());
2938 num=QString ("%1").arg(num.toUInt()+1);
2942 // Try to select this one
2943 if (select (s)) return;
2945 // We have no direct successor,
2946 // try to increase the parental number in order to
2947 // find a successor with same depth
2949 int d=xelection.single()->getDepth();
2954 while (!found && d>0)
2956 s=s.section (",",0,d-1);
2957 // replace substring of current depth in s with "1"
2958 part=s.section(",",-1);
2960 num=part.right(part.length() - 3);
2964 // increase number of parent
2965 num=QString ("%1").arg(num.toUInt()+1);
2966 s=s.section (",",0,d-2) + ","+ typ+num;
2969 // Special case, look at orientation
2970 if (xelection.single()->getOrientation()==LinkableMapObj::RightOfCenter)
2971 num=QString ("%1").arg(num.toUInt()+1);
2973 num=QString ("%1").arg(num.toUInt()-1);
2978 // pad to oldDepth, select the first branch for each depth
2979 for (i=d;i<oldDepth;i++)
2984 if ( xelection.getBranch()->countBranches()>0)
2992 // try to select the freshly built string
3000 void MapEditor::selectPrevBranchInt()
3002 // Decrease number of branch
3003 BranchObj *bo=xelection.getBranch();
3006 QString s=xelection.getSelectString();
3012 part=s.section(",",-1);
3014 num=part.right(part.length() - 3);
3016 s=s.left (s.length() -num.length());
3018 int n=num.toInt()-1;
3021 num=QString ("%1").arg(n);
3024 // Try to select this one
3025 if (n>=0 && select (s)) return;
3027 // We have no direct precessor,
3028 // try to decrease the parental number in order to
3029 // find a precessor with same depth
3031 int d=xelection.single()->getDepth();
3036 while (!found && d>0)
3038 s=s.section (",",0,d-1);
3039 // replace substring of current depth in s with "1"
3040 part=s.section(",",-1);
3042 num=part.right(part.length() - 3);
3046 // decrease number of parent
3047 num=QString ("%1").arg(num.toInt()-1);
3048 s=s.section (",",0,d-2) + ","+ typ+num;
3051 // Special case, look at orientation
3052 if (xelection.single()->getOrientation()==LinkableMapObj::RightOfCenter)
3053 num=QString ("%1").arg(num.toInt()-1);
3055 num=QString ("%1").arg(num.toInt()+1);
3060 // pad to oldDepth, select the last branch for each depth
3061 for (i=d;i<oldDepth;i++)
3065 if ( xelection.getBranch()->countBranches()>0)
3066 s+=",bo:"+ QString ("%1").arg( xelection.getBranch()->countBranches()-1 );
3073 // try to select the freshly built string
3081 void MapEditor::selectUpperBranch()
3083 if (isSelectBlocked() ) return;
3085 BranchObj *bo=xelection.getBranch();
3086 if (bo && xelection.type()==Selection::Branch)
3088 if (bo->getOrientation()==LinkableMapObj::RightOfCenter)
3089 selectPrevBranchInt();
3091 if (bo->getDepth()==1)
3092 selectNextBranchInt();
3094 selectPrevBranchInt();
3098 void MapEditor::selectLowerBranch()
3100 if (isSelectBlocked() ) return;
3102 BranchObj *bo=xelection.getBranch();
3103 if (bo && xelection.type()==Selection::Branch)
3105 if (bo->getOrientation()==LinkableMapObj::RightOfCenter)
3106 selectNextBranchInt();
3108 if (bo->getDepth()==1)
3109 selectPrevBranchInt();
3111 selectNextBranchInt();
3116 void MapEditor::selectLeftBranch()
3118 if (isSelectBlocked() ) return;
3122 LinkableMapObj *sel=xelection.single();
3125 if (xelection.type()== Selection::MapCenter)
3127 par=xelection.getBranch();
3128 bo=par->getLastSelectedBranch();
3131 // Workaround for reselecting on left and right side
3132 if (bo->getOrientation()==LinkableMapObj::RightOfCenter)
3133 bo=par->getLastBranch();
3136 bo=par->getLastBranch();
3137 xelection.select(bo);
3139 ensureSelectionVisible();
3145 par=(BranchObj*)(sel->getParObj());
3146 if (sel->getOrientation()==LinkableMapObj::RightOfCenter)
3148 if (xelection.type() == Selection::Branch ||
3149 xelection.type() == Selection::FloatImage)
3151 xelection.select(par);
3153 ensureSelectionVisible();
3158 if (xelection.type() == Selection::Branch )
3160 bo=xelection.getBranch()->getLastSelectedBranch();
3163 xelection.select(bo);
3165 ensureSelectionVisible();
3174 void MapEditor::selectRightBranch()
3176 if (isSelectBlocked() ) return;
3180 LinkableMapObj *sel=xelection.single();
3183 if (xelection.type()==Selection::MapCenter)
3185 par=xelection.getBranch();
3186 bo=par->getLastSelectedBranch();
3189 // Workaround for reselecting on left and right side
3190 if (bo->getOrientation()==LinkableMapObj::LeftOfCenter)
3191 bo=par->getFirstBranch();
3194 xelection.select(bo);
3196 ensureSelectionVisible();
3202 par=(BranchObj*)(xelection.single()->getParObj());
3203 if (xelection.single()->getOrientation()==LinkableMapObj::LeftOfCenter)
3205 if (xelection.type() == Selection::Branch ||
3206 xelection.type() == Selection::FloatImage)
3208 xelection.select(par);
3210 ensureSelectionVisible();
3215 if (xelection.type() == Selection::Branch)
3217 bo=xelection.getBranch()->getLastSelectedBranch();
3220 xelection.select(bo);
3222 ensureSelectionVisible();
3231 void MapEditor::selectFirstBranch()
3233 BranchObj *bo1=xelection.getBranch();
3238 par=(BranchObj*)(bo1->getParObj());
3240 bo2=par->getFirstBranch();
3242 xelection.select(bo2);
3244 ensureSelectionVisible();
3250 void MapEditor::selectLastBranch()
3252 BranchObj *bo1=xelection.getBranch();
3257 par=(BranchObj*)(bo1->getParObj());
3259 bo2=par->getLastBranch();
3262 xelection.select(bo2);
3264 ensureSelectionVisible();
3270 void MapEditor::selectMapBackgroundImage ()
3272 Q3FileDialog *fd=new Q3FileDialog( this);
3273 fd->setMode (Q3FileDialog::ExistingFile);
3274 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
3275 ImagePreview *p =new ImagePreview (fd);
3276 fd->setContentsPreviewEnabled( TRUE );
3277 fd->setContentsPreview( p, p );
3278 fd->setPreviewMode( Q3FileDialog::Contents );
3279 fd->setCaption(vymName+" - " +tr("Load background image"));
3280 fd->setDir (lastImageDir);
3283 if ( fd->exec() == QDialog::Accepted )
3285 // TODO selectMapBackgroundImg in QT4 use: lastImageDir=fd->directory();
3286 lastImageDir=QDir (fd->dirPath());
3287 setMapBackgroundImage (fd->selectedFile());
3291 void MapEditor::setMapBackgroundImage (const QString &fn) //FIXME missing savestate
3293 QColor oldcol=mapScene->backgroundBrush().color();
3297 QString ("setMapBackgroundImage (%1)").arg(oldcol.name()),
3299 QString ("setMapBackgroundImage (%1)").arg(col.name()),
3300 QString("Set background color of map to %1").arg(col.name()));
3303 brush.setTextureImage (QPixmap (fn));
3304 mapScene->setBackgroundBrush(brush);
3307 void MapEditor::selectMapBackgroundColor()
3309 QColor col = QColorDialog::getColor( mapScene->backgroundBrush().color(), this );
3310 if ( !col.isValid() ) return;
3311 setMapBackgroundColor( col );
3315 void MapEditor::setMapBackgroundColor(QColor col)
3317 QColor oldcol=mapScene->backgroundBrush().color();
3319 QString ("setMapBackgroundColor (\"%1\")").arg(oldcol.name()),
3320 QString ("setMapBackgroundColor (\"%1\")").arg(col.name()),
3321 QString("Set background color of map to %1").arg(col.name()));
3322 mapScene->setBackgroundBrush(col);
3325 QColor MapEditor::getMapBackgroundColor()
3327 return mapScene->backgroundBrush().color();
3330 QColor MapEditor::getCurrentHeadingColor()
3332 BranchObj *bo=xelection.getBranch();
3333 if (bo) return bo->getColor();
3335 QMessageBox::warning(0,tr("Warning"),tr("Can't get color of heading,\nthere's no branch selected"));
3339 void MapEditor::colorBranch (QColor c)
3341 BranchObj *bo=xelection.getBranch();
3346 QString ("colorBranch (\"%1\")").arg(bo->getColor().name()),
3348 QString ("colorBranch (\"%1\")").arg(c.name()),
3349 QString("Set color of %1 to %2").arg(getName(bo)).arg(c.name())
3351 bo->setColor(c); // color branch
3355 void MapEditor::colorSubtree (QColor c)
3357 BranchObj *bo=xelection.getBranch();
3360 saveStateChangingPart(
3363 QString ("colorSubtree (\"%1\")").arg(c.name()),
3364 QString ("Set color of %1 and childs to %2").arg(getName(bo)).arg(c.name())
3366 bo->setColorSubtree (c); // color links, color childs
3371 void MapEditor::toggleStandardFlag(QString f)
3373 BranchObj *bo=xelection.getBranch();
3377 if (bo->isSetStandardFlag(f))
3389 QString("%1 (\"%2\")").arg(u).arg(f),
3391 QString("%1 (\"%2\")").arg(r).arg(f),
3392 QString("Toggling standard flag \"%1\" of %2").arg(f).arg(getName(bo)));
3393 bo->toggleStandardFlag (f,mainWindow->useFlagGroups());
3399 BranchObj* MapEditor::findText (QString s, bool cs)
3401 QTextDocument::FindFlags flags=0;
3402 if (cs) flags=QTextDocument::FindCaseSensitively;
3405 { // Nothing found or new find process
3407 // nothing found, start again
3409 itFind=model->first();
3411 bool searching=true;
3412 bool foundNote=false;
3413 while (searching && !EOFind)
3417 // Searching in Note
3418 if (itFind->getNote().contains(s,cs))
3420 if (xelection.single()!=itFind)
3422 xelection.select(itFind);
3423 ensureSelectionVisible();
3425 if (textEditor->findText(s,flags))
3431 // Searching in Heading
3432 if (searching && itFind->getHeading().contains (s,cs) )
3434 xelection.select(itFind);
3435 ensureSelectionVisible();
3441 itFind=model->next(itFind);
3442 if (!itFind) EOFind=true;
3444 //cout <<"still searching... "<<qPrintable( itFind->getHeading())<<endl;
3447 return xelection.getBranch();
3452 void MapEditor::findReset()
3453 { // Necessary if text to find changes during a find process
3457 void MapEditor::setURL(const QString &url)
3459 BranchObj *bo=xelection.getBranch();
3462 QString oldurl=bo->getURL();
3466 QString ("setURL (\"%1\")").arg(oldurl),
3468 QString ("setURL (\"%1\")").arg(url),
3469 QString ("set URL of %1 to %2").arg(getName(bo)).arg(url)
3472 model->reposition();
3474 ensureSelectionVisible();
3478 void MapEditor::editURL()
3480 BranchObj *bo=xelection.getBranch();
3484 QString text = QInputDialog::getText(
3485 "VYM", tr("Enter URL:"), QLineEdit::Normal,
3486 bo->getURL(), &ok, this );
3488 // user entered something and pressed OK
3493 void MapEditor::editLocalURL()
3495 BranchObj *bo=xelection.getBranch();
3498 QStringList filters;
3499 filters <<"All files (*)";
3500 filters << tr("Text","Filedialog") + " (*.txt)";
3501 filters << tr("Spreadsheet","Filedialog") + " (*.odp,*.sxc)";
3502 filters << tr("Textdocument","Filedialog") +" (*.odw,*.sxw)";
3503 filters << tr("Images","Filedialog") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)";
3504 QFileDialog *fd=new QFileDialog( this,vymName+" - " +tr("Set URL to a local file"));
3505 fd->setFilters (filters);
3506 fd->setCaption(vymName+" - " +tr("Set URL to a local file"));
3507 fd->setDirectory (lastFileDir);
3508 if (! bo->getVymLink().isEmpty() )
3509 fd->selectFile( bo->getURL() );
3512 if ( fd->exec() == QDialog::Accepted )
3514 lastFileDir=QDir (fd->directory().path());
3515 setURL (fd->selectedFile() );
3520 QString MapEditor::getURL()
3522 BranchObj *bo=xelection.getBranch();
3524 return bo->getURL();
3529 QStringList MapEditor::getURLs()
3532 BranchObj *bo=xelection.getBranch();
3538 if (!bo->getURL().isEmpty()) urls.append( bo->getURL());
3546 void MapEditor::editHeading2URL()
3548 BranchObj *bo=xelection.getBranch();
3550 setURL (bo->getHeading());
3553 void MapEditor::editBugzilla2URL()
3555 BranchObj *bo=xelection.getBranch();
3558 QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
3563 void MapEditor::editFATE2URL()
3565 BranchObj *bo=xelection.getBranch();
3568 QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
3571 "setURL (\""+bo->getURL()+"\")",
3573 "setURL (\""+url+"\")",
3574 QString("Use heading of %1 as link to FATE").arg(getName(bo))
3581 void MapEditor::editVymLink()
3583 BranchObj *bo=xelection.getBranch();
3586 QStringList filters;
3587 filters <<"VYM map (*.vym)";
3588 QFileDialog *fd=new QFileDialog( this,vymName+" - " +tr("Link to another map"));
3589 fd->setFilters (filters);
3590 fd->setCaption(vymName+" - " +tr("Link to another map"));
3591 fd->setDirectory (lastFileDir);
3592 if (! bo->getVymLink().isEmpty() )
3593 fd->selectFile( bo->getVymLink() );
3597 if ( fd->exec() == QDialog::Accepted )
3599 lastFileDir=QDir (fd->directory().path());
3602 "setVymLink (\""+bo->getVymLink()+"\")",
3604 "setVymLink (\""+fd->selectedFile()+"\")",
3605 QString("Set vymlink of %1 to %2").arg(getName(bo)).arg(fd->selectedFile())
3607 setVymLinkInt (fd->selectedFile() );
3612 void MapEditor::deleteVymLink()
3614 BranchObj *bo=xelection.getBranch();
3619 "setVymLink (\""+bo->getVymLink()+"\")",
3621 "setVymLink (\"\")",
3622 QString("Unset vymlink of %1").arg(getName(bo))
3624 bo->setVymLink ("" );
3626 model->reposition();
3631 void MapEditor::setHideExport(bool b)
3633 BranchObj *bo=xelection.getBranch();
3636 bo->setHideInExport (b);
3637 QString u= b ? "false" : "true";
3638 QString r=!b ? "false" : "true";
3642 QString ("setHideExport (%1)").arg(u),
3644 QString ("setHideExport (%1)").arg(r),
3645 QString ("Set HideExport flag of %1 to %2").arg(getName(bo)).arg (r)
3648 model->reposition();
3654 void MapEditor::toggleHideExport()
3656 BranchObj *bo=xelection.getBranch();
3658 setHideExport ( !bo->hideInExport() );
3661 QString MapEditor::getVymLink()
3663 BranchObj *bo=xelection.getBranch();
3665 return bo->getVymLink();
3671 QStringList MapEditor::getVymLinks()
3674 BranchObj *bo=xelection.getBranch();
3680 if (!bo->getVymLink().isEmpty()) links.append( bo->getVymLink());
3688 void MapEditor::deleteKeepChilds()
3690 BranchObj *bo=xelection.getBranch();
3694 par=(BranchObj*)(bo->getParObj());
3696 // Don't use this on mapcenter
3699 // Check if we have childs at all to keep
3700 if (bo->countBranches()==0)
3706 QPointF p=bo->getRelPos();
3707 saveStateChangingPart(
3710 "deleteKeepChilds ()",
3711 QString("Remove %1 and keep its childs").arg(getName(bo))
3714 QString sel=model->getSelectString(bo);
3716 par->removeBranchHere(bo);
3717 model->reposition();
3719 xelection.getBranch()->move2RelPos (p);
3720 model->reposition();
3724 void MapEditor::deleteChilds()
3726 BranchObj *bo=xelection.getBranch();
3729 saveStateChangingPart(
3733 QString( "Remove childs of branch %1").arg(getName(bo))
3736 model->reposition();
3740 void MapEditor::editMapInfo()
3742 ExtraInfoDialog dia;
3743 dia.setMapName (getFileName() );
3744 dia.setAuthor (model->getAuthor() );
3745 dia.setComment(model->getComment() );
3749 stats+=tr("%1 items on map\n","Info about map").arg (mapScene->items().size(),6);
3759 if (!bo->getNote().isEmpty() ) n++;
3760 f+= bo->countFloatImages();
3762 xl+=bo->countXLinks();
3765 stats+=QString ("%1 branches\n").arg (b-1,6);
3766 stats+=QString ("%1 xLinks \n").arg (xl,6);
3767 stats+=QString ("%1 notes\n").arg (n,6);
3768 stats+=QString ("%1 images\n").arg (f,6);
3769 dia.setStats (stats);
3771 // Finally show dialog
3772 if (dia.exec() == QDialog::Accepted)
3774 setMapAuthor (dia.getAuthor() );
3775 setMapComment (dia.getComment() );
3779 void MapEditor::ensureSelectionVisible()
3781 LinkableMapObj *lmo=xelection.single();
3782 if (lmo) ensureVisible (lmo->getBBox() );
3786 void MapEditor::updateSelection()
3788 // Tell selection to update geometries
3792 void MapEditor::updateActions()
3794 // Tell mainwindow to update states of actions
3795 mainWindow->updateActions();
3796 // TODO maybe don't update if blockReposition is set
3799 void MapEditor::updateNoteFlag()
3802 BranchObj *bo=xelection.getBranch();
3805 bo->updateNoteFlag();
3806 mainWindow->updateActions();
3810 void MapEditor::setMapAuthor (const QString &s)
3813 QString ("setMapAuthor (\"%1\")").arg(model->getAuthor()),
3814 QString ("setMapAuthor (\"%1\")").arg(s),
3815 QString ("Set author of map to \"%1\"").arg(s)
3817 model->setAuthor (s);
3820 void MapEditor::setMapComment (const QString &s)
3823 QString ("setMapComment (\"%1\")").arg(model->getComment()),
3824 QString ("setMapComment (\"%1\")").arg(s),
3825 QString ("Set comment of map")
3827 model->setComment (s);
3830 void MapEditor::setMapLinkStyle (const QString & s)
3833 if (linkstyle==LinkableMapObj::Line)
3835 else if (linkstyle==LinkableMapObj::Parabel)
3836 snow="StyleParabel";
3837 else if (linkstyle==LinkableMapObj::PolyLine)
3838 snow="StylePolyLine";
3839 else if (linkstyle==LinkableMapObj::PolyParabel)
3840 snow="StyleParabel";
3843 QString("setMapLinkStyle (\"%1\")").arg(s),
3844 QString("setMapLinkStyle (\"%1\")").arg(snow),
3845 QString("Set map link style (\"%1\")").arg(s)
3849 linkstyle=LinkableMapObj::Line;
3850 else if (s=="StyleParabel")
3851 linkstyle=LinkableMapObj::Parabel;
3852 else if (s=="StylePolyLine")
3853 linkstyle=LinkableMapObj::PolyLine;
3855 linkstyle=LinkableMapObj::PolyParabel;
3862 bo->setLinkStyle(bo->getDefLinkStyle());
3865 model->reposition();
3868 LinkableMapObj::Style MapEditor::getMapLinkStyle ()
3873 void MapEditor::setMapDefLinkColor(QColor c)
3886 void MapEditor::setMapLinkColorHintInt()
3888 // called from setMapLinkColorHint(lch) or at end of parse
3898 void MapEditor::setMapLinkColorHint(LinkableMapObj::ColorHint lch)
3901 setMapLinkColorHintInt();
3904 void MapEditor::toggleMapLinkColorHint()
3906 if (linkcolorhint==LinkableMapObj::HeadingColor)
3907 linkcolorhint=LinkableMapObj::DefaultColor;
3909 linkcolorhint=LinkableMapObj::HeadingColor;
3919 LinkableMapObj::ColorHint MapEditor::getMapLinkColorHint()
3921 return linkcolorhint;
3924 QColor MapEditor::getMapDefLinkColor()
3926 return defLinkColor;
3929 void MapEditor::setMapDefXLinkColor(QColor col)
3934 QColor MapEditor::getMapDefXLinkColor()
3936 return defXLinkColor;
3939 void MapEditor::setMapDefXLinkWidth (int w)
3944 int MapEditor::getMapDefXLinkWidth()
3946 return defXLinkWidth;
3949 void MapEditor::selectMapLinkColor()
3951 QColor col = QColorDialog::getColor( defLinkColor, this );
3952 if ( !col.isValid() ) return;
3954 QString("setMapDefLinkColor (\"%1\")").arg(getMapDefLinkColor().name()),
3955 QString("setMapDefLinkColor (\"%1\")").arg(col.name()),
3956 QString("Set map link color to %1").arg(col.name())
3958 setMapDefLinkColor( col );
3961 void MapEditor::selectMapSelectionColor()
3963 QColor col = QColorDialog::getColor( defLinkColor, this );
3964 setSelectionColor (col);
3967 void MapEditor::setSelectionColorInt (QColor col)
3969 if ( !col.isValid() ) return;
3970 xelection.setColor (col);
3973 void MapEditor::setSelectionColor(QColor col)
3975 if ( !col.isValid() ) return;
3977 QString("setSelectionColor (%1)").arg(xelection.getColor().name()),
3978 QString("setSelectionColor (%1)").arg(col.name()),
3979 QString("Set color of selection box to %1").arg(col.name())
3981 setSelectionColorInt (col);
3984 QColor MapEditor::getSelectionColor()
3986 return xelection.getColor();
3989 bool MapEditor::scrollBranch(BranchObj *bo)
3993 if (bo->isScrolled()) return false;
3994 if (bo->countBranches()==0) return false;
3995 if (bo->getDepth()==0) return false;
4001 QString ("%1 ()").arg(u),
4003 QString ("%1 ()").arg(r),
4004 QString ("%1 %2").arg(r).arg(getName(bo))
4014 bool MapEditor::unscrollBranch(BranchObj *bo)
4018 if (!bo->isScrolled()) return false;
4019 if (bo->countBranches()==0) return false;
4020 if (bo->getDepth()==0) return false;
4026 QString ("%1 ()").arg(u),
4028 QString ("%1 ()").arg(r),
4029 QString ("%1 %2").arg(r).arg(getName(bo))
4039 void MapEditor::toggleScroll()
4041 BranchObj *bo=xelection.getBranch();
4042 if (xelection.type()==Selection::Branch )
4044 if (bo->isScrolled())
4045 unscrollBranch (bo);
4051 void MapEditor::unscrollChilds()
4053 BranchObj *bo=xelection.getBranch();
4059 if (bo->isScrolled()) unscrollBranch (bo);
4065 FloatImageObj* MapEditor::loadFloatImageInt (QString fn)
4067 BranchObj *bo=xelection.getBranch();
4071 bo->addFloatImage();
4072 fio=bo->getLastFloatImage();
4074 model->reposition();
4081 void MapEditor::loadFloatImage ()
4083 BranchObj *bo=xelection.getBranch();
4087 Q3FileDialog *fd=new Q3FileDialog( this);
4088 fd->setMode (Q3FileDialog::ExistingFiles);
4089 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
4090 ImagePreview *p =new ImagePreview (fd);
4091 fd->setContentsPreviewEnabled( TRUE );
4092 fd->setContentsPreview( p, p );
4093 fd->setPreviewMode( Q3FileDialog::Contents );
4094 fd->setCaption(vymName+" - " +tr("Load image"));
4095 fd->setDir (lastImageDir);
4098 if ( fd->exec() == QDialog::Accepted )
4100 // TODO loadFIO in QT4 use: lastImageDir=fd->directory();
4101 lastImageDir=QDir (fd->dirPath());
4104 for (int j=0; j<fd->selectedFiles().count(); j++)
4106 s=fd->selectedFiles().at(j);
4107 fio=loadFloatImageInt (s);
4110 (LinkableMapObj*)fio,
4113 QString ("loadImage (%1)").arg(s ),
4114 QString("Add image %1 to %2").arg(s).arg(getName(bo))
4117 // TODO loadFIO error handling
4118 qWarning ("Failed to load "+s);
4126 void MapEditor::saveFloatImageInt (FloatImageObj *fio, const QString &type, const QString &fn)
4128 fio->save (fn,type);
4131 void MapEditor::saveFloatImage ()
4133 FloatImageObj *fio=xelection.getFloatImage();
4136 QFileDialog *fd=new QFileDialog( this);
4137 fd->setFilters (imageIO.getFilters());
4138 fd->setCaption(vymName+" - " +tr("Save image"));
4139 fd->setFileMode( QFileDialog::AnyFile );
4140 fd->setDirectory (lastImageDir);
4141 // fd->setSelection (fio->getOriginalFilename());
4145 if ( fd->exec() == QDialog::Accepted && fd->selectedFiles().count()==1)
4147 fn=fd->selectedFiles().at(0);
4148 if (QFile (fn).exists() )
4150 QMessageBox mb( vymName,
4151 tr("The file %1 exists already.\n"
4152 "Do you want to overwrite it?").arg(fn),
4153 QMessageBox::Warning,
4154 QMessageBox::Yes | QMessageBox::Default,
4155 QMessageBox::Cancel | QMessageBox::Escape,
4156 QMessageBox::NoButton );
4158 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
4159 mb.setButtonText( QMessageBox::No, tr("Cancel"));
4162 case QMessageBox::Yes:
4165 case QMessageBox::Cancel:
4172 saveFloatImageInt (fio,fd->selectedFilter(),fn );
4178 void MapEditor::setFrameType(const FrameObj::FrameType &t)
4180 BranchObj *bo=xelection.getBranch();
4183 QString s=bo->getFrameTypeName();
4184 bo->setFrameType (t);
4185 saveState (bo, QString("setFrameType (\"%1\")").arg(s),
4186 bo, QString ("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),QString ("set type of frame to %1").arg(s));
4187 model->reposition();
4192 void MapEditor::setFrameType(const QString &s)
4194 BranchObj *bo=xelection.getBranch();
4197 saveState (bo, QString("setFrameType (\"%1\")").arg(bo->getFrameTypeName()),
4198 bo, QString ("setFrameType (\"%1\")").arg(s),QString ("set type of frame to %1").arg(s));
4199 bo->setFrameType (s);
4200 model->reposition();
4205 void MapEditor::setFramePenColor(const QColor &c)
4207 BranchObj *bo=xelection.getBranch();
4210 saveState (bo, QString("setFramePenColor (\"%1\")").arg(bo->getFramePenColor().name() ),
4211 bo, QString ("setFramePenColor (\"%1\")").arg(c.name() ),QString ("set pen color of frame to %1").arg(c.name() ));
4212 bo->setFramePenColor (c);
4216 void MapEditor::setFrameBrushColor(const QColor &c)
4218 BranchObj *bo=xelection.getBranch();
4221 saveState (bo, QString("setFrameBrushColor (\"%1\")").arg(bo->getFrameBrushColor().name() ),
4222 bo, QString ("setFrameBrushColor (\"%1\")").arg(c.name() ),QString ("set brush color of frame to %1").arg(c.name() ));
4223 bo->setFrameBrushColor (c);
4227 void MapEditor::setFramePadding (const int &i)
4229 BranchObj *bo=xelection.getBranch();
4232 saveState (bo, QString("setFramePadding (\"%1\")").arg(bo->getFramePadding() ),
4233 bo, QString ("setFramePadding (\"%1\")").arg(i),QString ("set brush color of frame to %1").arg(i));
4234 bo->setFramePadding (i);
4235 model->reposition();
4240 void MapEditor::setFrameBorderWidth(const int &i)
4242 BranchObj *bo=xelection.getBranch();
4245 saveState (bo, QString("setFrameBorderWidth (\"%1\")").arg(bo->getFrameBorderWidth() ),
4246 bo, QString ("setFrameBorderWidth (\"%1\")").arg(i),QString ("set border width of frame to %1").arg(i));
4247 bo->setFrameBorderWidth (i);
4248 model->reposition();
4253 void MapEditor::setIncludeImagesVer(bool b)
4255 BranchObj *bo=xelection.getBranch();
4258 QString u= b ? "false" : "true";
4259 QString r=!b ? "false" : "true";
4263 QString("setIncludeImagesVertically (%1)").arg(u),
4265 QString("setIncludeImagesVertically (%1)").arg(r),
4266 QString("Include images vertically in %1").arg(getName(bo))
4268 bo->setIncludeImagesVer(b);
4269 model->reposition();
4273 void MapEditor::setIncludeImagesHor(bool b)
4275 BranchObj *bo=xelection.getBranch();
4278 QString u= b ? "false" : "true";
4279 QString r=!b ? "false" : "true";
4283 QString("setIncludeImagesHorizontally (%1)").arg(u),
4285 QString("setIncludeImagesHorizontally (%1)").arg(r),
4286 QString("Include images horizontally in %1").arg(getName(bo))
4288 bo->setIncludeImagesHor(b);
4289 model->reposition();
4293 void MapEditor::setHideLinkUnselected (bool b)
4295 LinkableMapObj *sel=xelection.single();
4297 (xelection.type() == Selection::Branch ||
4298 xelection.type() == Selection::MapCenter ||
4299 xelection.type() == Selection::FloatImage ))
4301 QString u= b ? "false" : "true";
4302 QString r=!b ? "false" : "true";
4306 QString("setHideLinkUnselected (%1)").arg(u),
4308 QString("setHideLinkUnselected (%1)").arg(r),
4309 QString("Hide link of %1 if unselected").arg(getName(sel))
4311 sel->setHideLinkUnselected(b);
4315 void MapEditor::importDirInt(BranchObj *dst, QDir d)
4317 BranchObj *bo=xelection.getBranch();
4320 // Traverse directories
4321 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
4322 QFileInfoList list = d.entryInfoList();
4325 for (int i = 0; i < list.size(); ++i)
4328 if (fi.fileName() != "." && fi.fileName() != ".." )
4331 bo=dst->getLastBranch();
4332 bo->setHeading (fi.fileName() );
4333 bo->setColor (QColor("blue"));
4335 if ( !d.cd(fi.fileName()) )
4336 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi.fileName()));
4339 // Recursively add subdirs
4340 importDirInt (bo,d);
4346 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
4347 list = d.entryInfoList();
4349 for (int i = 0; i < list.size(); ++i)
4353 bo=dst->getLastBranch();
4354 bo->setHeading (fi.fileName() );
4355 bo->setColor (QColor("black"));
4356 if (fi.fileName().right(4) == ".vym" )
4357 bo->setVymLink (fi.filePath());
4362 void MapEditor::importDirInt (const QString &s)
4364 BranchObj *bo=xelection.getBranch();
4367 saveStateChangingPart (bo,bo,QString ("importDir (\"%1\")").arg(s),QString("Import directory structure from %1").arg(s));
4370 importDirInt (bo,d);
4374 void MapEditor::importDir()
4376 BranchObj *bo=xelection.getBranch();
4379 QStringList filters;
4380 filters <<"VYM map (*.vym)";
4381 QFileDialog *fd=new QFileDialog( this,vymName+ " - " +tr("Choose directory structure to import"));
4382 fd->setMode (QFileDialog::DirectoryOnly);
4383 fd->setFilters (filters);
4384 fd->setCaption(vymName+" - " +tr("Choose directory structure to import"));
4388 if ( fd->exec() == QDialog::Accepted )
4390 importDirInt (fd->selectedFile() );
4391 model->reposition();
4397 void MapEditor::followXLink(int i)
4399 BranchObj *bo=xelection.getBranch();
4402 bo=bo->XLinkTargetAt(i);
4405 xelection.select(bo);
4406 ensureSelectionVisible();
4411 void MapEditor::editXLink(int i) // FIXME missing saveState
4413 BranchObj *bo=xelection.getBranch();
4416 XLinkObj *xlo=bo->XLinkAt(i);
4419 EditXLinkDialog dia;
4421 dia.setSelection(bo);
4422 if (dia.exec() == QDialog::Accepted)
4424 if (dia.useSettingsGlobal() )
4426 setMapDefXLinkColor (xlo->getColor() );
4427 setMapDefXLinkWidth (xlo->getWidth() );
4429 if (dia.deleteXLink())
4430 bo->deleteXLinkAt(i);
4436 AttributeTable* MapEditor::attributeTable()
4441 void MapEditor::testFunction1()
4443 BranchObj *bo=xelection.getBranch();
4444 if (bo) model->moveAway (bo);
4446 /* TODO Hide hidden stuff temporary, maybe add this as regular function somewhere
4447 if (hidemode==HideNone)
4449 setHideTmpMode (HideExport);
4450 mapCenter->calcBBoxSizeWithChilds();
4451 QRectF totalBBox=mapCenter->getTotalBBox();
4452 QRectF mapRect=totalBBox;
4453 QCanvasRectangle *frame=NULL;
4455 cout << " map has =("<<totalBBox.x()<<","<<totalBBox.y()<<","<<totalBBox.width()<<","<<totalBBox.height()<<")\n";
4457 mapRect.setRect (totalBBox.x(), totalBBox.y(),
4458 totalBBox.width(), totalBBox.height());
4459 frame=new QCanvasRectangle (mapRect,mapScene);
4460 frame->setBrush (QColor(white));
4461 frame->setPen (QColor(black));
4462 frame->setZValue(0);
4467 setHideTmpMode (HideNone);
4469 cout <<" hidemode="<<hidemode<<endl;
4473 void MapEditor::testFunction2()
4478 if (hidemode==HideExport)
4479 setHideTmpMode (HideNone);
4481 setHideTmpMode (HideExport);
4485 void MapEditor::contextMenuEvent ( QContextMenuEvent * e )
4487 // Lineedits are already closed by preceding
4488 // mouseEvent, we don't need to close here.
4490 QPointF p = mapToScene(e->pos());
4491 LinkableMapObj* lmo=model->findMapObj(p, NULL);
4494 { // MapObj was found
4495 if (xelection.single() != lmo)
4497 // select the MapObj
4498 xelection.select(lmo);
4501 if (xelection.getBranch() )
4503 // Context Menu on branch or mapcenter
4505 branchContextMenu->popup(e->globalPos() );
4508 if (xelection.getFloatImage() )
4510 // Context Menu on floatimage
4512 floatimageContextMenu->popup(e->globalPos() );
4516 { // No MapObj found, we are on the Canvas itself
4517 // Context Menu on scene
4520 canvasContextMenu->popup(e->globalPos() );
4525 void MapEditor::keyPressEvent(QKeyEvent* e)
4527 if (e->modifiers() & Qt::ControlModifier)
4529 switch (mainWindow->getModMode())
4531 case Main::ModModeColor:
4532 setCursor (PickColorCursor);
4534 case Main::ModModeCopy:
4535 setCursor (CopyCursor);
4537 case Main::ModModeXLink:
4538 setCursor (XLinkCursor);
4541 setCursor (Qt::ArrowCursor);
4547 void MapEditor::keyReleaseEvent(QKeyEvent* e)
4549 if (!(e->modifiers() & Qt::ControlModifier))
4550 setCursor (Qt::ArrowCursor);
4553 void MapEditor::mousePressEvent(QMouseEvent* e)
4555 // Ignore right clicks, these will go to context menus
4556 if (e->button() == Qt::RightButton )
4562 //Ignore clicks while editing heading
4563 if (isSelectBlocked() )
4569 QPointF p = mapToScene(e->pos());
4570 LinkableMapObj* lmo=model->findMapObj(p, NULL);
4574 //Take care of system flags _or_ modifier modes
4576 if (lmo && (typeid(*lmo)==typeid(BranchObj) ||
4577 typeid(*lmo)==typeid(MapCenterObj) ))
4579 QString foname=((BranchObj*)lmo)->getSystemFlagName(p);
4580 if (!foname.isEmpty())
4582 // systemFlag clicked
4586 if (e->state() & Qt::ControlModifier)
4587 mainWindow->editOpenURLTab();
4589 mainWindow->editOpenURL();
4591 else if (foname=="vymLink")
4593 mainWindow->editOpenVymLink();
4594 // tabWidget may change, better return now
4595 // before segfaulting...
4596 } else if (foname=="note")
4597 mainWindow->windowToggleNoteEditor();
4598 else if (foname=="hideInExport")
4605 // No system flag clicked, take care of modmodes (CTRL-Click)
4606 if (e->state() & Qt::ControlModifier)
4608 if (mainWindow->getModMode()==Main::ModModeColor)
4611 setCursor (PickColorCursor);
4614 if (mainWindow->getModMode()==Main::ModModeXLink)
4616 BranchObj *bo_begin=NULL;
4618 bo_begin=(BranchObj*)(lmo);
4620 if (xelection.getBranch() )
4621 bo_begin=xelection.getBranch();
4625 linkingObj_src=bo_begin;
4626 tmpXLink=new XLinkObj (mapScene);
4627 tmpXLink->setBegin (bo_begin);
4628 tmpXLink->setEnd (p);
4629 tmpXLink->setColor(defXLinkColor);
4630 tmpXLink->setWidth(defXLinkWidth);
4631 tmpXLink->updateXLink();
4632 tmpXLink->setVisibility (true);
4636 } // End of modmodes
4640 // Select the clicked object
4643 // Left Button Move Branches
4644 if (e->button() == Qt::LeftButton )
4646 //movingObj_start.setX( p.x() - selection->x() );// TODO replaced selection->lmo here
4647 //movingObj_start.setY( p.y() - selection->y() );
4648 movingObj_start.setX( p.x() - lmo->x() );
4649 movingObj_start.setY( p.y() - lmo->y() );
4650 movingObj_orgPos.setX (lmo->x() );
4651 movingObj_orgPos.setY (lmo->y() );
4652 movingObj_orgRelPos=lmo->getRelPos();
4654 // If modMode==copy, then we want to "move" the _new_ object around
4655 // then we need the offset from p to the _old_ selection, because of tmp
4656 if (mainWindow->getModMode()==Main::ModModeCopy &&
4657 e->state() & Qt::ControlModifier)
4659 BranchObj *bo=xelection.getBranch();
4663 bo->addBranch ((BranchObj*)xelection.single());
4665 xelection.select(bo->getLastBranch());
4666 model->reposition();
4670 movingObj=xelection.single();
4672 // Middle Button Toggle Scroll
4673 // (On Mac OS X this won't work, but we still have
4674 // a button in the toolbar)
4675 if (e->button() == Qt::MidButton )
4680 { // No MapObj found, we are on the scene itself
4681 // Left Button move Pos of sceneView
4682 if (e->button() == Qt::LeftButton )
4684 movingObj=NULL; // move Content not Obj
4685 movingObj_start=e->globalPos();
4686 movingCont_start=QPointF (
4687 horizontalScrollBar()->value(),
4688 verticalScrollBar()->value());
4689 movingVec=QPointF(0,0);
4690 setCursor(HandOpenCursor);
4695 void MapEditor::mouseMoveEvent(QMouseEvent* e)
4697 QPointF p = mapToScene(e->pos());
4698 LinkableMapObj *lmosel=xelection.single();
4700 // Move the selected MapObj
4701 if ( lmosel && movingObj)
4703 // reset cursor if we are moving and don't copy
4704 if (mainWindow->getModMode()!=Main::ModModeCopy)
4705 setCursor (Qt::ArrowCursor);
4707 // To avoid jumping of the sceneView, only
4708 // ensureSelectionVisible, if not tmp linked
4709 if (!lmosel->hasParObjTmp())
4710 ensureSelectionVisible ();
4712 // Now move the selection, but add relative position
4713 // (movingObj_start) where selection was chosen with
4714 // mousepointer. (This avoids flickering resp. jumping
4715 // of selection back to absPos)
4717 // Check if we could link
4718 LinkableMapObj* lmo=model->findMapObj(p, lmosel);
4721 FloatObj *fio=xelection.getFloatImage();
4724 fio->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
4726 fio->updateLink(); //no need for reposition, if we update link here
4729 // Relink float to new mapcenter or branch, if shift is pressed
4730 // Only relink, if selection really has a new parent
4731 if ( (e->modifiers()==Qt::ShiftModifier) && lmo &&
4732 ( (typeid(*lmo)==typeid(BranchObj)) ||
4733 (typeid(*lmo)==typeid(MapCenterObj)) ) &&
4734 ( lmo != fio->getParObj())
4737 if (typeid(*fio) == typeid(FloatImageObj) &&
4738 ( (typeid(*lmo)==typeid(BranchObj) ||
4739 typeid(*lmo)==typeid(MapCenterObj)) ))
4742 // Also save the move which was done so far
4743 QString pold=qpointfToString(movingObj_orgRelPos);
4744 QString pnow=qpointfToString(fio->getRelPos());
4750 QString("Move %1 to relative position %2").arg(getName(fio)).arg(pnow));
4751 fio->getParObj()->requestReposition();
4752 model->reposition();
4754 linkTo (model->getSelectString(lmo));
4756 //movingObj_orgRelPos=lmosel->getRelPos();
4758 model->reposition();
4762 { // selection != a FloatObj
4763 if (lmosel->getDepth()==0)
4766 if (e->buttons()== Qt::LeftButton && e->modifiers()==Qt::ShiftModifier)
4767 ((MapCenterObj*)lmosel)->moveAll(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
4769 lmosel->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
4770 model->updateRelPositions();
4773 if (lmosel->getDepth()==1)
4776 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
4777 lmosel->setRelPos();
4780 // Move ordinary branch
4781 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
4784 // Maybe we can relink temporary?
4785 if (lmo && (lmo!=lmosel) && xelection.getBranch() &&
4786 (typeid(*lmo)==typeid(BranchObj) ||
4787 typeid(*lmo)==typeid(MapCenterObj)) )
4790 if (e->modifiers()==Qt::ControlModifier)
4792 // Special case: CTRL to link below lmo
4793 lmosel->setParObjTmp (lmo,p,+1);
4795 else if (e->modifiers()==Qt::ShiftModifier)
4796 lmosel->setParObjTmp (lmo,p,-1);
4798 lmosel->setParObjTmp (lmo,p,0);
4801 lmosel->unsetParObjTmp();
4803 // reposition subbranch
4804 lmosel->reposition();
4808 } // no FloatImageObj
4812 } // selection && moving_obj
4814 // Draw a link from one branch to another
4817 tmpXLink->setEnd (p);
4818 tmpXLink->updateXLink();
4822 if (!movingObj && !pickingColor &&!drawingLink && e->buttons() == Qt::LeftButton )
4824 QPointF p=e->globalPos();
4825 movingVec.setX(-p.x() + movingObj_start.x() );
4826 movingVec.setY(-p.y() + movingObj_start.y() );
4827 horizontalScrollBar()->setSliderPosition((int)( movingCont_start.x()+movingVec.x() ));
4828 verticalScrollBar()->setSliderPosition((int)( movingCont_start.y()+movingVec.y() ) );
4833 void MapEditor::mouseReleaseEvent(QMouseEvent* e)
4835 QPointF p = mapToScene(e->pos());
4836 LinkableMapObj *dst;
4837 LinkableMapObj *lmosel=xelection.single();
4838 // Have we been picking color?
4842 setCursor (Qt::ArrowCursor);
4843 // Check if we are over another branch
4844 dst=model->findMapObj(p, NULL);
4847 if (e->state() & Qt::ShiftModifier)
4848 colorBranch (((BranchObj*)dst)->getColor());
4850 colorSubtree (((BranchObj*)dst)->getColor());
4855 // Have we been drawing a link?
4859 // Check if we are over another branch
4860 dst=model->findMapObj(p, NULL);
4863 tmpXLink->setEnd ( ((BranchObj*)(dst)) );
4864 tmpXLink->updateXLink();
4865 tmpXLink->activate(); //FIXME savestate missing
4866 //saveStateComplete(QString("Activate xLink from %1 to %2").arg(getName(tmpXLink->getBegin())).arg(getName(tmpXLink->getEnd())) );
4875 // Have we been moving something?
4876 if ( lmosel && movingObj )
4878 FloatImageObj *fo=xelection.getFloatImage();
4881 // Moved FloatObj. Maybe we need to reposition
4882 QString pold=qpointfToString(movingObj_orgRelPos);
4883 QString pnow=qpointfToString(fo->getRelPos());
4889 QString("Move %1 to relative position %2").arg(getName(fo)).arg(pnow));
4891 fo->getParObj()->requestReposition();
4892 model->reposition();
4895 // Check if we are over another branch, but ignore
4896 // any found LMOs, which are FloatObjs
4897 dst=model->findMapObj(mapToScene(e->pos() ), lmosel);
4899 if (dst && (typeid(*dst)!=typeid(BranchObj) && typeid(*dst)!=typeid(MapCenterObj)))
4902 BranchObj *bo=xelection.getBranch();
4903 if (bo && bo->getDepth()==0)
4905 if (movingObj_orgPos != bo->getAbsPos())
4907 QString pold=qpointfToString(movingObj_orgPos);
4908 QString pnow=qpointfToString(bo->getAbsPos());
4914 QString("Move mapcenter %1 to position %2").arg(getName(bo)).arg(pnow));
4918 if (xelection.type() == Selection::Branch )
4919 { // A branch was moved
4921 // save the position in case we link to mapcenter
4922 QPointF savePos=QPointF (lmosel->getAbsPos() );
4924 // Reset the temporary drawn link to the original one
4925 lmosel->unsetParObjTmp();
4927 // For Redo we may need to save original selection
4928 QString preSelStr=model->getSelectString(lmosel);
4933 // We have a destination, relink to that
4935 BranchObj* bsel=xelection.getBranch();
4936 BranchObj* bdst=(BranchObj*)dst;
4938 QString preParStr=model->getSelectString (bsel->getParObj());
4939 QString preNum=QString::number (bsel->getNum(),10);
4940 QString preDstParStr;
4942 if (e->state() & Qt::ShiftModifier && dst->getParObj())
4944 preDstParStr=model->getSelectString (dst->getParObj());
4945 bsel->linkTo ( (BranchObj*)(bdst->getParObj()), bdst->getNum());
4947 if (e->state() & Qt::ControlModifier && dst->getParObj())
4950 preDstParStr=model->getSelectString (dst->getParObj());
4951 bsel->linkTo ( (BranchObj*)(bdst->getParObj()), bdst->getNum()+1);
4954 preDstParStr=model->getSelectString(dst);
4955 bsel->linkTo (bdst,-1);
4956 if (dst->getDepth()==0) bsel->move (savePos);
4958 QString postSelStr=model->getSelectString(lmosel);
4959 QString postNum=QString::number (bsel->getNum(),10);
4961 QString undoCom="linkTo (\""+
4962 preParStr+ "\"," + preNum +"," +
4963 QString ("%1,%2").arg(movingObj_orgPos.x()).arg(movingObj_orgPos.y())+ ")";
4965 QString redoCom="linkTo (\""+
4966 preDstParStr + "\"," + postNum + "," +
4967 QString ("%1,%2").arg(savePos.x()).arg(savePos.y())+ ")";
4972 QString("Relink %1 to %2").arg(getName(bsel)).arg(getName(dst)) );
4974 model->reposition(); // not necessary if we undo temporary move below
4977 // No destination, undo temporary move
4979 if (lmosel->getDepth()==1)
4981 // The select string might be different _after_ moving around.
4982 // Therefor reposition and then use string of old selection, too
4983 model->reposition();
4985 QPointF rp(lmosel->getRelPos());
4986 if (rp != movingObj_orgRelPos)
4988 QString ps=qpointfToString(rp);
4990 model->getSelectString(lmosel), "moveRel "+qpointfToString(movingObj_orgRelPos),
4991 preSelStr, "moveRel "+ps,
4992 QString("Move %1 to relative position %2").arg(getName(lmosel)).arg(ps));
4996 // Draw the original link, before selection was moved around
4997 if (settings.value("/animation/use",false).toBool() && lmosel->getDepth()>1)
4999 QPointF p=bo->getParObj()->getChildPos();
5000 lmosel->setRelPos(); // calc relPos first
5001 model->startAnimation(
5002 lmosel->getRelPos(),
5003 QPointF (movingObj_orgPos.x() - p.x(), movingObj_orgPos.y() - p.y() )
5006 model->reposition();
5010 // Finally resize scene, if needed
5014 // Just make sure, that actions are still ok,e.g. the move branch up/down buttons...
5017 // maybe we moved View: set old cursor
5018 setCursor (Qt::ArrowCursor);
5022 void MapEditor::mouseDoubleClickEvent(QMouseEvent* e)
5024 if (isSelectBlocked() )
5030 if (e->button() == Qt::LeftButton )
5032 QPointF p = mapToScene(e->pos());
5033 LinkableMapObj *lmo=model->findMapObj(p, NULL);
5034 if (lmo) { // MapObj was found
5035 // First select the MapObj than edit heading
5036 xelection.select(lmo);
5037 mainWindow->editHeading();
5042 void MapEditor::resizeEvent (QResizeEvent* e)
5044 QGraphicsView::resizeEvent( e );
5047 void MapEditor::dragEnterEvent(QDragEnterEvent *event)
5049 //for (unsigned int i=0;event->format(i);i++) // Debug mime type
5050 // cerr << event->format(i) << endl;
5052 if (event->mimeData()->hasImage())
5053 event->acceptProposedAction();
5055 if (event->mimeData()->hasUrls())
5056 event->acceptProposedAction();
5059 void MapEditor::dragMoveEvent(QDragMoveEvent *)
5063 void MapEditor::dragLeaveEvent(QDragLeaveEvent *event)
5068 void MapEditor::dropEvent(QDropEvent *event)
5070 BranchObj *sel=xelection.getBranch();
5074 foreach (QString format,event->mimeData()->formats())
5075 cout << "MapEditor: Dropped format: "<<qPrintable (format)<<endl;
5079 if (event->mimeData()->hasImage())
5081 QVariant imageData = event->mimeData()->imageData();
5082 addFloatImageInt (qvariant_cast<QPixmap>(imageData));
5084 if (event->mimeData()->hasUrls())
5085 uris=event->mimeData()->urls();
5093 for (int i=0; i<uris.count();i++)
5095 // Workaround to avoid adding empty branches
5096 if (!uris.at(i).toString().isEmpty())
5098 bo=sel->addBranch();
5101 s=uris.at(i).toLocalFile();
5104 QString file = QDir::fromNativeSeparators(s);
5105 heading = QFileInfo(file).baseName();
5107 if (file.endsWith(".vym", false))
5108 bo->setVymLink(file);
5110 bo->setURL(uris.at(i).toString());
5113 bo->setURL(uris.at(i).toString());
5116 if (!heading.isEmpty())
5117 bo->setHeading(heading);
5119 bo->setHeading(uris.at(i).toString());
5123 model->reposition();
5126 event->acceptProposedAction();
5130 void MapEditor::sendSelection()
5132 if (netstate!=Server) return;
5133 sendData (QString("select (\"%1\")").arg(xelection.getSelectString()) );
5136 void MapEditor::newServer()
5140 tcpServer = new QTcpServer(this);
5141 if (!tcpServer->listen(QHostAddress::Any,port)) {
5142 QMessageBox::critical(this, "vym server",
5143 QString("Unable to start the server: %1.").arg(tcpServer->errorString()));
5147 connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newClient()));
5149 cout<<"Server is running on port "<<tcpServer->serverPort()<<endl;
5152 void MapEditor::connectToServer()
5155 server="salam.suse.de";
5157 clientSocket = new QTcpSocket (this);
5158 clientSocket->abort();
5159 clientSocket->connectToHost(server ,port);
5160 connect(clientSocket, SIGNAL(readyRead()), this, SLOT(readData()));
5161 connect(clientSocket, SIGNAL(error(QAbstractSocket::SocketError)),
5162 this, SLOT(displayNetworkError(QAbstractSocket::SocketError)));
5164 cout<<"connected to "<<qPrintable (server)<<" port "<<port<<endl;
5169 void MapEditor::newClient()
5171 QTcpSocket *newClient = tcpServer->nextPendingConnection();
5172 connect(newClient, SIGNAL(disconnected()),
5173 newClient, SLOT(deleteLater()));
5175 cout <<"ME::newClient at "<<qPrintable( newClient->peerAddress().toString() )<<endl;
5177 clientList.append (newClient);
5181 void MapEditor::sendData(const QString &s)
5183 if (clientList.size()==0) return;
5185 // Create bytearray to send
5187 QDataStream out(&block, QIODevice::WriteOnly);
5188 out.setVersion(QDataStream::Qt_4_0);
5190 // Reserve some space for blocksize
5193 // Write sendCounter
5194 out << sendCounter++;
5199 // Go back and write blocksize so far
5200 out.device()->seek(0);
5201 quint16 bs=(quint16)(block.size() - 2*sizeof(quint16));
5205 cout << "ME::sendData bs="<<bs<<" counter="<<sendCounter<<" s="<<qPrintable(s)<<endl;
5207 for (int i=0; i<clientList.size(); ++i)
5209 //cout << "Sending \""<<qPrintable (s)<<"\" to "<<qPrintable (clientList.at(i)->peerAddress().toString())<<endl;
5210 clientList.at(i)->write (block);
5214 void MapEditor::readData ()
5216 while (clientSocket->bytesAvailable() >=(int)sizeof(quint16) )
5219 cout <<"readData bytesAvail="<<clientSocket->bytesAvailable();
5223 QDataStream in(clientSocket);
5224 in.setVersion(QDataStream::Qt_4_0);
5232 cout << " t="<<qPrintable (t)<<endl;
5238 void MapEditor::displayNetworkError(QAbstractSocket::SocketError socketError)
5240 switch (socketError) {
5241 case QAbstractSocket::RemoteHostClosedError:
5243 case QAbstractSocket::HostNotFoundError:
5244 QMessageBox::information(this, vymName +" Network client",
5245 "The host was not found. Please check the "
5246 "host name and port settings.");
5248 case QAbstractSocket::ConnectionRefusedError:
5249 QMessageBox::information(this, vymName + " Network client",
5250 "The connection was refused by the peer. "
5251 "Make sure the fortune server is running, "
5252 "and check that the host name and port "
5253 "settings are correct.");
5256 QMessageBox::information(this, vymName + " Network client",
5257 QString("The following error occurred: %1.")
5258 .arg(clientSocket->errorString()));
5262 void MapEditor::autosave()
5264 QDateTime now=QDateTime().currentDateTime();
5266 cout << "ME::autosave checking "<<qPrintable(filePath)<<"...\n";
5267 cout << "fsaved: "<<qPrintable (fileChangedTime.toString())<<endl;
5268 cout << " fnow: "<<qPrintable (QFileInfo(filePath).lastModified().toString())<<endl;
5269 cout << " time: "<<qPrintable (now.toString())<<endl;
5270 cout << " zipped="<<zipped<<endl;
5272 // Disable autosave, while we have gone back in history
5273 int redosAvail=undoSet.readNumEntry (QString("/history/redosAvail"));
5274 if (redosAvail>0) return;
5276 // Also disable autosave for new map without filename
5277 if (filePath.isEmpty()) return;
5280 if (mapUnsaved &&mapChanged && settings.value ("/mapeditor/autosave/use",true).toBool() )
5282 if (QFileInfo(filePath).lastModified()<=fileChangedTime)
5283 mainWindow->fileSave (this);
5286 cout <<" ME::autosave rejected, file on disk is newer than last save.\n";
5291 void MapEditor::fileChanged()
5293 // Check if file on disk has changed meanwhile
5294 if (!filePath.isEmpty())
5296 QDateTime tmod=QFileInfo (filePath).lastModified();
5297 if (tmod>fileChangedTime)
5300 /* FIXME debug message, sometimes there's a glitch in the metrics...
5301 cout << "ME::fileChanged()\n"
5302 << " last saved: "<<qPrintable (fileChangedTime.toString())<<endl
5303 << " last modififed: "<<qPrintable (tmod.toString())<<endl;
5305 // FIXME switch to current mapeditor and finish lineedits...
5306 QMessageBox mb( vymName,
5307 tr("The file of the map on disk has changed:\n\n"
5308 " %1\n\nDo you want to reload that map with the new file?").arg(filePath),
5309 QMessageBox::Question,
5311 QMessageBox::Cancel | QMessageBox::Default,
5312 QMessageBox::NoButton );
5314 mb.setButtonText( QMessageBox::Yes, tr("Reload"));
5315 mb.setButtonText( QMessageBox::No, tr("Ignore"));
5318 case QMessageBox::Yes:
5320 load (filePath,NewMap,fileType);
5321 case QMessageBox::Cancel:
5322 fileChangedTime=tmod; // allow autosave to overwrite newer file!
5330 /*TODO not needed? void MapEditor::contentsDropEvent(QDropEvent *event)
5333 } else if (event->provides("application/x-moz-file-promise-url") &&
5334 event->provides("application/x-moz-nativeimage"))
5336 // Contains url to the img src in unicode16
5337 QByteArray d = event->encodedData("application/x-moz-file-promise-url");
5338 QString url = QString((const QChar*)d.data(),d.size()/2);
5342 } else if (event->provides ("text/uri-list"))
5343 { // Uris provided e.g. by konqueror
5344 Q3UriDrag::decode (event,uris);
5345 } else if (event->provides ("_NETSCAPE_URL"))
5346 { // Uris provided by Mozilla
5347 QStringList l = QStringList::split("\n", event->encodedData("_NETSCAPE_URL"));
5350 } else if (event->provides("text/html")) {
5352 // Handels text mime types
5353 // Look like firefox allways handle text as unicode16 (2 bytes per char.)
5354 QByteArray d = event->encodedData("text/html");
5357 text = QString((const QChar*)d.data(),d.size()/2);
5361 textEditor->setText(text);
5365 } else if (event->provides("text/plain")) {
5366 QByteArray d = event->encodedData("text/plain");
5369 text = QString((const QChar*)d.data(),d.size()/2);
5373 textEditor->setText(text);
5383 bool isUnicode16(const QByteArray &d)
5385 // TODO: make more precise check for unicode 16.
5386 // Guess unicode16 if any of second bytes are zero
5387 unsigned int length = max(0,d.size()-2)/2;
5388 for (unsigned int i = 0; i<length ; i++)
5389 if (d.at(i*2+1)==0) return true;
5393 void MapEditor::addFloatImageInt (const QPixmap &img)
5395 BranchObj *bo=xelection.getBranch();
5398 FloatImageObj *fio=bo->addFloatImage();
5400 fio->setOriginalFilename("No original filename (image added by dropevent)");
5401 QString s=model->getSelectString(bo);
5402 saveState (PartOfMap, s, "nop ()", s, "copy ()","Copy dropped image to clipboard",fio );
5403 saveState (fio,"delete ()", bo,QString("paste(%1)").arg(curStep),"Pasting dropped image");
5404 model->reposition();
5411 void MapEditor::imageDataFetched(const QByteArray &a, Q3NetworkOperation * / *nop* /)
5413 if (!imageBuffer) imageBuffer = new QBuffer();
5414 if (!imageBuffer->isOpen()) {
5415 imageBuffer->open(QIODevice::WriteOnly | QIODevice::Append);
5417 imageBuffer->at(imageBuffer->at()+imageBuffer->writeBlock(a));
5421 void MapEditor::imageDataFinished(Q3NetworkOperation *nop)
5423 if (nop->state()==Q3NetworkProtocol::StDone) {
5424 QPixmap img(imageBuffer->buffer());
5425 addFloatImageInt (img);
5429 imageBuffer->close();
5431 imageBuffer->close();
5438 void MapEditor::fetchImage(const QString &url)
5441 urlOperator->stop();
5442 disconnect(urlOperator);
5446 urlOperator = new Q3UrlOperator(url);
5447 connect(urlOperator, SIGNAL(finished(Q3NetworkOperation *)),
5448 this, SLOT(imageDataFinished(Q3NetworkOperation*)));
5450 connect(urlOperator, SIGNAL(data(const QByteArray &, Q3NetworkOperation *)),
5451 this, SLOT(imageDataFetched(const QByteArray &, Q3NetworkOperation *)));