3 #include <qstatusbar.h>
4 #include <qmessagebox.h>
5 #include <qapplication.h>
7 #include <qpopupmenu.h>
9 #include <qpaintdevicemetrics.h>
11 #include <qfiledialog.h>
14 #include <qcolordialog.h>
17 #include <qinputdialog.h>
18 #include <qdragobject.h>
19 #include <qurloperator.h>
20 #include <qnetworkprotocol.h>
31 #include "texteditor.h"
32 #include "linkablemapobj.h"
35 #include "mainwindow.h"
36 #include "extrainfodialog.h"
37 #include "editxlinkdialog.h"
40 #include "icons/flag-note.xpm"
41 #include "icons/flag-url.xpm"
42 #include "icons/flag-vymlink.xpm"
43 #include "icons/flag-scrolled-right.xpm"
44 #include "icons/flag-tmpUnscrolled-right.xpm"
45 #include "icons/flag-questionmark.xpm"
46 #include "icons/flag-exclamationmark.xpm"
47 #include "icons/flag-hook-green.xpm"
48 #include "icons/flag-cross-red.xpm"
49 #include "icons/flag-stopsign.xpm"
50 #include "icons/flag-smiley-good.xpm"
51 #include "icons/flag-smiley-sad.xpm"
52 #include "icons/flag-clock.xpm"
53 #include "icons/flag-lamp.xpm"
54 #include "icons/flag-arrow-up.xpm"
55 #include "icons/flag-arrow-down.xpm"
56 #include "icons/flag-thumb-up.xpm"
57 #include "icons/flag-thumb-down.xpm"
58 #include "icons/flag-heart.xpm"
59 #include "icons/flag-flash.xpm"
60 #include "icons/flag-lifebelt.xpm"
62 extern TextEditor *textEditor;
63 extern int statusbarTime;
64 extern Main *mainWindow;
65 extern FlagRowObj *systemFlagsDefault;
66 extern FlagRowObj *standardFlagsDefault;
67 extern MapEditor *clipboardME;
69 extern QPtrList <QAction> actionListBranches;
71 extern QAction *actionFileSave;
72 extern QAction *actionEditUndo;
73 extern QAction *actionEditCopy;
74 extern QAction *actionEditCut;
75 extern QAction *actionEditPaste;
76 extern QAction *actionEditMoveUp;
77 extern QAction *actionEditMoveDown;
78 extern QAction *actionEditToggleScroll;
79 extern QAction *actionEditOpenURL;
80 extern QAction *actionEditURL;
81 extern QAction *actionEditHeading2URL;
82 extern QAction *actionEditBugzilla2URL;
83 extern QAction *actionEditOpenVymLink;
84 extern QAction *actionEditVymLink;
85 extern QAction *actionEditDeleteVymLink;
86 extern QAction *actionEditHeading;
87 extern QAction *actionEditDelete;
88 extern QAction *actionEditAddBranch;
89 extern QAction *actionEditAddBranchAbove;
90 extern QAction *actionEditAddBranchBelow;
91 extern QAction *actionEditRemoveBranchHere;
92 extern QAction *actionEditRemoveChilds;
93 extern QAction *actionEditImportAdd;
94 extern QAction *actionEditImportReplace;
95 extern QAction *actionEditSaveBranch;
96 extern QAction *actionEditSelectFirst;
97 extern QAction *actionEditSelectLast;
98 extern QAction *actionEditLoadImage;
99 extern QAction *actionEditToggleFloatExport;
101 extern QAction* actionFormatPickColor;
102 extern QAction* actionFormatColorBranch;
103 extern QAction* actionFormatColorSubtree;
104 extern QAction *actionFormatLinkColorHint;
105 extern QAction *actionFormatBackColor;
106 extern QAction *actionFormatLinkColor;
108 extern QActionGroup* actionGroupModModes;
109 extern QAction* actionModModeColor;
110 extern QAction* actionModModeLink;
111 extern QAction* actionModModeCopy;
113 extern QActionGroup *actionGroupFormatFrameTypes;
114 extern QAction *actionFormatFrameNone;
115 extern QAction *actionFormatFrameRectangle;
117 extern QActionGroup *actionGroupFormatLinkStyles;
118 extern QAction *actionFormatLinkStyleLine;
119 extern QAction *actionFormatLinkStyleParabel;
120 extern QAction *actionFormatLinkStylePolyLine;
121 extern QAction *actionFormatLinkStylePolyParabel;
123 extern QAction *actionViewToggleNoteEditor;
125 extern QAction *actionSettingsAutoedit;
126 extern QAction *actionSettingsAutoselectHeading;
127 extern QAction *actionSettingsAutoselectText;
128 extern QAction *actionSettingsPasteNewHeading;
129 extern QAction *actionSettingsUseFlagGroups;
131 extern QPopupMenu *branchContextMenu;
132 extern QPopupMenu *branchLinksContextMenu;
133 extern QPopupMenu *branchLinksContextMenuDup;
134 extern QPopupMenu *floatimageContextMenu;
135 extern QPopupMenu *saveImageFormatMenu;
136 extern QPopupMenu *exportImageFormatMenu;
137 extern QPopupMenu *canvasContextMenu;
139 extern Settings settings;
142 ///////////////////////////////////////////////////////////////////////
143 ///////////////////////////////////////////////////////////////////////
144 MapEditor::MapEditor(
145 QWidget* parent, bool interactive, const char* name, WFlags f) :
146 QCanvasView(parent,name,f), urlOperator(0), imageBuffer(0)
148 //cout << "Constructor ME "<<this<<endl;
150 viewport()->setAcceptDrops(true);
152 mapCanvas = new QCanvas(1000,800);
153 mapCanvas->setAdvancePeriod(30);
155 setCanvas (mapCanvas);
157 setVScrollBarMode ( QScrollView::AlwaysOn );
158 setHScrollBarMode ( QScrollView::AlwaysOn );
160 // Now create the _global_ system flags _once_:
161 // (Later all OrnamentedObj copy from this
162 // and set their own canvas)
163 if (!systemFlagsDefault)
165 systemFlagsDefault = new FlagRowObj (mapCanvas);
166 systemFlagsDefault->setVisibility (false);
167 systemFlagsDefault->setName ("systemFlagsDef");
169 FlagObj *fo = new FlagObj (mapCanvas);
170 fo->load(QPixmap(flag_note_xpm));
172 fo->setToolTip(tr("Note","Systemflag"));
173 systemFlagsDefault->addFlag (fo); // makes deep copy
175 fo->load(QPixmap(flag_url_xpm));
177 fo->setToolTip(tr("WWW Document (external)","Systemflag"));
178 systemFlagsDefault->addFlag (fo);
180 fo->load(QPixmap(flag_vymlink_xpm));
181 fo->setName("vymLink");
182 fo->setToolTip(tr("Link to another vym map","Systemflag"));
183 systemFlagsDefault->addFlag (fo);
185 fo->load(QPixmap(flag_scrolled_right_xpm));
186 fo->setName("scrolledright");
187 fo->setToolTip(tr("subtree is scrolled","Systemflag"));
188 systemFlagsDefault->addFlag (fo);
190 fo->load(QPixmap(flag_tmpUnscrolled_right_xpm));
191 fo->setName("tmpUnscrolledright");
192 fo->setToolTip(tr("subtree is temporary scrolled","Systemflag"));
193 systemFlagsDefault->addFlag (fo);
196 if (!standardFlagsDefault)
198 standardFlagsDefault = new FlagRowObj (mapCanvas);
199 standardFlagsDefault->setVisibility (false);
200 standardFlagsDefault->setName ("standardFlagsDef");
202 FlagObj *fo = new FlagObj (mapCanvas);
203 fo->load(QPixmap(flag_exclamationmark_xpm));
204 fo->setName ("exclamationmark");
205 fo->setGroup("standard-mark");
206 fo->setToolTip(tr("Take care!","Standardflag"));
207 standardFlagsDefault->addFlag (fo); // makes deep copy
209 fo->load(QPixmap(flag_questionmark_xpm));
210 fo->setName("questionmark");
211 fo->setGroup("standard-mark");
212 fo->setToolTip(tr("Really?","Standardflag"));
213 standardFlagsDefault->addFlag (fo);
215 fo->load(QPixmap(flag_hook_green_xpm));
216 fo->setName("hook-green");
217 fo->setGroup("standard-hook");
218 fo->setToolTip(tr("ok!","Standardflag"));
219 standardFlagsDefault->addFlag (fo);
221 fo->load(QPixmap(flag_cross_red_xpm));
222 fo->setName("cross-red");
223 fo->setGroup("standard-hook");
224 fo->setToolTip(tr("Not ok!","Standardflag"));
225 standardFlagsDefault->addFlag (fo);
227 fo->load(QPixmap(flag_stopsign_xpm));
228 fo->setName("stopsign");
229 fo->setToolTip(tr("This won't work!","Standardflag"));
230 standardFlagsDefault->addFlag (fo);
232 fo->load(QPixmap(flag_smiley_good_xpm));
233 fo->setName("smiley-good");
234 fo->setGroup("standard-smiley");
235 fo->setToolTip(tr("Good","Standardflag"));
236 standardFlagsDefault->addFlag (fo);
238 fo->load(QPixmap(flag_smiley_sad_xpm));
239 fo->setName("smiley-sad");
240 fo->setGroup("standard-smiley");
241 fo->setToolTip(tr("Bad","Standardflag"));
242 standardFlagsDefault->addFlag (fo);
244 fo->load(QPixmap(flag_clock_xpm));
245 fo->setName("clock");
246 fo->setToolTip(tr("Time critical","Standardflag"));
247 standardFlagsDefault->addFlag (fo);
249 fo->load(QPixmap(flag_lamp_xpm));
251 fo->setToolTip(tr("Idea!","Standardflag"));
252 standardFlagsDefault->addFlag (fo);
254 fo->load(QPixmap(flag_arrow_up_xpm));
255 fo->setName("arrow-up");
256 fo->setGroup("standard-arrow");
257 fo->setToolTip(tr("Important","Standardflag"));
258 standardFlagsDefault->addFlag (fo);
260 fo->load(QPixmap(flag_arrow_down_xpm));
261 fo->setName("arrow-down");
262 fo->setGroup("standard-arrow");
263 fo->setToolTip(tr("Unimportant","Standardflag"));
264 standardFlagsDefault->addFlag (fo);
266 fo->load(QPixmap(flag_thumb_up_xpm));
267 fo->setName("thumb-up");
268 fo->setGroup("standard-thumb");
269 fo->setToolTip(tr("I like this","Standardflag"));
270 standardFlagsDefault->addFlag (fo);
272 fo->load(QPixmap(flag_thumb_down_xpm));
273 fo->setName("thumb-down");
274 fo->setGroup("standard-thumb");
275 fo->setToolTip(tr("I like this","Standardflag"));
276 fo->setToolTip(tr("I do not like this","Standardflag"));
277 standardFlagsDefault->addFlag (fo);
279 fo->load(QPixmap(flag_heart_xpm));
280 fo->setName("heart");
281 fo->setToolTip(tr("I just love... ","Standardflag"));
282 standardFlagsDefault->addFlag (fo);
284 fo->load(QPixmap(flag_flash_xpm));
285 fo->setName("flash");
286 fo->setToolTip(tr("Dangerous","Standardflag"));
287 standardFlagsDefault->addFlag (fo);
289 fo->load(QPixmap(flag_lifebelt_xpm));
290 fo->setName("lifebelt");
291 fo->setToolTip(tr("This will help","Standardflag"));
292 standardFlagsDefault->addFlag (fo);
297 mapCenter = new MapCenterObj(mapCanvas);
298 mapCenter->setVisibility (true);
299 mapCenter->setMapEditor (this);
300 mapCenter->setHeading (tr("New Map","Heading of mapcenter in new map"));
304 lineedit = new QLineEdit(this, "lineedit" );
305 connect( lineedit, SIGNAL( returnPressed() ), SLOT( finishedLineEditNoSave() ) );
308 actColor=black; setColor (actColor);
309 defLinkColor=QColor (0,0,255);
310 defXLinkColor=QColor (180,180,180);
311 linkcolorhint=DefaultColor;
312 linkstyle=StylePolyParabel;
313 mapCanvas->setBackgroundColor (white);
315 // Create bitmap cursors, patform dependant
316 #if defined(Q_OS_MACX)
317 #include "icons/cursorhandopen16.xpm"
318 #include "icons/cursorcolorpicker16.xpm"
319 QBitmap cb( 16, 16, chandopen, TRUE );
320 QBitmap cm( 16, 16, chandopenmask, TRUE );
321 handOpenCursor=QCursor ( cb, cm );
322 // set hot spot to tip of picker
323 pickColorCursor=QCursor ( cursorcolorpicker_xpm, 1,15 );
325 #include "icons/cursorhandopen.xpm"
326 #include "icons/cursorcolorpicker.xpm"
328 QBitmap cb( 32, 32, chandopen, TRUE );
329 QBitmap cm( 32, 32, chandopenmask, TRUE );
330 handOpenCursor=QCursor ( cb, cm );
331 // set hot spot to tip of picker
332 pickColorCursor=QCursor ( cursorcolorpicker_xpm, 5,27 );
345 defXLinkColor=QColor (230,230,230);
356 // Initialize find routine
363 blockReposition=false;
364 blockSaveState=false;
365 isInteractive=interactive;
367 // Create temporary files
370 // Initially set movingCentre
373 mapCenter->reposition(); // for positioning heading
376 MapEditor::~MapEditor()
378 if (imageBuffer) delete imageBuffer;
384 //cout <<"Destructor MapEditor\n";
385 if (isInteractive) delTmpDirs();
388 //settings.writeEntry( "/vym/mapeditor/editmode/autoselect", );
392 QColor MapEditor::color()
397 QColor MapEditor::backgroundColor()
399 return mapCanvas->backgroundColor();
402 MapCenterObj* MapEditor::getMapCenter()
407 QCanvas* MapEditor::getCanvas()
412 void MapEditor::adjustCanvasSize()
414 // To adjust the canvas to map, viewport size and position, we have to
415 // do some coordinate magic...
417 // Get rectangle of (scroll-)view.
418 // We want to be in canvas coords, so
419 // we map. Important if view is zoomed...
420 QRect view = inverseWorldMatrix().mapRect( QRect( contentsX(), contentsY(),
421 visibleWidth(), visibleHeight()) );
423 // Now we need the bounding box of view AND map to calc the correct canvas size.
424 // Why? Because if the map itself is moved out of view, the view has to be enlarged
425 // to avoid jumping aroung...
426 QRect map=mapCenter->getTotalBBox();
428 // right edge - left edge
429 int cw= max(map.x() + map.width(), view.x() + view.width()) - min(map.x(), view.x());
430 int ch= max(map.y() + map.height(), view.y() + view.height()) - min(map.y(), view.y());
433 if ( (cw!=mapCanvas->width()) || (ch!=mapCanvas->height()) ||
434 !mapCanvas->onCanvas (map.topLeft()) || !mapCanvas->onCanvas (map.bottomRight())
437 // move the map on canvas (in order to not move it on screen) this is neccessary
438 // a) if topleft corner of canvas is left or above topleft corner of view and also left of
439 // above topleft corner of map. E.g. if map is completly inside view, but it would be possible
440 // to scroll to an empty area of canvas to the left.
441 // b) if topleft corner of map left of or above topleft of canvas
445 if (cw > mapCanvas->width() )
447 if (map.x()<0) dx=-map.x();
449 if (cw < mapCanvas->width() )
450 dx=-min (view.x(),map.x());
451 if (ch > mapCanvas->height() )
453 if (map.y()<0) dy=-map.y();
455 if (ch < mapCanvas->height() )
457 dy=-min (view.y(),map.y());
459 // We really have to resize now. Let's go...
460 mapCanvas->resize (cw,ch);
461 if ( (dx!=0) || (dy!=0) )
463 mapCenter->moveAllBy(dx,dy);
464 mapCenter->reposition();
466 // scroll the view (in order to not move map on screen)
472 bool MapEditor::isRepositionBlocked()
474 return blockReposition;
477 void MapEditor::makeTmpDirs()
479 // Create unique temporary directories
480 char tmpdir[]="/tmp/vym-XXXXXX";
481 bakMapDir=mkdtemp(tmpdir);
482 makeSubDirs(bakMapDir);
483 // FIXME set permissions and maybe use QT method for portability
486 void MapEditor::delTmpDirs()
488 //FIXME delete tmp directory, better use QT methods here:
489 system ( "rm -rf "+ bakMapDir );
493 void MapEditor::makeSubDirs(const QString &s)
501 QString MapEditor::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPoint &offset, LinkableMapObj *saveSelection)
503 // tmpdir temporary directory to which data will be writte
504 // prefix mapname, which will be appended to images etc.
505 // writeflags Only write flags for "real" save of map, not undo
506 // offset offset of bbox of whole map in canvas.
507 // Needed for XML export
508 // completeMap if false, only vympart will be written, without
525 ls="StylePolyParabel";
529 QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
531 if (linkcolorhint==HeadingColor)
532 colhint=attribut("linkColorHint","HeadingColor");
534 QString mapAttr=attribut("version",__VYM_VERSION__);
536 mapAttr+= attribut("author",mapCenter->getAuthor()) +
537 attribut("comment",mapCenter->getComment()) +
538 attribut("date",mapCenter->getDate()) +
539 attribut("backgroundColor", mapCanvas->backgroundColor().name() ) +
540 attribut("linkStyle", ls ) +
541 attribut("linkColor", defLinkColor.name() ) +
542 attribut("defXLinkColor", defXLinkColor.name() ) +
543 attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
545 s+=beginElement("vymmap",mapAttr);
548 // Find the used flags while traversing the tree
549 standardFlagsDefault->resetUsedCounter();
551 // Build xml recursivly
553 s+=mapCenter->saveToDir(tmpdir,prefix,writeflags,offset);
556 if ( typeid(*saveSelection) == typeid(BranchObj) )
557 s+=((BranchObj*)(saveSelection))->saveToDir(tmpdir,prefix,offset);
559 if (selection && typeid(*selection)==typeid(BranchObj))
560 // This is used if selected branch is saved from mainwindow
561 s+=((BranchObj*)(selection))->saveToDir(tmpdir,prefix,offset);
564 // Save local settings
565 s+=settings.getXMLData (destPath);
568 if (selection && !saveSelection )
569 s+=valueElement("select",selection->getSelectString());
572 s+=endElement("vymmap");
575 standardFlagsDefault->saveToDir (tmpdir+"/flags/","",writeflags);
579 void MapEditor::saveState()
581 saveState (CompleteMap,NULL,"","");
584 void MapEditor::saveState(LinkableMapObj *undoSel)
586 saveState (PartOfMap,undoSel,"","");
589 void MapEditor::saveState(const QString & uc, const QString &rc)
591 LinkableMapObj *undoSel;
596 saveState (UndoCommand,undoSel,uc,rc);
599 void MapEditor::saveState(const SaveMode &savemode, LinkableMapObj *undoSel, const QString &undoCom, const QString &redoCom)
601 if (blockSaveState) return;
605 // Save current selection
608 redoSelection=selection->getSelectString();
612 // Save the object, which should be undone
614 undoSelection=undoSel->getSelectString();
618 // Save depending on how much needs to be saved
619 if (savemode==UndoCommand)
624 else if (savemode==PartOfMap && undoSel)
626 undoCommand="undoPart (\""+undoSelection+"\")";
627 backupXML=saveToDir (bakMapDir,mapName+"-",false, QPoint (),undoSel);
630 undoCommand="undoMap ()";
631 backupXML=saveToDir (bakMapDir,mapName+"-",false, QPoint (),NULL);
635 cout << "ME::saveState()\n";
636 cout << " undoCom="<<undoCommand<<endl;
637 cout << " undoSel="<<undoSelection<<endl;
638 cout << " ---------------------------"<<endl;
639 cout << " redoCom="<<redoCommand<<endl;
640 cout << " redoSel="<<redoSelection<<endl<<endl;
644 void MapEditor::parseAtom(const QString &atom)
651 // Split string s into command and parameters
652 api.parseCommand (atom);
653 QString com=api.command();
656 if (com==QString("moveBranchUp"))
658 else if (com=="moveBranchDown")
660 else if (com=="move")
662 if (api.checkParamCount(2) && selection )
672 else if (com=="linkBranchToPos")
674 if (selection && typeid(*selection) == typeid(BranchObj) )
676 if (api.checkParamCount(4))
678 s=api.parString(ok,0);
679 LinkableMapObj *dst=mapCenter->findObjBySelect (s);
682 if (typeid(*dst) == typeid(BranchObj) )
684 // Get number in parent
687 ((BranchObj*)(selection))->moveBranchTo ((BranchObj*)(dst),x);
688 } else if (typeid(*dst) == typeid(MapCenterObj) )
690 ((BranchObj*)(selection))->moveBranchTo ((BranchObj*)(dst),-1);
691 // Get coordinates of mainbranch
696 if (ok) ((BranchObj*)(selection))->move (x,y);
702 } else if (com=="setHeading")
704 if (api.checkParamCount(1))
706 s=api.parString (ok,0);
707 if (ok) setHeading (s);
709 } else if (com=="setURL")
711 if (api.checkParamCount(1))
713 s=api.parString (ok,0);
716 } else if (com=="setVymLink")
718 if (api.checkParamCount(1))
720 s=api.parString (ok,0);
721 if (ok) setVymLink(s);
725 // Internal commands, used for undo etc.
726 else if (com==QString("undoMap"))
728 if (api.checkParamCount(0))
730 } else if (com==QString("undoPart"))
732 if (api.checkParamCount(1))
734 s=api.parString (ok,0);
737 } else if (com=="select")
738 if (api.checkParamCount(1))
740 s=api.parString(ok,0);
744 api.setError ("Unknown command in: "+atom);
749 cout << "MapEditor::parseAtom: Error!\n";
750 cout << " "<<api.errorDesc()<<endl;
755 void MapEditor::finishedLineEditNoSave()
757 // This is called by finishedLineEdit or any MapEditor method,
758 // which wants to assure, that lineedits finish, before e.g. a branch is
761 // After calling LineEdit and using the clipboard, the
762 // focus is not any longer on the main widget, we
763 // have to restore it using parentWidget()->setFocus()
767 editingBO->setHeading(lineedit->text() );
769 lineedit->releaseKeyboard();
771 parentWidget()->setFocus();
772 mapCenter->reposition();
774 ensureSelectionVisible();
779 bool MapEditor::isDefault()
784 bool MapEditor::isUnsaved()
789 bool MapEditor::hasChanged()
794 void MapEditor::setChanged()
799 actionEditUndo->setEnabled (true);
800 actionFileSave->setEnabled (true);
804 void MapEditor::closeMap()
806 // Finish open lineEdits
807 if (lineedit) finishedLineEditNoSave();
809 // Unselect before disabling the toolbar actions
810 if (selection) selection->unselect();
818 void MapEditor::setFilePath(QString fname)
820 setFilePath (fname,fname);
823 void MapEditor::setFilePath(QString fname, QString destname)
832 filePath=fname; // becomes absolute path
833 fileName=fname; // gets stripped of path
834 destPath=destname; // needed for vymlinks
836 // If fname is not an absolute path, complete it
837 filePath=QDir(fname).absPath();
838 fileDir=filePath.left (1+filePath.findRev ("/"));
840 // Set short name, too. Search from behind:
841 int i=fileName.findRev("/");
842 if (i>=0) fileName=fileName.remove (0,i+1);
844 // Forget the .vym (or .xml) for name of map
845 mapName=fileName.left(fileName.findRev(".",-1,true) );
849 QString MapEditor::getFilePath()
854 QString MapEditor::getFileName()
859 QString MapEditor::getMapName()
864 QString MapEditor::getDestPath()
869 int MapEditor::load (QString &fname, const LoadMode &lmode)
871 // Finish open lineEdits
872 if (lineedit) finishedLineEditNoSave();
878 if (selection) selection->unselect();
881 mapCenter->setMapEditor(this);
882 // (map state is set later at end of load...)
885 saveState(selection);
889 mapBuilderHandler handler;
892 // I am paranoid: file should exist anyway
893 // according to check in mainwindow.
896 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
897 tr("Couldn't open map " +fname)+".");
901 blockReposition=true;
902 QXmlInputSource source( file);
903 QXmlSimpleReader reader;
904 reader.setContentHandler( &handler );
905 reader.setErrorHandler( &handler );
906 handler.setMapEditor( this );
907 handler.setTmpDir (filePath.left(filePath.findRev("/",-1))); // needed to load files with rel. path
908 handler.setLoadMode (lmode);
909 bool ok = reader.parse( source );
910 blockReposition=false;
914 mapCenter->reposition();
924 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
925 tr( handler.errorProtocol() ) );
927 // Still return "success": the map maybe at least
928 // partially read by the parser
935 int MapEditor::save (const SaveMode &savemode)
937 // Finish open lineEdits
938 if (lineedit) finishedLineEditNoSave();
942 // The SaveMode UndoCommand is not supported here
943 if (savemode==UndoCommand) return 1;
945 // Create mapName and fileDir
946 makeSubDirs (fileDir);
950 fname=mapName+".xml";
952 // use name given by user, even if he chooses .doc
956 // Check if fname is writeable
957 QFile file( fileDir+fname);
958 if (!file.open( IO_WriteOnly ) )
960 QMessageBox::critical( 0, tr( "Critical Save Error" ),
961 tr("Couldn't write to ") +fileDir+fname);
967 if (savemode==CompleteMap || selection==NULL)
968 saveFile=saveToDir (fileDir,mapName+"-",true,QPoint(),NULL);
970 saveFile=saveToDir (fileDir,mapName+"-",true,QPoint(),selection);
972 file.setName ( fileDir + fname);
973 if ( !file.open( IO_WriteOnly ) )
975 // This should neverever happen
976 QMessageBox::critical(0, tr("Critcal Save error"),"MapEditor::save() Couldn't open "+file.name());
980 // Write it finally, and write in UTF8, no matter what
981 QTextStream ts( &file );
982 ts.setEncoding (QTextStream::UnicodeUTF8);
990 actionFileSave->setEnabled(false);
996 void MapEditor::setZipped (bool z)
1001 bool MapEditor::saveZipped ()
1006 void MapEditor::print()
1008 // Finish open lineEdits
1009 if (lineedit) finishedLineEditNoSave();
1013 printer = new QPrinter;
1014 printer->setColorMode (QPrinter::Color);
1015 printer->setPrinterName (settings.readEntry("/vym/mainwindow/printerName",printer->printerName()));
1018 QRect totalBBox=mapCenter->getTotalBBox();
1020 // Try to set orientation automagically
1021 // Note: Interpretation of generated postscript is amibiguous, if
1022 // there are problems with landscape mode, see
1023 // http://sdb.suse.de/de/sdb/html/jsmeix_print-cups-landscape-81.html
1025 if (totalBBox.width()>totalBBox.height())
1026 // recommend landscape
1027 printer->setOrientation (QPrinter::Landscape);
1029 // recommend portrait
1030 printer->setOrientation (QPrinter::Portrait);
1032 if ( printer->setup(this) )
1033 // returns false, if printing is canceled
1035 QPainter pp(printer);
1037 // Don't print the visualisation of selection
1038 LinkableMapObj *oldselection=NULL;
1041 oldselection=selection;
1042 selection->unselect();
1045 // Handle sizes of map and paper:
1047 // setWindow defines which part of the canvas will be transformed
1048 // setViewport defines area on paper in device coordinates (dpi)
1049 // e.g. (0,50,700,700) is upper part on A4
1050 // see also /usr/lib/qt3/doc/html/coordsys.html
1052 QPaintDeviceMetrics metrics (printer);
1054 double paperAspect = (double)metrics.width() / (double)metrics.height();
1055 double mapAspect = (double)totalBBox.width() / (double)totalBBox.height();
1057 QRect mapRect=totalBBox;
1058 QCanvasRectangle *frame=NULL;
1059 QCanvasText *footerFN=NULL;
1060 QCanvasText *footerDate=NULL;
1061 if (printFrame || printFooter)
1066 // Print frame around map
1067 mapRect.setRect (totalBBox.x()-10, totalBBox.y()-10,
1068 totalBBox.width()+20, totalBBox.height()+20);
1069 frame=new QCanvasRectangle (mapRect,mapCanvas);
1070 frame->setBrush (QColor(white));
1071 frame->setPen (QColor(black));
1076 QCanvasLine *l=new QCanvasLine (mapCanvas);
1077 l->setPoints (0,0,mapRect.width(),mapRect.height());
1078 l->setPen (QPen(QColor(black), 1));
1085 // Print footer below map
1087 font.setPointSize(10);
1088 footerFN=new QCanvasText (mapCanvas);
1089 footerFN->setText ("VYM - " + fileName);
1090 footerFN->setFont(font);
1091 footerFN->move (mapRect.x(), mapRect.y() + mapRect.height() );
1092 footerFN->setZ(Z_TEXT);
1094 footerDate=new QCanvasText (mapCanvas);
1095 footerDate->setText (QDate::currentDate().toString(Qt::TextDate));
1096 footerDate->setFont(font);
1097 footerDate->move (mapRect.x()+mapRect.width()-footerDate->boundingRect().width(), mapRect.y() + mapRect.height() );
1098 footerDate->setZ(Z_TEXT);
1101 pp.setWindow (mapRect.x(), mapRect.y(), mapRect.width(), mapRect.height()+20);
1104 pp.setWindow (mapRect);
1107 if (mapAspect>=paperAspect)
1109 // Fit horizontally to paper width
1110 pp.setViewport(0,0, metrics.width(),(int)(metrics.width()/mapAspect) );
1113 // Fit vertically to paper height
1114 pp.setViewport(0,0,(int)(metrics.height()*mapAspect),metrics.height());
1117 mapCanvas->drawArea(mapRect, &pp); // draw Canvas to printer
1119 // Delete Frame and footer
1123 delete (footerDate);
1125 if (frame) delete (frame);
1127 // Restore selection
1130 selection=oldselection;
1131 selection->select();
1134 // Save settings in vymrc
1135 settings.writeEntry("/vym/mainwindow/printerName",printer->printerName());
1139 QPixmap MapEditor::getPixmap()
1141 QRect mapRect=mapCenter->getTotalBBox();
1142 QPixmap pix (mapRect.size());
1145 // Don't print the visualisation of selection
1146 LinkableMapObj *oldselection=NULL;
1149 oldselection=selection;
1150 selection->unselect();
1153 pp.setWindow (mapRect);
1155 mapCanvas->drawArea(mapRect, &pp); // draw Canvas to painter
1158 // Restore selection
1161 selection=oldselection;
1162 selection->select();
1168 void MapEditor::exportImage(QString fn)
1170 // Finish open lineEdits
1171 if (lineedit) finishedLineEditNoSave();
1173 QPixmap pix (getPixmap());
1174 pix.save(fn, "PNG");
1177 void MapEditor::exportImage(QString fn, int item)
1179 // Finish open lineEdits
1180 if (lineedit) finishedLineEditNoSave();
1182 QPixmap pix (getPixmap());
1183 pix.save(fn, exportImageFormatMenu->text(item) );
1186 void MapEditor::exportASCII()
1188 // FIXME still experimental
1190 ex.setMapCenter(mapCenter);
1192 QFileDialog *fd=new QFileDialog( this, tr("VYM - Export (ASCII)"));
1193 fd->addFilter ("TXT (*.txt)");
1194 fd->setCaption("VYM - Export (ASCII) (still experimental)");
1195 fd->setMode( QFileDialog::AnyFile );
1198 if ( fd->exec() == QDialog::Accepted )
1200 if (QFile (fd->selectedFile()).exists() )
1202 QMessageBox mb( "VYM",
1203 tr("The file ") + fd->selectedFile() +
1204 tr(" exists already. Do you want to overwrite it?"),
1205 QMessageBox::Warning,
1206 QMessageBox::Yes | QMessageBox::Default,
1207 QMessageBox::Cancel | QMessageBox::Escape,
1208 QMessageBox::NoButton );
1210 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
1211 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1215 case QMessageBox::Yes:
1218 case QMessageBox::Cancel:
1219 // return, do nothing
1224 ex.setPath (fd->selectedFile() );
1230 void MapEditor::exportXML(const QString &dir)
1232 // Create subdirectories
1235 // write to directory
1236 QString saveFile=saveToDir (dir,mapName+"-",true,mapCenter->getTotalBBox().topLeft() ,NULL);
1239 file.setName ( dir + "/"+mapName+".xml");
1240 if ( !file.open( IO_WriteOnly ) )
1242 // This should neverever happen
1243 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open ")+file.name());
1247 // Write it finally, and write in UTF8, no matter what
1248 QTextStream ts( &file );
1249 ts.setEncoding (QTextStream::UnicodeUTF8);
1253 // Now write image, too
1254 exportImage (dir+"/images/"+mapName+".png");
1257 void MapEditor::clear()
1261 selection->unselect();
1268 void MapEditor::copy()
1270 // Finish open lineEdits
1271 if (lineedit) finishedLineEditNoSave();
1275 if (typeid(*selection) == typeid(BranchObj) )
1279 clipboardME->clear();
1280 clipboardME->getMapCenter()->addBranch();
1281 to=clipboardME->getMapCenter()->getLastBranch();
1284 from=(BranchObj*)(selection);
1287 // keep position relative to parent
1288 to->move2RelPos ( from->getRelPos());
1290 // select data in clipboard
1291 clipboardME->select ("bo:0");
1293 // repositioning makes testing nicer,
1294 // but is not needed usually:
1295 if (clipboardME->isVisible())
1297 clipboardME->getMapCenter()->reposition();
1300 clipboardME->hide();
1303 if (typeid(*selection) == typeid(FloatImageObj) )
1306 FloatImageObj* from;
1307 clipboardME->clear();
1308 clipboardME->getMapCenter()->addFloatImage();
1309 to=clipboardME->getMapCenter()->getLastFloatImage();
1312 from=(FloatImageObj*)(selection);
1315 // select data in clipboard
1316 clipboardME->select ("fi:0");
1318 // repositioning makes testing nicer,
1319 // but is not needed usually:
1320 if (clipboardME->isVisible())
1322 clipboardME->getMapCenter()->reposition();
1325 clipboardME->hide();
1331 void MapEditor::undo()
1333 // Finish open lineEdits
1334 if (lineedit) finishedLineEditNoSave();
1336 // select object before undo
1337 if (!undoSelection.isEmpty())
1338 select (undoSelection);
1340 parseAtom (undoCommand);
1341 mapCenter->reposition();
1343 // Undo not longer available now
1344 actionEditUndo->setEnabled (false);
1347 if (!redoSelection.isEmpty())
1348 select (redoSelection);
1351 void MapEditor::undoXML(const QString &undoSel)
1354 d.setPath(bakMapDir);
1357 // We need to parse saved XML data
1358 mapBuilderHandler handler;
1359 QXmlInputSource source;
1360 source.setData(backupXML);
1361 QXmlSimpleReader reader;
1362 reader.setContentHandler( &handler );
1363 reader.setErrorHandler( &handler );
1364 handler.setMapEditor( this );
1365 handler.setTmpDir ( bakMapDir ); // needed to load files with rel. path
1366 if (undoSel.isEmpty())
1370 handler.setLoadMode (NewMap);
1374 handler.setLoadMode (ImportReplace);
1376 blockReposition=true;
1377 blockSaveState=true;
1378 bool ok = reader.parse( source );
1379 blockReposition=false;
1380 blockSaveState=false;
1383 // This should never ever happen
1384 QMessageBox::critical( 0, tr( "Critical Parse Error by reading backupFile" ),
1385 tr( handler.errorProtocol() )+" in "+backupXML );
1389 QMessageBox::critical( 0, tr( "Critical Error" ),
1390 "Temporary directory " +bakMapDir +
1391 tr (" used for undo is gone. \n"
1392 "I will create a new one, but at the moment no undo is available.\n"
1393 "Maybe you want to reload your original data.\n\n"
1394 "Sorry for any inconveniences.") );
1399 LinkableMapObj* MapEditor::pasteNoSave()
1401 // Finish open lineEdits
1402 if (lineedit) finishedLineEditNoSave();
1404 LinkableMapObj *fromLMO=clipboardME->getSelection();
1405 LinkableMapObj *returnLMO=NULL;
1407 if (selection && fromLMO)
1409 if (typeid(*fromLMO) == typeid(BranchObj) )
1411 if (typeid(*selection) == typeid(MapCenterObj))
1413 returnLMO=mapCenter->addBranch( (BranchObj*)(fromLMO) );
1414 ((BranchObj*)(returnLMO))->move2RelPos(normalise(fromLMO->getRelPos() ) );
1416 if (typeid(*selection) == typeid(BranchObj))
1417 returnLMO=((BranchObj*)(selection))->addBranch((BranchObj*)(fromLMO) );
1420 if (typeid(*fromLMO) == typeid(FloatImageObj) &&
1421 (typeid(*selection) == typeid (BranchObj) ||
1422 typeid(*selection)==typeid(MapCenterObj)) )
1423 returnLMO=((BranchObj*) (selection))->addFloatImage ((FloatImageObj*)(fromLMO));
1429 void MapEditor::cutNoSave()
1431 // Finish open lineEdits
1432 if (lineedit) finishedLineEditNoSave();
1436 if (selection != NULL) {
1437 if (typeid(*selection) == typeid(BranchObj) )
1439 bo=(BranchObj*)(selection);
1440 par=(BranchObj*)(bo->getParObj());
1443 par->removeBranch(bo);
1445 selection->select();
1447 if (typeid(*selection) == typeid(FloatImageObj) )
1449 FloatImageObj* fio=(FloatImageObj*)(selection);
1450 par=(BranchObj*)(fio->getParObj());
1453 par->removeFloatImage(fio);
1455 selection->select();
1460 void MapEditor::paste()
1462 saveState(selection);
1464 mapCenter->reposition();
1468 void MapEditor::cut()
1470 saveState(selection->getParObj());
1473 mapCenter->reposition();
1477 void MapEditor::move(const int &x, const int &y)
1479 // FIXME no saveState, because this is only internal at undo so far
1480 if (selection) selection->move(x,y);
1481 if (typeid(*selection) == typeid(FloatImageObj))
1482 ((FloatImageObj*)(selection))->setRelPos();
1485 void MapEditor::moveBranchUp()
1487 // Finish open lineEdits
1488 if (lineedit) finishedLineEditNoSave();
1492 if (typeid(*selection) == typeid(BranchObj) )
1494 bo=(BranchObj*)(selection);
1495 par=(BranchObj*)(bo->getParObj());
1496 selection->unselect();
1497 selection=par->moveBranchUp (bo);
1498 selection->select();
1499 saveState("moveBranchDown ()",bo->getSelectString());
1500 mapCenter->reposition();
1501 ensureSelectionVisible();
1505 void MapEditor::moveBranchDown()
1507 // Finish open lineEdits
1508 if (lineedit) finishedLineEditNoSave();
1512 if (typeid(*selection) == typeid(BranchObj) )
1514 bo=(BranchObj*)(selection);
1515 par=(BranchObj*)(bo->getParObj());
1516 selection->unselect();
1517 selection=par->moveBranchDown(bo);
1518 selection->select();
1519 saveState("moveBranchUp ()",bo->getSelectString());
1520 mapCenter->reposition();
1521 ensureSelectionVisible();
1525 void MapEditor::editHeading()
1527 // Finish open lineEdits
1528 if (lineedit) finishedLineEditNoSave();
1531 (typeid(*selection) == typeid(BranchObj) ||
1532 typeid(*selection) == typeid(MapCenterObj) ) )
1534 editingBO=(BranchObj*)(selection);
1535 saveState("setHeading (\""+((BranchObj*)(selection))->getHeading()+"\")",editingBO->getSelectString() );
1537 ensureSelectionVisible();
1538 QPoint p = worldMatrix().map(QPoint (editingBO->x(),editingBO->y()));
1539 lineedit->setGeometry(p.x()-contentsX(),p.y()-contentsY(),200,25);
1540 QString s=editingBO->getHeading();
1541 lineedit->setText(s);
1542 lineedit->setCursorPosition(1);
1543 if (actionSettingsAutoselectText->isOn() && !s.isEmpty() && actionSettingsPasteNewHeading->isOn() )
1544 lineedit->selectAll();
1547 lineedit->grabKeyboard();
1548 lineedit->setFocus();
1552 void MapEditor::setHeading(const QString &s)
1554 // Internal function, no saveState needed
1556 (typeid(*selection) == typeid(BranchObj) ||
1557 typeid(*selection) == typeid(MapCenterObj) ) )
1559 ((BranchObj*)(selection))->setHeading(s);
1560 mapCenter->reposition();
1562 ensureSelectionVisible();
1566 void MapEditor::setURL (const QString &s)
1568 // Internal function, no saveState needed
1570 (typeid(*selection) == typeid(BranchObj) ||
1571 typeid(*selection) == typeid(MapCenterObj) ) )
1573 ((BranchObj*)(selection))->setURL(s);
1574 mapCenter->reposition();
1576 ensureSelectionVisible();
1580 void MapEditor::setVymLink (const QString &s)
1582 // Internal function, no saveState needed
1584 (typeid(*selection) == typeid(BranchObj) ||
1585 typeid(*selection) == typeid(MapCenterObj) ) )
1587 ((BranchObj*)(selection))->setVymLink(s);
1588 mapCenter->reposition();
1590 ensureSelectionVisible();
1594 void MapEditor::addNewBranch(int pos)
1596 // Finish open lineEdits
1597 if (lineedit) finishedLineEditNoSave();
1600 (typeid(*selection) == typeid(BranchObj) ||
1601 typeid(*selection) == typeid(MapCenterObj) ) )
1603 saveState(selection); //FIXME undoCommand
1605 BranchObj* bo1 = (BranchObj*) (selection);
1606 bool wasScrolled=false;
1607 BranchObj *newbo=NULL;
1610 // save scroll state. If scrolled, automatically select
1611 // new branch in order to tmp unscroll parent...
1612 wasScrolled=bo1->isScrolled();
1613 newbo=bo1->addBranch();
1616 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1620 // add above selection
1621 newbo=parbo->insertBranch(bo1->getNum());
1623 // add below selection
1624 newbo=parbo->insertBranch(bo1->getNum()+1);
1626 // This should not happen...
1631 LinkableMapObj *oldselection=selection;
1633 mapCenter->reposition();
1635 if (actionSettingsAutoedit->isOn() ||
1636 actionSettingsAutoselectHeading->isOn() )
1638 selection->unselect();
1640 selection->select();
1641 if (actionSettingsPasteNewHeading->isOn() )
1643 BranchObj *bo2= (BranchObj*)(selection);
1644 bo2->setHeading("");
1646 if (actionSettingsAutoedit->isOn() )
1648 if (!actionSettingsAutoselectHeading->isOn()
1651 selection->unselect();
1652 selection=oldselection;
1653 selection->select();
1660 void MapEditor::addNewBranchHere()
1662 // Finish open lineEdits
1663 if (lineedit) finishedLineEditNoSave();
1666 (typeid(*selection) == typeid(BranchObj) ) )
1668 saveState(selection);
1670 BranchObj* bo1 = (BranchObj*) (selection);
1671 bool wasScrolled=false;
1672 BranchObj *newbo=NULL;
1673 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1676 // add below selection
1677 newbo=parbo->insertBranch(bo1->getNum()+1);
1680 LinkableMapObj *oldselection=selection;
1681 ((BranchObj*)(selection))->moveBranchTo (newbo,-1);
1683 mapCenter->reposition();
1685 if (actionSettingsAutoedit->isOn() ||
1686 actionSettingsAutoselectHeading->isOn() )
1688 selection->unselect();
1690 selection->select();
1691 if (actionSettingsPasteNewHeading->isOn() )
1693 BranchObj *bo2= (BranchObj*)(selection);
1694 bo2->setHeading("");
1696 if (actionSettingsAutoedit->isOn() )
1698 if (!actionSettingsAutoselectHeading->isOn()
1701 selection->unselect();
1702 selection=oldselection;
1703 selection->select();
1709 void MapEditor::deleteSelection()
1711 // Finish open lineEdits
1712 if (lineedit) finishedLineEditNoSave();
1714 if (selection && typeid(*selection) ==typeid(BranchObj) )
1716 if (selection->getDepth()>1)
1717 // Normal branch, save parent with childs
1718 saveState(selection->getParObj());
1720 // Mainbranch, save whole map
1721 // FIXME Better would be to insert mainbranch again at pos
1722 // But undoCommand is missing right now
1724 BranchObj* bo=dynamic_cast <BranchObj*> (selection);
1725 BranchObj* par=(BranchObj*)(bo->getParObj());
1728 par->removeBranch(bo);
1730 selection->select();
1731 ensureSelectionVisible();
1732 mapCenter->reposition();
1735 if (selection && typeid(*selection) ==typeid(FloatImageObj) )
1737 saveState(selection->getParObj());
1738 FloatImageObj* fio=dynamic_cast <FloatImageObj*> (selection);
1739 BranchObj* par=(BranchObj*)(fio->getParObj());
1742 par->removeFloatImage(fio);
1744 selection->select();
1745 ensureSelectionVisible();
1746 mapCenter->reposition();
1751 LinkableMapObj* MapEditor::getSelection()
1756 bool MapEditor::select (const QString &s)
1758 LinkableMapObj *lmo=mapCenter->findObjBySelect(s);
1760 // Finally select the found object
1763 if (selection) unselect();
1765 selection->select();
1767 ensureSelectionVisible();
1773 void MapEditor::unselect()
1777 selectionLast=selection;
1778 selection->unselect();
1783 void MapEditor::reselect()
1787 selection=selectionLast;
1788 selection->select();
1793 void MapEditor::selectNextBranch()
1795 // Increase number of branch
1798 QString s=selection->getSelectString();
1804 part=s.section(",",-1);
1806 num=part.right(part.length() - 3);
1808 s=s.left (s.length() -num.length());
1811 num=QString ("%1").arg(num.toUInt()+1);
1815 // Try to select this one
1816 if (select (s)) return;
1818 // We have no direct successor,
1819 // try to increase the parental number in order to
1820 // find a successor with same depth
1822 int d=selection->getDepth();
1827 while (!found && d>0)
1829 s=s.section (",",0,d-1);
1830 // replace substring of current depth in s with "1"
1831 part=s.section(",",-1);
1833 num=part.right(part.length() - 3);
1837 // increase number of parent
1838 num=QString ("%1").arg(num.toUInt()+1);
1839 s=s.section (",",0,d-2) + ","+ typ+num;
1842 // Special case, look at orientation
1843 if (selection->getOrientation()==OrientRightOfCenter)
1844 num=QString ("%1").arg(num.toUInt()+1);
1846 num=QString ("%1").arg(num.toUInt()-1);
1851 // pad to oldDepth, select the first branch for each depth
1852 for (i=d;i<oldDepth;i++)
1857 if ( ((BranchObj*)(selection))->countBranches()>0)
1865 // try to select the freshly built string
1873 void MapEditor::selectPrevBranch()
1875 // Decrease number of branch
1878 QString s=selection->getSelectString();
1884 part=s.section(",",-1);
1886 num=part.right(part.length() - 3);
1888 s=s.left (s.length() -num.length());
1891 num=QString ("%1").arg(num.toUInt()-1);
1895 // Try to select this one
1896 if (select (s)) return;
1898 // We have no direct precessor,
1899 // try to decrease the parental number in order to
1900 // find a precessor with same depth
1902 int d=selection->getDepth();
1907 while (!found && d>0)
1909 s=s.section (",",0,d-1);
1910 // replace substring of current depth in s with "1"
1911 part=s.section(",",-1);
1913 num=part.right(part.length() - 3);
1917 // decrease number of parent
1918 num=QString ("%1").arg(num.toUInt()-1);
1919 s=s.section (",",0,d-2) + ","+ typ+num;
1922 // Special case, look at orientation
1923 if (selection->getOrientation()==OrientRightOfCenter)
1924 num=QString ("%1").arg(num.toUInt()-1);
1926 num=QString ("%1").arg(num.toUInt()+1);
1931 // pad to oldDepth, select the last branch for each depth
1932 for (i=d;i<oldDepth;i++)
1936 if ( ((BranchObj*)(selection))->countBranches()>0)
1937 s+=",bo:"+ QString ("%1").arg( ((BranchObj*)(selection))->countBranches()-1 );
1944 // try to select the freshly built string
1952 void MapEditor::selectUpperBranch()
1954 // Finish open lineEdits
1955 if (lineedit) finishedLineEditNoSave();
1959 if (typeid(*selection) == typeid(BranchObj))
1961 if (selection->getOrientation()==OrientRightOfCenter)
1964 if (selection->getDepth()==1)
1972 void MapEditor::selectLowerBranch()
1974 // Finish open lineEdits
1975 if (lineedit) finishedLineEditNoSave();
1979 if (typeid(*selection) == typeid(BranchObj))
1981 if (selection->getOrientation()==OrientRightOfCenter)
1984 if (selection->getDepth()==1)
1993 void MapEditor::selectLeftBranch()
1995 // Finish open lineEdits
1996 if (lineedit) finishedLineEditNoSave();
2002 if (typeid(*selection) == typeid(MapCenterObj))
2004 par= (BranchObj*) (selection);
2005 bo=par->getLastSelectedBranch();
2008 // Workaround for reselecting on left and right side
2009 if (bo->getOrientation()==OrientRightOfCenter)
2011 bo=par->getLastBranch();
2017 selection->select();
2019 ensureSelectionVisible();
2024 par=(BranchObj*)(selection->getParObj());
2025 if (selection->getOrientation()==OrientRightOfCenter)
2027 if (typeid(*selection) == typeid(BranchObj) ||
2028 typeid(*selection) == typeid(FloatImageObj))
2030 selection->unselect();
2032 selection->select();
2034 ensureSelectionVisible();
2038 if (typeid(*selection) == typeid(BranchObj) )
2040 bo=((BranchObj*)(selection))->getLastSelectedBranch();
2043 selection->unselect();
2045 selection->select();
2047 ensureSelectionVisible();
2055 void MapEditor::selectRightBranch()
2057 // Finish open lineEdits
2058 if (lineedit) finishedLineEditNoSave();
2065 if (typeid(*selection) == typeid(MapCenterObj))
2067 par= (BranchObj*) (selection);
2068 bo=par->getLastSelectedBranch();
2071 // Workaround for relecting on left and right side
2072 if (bo->getOrientation()==OrientLeftOfCenter)
2073 bo=par->getFirstBranch();
2078 selection->select();
2079 ensureSelectionVisible();
2084 par=(BranchObj*)(selection->getParObj());
2085 if (selection->getOrientation()==OrientLeftOfCenter)
2087 if (typeid(*selection) == typeid(BranchObj) ||
2088 typeid(*selection) == typeid(FloatImageObj))
2090 selection->unselect();
2092 selection->select();
2094 ensureSelectionVisible();
2098 if (typeid(*selection) == typeid(BranchObj) )
2100 bo=((BranchObj*)(selection))->getLastSelectedBranch();
2103 selection->unselect();
2105 selection->select();
2107 ensureSelectionVisible();
2115 void MapEditor::selectFirstBranch()
2117 // Finish open lineEdits
2118 if (lineedit) finishedLineEditNoSave();
2124 if (typeid(*selection) == typeid(BranchObj))
2126 bo1= (BranchObj*) (selection);
2127 par=(BranchObj*)(bo1->getParObj());
2128 bo2=par->getFirstBranch();
2132 selection->select();
2133 ensureSelectionVisible();
2140 void MapEditor::selectLastBranch()
2142 // Finish open lineEdits
2143 if (lineedit) finishedLineEditNoSave();
2149 if (typeid(*selection) == typeid(BranchObj))
2151 bo1= (BranchObj*) (selection);
2152 par=(BranchObj*)(bo1->getParObj());
2153 bo2=par->getLastBranch();
2157 selection->select();
2158 ensureSelectionVisible();
2165 void MapEditor::setColor(QColor c)
2170 void MapEditor::selectBackgroundColor()
2172 // Finish open lineEdits
2173 if (lineedit) finishedLineEditNoSave();
2175 QColor col = QColorDialog::getColor( mapCanvas->backgroundColor(), this );
2176 if ( !col.isValid() ) return;
2177 setBackgroundColor( col );
2181 void MapEditor::setBackgroundColor(QColor c)
2183 mapCanvas->setBackgroundColor (c);
2186 QColor MapEditor::pickColor()
2190 if (typeid(*selection) == typeid(BranchObj) ||
2191 typeid(*selection) == typeid(MapCenterObj))
2193 BranchObj *bo=(BranchObj*)(selection);
2194 actColor=bo->getColor();
2200 void MapEditor::colorItem()
2204 if (typeid(*selection) == typeid(BranchObj) ||
2205 typeid(*selection) == typeid(MapCenterObj))
2207 saveState(selection); //FIXME undoCommand
2208 BranchObj *bo=(BranchObj*)(selection);
2209 bo->setColor(actColor, false); // color links, color childs
2214 void MapEditor::colorBranch()
2218 if (typeid(*selection) == typeid(BranchObj) ||
2219 typeid(*selection) == typeid(MapCenterObj))
2221 saveState(selection);
2222 BranchObj *bo=(BranchObj*)(selection);
2223 bo->setColor(actColor, true); // color links, color childs
2229 void MapEditor::toggleStandardFlag(QString f)
2233 saveState(selection);// FIXME undoCommand
2234 ((BranchObj*)(selection))->toggleStandardFlag (f,actionSettingsUseFlagGroups);
2238 void MapEditor::setViewCenter()
2240 // transform to CanvasView Coord:
2241 QPoint p=worldMatrix().map(movingCenter);
2242 center ( p.x(), p.y());
2246 BranchObj* MapEditor::findText (QString s, bool cs)
2249 { // Nothing found or new find process
2251 // nothing found, start again
2253 itFind=mapCenter->first();
2255 bool searching=true;
2256 bool foundNote=false;
2257 while (searching && !EOFind)
2261 // Searching in Note
2262 if (itFind->getNote().contains(s,cs))
2264 if (selection!=itFind)
2266 if (selection) ((BranchObj*)(selection))->unselect();
2268 selection->select();
2270 ensureSelectionVisible();
2272 if (textEditor->findText(s,cs))
2278 // Searching in Heading
2279 if (searching && itFind->getHeading().contains (s,cs) )
2281 if (selection) ((BranchObj*)(selection))->unselect();
2283 selection->select();
2285 ensureSelectionVisible();
2291 itFind=itFind->next();
2292 if (!itFind) EOFind=true;
2298 return (BranchObj*)(selection);
2303 void MapEditor::findReset()
2304 { // Necessary if text to find changes during a find process
2309 void MapEditor::openURL()
2313 if (typeid(*selection) == typeid(BranchObj) ||
2314 typeid(*selection) == typeid(MapCenterObj))
2316 QString url=((BranchObj*)(selection))->getURL();
2318 QProcess *proc = new QProcess( this );
2320 #if !defined(Q_OS_MACX)
2321 proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL","konqueror" ));
2323 proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL",
2324 "/Applications/Safari.app/Contents/MacOS/Safari" ));
2327 proc->addArgument( url);
2329 if ( !proc->start() )
2331 if (mainWindow->settingsURL() )
2337 void MapEditor::editURL()
2339 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2340 typeid(*selection) == typeid(MapCenterObj)) )
2343 BranchObj *bo=(BranchObj*)(selection);
2344 QString text = QInputDialog::getText(
2345 "VYM", tr("Enter URL:"), QLineEdit::Normal,
2346 bo->getURL(), &ok, this );
2349 // user entered something and pressed OK
2350 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+text+"\")");
2357 void MapEditor::editHeading2URL()
2359 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2360 typeid(*selection) == typeid(MapCenterObj)) )
2362 BranchObj *bo=(BranchObj*)(selection);
2363 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+bo->getHeading()+"\")");
2364 bo->setURL (bo->getHeading());
2369 void MapEditor::editBugzilla2URL()
2371 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2372 typeid(*selection) == typeid(MapCenterObj)) )
2374 BranchObj *bo=(BranchObj*)(selection);
2375 QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
2376 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+url+"\")");
2382 void MapEditor::editVymLink()
2384 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2385 typeid(*selection) == typeid(MapCenterObj)) )
2387 BranchObj *bo=(BranchObj*)(selection);
2388 QFileDialog *fd=new QFileDialog( this,tr("VYM - Link to another map"));
2389 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2390 fd->setCaption(tr("VYM - Link to another map"));
2391 if (! bo->getVymLink().isEmpty() )
2392 fd->setSelection( bo->getVymLink() );
2396 if ( fd->exec() == QDialog::Accepted )
2398 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\""+fd->selectedFile()+"\")");
2399 bo->setVymLink (fd->selectedFile() );
2401 mapCenter->reposition();
2408 void MapEditor::deleteVymLink()
2410 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2411 typeid(*selection) == typeid(MapCenterObj)) )
2413 BranchObj *bo=(BranchObj*)(selection);
2414 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\"\")");
2415 bo->setVymLink ("" );
2417 mapCenter->reposition();
2423 QString MapEditor::getVymLink()
2425 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2426 typeid(*selection) == typeid(MapCenterObj)) )
2428 return ((BranchObj*)(selection))->getVymLink();
2434 void MapEditor::removeBranchHere()
2436 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2438 BranchObj* bo=(BranchObj*)(selection);
2439 BranchObj* par=(BranchObj*)(bo->getParObj());
2440 if (bo->getDepth()==1)
2443 saveState(selection->getParObj()); // FIXME undoCommand
2444 QString sel=selection->getSelectString();
2446 par->removeBranchHere(bo);
2447 mapCenter->reposition();
2452 void MapEditor::removeChilds()
2454 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2456 saveState(selection->getParObj());
2457 ((BranchObj*)(selection))->removeChilds();
2458 mapCenter->reposition();
2462 void MapEditor::editMapInfo()
2464 ExtraInfoDialog dia;
2465 dia.setMapName (getFileName() );
2466 dia.setAuthor (mapCenter->getAuthor() );
2467 dia.setComment(mapCenter->getComment() );
2472 QCanvasItemList l=canvas()->allItems();
2473 for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it)
2475 stats+=QString ("%1 items on canvas\n").arg (i,6);
2482 bo=mapCenter->first();
2485 if (!bo->getNote().isEmpty() ) n++;
2486 f+= bo->countFloatImages();
2488 xl+=bo->countXLinks();
2491 stats+=QString ("%1 branches\n").arg (b-1,6);
2492 stats+=QString ("%1 xLinks \n").arg (xl,6);
2493 stats+=QString ("%1 notes\n").arg (n,6);
2494 stats+=QString ("%1 images\n").arg (f,6);
2495 dia.setStats (stats);
2497 // Finally show dialog
2498 if (dia.exec() == QDialog::Accepted)
2500 saveState(); //FIXME undoCommand
2501 mapCenter->setAuthor (dia.getAuthor() );
2502 mapCenter->setComment (dia.getComment() );
2506 void MapEditor::updateActions()
2509 if (getLinkColorHint()==HeadingColor)
2510 actionFormatLinkColorHint->setOn(true);
2512 actionFormatLinkColorHint->setOn(false);
2517 actionFormatLinkStyleLine->setOn(true);
2520 actionFormatLinkStyleParabel->setOn(true);
2523 actionFormatLinkStylePolyLine->setOn(true);
2525 case StylePolyParabel:
2526 actionFormatLinkStylePolyParabel->setOn(true);
2532 QPixmap pix( 16, 16 );
2533 pix.fill( mapCanvas->backgroundColor() );
2534 actionFormatBackColor->setIconSet( pix );
2535 pix.fill( defLinkColor );
2536 actionFormatLinkColor->setIconSet( pix );
2538 actionEditUndo->setEnabled( mapChanged );
2539 actionFileSave->setEnabled( mapUnsaved );
2543 if ( (typeid(*selection) == typeid(BranchObj)) ||
2544 (typeid(*selection) == typeid(MapCenterObj)) )
2546 BranchObj *bo=(BranchObj*)(selection);
2547 // Take care of links
2548 if (bo->countXLinks()==0)
2550 branchLinksContextMenu->clear();
2551 branchLinksContextMenu->insertItem ("No xLink available");
2552 branchLinksContextMenuDup->clear();
2553 branchLinksContextMenuDup->insertItem ("No xLink available");
2559 branchLinksContextMenu->clear();
2560 branchLinksContextMenuDup->clear();
2561 for (int i=0; i<=bo->countXLinks();i++)
2563 bot=bo->XLinkTargetAt(i);
2566 s=bot->getHeading();
2569 branchLinksContextMenu->insertItem (s);
2570 branchLinksContextMenuDup->insertItem (s);
2575 standardFlagsDefault->setEnabled (true);
2577 if ( bo->getURL().isEmpty() )
2578 actionEditOpenURL->setEnabled (false);
2580 actionEditOpenURL->setEnabled (true);
2582 if ( bo->getVymLink().isEmpty() )
2584 actionEditOpenVymLink->setEnabled (false);
2585 actionEditDeleteVymLink->setEnabled (false);
2588 actionEditOpenVymLink->setEnabled (true);
2589 actionEditDeleteVymLink->setEnabled (true);
2592 actionEditCopy->setEnabled (true);
2593 actionEditCut->setEnabled (true);
2594 if (clipboardME->getMapCenter()->countBranches()>0 || clipboardME->getMapCenter()->countFloatImages()>0)
2595 actionEditPaste->setEnabled (true);
2597 actionEditPaste->setEnabled (false);
2598 for (a=actionListBranches.first();a;a=actionListBranches.next())
2599 a->setEnabled(true);
2600 actionEditDelete->setEnabled (true);
2601 actionEditToggleFloatExport->setEnabled (false);
2602 switch (selection->getFrameType())
2605 actionFormatFrameNone->setOn(true);
2608 actionFormatFrameRectangle->setOn(true);
2614 if ( (typeid(*selection) == typeid(FloatImageObj)) )
2616 standardFlagsDefault->setEnabled (false);
2618 actionEditOpenURL->setEnabled (false);
2619 actionEditOpenVymLink->setEnabled (false);
2620 actionEditDeleteVymLink->setEnabled (false);
2622 actionEditCopy->setEnabled (true);
2623 actionEditCut->setEnabled (true);
2624 actionEditPaste->setEnabled (false); //FIXME
2625 for (a=actionListBranches.first();a;a=actionListBranches.next())
2626 a->setEnabled(false);
2627 actionEditDelete->setEnabled (true);
2628 actionEditToggleFloatExport->setOn
2629 ( ((FloatImageObj*)(selection))->getFloatExport() );
2634 standardFlagsDefault->setEnabled (false);
2636 actionEditCopy->setEnabled (false);
2637 actionEditCut->setEnabled (false);
2638 actionEditPaste->setEnabled (false);
2639 for (a=actionListBranches.first();a;a=actionListBranches.next())
2640 a->setEnabled(false);
2642 actionEditOpenURL->setEnabled (false);
2643 actionEditOpenVymLink->setEnabled (false);
2644 actionEditDeleteVymLink->setEnabled (false);
2645 actionEditHeading2URL->setEnabled (false);
2646 actionEditDelete->setEnabled (false);
2647 actionEditToggleFloatExport->setEnabled (false);
2651 void MapEditor::setLinkStyle (LinkStyle ls)
2655 saveState(); // FIXME undoCommand
2657 bo=mapCenter->first();
2661 bo->setLinkStyle(bo->getDefLinkStyle());
2664 mapCenter->reposition();
2667 LinkStyle MapEditor::getLinkStyle ()
2672 void MapEditor::setLinkColor(QColor c)
2678 void MapEditor::setLinkColorHint()
2680 // called from setLinkColorHint(lch) or at end of parse
2682 bo=mapCenter->first();
2690 void MapEditor::setLinkColorHint(LinkColorHint lch)
2696 void MapEditor::toggleLinkColorHint()
2698 if (linkcolorhint==HeadingColor)
2699 linkcolorhint=DefaultColor;
2701 linkcolorhint=HeadingColor;
2703 bo=mapCenter->first();
2711 LinkColorHint MapEditor::getLinkColorHint()
2713 return linkcolorhint;
2716 QColor MapEditor::getDefLinkColor()
2718 return defLinkColor;
2721 void MapEditor::setDefXLinkColor(QColor col)
2726 QColor MapEditor::getDefXLinkColor()
2728 return defXLinkColor;
2731 void MapEditor::setDefXLinkWidth (int w)
2736 int MapEditor::getDefXLinkWidth()
2738 return defXLinkWidth;
2741 void MapEditor::selectLinkColor()
2743 // Finish open lineEdits
2744 if (lineedit) finishedLineEditNoSave();
2746 QColor col = QColorDialog::getColor( defLinkColor, this );
2747 if ( !col.isValid() ) return;
2748 setLinkColor( col );
2749 saveState(); //FIXME undoCommand
2753 void MapEditor::toggleScroll()
2755 if (selection && (typeid(*selection) == typeid(BranchObj)) )
2757 BranchObj *bo=((BranchObj*)(selection));
2758 if (bo->countBranches()==0) return;
2759 if (bo->getDepth()==0) return;
2760 saveState(selection);
2767 void MapEditor::unScrollAll()
2770 bo=mapCenter->first();
2773 if (bo->isScrolled()) bo->toggleScroll();
2778 void MapEditor::loadFloatImage ()
2781 (typeid(*selection) == typeid(BranchObj)) ||
2782 (typeid(*selection) == typeid(MapCenterObj)) )
2784 BranchObj *bo=((BranchObj*)(selection));
2786 QFileDialog *fd=new QFileDialog( this,tr("vym - load image"));
2787 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2788 ImagePreview *p =new ImagePreview (fd);
2789 fd->setContentsPreviewEnabled( TRUE );
2790 fd->setContentsPreview( p, p );
2791 fd->setPreviewMode( QFileDialog::Contents );
2792 fd->setCaption(tr("vym - Load image"));
2793 fd->setDir (lastImageDir);
2797 if ( fd->exec() == QDialog::Accepted )
2799 saveState(selection);
2800 QString fn=fd->selectedFile();
2801 lastImageDir=fn.left(fn.findRev ("/"));
2802 bo->addFloatImage();
2803 // FIXME check if load was successful
2804 bo->getLastFloatImage()->load(fn);
2805 bo->getLastFloatImage()->setOriginalFilename(fn);
2806 mapCenter->reposition();
2813 void MapEditor::saveFloatImage (int item)
2816 (typeid(*selection) == typeid(FloatImageObj)) )
2818 FloatImageObj *fio=((FloatImageObj*)(selection));
2819 const char* fmt = saveImageFormatMenu->text(item);
2821 QFileDialog *fd=new QFileDialog( this, tr("vym - save image as") + fmt);
2822 fd->addFilter ("PNG (*.png)");
2823 fd->addFilter ("BMP (*.bmp)");
2824 fd->addFilter ("XBM (*.xbm)");
2825 fd->addFilter ("JPG (*.jpg)");
2826 fd->addFilter ("XPM (*.xpm)");
2827 fd->addFilter ("GIF (*.gif)");
2828 fd->addFilter ("PNM (*.pnm)");
2829 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2830 fd->setCaption(tr("vym - Save image as ") + fmt);
2831 fd->setMode( QFileDialog::AnyFile );
2832 fd->setSelection (fio->getOriginalFilename());
2836 if ( fd->exec() == QDialog::Accepted )
2838 if (QFile (fd->selectedFile()).exists() )
2840 QMessageBox mb( "VYM",
2841 tr("The file ") + fd->selectedFile() +
2842 tr(" exists already. "
2843 "Do you want to overwrite it?"),
2844 QMessageBox::Warning,
2845 QMessageBox::Yes | QMessageBox::Default,
2846 QMessageBox::Cancel | QMessageBox::Escape,
2847 QMessageBox::QMessageBox::NoButton );
2849 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
2850 mb.setButtonText( QMessageBox::No, tr("Cancel"));
2853 case QMessageBox::Yes:
2856 case QMessageBox::Cancel:
2862 fio->save (fd->selectedFile(),fmt);
2867 void MapEditor::toggleFloatExport()
2870 (typeid(*selection) == typeid(FloatImageObj))||
2871 (typeid(*selection) == typeid(FloatObj)) )
2873 FloatImageObj *fio=((FloatImageObj*)(selection));
2874 fio->setFloatExport (actionEditToggleFloatExport->isOn() );
2878 void MapEditor::setFrame(const FrameType &t)
2881 (typeid(*selection) == typeid(BranchObj)) ||
2882 (typeid(*selection) == typeid(MapCenterObj)) )
2884 selection->setFrameType (t);
2885 mapCenter->reposition();
2886 selection->updateLink();
2890 void MapEditor::importDir(BranchObj *dst, QDir d)
2893 (typeid(*selection) == typeid(BranchObj)) ||
2894 (typeid(*selection) == typeid(MapCenterObj)) )
2898 // Traverse directories
2899 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
2900 const QFileInfoList *dirlist = d.entryInfoList();
2901 QFileInfoListIterator itdir( *dirlist );
2904 while ( (fi = itdir.current()) != 0 )
2906 if (fi->fileName() != "." && fi->fileName() != ".." )
2909 bo=dst->getLastBranch();
2910 bo->setHeading (fi->fileName() );
2911 bo->setColor (QColor("blue"),false);
2913 if ( !d.cd(fi->fileName()) )
2914 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory"));
2917 // Recursively add subdirs
2925 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
2926 const QFileInfoList *filelist = d.entryInfoList();
2927 QFileInfoListIterator itfile( *filelist );
2929 while ( (fi = itfile.current()) != 0 )
2932 bo=dst->getLastBranch();
2933 bo->setHeading (fi->fileName() );
2934 bo->setColor (QColor("black"),false);
2935 if (fi->fileName().right(4) == ".vym" )
2936 bo->setVymLink (fi->filePath());
2943 void MapEditor::importDir()
2946 (typeid(*selection) == typeid(BranchObj)) ||
2947 (typeid(*selection) == typeid(MapCenterObj)) )
2949 QFileDialog *fd=new QFileDialog( this,tr("VYM - Choose directory structur to import"));
2950 fd->setMode (QFileDialog::DirectoryOnly);
2951 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2952 fd->setCaption(tr("VYM - Choose directory structur to import"));
2956 if ( fd->exec() == QDialog::Accepted )
2958 BranchObj *bo=((BranchObj*)(selection));
2959 importDir (bo,QDir(fd->selectedFile()) );
2960 mapCenter->reposition();
2967 void MapEditor::followXLink(int i)
2970 (typeid(*selection) == typeid(BranchObj)) ||
2971 (typeid(*selection) == typeid(MapCenterObj)) )
2973 BranchObj *bo=((BranchObj*)(selection))->XLinkTargetAt(i);
2976 selection->unselect();
2978 selection->select();
2979 ensureSelectionVisible();
2984 void MapEditor::editXLink(int i)
2987 (typeid(*selection) == typeid(BranchObj)) ||
2988 (typeid(*selection) == typeid(MapCenterObj)) )
2990 XLinkObj *xlo=((BranchObj*)(selection))->XLinkAt(i);
2993 EditXLinkDialog dia;
2995 dia.setSelection(selection);
2996 if (dia.exec() == QDialog::Accepted)
2998 if (dia.useSettingsGlobal() )
3000 setDefXLinkColor (xlo->getColor() );
3001 setDefXLinkWidth (xlo->getWidth() );
3003 if (dia.deleteXLink())
3004 ((BranchObj*)(selection))->deleteXLinkAt(i);
3005 saveState(); //FIXME undoCommand
3011 void MapEditor::testFunction()
3013 cout << "MapEditor::testFunction() called\n";
3015 (typeid(*selection) == typeid(BranchObj)) )
3017 QString s=((BranchObj*)(selection))->getHeading();
3022 void MapEditor::ensureSelectionVisible()
3026 LinkableMapObj* lmo= dynamic_cast <LinkableMapObj*> (selection);
3028 if (selection->getOrientation() == OrientLeftOfCenter)
3029 p= worldMatrix().map(QPoint (lmo->x(),lmo->y()));
3031 p= worldMatrix().map(QPoint (lmo->x()+lmo->width(),lmo->y()+lmo->height()));
3032 ensureVisible (p.x(), p.y() );
3037 void MapEditor::updateViewCenter()
3039 // Update movingCenter, so that we can zoom comfortably later
3040 QRect rc = QRect( contentsX(), contentsY(),
3041 visibleWidth(), visibleHeight() );
3042 QRect canvasRect = inverseWorldMatrix().mapRect(rc);
3043 movingCenter.setX((canvasRect.right() + canvasRect.left())/2);
3044 movingCenter.setY((canvasRect.top() + canvasRect.bottom())/2);
3047 void MapEditor::contentsContextMenuEvent ( QContextMenuEvent * e )
3049 // Lineedits are already closed by preceding
3050 // mouseEvent, we don't need to close here.
3052 QPoint p = inverseWorldMatrix().map(e->pos());
3053 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3056 { // MapObj was found
3057 if (selection != lmo)
3059 // select the MapObj
3060 if (selection) selection->unselect();
3062 selection->select();
3068 if (typeid(*selection)==typeid(BranchObj) ||
3069 typeid(*selection)==typeid(MapCenterObj) )
3071 // Context Menu on branch or mapcenter
3073 branchContextMenu->popup(e->globalPos() );
3075 if (typeid(*selection)==typeid(FloatImageObj))
3077 // Context Menu on floatimage
3079 floatimageContextMenu->popup(e->globalPos() );
3083 { // No MapObj found, we are on the Canvas itself
3084 // Context Menu on Canvas
3086 canvasContextMenu->popup(e->globalPos() );
3090 void MapEditor::contentsMousePressEvent(QMouseEvent* e)
3092 // Finish open lineEdits
3093 if (lineedit) finishedLineEditNoSave();
3095 QPoint p = inverseWorldMatrix().map(e->pos());
3096 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3098 // Special case: CTRL is pressed
3099 if (e->state() & QMouseEvent::ControlButton)
3101 if (actionModModeColor->isOn())
3103 if (e->state() & QMouseEvent::ControlButton)
3106 setCursor (pickColorCursor);
3110 if (actionModModeLink->isOn())
3112 BranchObj *bo_begin=NULL;
3114 bo_begin=(BranchObj*)(lmo);
3117 ((typeid(*selection) == typeid(BranchObj)) ||
3118 (typeid(*selection) == typeid(MapCenterObj))) )
3119 bo_begin=(BranchObj*)(selection);
3123 linkingObj_src=bo_begin;
3124 tmpXLink=new XLinkObj (mapCanvas);
3125 tmpXLink->setBegin (bo_begin);
3126 tmpXLink->setEnd (p);
3127 tmpXLink->setColor(defXLinkColor);
3128 tmpXLink->setWidth(defXLinkWidth);
3129 tmpXLink->updateXLink();
3130 tmpXLink->setVisibility (true);
3137 { // MapObj was found
3138 if (selection != lmo)
3140 // select the MapObj
3141 if (selection) selection->unselect();
3143 selection->select();
3148 // Check, if systemFlag clicked
3149 if (typeid(*selection)==typeid(BranchObj) ||
3150 typeid(*selection)==typeid(MapCenterObj) )
3152 QString foname=((BranchObj*)(selection))->getSystemFlagName(p);
3153 if (!foname.isEmpty())
3155 // Do not move, if systemFlag clicked
3159 if (foname=="vymLink")
3161 mainWindow->editOpenVymLink();
3162 // tabWidget may change, better return now
3163 // before segfaulting...
3167 mainWindow->windowToggleNoteEditor();
3171 // Left Button Move Branches
3172 if (e->button() == QMouseEvent::LeftButton )
3174 movingObj_start.setX( p.x() - selection->x() );
3175 movingObj_start.setY( p.y() - selection->y() );
3176 movingObj_orgPos.setX (lmo->x() );
3177 movingObj_orgPos.setY (lmo->y() );
3179 // If modMode==copy, then we want to "move" the _new_ object around
3180 // then we need the offset from p to the _old_ selection, because of tmp
3181 if (actionModModeCopy->isOn() &&
3182 e->state() & QMouseEvent::ControlButton)
3184 if (typeid(*selection)==typeid(BranchObj) )
3187 mapCenter->addBranch ((BranchObj*)(selection));
3189 selection=mapCenter->getLastBranch();
3190 selection->select();
3191 mapCenter->reposition();
3194 movingObj=selection;
3196 // Middle Button Toggle Scroll
3197 // (On Mac OS X this won't work, but we still have
3198 // a button in the toolbar)
3199 if (e->button() == QMouseEvent::MidButton )
3203 { // No MapObj found, we are on the Canvas itself
3204 // Left Button move Pos of CanvasView
3205 if (e->button() == QMouseEvent::LeftButton )
3207 movingObj=NULL; // move Content not Obj
3208 movingObj_start=e->globalPos();
3209 movingCont_start=QPoint (contentsX(), contentsY() );
3210 movingVec=QPoint(0,0);
3211 setCursor(handOpenCursor);
3216 void MapEditor::contentsMouseMoveEvent(QMouseEvent* e)
3218 QPoint p = inverseWorldMatrix().map(e->pos());
3220 // Move the selected MapObj
3221 if ( selection && movingObj)
3223 ensureVisible (p.x(),p.y());
3225 // Now move the selection, but add relative position
3226 // (movingObj_start) where selection was chosen with
3227 // mousepointer. (This avoids flickering resp. jumping
3228 // of selection back to absPos)
3230 LinkableMapObj *lmosel;
3231 lmosel = dynamic_cast <LinkableMapObj*> (selection);
3233 // Check if we could link
3234 LinkableMapObj* lmo=mapCenter->findMapObj(p, lmosel);
3237 if (typeid(*selection) == typeid(FloatImageObj))
3239 FloatObj *fo=(FloatObj*)(selection);
3240 saveState("move "+qpointToString(movingObj_orgPos),fo->getSelectString() );
3241 if (fo->getLinkStyle()==StyleUndef)
3243 fo->setLinkStyle(fo->getDefLinkStyle());
3244 fo->setLinkColor(fo->getParObj()->getLinkColor());
3246 fo->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3250 // Relink float to new mapcenter or branch, if shift is pressed
3251 // Only relink, if selection really has a new parent
3252 if ( (e->state() & QMouseEvent::ShiftButton) && lmo &&
3253 ( (typeid(*lmo)==typeid(BranchObj)) ||
3254 (typeid(*lmo)==typeid(MapCenterObj)) ) &&
3255 ( lmo != fo->getParObj())
3258 if (typeid(*fo) == typeid(FloatImageObj))
3261 FloatImageObj *fio=(FloatImageObj*)(fo);
3262 ((BranchObj*)(lmo))->addFloatImage (fio);
3264 ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
3265 fio=((BranchObj*)(lmo))->getLastFloatImage();
3268 selection=(LinkableMapObj*)(fio);
3269 selection->select();
3270 movingObj=(MapObj*)(fio);
3271 // setLinkStyle calls updateLink, only set it once
3272 if (fio->getLinkStyle()!=fio->getDefLinkStyle() )
3273 fio->setLinkStyle (fio->getDefLinkStyle());
3275 // TODO if (typeid(*selection) == typeid(FloatTextObj))
3277 } else // selection != a FloatObj
3279 if (lmosel->getDepth()==0)
3281 if (e->state() == (LeftButton | !ShiftButton))
3282 // If mapCenter is moved, move all the rest by default, too.
3283 mapCenter->moveAll(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3285 mapCenter->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3288 if (lmosel->getDepth()==1)
3290 // depth==1, mainbranch
3291 saveState("move "+qpointToString(movingObj_orgPos), lmosel->getSelectString() );
3292 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3296 if (lmosel->getOrientation() == OrientLeftOfCenter)
3297 // Add width of bbox here, otherwise alignRelTo will cause jumping around
3298 lmosel->move(p.x() -movingObj_start.x()+lmosel->getBBox().width(),
3299 p.y()-movingObj_start.y() );
3301 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3303 // reposition subbranch
3304 lmosel->reposition();
3305 //ensureSelectionVisible();
3307 if (lmo && (lmo!=selection) &&
3308 (typeid(*lmo) == typeid(BranchObj) ||
3309 (typeid(*lmo) == typeid(MapCenterObj) )
3312 if (e->state() & QMouseEvent::ControlButton)
3314 // Special case: CTRL to link below lmo
3315 lmosel->setParObjTmp (lmo,p,+1);
3317 else if (e->state() & QMouseEvent::ShiftButton)
3318 lmosel->setParObjTmp (lmo,p,-1);
3320 lmosel->setParObjTmp (lmo,p,0);
3323 lmosel->unsetParObjTmp();
3325 if (lmo &&(lmo==selection))
3326 // Could link to myself (happens sometimes...)
3327 lmosel->unsetParObjTmp();
3329 // no Obj under selection, go back to original Parent
3330 lmosel->unsetParObjTmp();
3335 } // no FloatImageObj
3339 } // selection && moving_obj
3341 // Draw a link from one branch to another
3344 tmpXLink->setEnd (p);
3345 tmpXLink->updateXLink();
3349 if (!movingObj && !pickingColor &&!drawingLink)
3351 QPoint p=e->globalPos();
3352 movingVec.setX(-p.x() + movingObj_start.x() );
3353 movingVec.setY(-p.y() + movingObj_start.y() );
3354 setContentsPos( movingCont_start.x() + movingVec.x(),
3355 movingCont_start.y() + movingVec.y());
3362 void MapEditor::contentsMouseReleaseEvent(QMouseEvent* e)
3364 LinkableMapObj *dst;
3365 // Have we been picking color?
3369 setCursor (ArrowCursor);
3370 // Check if we are over another branch
3371 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3372 if (dst && selection)
3374 if (e->state() & QMouseEvent::ShiftButton)
3376 ((BranchObj*)(selection))->setColor (((BranchObj*)(dst))->getColor(),false);
3377 ((BranchObj*)(selection))->setLinkColor ();
3381 ((BranchObj*)(selection))->setColor (((BranchObj*)(dst))->getColor(),true);
3382 ((BranchObj*)(selection))->setLinkColor ();
3388 // Have we been drawing a link?
3392 // Check if we are over another branch
3393 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3394 if (dst && selection)
3396 tmpXLink->setEnd ( ((BranchObj*)(dst)) );
3397 tmpXLink->updateXLink();
3398 tmpXLink->activate();
3399 saveState(); //FIXME undoCommand
3408 // Have we been moving something?
3409 if ( selection && movingObj )
3411 // Check if we are over another branch, but ignore
3412 // any found LMOs, which are FloatObjs
3413 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ),
3414 ((LinkableMapObj*)(selection)) );
3417 (typeid(*dst)!=typeid(BranchObj)&&typeid(*dst)!=typeid(MapCenterObj)))
3422 // Now check, if we have been moving a branch
3423 if (typeid(*selection) == typeid(BranchObj) )
3425 // save the position in case we link to mapcenter
3426 QPoint savePos=QPoint (selection->x(),selection->y() );
3428 // Reset the temporary drawn link to the original one
3429 ((LinkableMapObj*)(selection))->unsetParObjTmp();
3435 BranchObj* bs=((BranchObj*)(selection));
3436 QString undoCom="linkBranchToPos (\""+
3437 (bs->getParObj())->getSelectString()+
3439 QString("%1").arg(bs->getNum())+
3441 QString ("%1,%2").arg(movingObj_orgPos.x()).arg(movingObj_orgPos.y())+
3443 // TODO we also could check, if dest and src are on same branch,
3444 // then it would be sufficient to saveState of this branch
3446 // Modifiers allow to insert above/below dst
3447 if (e->state() & QMouseEvent::ShiftButton)
3449 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum());
3451 if (e->state() & QMouseEvent::ControlButton)
3453 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum()+1);
3456 bs->moveBranchTo ((BranchObj*)(dst),-1);
3457 if (dst->getDepth()==0)
3460 saveState (undoCom,bs->getSelectString() );
3462 // Draw the original link, before selection was moved around
3463 mapCenter->reposition();
3465 // Finally resize canvas, if needed
3470 // maybe we moved View: set old cursor
3471 setCursor (ArrowCursor);
3475 void MapEditor::contentsMouseDoubleClickEvent(QMouseEvent* e)
3477 // Finish open lineEdits
3478 if (lineedit) finishedLineEditNoSave();
3480 if (e->button() == QMouseEvent::LeftButton )
3482 QPoint p = inverseWorldMatrix().map(e->pos());
3483 LinkableMapObj *lmo=mapCenter->findMapObj(p, NULL);
3484 if (lmo) { // MapObj was found
3485 // First select the MapObj than edit heading
3486 if (selection) selection->unselect();
3488 selection->select();
3489 saveState(selection);
3495 void MapEditor::resizeEvent (QResizeEvent* e)
3497 QCanvasView::resizeEvent( e );
3500 if (!fileName.isEmpty()) s=fileName;
3504 void MapEditor::contentsDragEnterEvent(QDragEnterEvent *event)
3507 // for (unsigned int i=0;event->format(i);i++) // Debug mime type
3508 // cerr << event->format(i) << endl;
3511 (typeid(*selection) == typeid(BranchObj)) ||
3512 (typeid(*selection) == typeid(MapCenterObj))) {
3514 // If QImageDrag can decode mime type
3515 if (QImageDrag::canDecode(event)) {
3520 // If image are dragged from firefox
3521 if (event->provides("application/x-moz-file-promise-url") &&
3522 event->provides("application/x-moz-nativeimage")) {
3523 event->accept(true);
3527 // If QUriDrag can decode mime type
3528 if (QUriDrag::canDecode(event)) {
3533 // If Uri are dragged from firefox
3534 if (event->provides("_NETSCAPE_URL")){
3539 // If QTextDrag can decode mime type
3540 if (QTextDrag::canDecode(event)) {
3549 bool isUnicode16(const QByteArray &d)
3551 // FIXME: make more precise check for unicode 16.
3552 // Guess unicode16 if any of second bytes are zero
3553 unsigned int length = max(0,d.size()-2)/2;
3554 for (unsigned int i = 0; i<length ; i++)
3555 if (d.at(i*2+1)==0) return true;
3559 void MapEditor::contentsDropEvent(QDropEvent *event)
3562 (typeid(*selection) == typeid(BranchObj)) ||
3563 (typeid(*selection) == typeid(MapCenterObj)))
3568 if (event->provides("image/png"))
3571 if (QImageDrag::decode(event, pix))
3579 } else if (event->provides("application/x-moz-file-promise-url") &&
3580 event->provides("application/x-moz-nativeimage"))
3582 // Contains url to the img src in unicode16
3583 QByteArray d = event->encodedData("application/x-moz-file-promise-url");
3584 QString url = QString((const QChar*)d.data(),d.size()/2);
3588 } else if (event->provides ("text/uri-list"))
3589 { // Uris provided e.g. by konqueror
3590 QUriDrag::decode (event,uris);
3591 } else if (event->provides ("_NETSCAPE_URL"))
3592 { // Uris provided by Mozilla
3593 QStringList l = QStringList::split("\n", event->encodedData("_NETSCAPE_URL"));
3596 } else if (event->provides("text/html")) {
3598 // Handels text mime types
3599 // Look like firefox allways handle text as unicode16 (2 bytes per char.)
3600 QByteArray d = event->encodedData("text/html");
3603 text = QString((const QChar*)d.data(),d.size()/2);
3607 textEditor->setText(text);
3611 } else if (event->provides("text/plain")) {
3612 QByteArray d = event->encodedData("text/plain");
3615 text = QString((const QChar*)d.data(),d.size()/2);
3619 textEditor->setText(text);
3631 for (const char* u=uris.first(); u; u=uris.next())
3633 bo=((BranchObj*)(selection))->addBranch();
3636 s=QUriDrag::uriToLocalFile(u);
3638 QString file = QDir::convertSeparators(s);
3639 heading = QFileInfo(file).baseName();
3641 if (file.endsWith(".vym", false))
3642 bo->setVymLink(file);
3651 bo->setHeading(heading);
3661 saveState(); //FIXME undo Command
3662 mapCenter->reposition();
3669 void MapEditor::addFloatImage(const QPixmap &img)
3672 (typeid(*selection) == typeid(BranchObj)) ||
3673 (typeid(*selection) == typeid(MapCenterObj)) )
3675 BranchObj *bo=((BranchObj*)(selection));
3676 saveState(selection);
3677 //QString fn=fd->selectedFile();
3678 //lastImageDir=fn.left(fn.findRev ("/"));
3679 bo->addFloatImage();
3680 // FIXME check if load was successful
3681 bo->getLastFloatImage()->load(img);
3682 //bo->getLastFloatImage()->setOriginalFilename(fn);
3683 mapCenter->reposition();
3690 void MapEditor::imageDataFetched(const QByteArray &a, QNetworkOperation */*nop*/)
3692 if (!imageBuffer) imageBuffer = new QBuffer();
3693 if (!imageBuffer->isOpen()) {
3694 imageBuffer->open(IO_WriteOnly | IO_Append);
3696 imageBuffer->at(imageBuffer->at()+imageBuffer->writeBlock(a));
3700 void MapEditor::imageDataFinished(QNetworkOperation *nop)
3702 if (nop->state()==QNetworkProtocol::StDone) {
3703 QPixmap img(imageBuffer->buffer());
3708 imageBuffer->close();
3710 imageBuffer->close();
3717 void MapEditor::fetchImage(const QString &url)
3720 urlOperator->stop();
3721 disconnect(urlOperator);
3725 urlOperator = new QUrlOperator(url);
3726 connect(urlOperator, SIGNAL(finished(QNetworkOperation *)),
3727 this, SLOT(imageDataFinished(QNetworkOperation*)));
3729 connect(urlOperator, SIGNAL(data(const QByteArray &, QNetworkOperation *)),
3730 this, SLOT(imageDataFetched(const QByteArray &, QNetworkOperation *)));