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>
30 #include "editxlinkdialog.h"
32 #include "extrainfodialog.h"
33 #include "linkablemapobj.h"
34 #include "mainwindow.h"
37 #include "texteditor.h"
41 extern TextEditor *textEditor;
42 extern int statusbarTime;
43 extern Main *mainWindow;
44 extern QString tmpVymDir;
45 extern QString clipboardDir;
46 extern bool clipboardEmpty;
47 extern FlagRowObj *systemFlagsDefault;
48 extern FlagRowObj *standardFlagsDefault;
50 extern QPtrList <QAction> actionListBranches;
52 extern QAction *actionFileSave;
53 extern QAction *actionEditUndo;
54 extern QAction *actionEditCopy;
55 extern QAction *actionEditCut;
56 extern QAction *actionEditPaste;
57 extern QAction *actionEditMoveUp;
58 extern QAction *actionEditMoveDown;
59 extern QAction *actionEditToggleScroll;
60 extern QAction *actionEditOpenURL;
61 extern QAction *actionEditURL;
62 extern QAction *actionEditHeading2URL;
63 extern QAction *actionEditBugzilla2URL;
64 extern QAction *actionEditFATE2URL;
65 extern QAction *actionEditOpenVymLink;
66 extern QAction *actionEditVymLink;
67 extern QAction *actionEditDeleteVymLink;
68 extern QAction *actionEditHeading;
69 extern QAction *actionEditDelete;
70 extern QAction *actionEditAddBranch;
71 extern QAction *actionEditAddBranchAbove;
72 extern QAction *actionEditAddBranchBelow;
73 extern QAction *actionEditRemoveBranchHere;
74 extern QAction *actionEditRemoveChilds;
75 extern QAction *actionEditImportAdd;
76 extern QAction *actionEditImportReplace;
77 extern QAction *actionEditSaveBranch;
78 extern QAction *actionEditSelectFirst;
79 extern QAction *actionEditSelectLast;
80 extern QAction *actionEditLoadImage;
81 extern QAction *actionEditToggleFloatExport;
83 extern QAction* actionFormatPickColor;
84 extern QAction* actionFormatColorBranch;
85 extern QAction* actionFormatColorSubtree;
86 extern QAction *actionFormatLinkColorHint;
87 extern QAction *actionFormatBackColor;
88 extern QAction *actionFormatLinkColor;
90 extern QActionGroup* actionGroupModModes;
91 extern QAction* actionModModeColor;
92 extern QAction* actionModModeLink;
93 extern QAction* actionModModeCopy;
95 extern QActionGroup *actionGroupFormatFrameTypes;
96 extern QAction *actionFormatFrameNone;
97 extern QAction *actionFormatFrameRectangle;
99 extern QActionGroup *actionGroupFormatLinkStyles;
100 extern QAction *actionFormatIncludeImagesVer;
101 extern QAction *actionFormatIncludeImagesHor;
102 extern QAction *actionFormatHideLinkUnselected;
103 extern QAction *actionFormatLinkStyleLine;
104 extern QAction *actionFormatLinkStyleParabel;
105 extern QAction *actionFormatLinkStylePolyLine;
106 extern QAction *actionFormatLinkStylePolyParabel;
108 extern QAction *actionViewToggleNoteEditor;
110 extern QAction *actionSettingsAutoedit;
111 extern QAction *actionSettingsAutoselectHeading;
112 extern QAction *actionSettingsAutoselectText;
113 extern QAction *actionSettingsPasteNewHeading;
114 extern QAction *actionSettingsUseFlagGroups;
116 extern QPopupMenu *branchContextMenu;
117 extern QPopupMenu *branchLinksContextMenu;
118 extern QPopupMenu *branchLinksContextMenuDup;
119 extern QPopupMenu *floatimageContextMenu;
120 extern QPopupMenu *saveImageFormatMenu;
121 extern QPopupMenu *exportImageFormatMenu;
122 extern QPopupMenu *canvasContextMenu;
124 extern Settings settings;
126 int MapEditor::mapNum=0; // make instance
128 ///////////////////////////////////////////////////////////////////////
129 ///////////////////////////////////////////////////////////////////////
130 MapEditor::MapEditor(
131 QWidget* parent, bool interactive, const char* name, WFlags f) :
132 QCanvasView(parent,name,f), urlOperator(0), imageBuffer(0)
134 //cout << "Constructor ME "<<this<<endl;
137 viewport()->setAcceptDrops(true);
139 mapCanvas = new QCanvas(1000,800);
140 mapCanvas->setAdvancePeriod(30);
141 mapCanvas->setBackgroundColor (white);
143 setCanvas (mapCanvas);
145 // Always show scroll bars (automatic would flicker sometimes)
146 setVScrollBarMode ( QScrollView::AlwaysOn );
147 setHScrollBarMode ( QScrollView::AlwaysOn );
149 mapCenter = new MapCenterObj(mapCanvas);
150 mapCenter->setVisibility (true);
151 mapCenter->setMapEditor (this);
152 mapCenter->setHeading (tr("New Map","Heading of mapcenter in new map"));
153 mapCenter->move(mapCanvas->width()/2-mapCenter->width()/2,mapCanvas->height()/2-mapCenter->height()/2);
157 lineedit = new QLineEdit(this, "lineedit" );
158 connect( lineedit, SIGNAL( returnPressed() ), SLOT( finishedLineEditNoSave() ) );
161 actColor=black; setColor (actColor);
162 defLinkColor=QColor (0,0,255);
163 defXLinkColor=QColor (180,180,180);
164 linkcolorhint=DefaultColor;
165 linkstyle=StylePolyParabel;
167 // Create bitmap cursors, patform dependant
168 #if defined(Q_OS_MACX)
169 #include "icons/cursorhandopen16.xpm"
170 #include "icons/cursorcolorpicker16.xpm"
171 QBitmap cb( 16, 16, chandopen, TRUE );
172 QBitmap cm( 16, 16, chandopenmask, TRUE );
173 handOpenCursor=QCursor ( cb, cm );
174 // set hot spot to tip of picker
175 pickColorCursor=QCursor ( cursorcolorpicker_xpm, 1,15 );
177 #include "icons/cursorhandopen.xpm"
178 #include "icons/cursorcolorpicker.xpm"
180 QBitmap cb( 32, 32, chandopen, TRUE );
181 QBitmap cm( 32, 32, chandopenmask, TRUE );
182 handOpenCursor=QCursor ( cb, cm );
183 // set hot spot to tip of picker
184 pickColorCursor=QCursor ( cursorcolorpicker_xpm, 5,27 );
197 defXLinkColor=QColor (230,230,230);
208 undosTotal=settings.readNumEntry("/vym/mapeditor/undoLevels",50);
212 // Initialize find routine
219 blockReposition=false;
220 blockSaveState=false;
221 isInteractive=interactive;
223 // Create temporary files
226 // Initially set movingCentre
229 mapCenter->reposition(); // for positioning heading
232 MapEditor::~MapEditor()
234 if (imageBuffer) delete imageBuffer;
240 //cout <<"Destructor MapEditor\n";
243 //settings.writeEntry( "/vym/mapeditor/editmode/autoselect", );
247 QColor MapEditor::color()
252 QColor MapEditor::backgroundColor()
254 return mapCanvas->backgroundColor();
257 MapCenterObj* MapEditor::getMapCenter()
262 QCanvas* MapEditor::getCanvas()
267 void MapEditor::adjustCanvasSize()
269 // To adjust the canvas to map, viewport size and position, we have to
270 // do some coordinate magic...
272 // Get rectangle of (scroll-)view.
273 // We want to be in canvas coords, so
274 // we map. Important if view is zoomed...
275 QRect view = inverseWorldMatrix().mapRect( QRect( contentsX(), contentsY(),
276 visibleWidth(), visibleHeight()) );
278 // Now we need the bounding box of view AND map to calc the correct canvas size.
279 // Why? Because if the map itself is moved out of view, the view has to be enlarged
280 // to avoid jumping aroung...
281 QRect map=mapCenter->getTotalBBox();
283 // right edge - left edge
284 int cw= max(map.x() + map.width(), view.x() + view.width()) - min(map.x(), view.x());
285 int ch= max(map.y() + map.height(), view.y() + view.height()) - min(map.y(), view.y());
288 if ( (cw!=mapCanvas->width()) || (ch!=mapCanvas->height()) ||
289 !mapCanvas->onCanvas (map.topLeft()) || !mapCanvas->onCanvas (map.bottomRight())
292 // move the map on canvas (in order to not move it on screen) this is neccessary
293 // a) if topleft corner of canvas is left or above topleft corner of view and also left of
294 // above topleft corner of map. E.g. if map is completly inside view, but it would be possible
295 // to scroll to an empty area of canvas to the left.
296 // b) if topleft corner of map left of or above topleft of canvas
300 if (cw > mapCanvas->width() )
302 if (map.x()<0) dx=-map.x();
304 if (cw < mapCanvas->width() )
305 dx=-min (view.x(),map.x());
306 if (ch > mapCanvas->height() )
308 if (map.y()<0) dy=-map.y();
310 if (ch < mapCanvas->height() )
312 dy=-min (view.y(),map.y());
314 // We really have to resize now. Let's go...
315 mapCanvas->resize (cw,ch);
316 if ( (dx!=0) || (dy!=0) )
318 mapCenter->moveAllBy(dx,dy);
319 mapCenter->reposition();
321 // scroll the view (in order to not move map on screen)
327 bool MapEditor::isRepositionBlocked()
329 return blockReposition;
332 void MapEditor::makeTmpDirs()
334 // Create unique temporary directories
335 tmpMapDir=tmpVymDir+QString("/mapeditor-%1").arg(mapNum);
337 d.mkdir (tmpMapDir,true);
340 void MapEditor::delTmpDirs()
342 removeDir (QDir(tmpMapDir));
345 QString MapEditor::saveToDir(const QString &tmpdir, const QString &prefix, bool writeflags, const QPoint &offset, LinkableMapObj *saveSelection)
347 // tmpdir temporary directory to which data will be written
348 // prefix mapname, which will be appended to images etc.
349 // writeflags Only write flags for "real" save of map, not undo
350 // offset offset of bbox of whole map in canvas.
351 // Needed for XML export
367 ls="StylePolyParabel";
371 QString s="<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE vymmap>\n";
373 if (linkcolorhint==HeadingColor)
374 colhint=attribut("linkColorHint","HeadingColor");
376 QString mapAttr=attribut("version",__VYM_VERSION__);
378 mapAttr+= attribut("author",mapCenter->getAuthor()) +
379 attribut("comment",mapCenter->getComment()) +
380 attribut("date",mapCenter->getDate()) +
381 attribut("backgroundColor", mapCanvas->backgroundColor().name() ) +
382 attribut("linkStyle", ls ) +
383 attribut("linkColor", defLinkColor.name() ) +
384 attribut("defXLinkColor", defXLinkColor.name() ) +
385 attribut("defXLinkWidth", QString().setNum(defXLinkWidth,10) ) +
387 s+=beginElement("vymmap",mapAttr);
390 // Find the used flags while traversing the tree
391 standardFlagsDefault->resetUsedCounter();
393 // Reset the counters before saving
394 FloatImageObj (mapCanvas).resetSaveCounter();
396 // Build xml recursivly
398 s+=mapCenter->saveToDir(tmpdir,prefix,writeflags,offset);
401 if ( typeid(*saveSelection) == typeid(BranchObj) )
402 s+=((BranchObj*)(saveSelection))->saveToDir(tmpdir,prefix,offset);
403 else if ( typeid(*saveSelection) == typeid(FloatImageObj) )
404 s+=((FloatImageObj*)(saveSelection))->saveToDir(tmpdir,prefix,offset);
406 else if (selection && typeid(*selection)==typeid(BranchObj))
407 // This is used if selected branch is saved from mainwindow
408 s+=((BranchObj*)selection)->saveToDir(tmpdir,prefix,offset);
411 // Save local settings
412 s+=settings.getXMLData (destPath);
415 if (selection && !saveSelection )
416 s+=valueElement("select",selection->getSelectString());
419 s+=endElement("vymmap");
422 standardFlagsDefault->saveToDir (tmpdir+"/flags/","",writeflags);
426 void MapEditor::saveState()
429 saveState (CompleteMap,"",NULL,"",NULL);
432 void MapEditor::saveState(LinkableMapObj *undoSel)
434 // save the given part of the map
435 saveState (PartOfMap,"",undoSel,"",NULL);
438 void MapEditor::saveState(const QString &uc, const QString &rc)
440 // selection does not change during action,
441 // so just save commands for undo and redo
442 LinkableMapObj *unsel;
447 saveState (UndoCommand,uc,unsel,rc,unsel);
450 void MapEditor::saveState(const QString & uncom, LinkableMapObj *unsel)
452 saveState (UndoCommand,uncom,unsel,"FIXME-redoCom",NULL);
455 void MapEditor::saveState(const SaveMode &savemode, const QString &undoCom, LinkableMapObj *undoSel, const QString &redoCom, LinkableMapObj *redoSel)
459 if (blockSaveState) return;
461 /* TODO remove after testing
462 cout << "ME::saveState() begin\n"<<endl;
463 cout << " undosTotal="<<undosTotal<<endl;
464 cout << " undosAvail="<<undosAvail<<endl;
465 cout << " undoNum="<<undoNum<<endl;
466 cout << " ---------------------------"<<endl;
470 // Find out current undo directory
471 if (undosAvail<undosTotal) undosAvail++;
473 if (undoNum>undosTotal) undoNum=1;
476 QString bakMapDir=QDir::convertSeparators (QString(tmpMapDir+"/undo-%1").arg(undoNum));
477 QString bakMapPath=QDir::convertSeparators(bakMapDir+"/map.xml");
479 // Create bakMapDir if not available
482 makeSubDirs (bakMapDir);
484 // Save current selection
485 QString redoSelection="";
487 redoSelection=redoSel->getSelectString();
489 // Save the object, which should be undone
490 QString undoSelection="";
492 undoSelection=undoSel->getSelectString();
494 // Save depending on how much needs to be saved
495 QString undoCommand="";
496 if (savemode==UndoCommand)
501 else if (savemode==PartOfMap && undoSel)
503 undoCommand="undoPart (\""+ undoSelection+"\",\""+bakMapPath+"\")";
504 backupXML=saveToDir (bakMapDir,mapName+"-",false, QPoint (),undoSel);
507 undoCommand="undoMap (\""+bakMapPath+"\")";
508 backupXML=saveToDir (bakMapDir,mapName+"-",false, QPoint (),NULL);
511 if (!backupXML.isEmpty())
512 // Write XML Data to disk
513 saveStringToDisk (QString(bakMapPath),backupXML);
516 set.setEntry (QString("undoCommand"),undoCommand);
517 set.setEntry (QString("undoSelection"),undoSelection);
518 set.setEntry (QString("redoCommand"),redoCom);
519 set.setEntry (QString("redoSelection"),redoSelection);
520 set.writeSettings(QString(bakMapDir+"/commands"));
522 /* TODO remove after testing
523 cout << " into="<< bakMapDir<<endl;
524 cout << " undosAvail="<<undosAvail<<endl;
525 cout << " undoNum="<<undoNum<<endl;
526 cout << " ---------------------------"<<endl;
527 cout << " undoCom="<<undoCommand<<endl;
528 cout << " undoSel="<<undoSelection<<endl;
529 cout << " ---------------------------"<<endl;
530 cout << " redoCom="<<redoCom<<endl;
531 cout << " redoSel="<<redoSelection<<endl;
532 cout << " ---------------------------"<<endl<<endl;
536 void MapEditor::parseAtom(const QString &atom)
543 // Split string s into command and parameters
544 api.parseCommand (atom);
545 QString com=api.command();
548 if (com=="moveBranchUp")
550 else if (com=="moveBranchDown")
552 else if (com=="move")
554 if (api.checkParamCount(2) && selection )
564 else if (com=="linkBranchToPos")
566 if (selection && typeid(*selection) == typeid(BranchObj) )
568 if (api.checkParamCount(4))
570 s=api.parString(ok,0);
571 LinkableMapObj *dst=mapCenter->findObjBySelect (s);
574 if (typeid(*dst) == typeid(BranchObj) )
576 // Get number in parent
579 ((BranchObj*)selection)->moveBranchTo ((BranchObj*)(dst),x);
580 } else if (typeid(*dst) == typeid(MapCenterObj) )
582 ((BranchObj*)selection)->moveBranchTo ((BranchObj*)(dst),-1);
583 // Get coordinates of mainbranch
588 if (ok) ((BranchObj*)selection)->move (x,y);
594 } else if (com=="setHeading")
596 if (api.checkParamCount(1))
598 s=api.parString (ok,0);
599 if (ok) setHeading (s);
601 } else if (com=="setURL")
603 if (api.checkParamCount(1))
605 s=api.parString (ok,0);
608 } else if (com=="setVymLink")
610 if (api.checkParamCount(1))
612 s=api.parString (ok,0);
613 if (ok) setVymLink(s);
616 // Internal commands, used for undo etc.
617 else if (com==QString("undoMap"))
619 if (api.checkParamCount(1))
620 undoXML("",api.parString (ok,0));
621 } else if (com==QString("undoPart"))
623 if (api.checkParamCount(2))
625 s=api.parString (ok,0);
626 t=api.parString (ok,1);
629 } else if (com=="select")
630 if (api.checkParamCount(1))
632 s=api.parString(ok,0);
637 api.setError ("Unknown command in: "+atom);
638 cout << "ME::parse api should have error now...\n";
644 cout << "MapEditor::parseAtom: Error!\n";
645 cout << " "<<api.errorDesc()<<endl;
650 void MapEditor::finishedLineEditNoSave()
652 // This is called by finishedLineEdit or any MapEditor method,
653 // which wants to assure, that lineedits finish, before e.g. a branch is
656 // After calling LineEdit and using the clipboard, the
657 // focus is not any longer on the main widget, we
658 // have to restore it using parentWidget()->setFocus()
662 editingBO->setHeading(lineedit->text() );
664 lineedit->releaseKeyboard();
666 parentWidget()->setFocus();
667 mapCenter->reposition();
669 ensureSelectionVisible();
674 bool MapEditor::isDefault()
679 bool MapEditor::isUnsaved()
684 bool MapEditor::hasChanged()
689 void MapEditor::setChanged()
694 actionEditUndo->setEnabled (true);
695 actionFileSave->setEnabled (true);
699 void MapEditor::closeMap()
701 // Finish open lineEdits
702 if (lineedit) finishedLineEditNoSave();
704 // Unselect before disabling the toolbar actions
705 if (selection) selection->unselect();
713 void MapEditor::setFilePath(QString fname)
715 setFilePath (fname,fname);
718 void MapEditor::setFilePath(QString fname, QString destname)
727 filePath=fname; // becomes absolute path
728 fileName=fname; // gets stripped of path
729 destPath=destname; // needed for vymlinks
731 // If fname is not an absolute path, complete it
732 filePath=QDir(fname).absPath();
733 fileDir=filePath.left (1+filePath.findRev ("/"));
735 // Set short name, too. Search from behind:
736 int i=fileName.findRev("/");
737 if (i>=0) fileName=fileName.remove (0,i+1);
739 // Forget the .vym (or .xml) for name of map
740 mapName=fileName.left(fileName.findRev(".",-1,true) );
744 QString MapEditor::getFilePath()
749 QString MapEditor::getFileName()
754 QString MapEditor::getMapName()
759 QString MapEditor::getDestPath()
764 int MapEditor::load (QString fname, LoadMode lmode)
766 // Finish open lineEdits
767 if (lineedit) finishedLineEditNoSave();
773 if (selection) selection->unselect();
776 mapCenter->setMapEditor(this);
777 // (map state is set later at end of load...)
780 saveState(selection);
784 mapBuilderHandler handler;
787 // I am paranoid: file should exist anyway
788 // according to check in mainwindow.
791 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
792 tr("Couldn't open map " +fname)+".");
796 blockReposition=true;
797 QXmlInputSource source( file);
798 QXmlSimpleReader reader;
799 reader.setContentHandler( &handler );
800 reader.setErrorHandler( &handler );
801 handler.setMapEditor( this );
802 handler.setTmpDir (filePath.left(filePath.findRev("/",-1))); // needed to load files with rel. path
803 handler.setLoadMode (lmode);
805 bool ok = reader.parse( source );
806 blockReposition=false;
807 blockSaveState=false;
811 mapCenter->reposition();
821 QMessageBox::critical( 0, tr( "Critical Parse Error" ),
822 tr( handler.errorProtocol() ) );
824 // Still return "success": the map maybe at least
825 // partially read by the parser
832 int MapEditor::save (const SaveMode &savemode)
834 // Finish open lineEdits
835 if (lineedit) finishedLineEditNoSave();
839 // The SaveMode UndoCommand is not supported here
840 if (savemode==UndoCommand) return 1;
842 // Create mapName and fileDir
843 makeSubDirs (fileDir);
847 fname=mapName+".xml";
849 // use name given by user, even if he chooses .doc
854 if (savemode==CompleteMap || selection==NULL)
855 saveFile=saveToDir (fileDir,mapName+"-",true,QPoint(),NULL);
857 saveFile=saveToDir (fileDir,mapName+"-",true,QPoint(),selection);
859 if (!saveStringToDisk(fileDir+fname,saveFile))
866 actionFileSave->setEnabled(false);
872 void MapEditor::setZipped (bool z)
877 bool MapEditor::saveZipped ()
882 void MapEditor::print()
884 // Finish open lineEdits
885 if (lineedit) finishedLineEditNoSave();
889 printer = new QPrinter;
890 printer->setColorMode (QPrinter::Color);
891 printer->setPrinterName (settings.readEntry("/vym/mainwindow/printerName",printer->printerName()));
894 QRect totalBBox=mapCenter->getTotalBBox();
896 // Try to set orientation automagically
897 // Note: Interpretation of generated postscript is amibiguous, if
898 // there are problems with landscape mode, see
899 // http://sdb.suse.de/de/sdb/html/jsmeix_print-cups-landscape-81.html
901 if (totalBBox.width()>totalBBox.height())
902 // recommend landscape
903 printer->setOrientation (QPrinter::Landscape);
905 // recommend portrait
906 printer->setOrientation (QPrinter::Portrait);
908 if ( printer->setup(this) )
909 // returns false, if printing is canceled
911 QPainter pp(printer);
913 // Don't print the visualisation of selection
914 LinkableMapObj *oldselection=NULL;
917 oldselection=selection;
918 selection->unselect();
921 // Handle sizes of map and paper:
923 // setWindow defines which part of the canvas will be transformed
924 // setViewport defines area on paper in device coordinates (dpi)
925 // e.g. (0,50,700,700) is upper part on A4
926 // see also /usr/lib/qt3/doc/html/coordsys.html
928 QPaintDeviceMetrics metrics (printer);
930 double paperAspect = (double)metrics.width() / (double)metrics.height();
931 double mapAspect = (double)totalBBox.width() / (double)totalBBox.height();
933 QRect mapRect=totalBBox;
934 QCanvasRectangle *frame=NULL;
935 QCanvasText *footerFN=NULL;
936 QCanvasText *footerDate=NULL;
937 if (printFrame || printFooter)
942 // Print frame around map
943 mapRect.setRect (totalBBox.x()-10, totalBBox.y()-10,
944 totalBBox.width()+20, totalBBox.height()+20);
945 frame=new QCanvasRectangle (mapRect,mapCanvas);
946 frame->setBrush (QColor(white));
947 frame->setPen (QColor(black));
951 /* TODO remove after testing
952 QCanvasLine *l=new QCanvasLine (mapCanvas);
953 l->setPoints (0,0,mapRect.width(),mapRect.height());
954 l->setPen (QPen(QColor(black), 1));
961 // Print footer below map
963 font.setPointSize(10);
964 footerFN=new QCanvasText (mapCanvas);
965 footerFN->setText ("VYM - " + fileName);
966 footerFN->setFont(font);
967 footerFN->move (mapRect.x(), mapRect.y() + mapRect.height() );
968 footerFN->setZ(Z_TEXT);
970 footerDate=new QCanvasText (mapCanvas);
971 footerDate->setText (QDate::currentDate().toString(Qt::TextDate));
972 footerDate->setFont(font);
973 footerDate->move (mapRect.x()+mapRect.width()-footerDate->boundingRect().width(), mapRect.y() + mapRect.height() );
974 footerDate->setZ(Z_TEXT);
977 pp.setWindow (mapRect.x(), mapRect.y(), mapRect.width(), mapRect.height()+20);
980 pp.setWindow (mapRect);
983 if (mapAspect>=paperAspect)
985 // Fit horizontally to paper width
986 pp.setViewport(0,0, metrics.width(),(int)(metrics.width()/mapAspect) );
989 // Fit vertically to paper height
990 pp.setViewport(0,0,(int)(metrics.height()*mapAspect),metrics.height());
993 mapCanvas->drawArea(mapRect, &pp); // draw Canvas to printer
995 // Delete Frame and footer
1001 if (frame) delete (frame);
1003 // Restore selection
1006 selection=oldselection;
1007 selection->select();
1010 // Save settings in vymrc
1011 settings.writeEntry("/vym/mainwindow/printerName",printer->printerName());
1015 QPixmap MapEditor::getPixmap()
1017 QRect mapRect=mapCenter->getTotalBBox();
1018 QPixmap pix (mapRect.size());
1021 // Don't print the visualisation of selection
1022 LinkableMapObj *oldselection=NULL;
1025 oldselection=selection;
1026 selection->unselect();
1029 pp.setWindow (mapRect);
1031 mapCanvas->drawArea(mapRect, &pp); // draw Canvas to painter
1034 // Restore selection
1037 selection=oldselection;
1038 selection->select();
1044 void MapEditor::exportImage(QString fn)
1046 // Finish open lineEdits
1047 if (lineedit) finishedLineEditNoSave();
1049 QPixmap pix (getPixmap());
1050 pix.save(fn, "PNG");
1053 void MapEditor::exportImage(QString fn, int item)
1055 // Finish open lineEdits
1056 if (lineedit) finishedLineEditNoSave();
1058 QPixmap pix (getPixmap());
1059 pix.save(fn, exportImageFormatMenu->text(item) );
1062 void MapEditor::exportASCII()
1064 // TODO still experimental
1066 ex.setMapCenter(mapCenter);
1068 QFileDialog *fd=new QFileDialog( this, tr("VYM - Export (ASCII)"));
1069 fd->addFilter ("TXT (*.txt)");
1070 fd->setCaption("VYM - Export (ASCII) (still experimental)");
1071 fd->setMode( QFileDialog::AnyFile );
1074 if ( fd->exec() == QDialog::Accepted )
1076 if (QFile (fd->selectedFile()).exists() )
1078 QMessageBox mb( "VYM",
1079 tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()),
1080 QMessageBox::Warning,
1081 QMessageBox::Yes | QMessageBox::Default,
1082 QMessageBox::Cancel | QMessageBox::Escape,
1083 QMessageBox::NoButton );
1085 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
1086 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1090 case QMessageBox::Yes:
1093 case QMessageBox::Cancel:
1094 // return, do nothing
1099 ex.setPath (fd->selectedFile() );
1104 void MapEditor::exportLaTeX()
1106 // TODO still experimental
1107 QFileDialog *fd=new QFileDialog( this, tr("VYM - Export (LaTex)"));
1108 fd->addFilter ("TEX (*.tex)");
1109 fd->setCaption("VYM - Export (LaTex) (still experimental)");
1110 fd->setMode( QFileDialog::AnyFile );
1113 if ( fd->exec() == QDialog::Accepted )
1115 if (QFile (fd->selectedFile()).exists() )
1117 QMessageBox mb( "VYM",
1118 tr("The file ") + fd->selectedFile() +
1119 tr(" exists already. Do you want to overwrite it?"),
1120 QMessageBox::Warning,
1121 QMessageBox::Yes | QMessageBox::Default,
1122 QMessageBox::Cancel | QMessageBox::Escape,
1123 QMessageBox::NoButton );
1125 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
1126 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1130 case QMessageBox::Yes:
1133 case QMessageBox::Cancel:
1140 ex.setPath (fd->selectedFile() );
1141 ex.setMapCenter(mapCenter);
1146 void MapEditor::exportOOPresentation()
1148 // TODO still experimental
1150 QFileDialog *fd=new QFileDialog( this, tr("VYM - Export (Open Office 1.3.x Presentation)"));
1151 fd->addFilter ("Open Office 1.3.x presentation (*.sxi)");
1152 fd->setCaption("VYM - Export (Open Office 1.3.x presentation) (still experimental)");
1153 fd->setMode( QFileDialog::AnyFile );
1156 if ( fd->exec() == QDialog::Accepted )
1158 if (QFile (fd->selectedFile()).exists() )
1160 QMessageBox mb( "VYM",
1161 tr("The file ") + fd->selectedFile() +
1162 tr(" exists already. Do you want to overwrite it?"),
1163 QMessageBox::Warning,
1164 QMessageBox::Yes | QMessageBox::Default,
1165 QMessageBox::Cancel | QMessageBox::Escape,
1166 QMessageBox::NoButton );
1168 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
1169 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1173 case QMessageBox::Yes:
1176 case QMessageBox::Cancel:
1184 //ex.setPath (fd->selectedFile() );
1185 ex.setMapCenter(mapCenter);
1186 ex.exportPresentation();
1192 void MapEditor::exportXML(const QString &dir)
1194 // Create subdirectories
1197 // write to directory
1198 QString saveFile=saveToDir (dir,mapName+"-",true,mapCenter->getTotalBBox().topLeft() ,NULL);
1201 file.setName ( dir + "/"+mapName+".xml");
1202 if ( !file.open( IO_WriteOnly ) )
1204 // This should neverever happen
1205 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open %1").arg(file.name()));
1209 // Write it finally, and write in UTF8, no matter what
1210 QTextStream ts( &file );
1211 ts.setEncoding (QTextStream::UnicodeUTF8);
1215 // Now write image, too
1216 exportImage (dir+"/images/"+mapName+".png");
1219 void MapEditor::clear()
1223 selection->unselect();
1230 void MapEditor::copy()
1232 // Finish open lineEdits
1233 if (lineedit) finishedLineEditNoSave();
1237 // write to directory
1238 QString clipfile="part";
1239 QString saveFile=saveToDir (fileDir,clipfile+"-",true,QPoint(),selection);
1242 file.setName ( clipboardDir + "/"+clipfile+".xml");
1243 if ( !file.open( IO_WriteOnly ) )
1245 // This should neverever happen
1246 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open %1").arg(file.name()));
1250 // Write it finally, and write in UTF8, no matter what
1251 QTextStream ts( &file );
1252 ts.setEncoding (QTextStream::UnicodeUTF8);
1256 clipboardEmpty=false;
1261 void MapEditor::redo()
1263 // Finish open lineEdits
1264 if (lineedit) finishedLineEditNoSave();
1266 blockSaveState=true;
1268 // Find out current undo directory
1269 QString bakMapDir=QDir::convertSeparators (QString(tmpMapDir+"/undo-%1").arg(undoNum));
1271 // Restore variables
1272 QString undoCommand;
1273 QString undoSelection;
1274 QString redoCommand;
1275 QString redoSelection;
1277 set.readSettings(QString(bakMapDir+"/commands"));
1278 undoCommand=set.readEntry ("undoCommand");
1279 undoSelection=set.readEntry ("undoSelection");
1280 redoCommand=set.readEntry ("redoCommand");
1281 redoSelection=set.readEntry ("redoSelection");
1283 // select object before redo
1284 if (!redoSelection.isEmpty())
1285 select (redoSelection);
1287 /* TODO remove testing
1288 cout << "ME::redo() begin\n";
1289 cout << " undosTotal="<<undosTotal<<endl;
1290 cout << " undosAvail="<<undosAvail<<endl;
1291 cout << " undoNum="<<undoNum<<endl;
1292 cout << " ---------------------------"<<endl;
1293 cout << " undoCom="<<undoCommand<<endl;
1294 cout << " undoSel="<<undoSelection<<endl;
1295 cout << " ---------------------------"<<endl;
1296 cout << " redoCom="<<redoCommand<<endl;
1297 cout << " redoSel="<<redoSelection<<endl;
1298 cout << " ---------------------------"<<endl;
1300 parseAtom (undoCommand);
1301 mapCenter->reposition();
1303 //if (!redoSelection.isEmpty())
1304 // select (redoSelection);
1308 // Undo not longer available now
1309 actionEditUndo->setEnabled (false);
1311 undoNum--; if (undoNum<1) undoNum=undosTotal;
1313 blockSaveState=false;
1314 /* TODO remove testing
1315 cout << "ME::redo() end\n";
1316 cout << " undosAvail="<<undosAvail<<endl;
1317 cout << " undoNum="<<undoNum<<endl;
1318 cout << " ---------------------------"<<endl<<endl;
1322 void MapEditor::undo()
1324 // Finish open lineEdits
1325 if (lineedit) finishedLineEditNoSave();
1327 blockSaveState=true;
1329 // Find out current undo directory
1330 QString bakMapDir=QDir::convertSeparators (QString(tmpMapDir+"/undo-%1").arg(undoNum));
1332 // Restore variables
1333 QString undoCommand;
1334 QString undoSelection;
1335 QString redoCommand;
1336 QString redoSelection;
1338 set.readSettings(QString(bakMapDir+"/commands"));
1339 undoCommand= set.readEntry ("undoCommand");
1340 undoSelection=set.readEntry ("undoSelection");
1341 redoCommand= set.readEntry ("redoCommand");
1342 redoSelection=set.readEntry ("redoSelection");
1344 // select object before undo
1345 if (!undoSelection.isEmpty())
1346 select (undoSelection);
1349 cout << "ME::undo() begin\n";
1350 cout << " undosTotal="<<undosTotal<<endl;
1351 cout << " undosAvail="<<undosAvail<<endl;
1352 cout << " undoNum="<<undoNum<<endl;
1353 cout << " ---------------------------"<<endl;
1354 cout << " undoCom="<<undoCommand<<endl;
1355 cout << " undoSel="<<undoSelection<<endl;
1356 cout << " ---------------------------"<<endl;
1357 cout << " redoCom="<<redoCommand<<endl;
1358 cout << " redoSel="<<redoSelection<<endl;
1359 cout << " ---------------------------"<<endl;
1361 parseAtom (undoCommand);
1362 mapCenter->reposition();
1364 //if (!redoSelection.isEmpty())
1365 // select (redoSelection);
1369 // Undo not longer available now
1370 actionEditUndo->setEnabled (false);
1372 undoNum--; if (undoNum<1) undoNum=undosTotal;
1374 blockSaveState=false;
1375 /* TODO remove testing
1376 cout << "ME::undo() end\n";
1377 cout << " undosAvail="<<undosAvail<<endl;
1378 cout << " undoNum="<<undoNum<<endl;
1379 cout << " ---------------------------"<<endl<<endl;
1383 void MapEditor::undoXML(const QString &undoSel, const QString &bakMapPath)
1385 QString bakMapDir=bakMapPath.left(bakMapPath.findRev("/"));
1387 QFile file (bakMapPath);
1391 // We need to parse saved XML data
1392 mapBuilderHandler handler;
1393 QXmlInputSource source( file);
1394 QXmlSimpleReader reader;
1395 reader.setContentHandler( &handler );
1396 reader.setErrorHandler( &handler );
1397 handler.setMapEditor( this );
1398 handler.setTmpDir ( bakMapDir ); // needed to load files with rel. path
1399 if (undoSel.isEmpty())
1403 handler.setLoadMode (NewMap);
1407 handler.setLoadMode (ImportReplace);
1409 blockReposition=true;
1410 bool ok = reader.parse( source );
1411 blockReposition=false;
1414 // This should never ever happen
1415 QMessageBox::critical( 0, tr( "Critical Parse Error by reading backupFile" ),
1416 tr( handler.errorProtocol() )+" in "+bakMapDir );
1420 QMessageBox::critical( 0, tr( "Critical Error" ),
1421 tr("Temporary directory %1 used for undo is gone. \n"
1422 "I will create a new one, but at the moment no undo is available.\n"
1423 "Maybe you want to reload your original data.\n\n"
1424 "Sorry for any inconveniences.").arg(bakMapDir) );
1429 void MapEditor::pasteNoSave()
1431 // Finish open lineEdits
1432 if (lineedit) finishedLineEditNoSave();
1434 load (clipboardDir+"/part.xml",ImportAdd);
1437 void MapEditor::cutNoSave()
1443 void MapEditor::paste()
1445 if (selection && (typeid(*selection) == typeid(BranchObj) ||
1446 typeid(*selection) == typeid(MapCenterObj)))
1448 saveState(selection);
1450 mapCenter->reposition();
1455 void MapEditor::cut()
1457 saveState(selection->getParObj());
1460 mapCenter->reposition();
1464 void MapEditor::move(const int &x, const int &y)
1466 // TODO no saveState, because this is only internal at undo so far
1467 if (selection) selection->move(x,y);
1468 if (typeid(*selection) == typeid(FloatImageObj))
1469 ((FloatImageObj*)selection)->setRelPos();
1472 void MapEditor::moveBranchUp()
1474 // Finish open lineEdits
1475 if (lineedit) finishedLineEditNoSave();
1479 if (typeid(*selection) == typeid(BranchObj) )
1481 bo=(BranchObj*)selection;
1482 par=(BranchObj*)(bo->getParObj());
1483 selection->unselect();
1484 selection=par->moveBranchUp (bo);
1485 selection->select();
1486 saveState("moveBranchDown ()",bo);
1487 mapCenter->reposition();
1488 ensureSelectionVisible();
1492 void MapEditor::moveBranchDown()
1494 // Finish open lineEdits
1495 if (lineedit) finishedLineEditNoSave();
1499 if (typeid(*selection) == typeid(BranchObj) )
1501 bo=(BranchObj*)selection;
1502 par=(BranchObj*)(bo->getParObj());
1503 selection->unselect();
1504 selection=par->moveBranchDown(bo);
1505 selection->select();
1506 saveState("moveBranchUp ()",bo);
1507 mapCenter->reposition();
1508 ensureSelectionVisible();
1512 void MapEditor::editHeading()
1514 // Finish open lineEdits
1515 if (lineedit) finishedLineEditNoSave();
1518 (typeid(*selection) == typeid(BranchObj) ||
1519 typeid(*selection) == typeid(MapCenterObj) ) )
1521 editingBO=(BranchObj*)selection;
1522 saveState("setHeading (\""+((BranchObj*)selection)->getHeading()+"\")",editingBO );
1524 ensureSelectionVisible();
1525 QPoint p = worldMatrix().map(QPoint (editingBO->x(),editingBO->y()));
1526 lineedit->setGeometry(p.x()-contentsX(),p.y()-contentsY(),200,25);
1527 QString s=editingBO->getHeading();
1528 lineedit->setText(s);
1529 lineedit->setCursorPosition(1);
1530 if (actionSettingsAutoselectText->isOn() && !s.isEmpty() && actionSettingsPasteNewHeading->isOn() )
1531 lineedit->selectAll();
1533 lineedit->grabKeyboard();
1534 lineedit->setFocus();
1538 void MapEditor::setHeading(const QString &s)
1540 // Internal function, no saveState needed
1542 (typeid(*selection) == typeid(BranchObj) ||
1543 typeid(*selection) == typeid(MapCenterObj) ) )
1545 ((BranchObj*)selection)->setHeading(s);
1546 mapCenter->reposition();
1548 ensureSelectionVisible();
1552 void MapEditor::setURL (const QString &s)
1554 // Internal function, no saveState needed
1556 (typeid(*selection) == typeid(BranchObj) ||
1557 typeid(*selection) == typeid(MapCenterObj) ) )
1559 ((BranchObj*)selection)->setURL(s);
1560 mapCenter->reposition();
1562 ensureSelectionVisible();
1566 void MapEditor::setVymLink (const QString &s)
1568 // Internal function, no saveState needed
1570 (typeid(*selection) == typeid(BranchObj) ||
1571 typeid(*selection) == typeid(MapCenterObj) ) )
1573 ((BranchObj*)selection)->setVymLink(s);
1574 mapCenter->reposition();
1576 ensureSelectionVisible();
1580 void MapEditor::addNewBranch(int pos)
1582 // Finish open lineEdits
1583 if (lineedit) finishedLineEditNoSave();
1586 (typeid(*selection) == typeid(BranchObj) ||
1587 typeid(*selection) == typeid(MapCenterObj) ) )
1589 saveState(selection); //TODO undoCommand
1591 BranchObj* bo1 = (BranchObj*) selection;
1592 bool wasScrolled=false;
1593 BranchObj *newbo=NULL;
1596 // save scroll state. If scrolled, automatically select
1597 // new branch in order to tmp unscroll parent...
1598 wasScrolled=bo1->isScrolled();
1599 newbo=bo1->addBranch();
1602 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1606 // add above selection
1607 newbo=parbo->insertBranch(bo1->getNum());
1609 // add below selection
1610 newbo=parbo->insertBranch(bo1->getNum()+1);
1612 // This should not happen...
1617 LinkableMapObj *oldselection=selection;
1619 mapCenter->reposition();
1621 if (actionSettingsAutoedit->isOn() ||
1622 actionSettingsAutoselectHeading->isOn() )
1624 selection->unselect();
1626 selection->select();
1627 if (actionSettingsPasteNewHeading->isOn() )
1629 BranchObj *bo2= (BranchObj*)selection;
1630 bo2->setHeading("");
1632 if (actionSettingsAutoedit->isOn() )
1634 if (!actionSettingsAutoselectHeading->isOn()
1637 selection->unselect();
1638 selection=oldselection;
1639 selection->select();
1646 void MapEditor::addNewBranchHere()
1648 // Finish open lineEdits
1649 if (lineedit) finishedLineEditNoSave();
1652 (typeid(*selection) == typeid(BranchObj) ) )
1654 saveState(selection);
1656 BranchObj* bo1 = (BranchObj*) selection;
1657 bool wasScrolled=false;
1658 BranchObj *newbo=NULL;
1659 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1662 // add below selection
1663 newbo=parbo->insertBranch(bo1->getNum()+1);
1666 LinkableMapObj *oldselection=selection;
1667 ((BranchObj*)selection)->moveBranchTo (newbo,-1);
1669 mapCenter->reposition();
1671 if (actionSettingsAutoedit->isOn() ||
1672 actionSettingsAutoselectHeading->isOn() )
1674 selection->unselect();
1676 selection->select();
1677 if (actionSettingsPasteNewHeading->isOn() )
1679 BranchObj *bo2= (BranchObj*)selection;
1680 bo2->setHeading("");
1682 if (actionSettingsAutoedit->isOn() )
1684 if (!actionSettingsAutoselectHeading->isOn()
1687 selection->unselect();
1688 selection=oldselection;
1689 selection->select();
1695 void MapEditor::deleteSelection()
1697 // Finish open lineEdits
1698 if (lineedit) finishedLineEditNoSave();
1700 if (selection && typeid(*selection) ==typeid(BranchObj) )
1702 if (selection->getDepth()>1)
1703 // Normal branch, save parent with childs
1704 saveState(selection->getParObj());
1706 // Mainbranch, save whole map
1707 // TODO Better would be to insert mainbranch again at pos
1708 // But undoCommand is missing right now
1710 BranchObj* bo=dynamic_cast <BranchObj*> (selection);
1711 BranchObj* par=(BranchObj*)(bo->getParObj());
1714 par->removeBranch(bo);
1716 selection->select();
1717 ensureSelectionVisible();
1718 mapCenter->reposition();
1721 if (selection && typeid(*selection) ==typeid(FloatImageObj) )
1723 saveState(selection->getParObj());
1724 FloatImageObj* fio=dynamic_cast <FloatImageObj*> (selection);
1725 BranchObj* par=(BranchObj*)(fio->getParObj());
1728 par->removeFloatImage(fio);
1730 selection->select();
1731 ensureSelectionVisible();
1732 mapCenter->reposition();
1737 LinkableMapObj* MapEditor::getSelection()
1742 bool MapEditor::select (const QString &s)
1744 LinkableMapObj *lmo=mapCenter->findObjBySelect(s);
1746 // Finally select the found object
1749 if (selection) unselect();
1751 selection->select();
1753 ensureSelectionVisible();
1759 void MapEditor::unselect()
1763 selectionLast=selection;
1764 selection->unselect();
1769 void MapEditor::reselect()
1773 selection=selectionLast;
1774 selection->select();
1779 void MapEditor::selectNextBranch()
1781 // Increase number of branch
1784 QString s=selection->getSelectString();
1790 part=s.section(",",-1);
1792 num=part.right(part.length() - 3);
1794 s=s.left (s.length() -num.length());
1797 num=QString ("%1").arg(num.toUInt()+1);
1801 // Try to select this one
1802 if (select (s)) return;
1804 // We have no direct successor,
1805 // try to increase the parental number in order to
1806 // find a successor with same depth
1808 int d=selection->getDepth();
1813 while (!found && d>0)
1815 s=s.section (",",0,d-1);
1816 // replace substring of current depth in s with "1"
1817 part=s.section(",",-1);
1819 num=part.right(part.length() - 3);
1823 // increase number of parent
1824 num=QString ("%1").arg(num.toUInt()+1);
1825 s=s.section (",",0,d-2) + ","+ typ+num;
1828 // Special case, look at orientation
1829 if (selection->getOrientation()==OrientRightOfCenter)
1830 num=QString ("%1").arg(num.toUInt()+1);
1832 num=QString ("%1").arg(num.toUInt()-1);
1837 // pad to oldDepth, select the first branch for each depth
1838 for (i=d;i<oldDepth;i++)
1843 if ( ((BranchObj*)selection)->countBranches()>0)
1851 // try to select the freshly built string
1859 void MapEditor::selectPrevBranch()
1861 // Decrease number of branch
1864 QString s=selection->getSelectString();
1870 part=s.section(",",-1);
1872 num=part.right(part.length() - 3);
1874 s=s.left (s.length() -num.length());
1877 num=QString ("%1").arg(num.toUInt()-1);
1881 // Try to select this one
1882 if (select (s)) return;
1884 // We have no direct precessor,
1885 // try to decrease the parental number in order to
1886 // find a precessor with same depth
1888 int d=selection->getDepth();
1893 while (!found && d>0)
1895 s=s.section (",",0,d-1);
1896 // replace substring of current depth in s with "1"
1897 part=s.section(",",-1);
1899 num=part.right(part.length() - 3);
1903 // decrease number of parent
1904 num=QString ("%1").arg(num.toUInt()-1);
1905 s=s.section (",",0,d-2) + ","+ typ+num;
1908 // Special case, look at orientation
1909 if (selection->getOrientation()==OrientRightOfCenter)
1910 num=QString ("%1").arg(num.toUInt()-1);
1912 num=QString ("%1").arg(num.toUInt()+1);
1917 // pad to oldDepth, select the last branch for each depth
1918 for (i=d;i<oldDepth;i++)
1922 if ( ((BranchObj*)selection)->countBranches()>0)
1923 s+=",bo:"+ QString ("%1").arg( ((BranchObj*)selection)->countBranches()-1 );
1930 // try to select the freshly built string
1938 void MapEditor::selectUpperBranch()
1940 // Finish open lineEdits
1941 if (lineedit) finishedLineEditNoSave();
1945 if (typeid(*selection) == typeid(BranchObj))
1947 if (selection->getOrientation()==OrientRightOfCenter)
1950 if (selection->getDepth()==1)
1958 void MapEditor::selectLowerBranch()
1960 // Finish open lineEdits
1961 if (lineedit) finishedLineEditNoSave();
1965 if (typeid(*selection) == typeid(BranchObj))
1967 if (selection->getOrientation()==OrientRightOfCenter)
1970 if (selection->getDepth()==1)
1979 void MapEditor::selectLeftBranch()
1981 // Finish open lineEdits
1982 if (lineedit) finishedLineEditNoSave();
1988 if (typeid(*selection) == typeid(MapCenterObj))
1990 par= (BranchObj*) selection;
1991 bo=par->getLastSelectedBranch();
1994 // Workaround for reselecting on left and right side
1995 if (bo->getOrientation()==OrientRightOfCenter)
1997 bo=par->getLastBranch();
2003 selection->select();
2005 ensureSelectionVisible();
2010 par=(BranchObj*)(selection->getParObj());
2011 if (selection->getOrientation()==OrientRightOfCenter)
2013 if (typeid(*selection) == typeid(BranchObj) ||
2014 typeid(*selection) == typeid(FloatImageObj))
2016 selection->unselect();
2018 selection->select();
2020 ensureSelectionVisible();
2024 if (typeid(*selection) == typeid(BranchObj) )
2026 bo=((BranchObj*)selection)->getLastSelectedBranch();
2029 selection->unselect();
2031 selection->select();
2033 ensureSelectionVisible();
2041 void MapEditor::selectRightBranch()
2043 // Finish open lineEdits
2044 if (lineedit) finishedLineEditNoSave();
2051 if (typeid(*selection) == typeid(MapCenterObj))
2053 par= (BranchObj*) selection;
2054 bo=par->getLastSelectedBranch();
2057 // Workaround for relecting on left and right side
2058 if (bo->getOrientation()==OrientLeftOfCenter)
2059 bo=par->getFirstBranch();
2064 selection->select();
2065 ensureSelectionVisible();
2070 par=(BranchObj*)(selection->getParObj());
2071 if (selection->getOrientation()==OrientLeftOfCenter)
2073 if (typeid(*selection) == typeid(BranchObj) ||
2074 typeid(*selection) == typeid(FloatImageObj))
2076 selection->unselect();
2078 selection->select();
2080 ensureSelectionVisible();
2084 if (typeid(*selection) == typeid(BranchObj) )
2086 bo=((BranchObj*)selection)->getLastSelectedBranch();
2089 selection->unselect();
2091 selection->select();
2093 ensureSelectionVisible();
2101 void MapEditor::selectFirstBranch()
2103 // Finish open lineEdits
2104 if (lineedit) finishedLineEditNoSave();
2110 if (typeid(*selection) == typeid(BranchObj))
2112 bo1= (BranchObj*) selection;
2113 par=(BranchObj*)(bo1->getParObj());
2114 bo2=par->getFirstBranch();
2118 selection->select();
2119 ensureSelectionVisible();
2126 void MapEditor::selectLastBranch()
2128 // Finish open lineEdits
2129 if (lineedit) finishedLineEditNoSave();
2135 if (typeid(*selection) == typeid(BranchObj))
2137 bo1= (BranchObj*) selection;
2138 par=(BranchObj*)(bo1->getParObj());
2139 bo2=par->getLastBranch();
2143 selection->select();
2144 ensureSelectionVisible();
2151 void MapEditor::setColor(QColor c)
2156 void MapEditor::selectBackgroundColor()
2158 // Finish open lineEdits
2159 if (lineedit) finishedLineEditNoSave();
2161 QColor col = QColorDialog::getColor( mapCanvas->backgroundColor(), this );
2162 if ( !col.isValid() ) return;
2163 setBackgroundColor( col );
2167 void MapEditor::setBackgroundColor(QColor c)
2169 mapCanvas->setBackgroundColor (c);
2172 QColor MapEditor::pickColor()
2176 if (typeid(*selection) == typeid(BranchObj) ||
2177 typeid(*selection) == typeid(MapCenterObj))
2179 BranchObj *bo=(BranchObj*)selection;
2180 actColor=bo->getColor();
2186 void MapEditor::colorItem()
2190 if (typeid(*selection) == typeid(BranchObj) ||
2191 typeid(*selection) == typeid(MapCenterObj))
2193 saveState(selection); //TODO undoCommand
2194 BranchObj *bo=(BranchObj*)selection;
2195 bo->setColor(actColor, false); // color links, color childs
2200 void MapEditor::colorBranch()
2204 if (typeid(*selection) == typeid(BranchObj) ||
2205 typeid(*selection) == typeid(MapCenterObj))
2207 saveState(selection);
2208 BranchObj *bo=(BranchObj*)selection;
2209 bo->setColor(actColor, true); // color links, color childs
2215 void MapEditor::toggleStandardFlag(QString f)
2219 saveState(selection);// TODO undoCommand
2220 ((BranchObj*)selection)->toggleStandardFlag (f,actionSettingsUseFlagGroups);
2224 void MapEditor::setViewCenter()
2226 // transform to CanvasView Coord:
2227 QPoint p=worldMatrix().map(movingCenter);
2228 center ( p.x(), p.y());
2232 BranchObj* MapEditor::findText (QString s, bool cs)
2235 { // Nothing found or new find process
2237 // nothing found, start again
2239 itFind=mapCenter->first();
2241 bool searching=true;
2242 bool foundNote=false;
2243 while (searching && !EOFind)
2247 // Searching in Note
2248 if (itFind->getNote().contains(s,cs))
2250 if (selection!=itFind)
2252 if (selection) ((BranchObj*)selection)->unselect();
2254 selection->select();
2256 ensureSelectionVisible();
2258 if (textEditor->findText(s,cs))
2264 // Searching in Heading
2265 if (searching && itFind->getHeading().contains (s,cs) )
2267 if (selection) ((BranchObj*)selection)->unselect();
2269 selection->select();
2271 ensureSelectionVisible();
2277 itFind=itFind->next();
2278 if (!itFind) EOFind=true;
2284 return (BranchObj*)selection;
2289 void MapEditor::findReset()
2290 { // Necessary if text to find changes during a find process
2295 void MapEditor::openURL()
2299 if (typeid(*selection) == typeid(BranchObj) ||
2300 typeid(*selection) == typeid(MapCenterObj))
2302 QString url=((BranchObj*)selection)->getURL();
2304 QProcess *proc = new QProcess( this );
2306 proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL" ));
2307 proc->addArgument( url);
2309 if ( !proc->start() )
2311 if (mainWindow->settingsURL() )
2317 void MapEditor::editURL()
2319 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2320 typeid(*selection) == typeid(MapCenterObj)) )
2323 BranchObj *bo=(BranchObj*)selection;
2324 QString text = QInputDialog::getText(
2325 "VYM", tr("Enter URL:"), QLineEdit::Normal,
2326 bo->getURL(), &ok, this );
2329 // user entered something and pressed OK
2330 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+text+"\")");
2337 void MapEditor::editHeading2URL()
2339 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2340 typeid(*selection) == typeid(MapCenterObj)) )
2342 BranchObj *bo=(BranchObj*)selection;
2343 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+bo->getHeading()+"\")");
2344 bo->setURL (bo->getHeading());
2349 void MapEditor::editBugzilla2URL()
2351 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2352 typeid(*selection) == typeid(MapCenterObj)) )
2354 BranchObj *bo=(BranchObj*)selection;
2355 QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
2356 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+url+"\")");
2362 void MapEditor::editFATE2URL()
2364 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2365 typeid(*selection) == typeid(MapCenterObj)) )
2367 BranchObj *bo=(BranchObj*)selection;
2368 QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
2369 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+url+"\")");
2375 void MapEditor::editVymLink()
2377 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2378 typeid(*selection) == typeid(MapCenterObj)) )
2380 BranchObj *bo=(BranchObj*)selection;
2381 QFileDialog *fd=new QFileDialog( this,tr("VYM - Link to another map"));
2382 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2383 fd->setCaption(tr("VYM - Link to another map"));
2384 if (! bo->getVymLink().isEmpty() )
2385 fd->setSelection( bo->getVymLink() );
2389 if ( fd->exec() == QDialog::Accepted )
2391 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\""+fd->selectedFile()+"\")");
2392 bo->setVymLink (fd->selectedFile() );
2394 mapCenter->reposition();
2401 void MapEditor::deleteVymLink()
2403 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2404 typeid(*selection) == typeid(MapCenterObj)) )
2406 BranchObj *bo=(BranchObj*)selection;
2407 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\"\")");
2408 bo->setVymLink ("" );
2410 mapCenter->reposition();
2416 QString MapEditor::getVymLink()
2418 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2419 typeid(*selection) == typeid(MapCenterObj)) )
2421 return ((BranchObj*)selection)->getVymLink();
2427 void MapEditor::removeBranchHere()
2429 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2431 BranchObj* bo=(BranchObj*)selection;
2432 BranchObj* par=(BranchObj*)(bo->getParObj());
2433 if (bo->getDepth()==1)
2436 saveState(selection->getParObj()); // TODO undoCommand
2437 QString sel=selection->getSelectString();
2439 par->removeBranchHere(bo);
2440 mapCenter->reposition();
2445 void MapEditor::removeChilds()
2447 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2449 saveState(selection->getParObj());
2450 ((BranchObj*)selection)->removeChilds();
2451 mapCenter->reposition();
2455 void MapEditor::editMapInfo()
2457 ExtraInfoDialog dia;
2458 dia.setMapName (getFileName() );
2459 dia.setAuthor (mapCenter->getAuthor() );
2460 dia.setComment(mapCenter->getComment() );
2465 QCanvasItemList l=canvas()->allItems();
2466 for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it)
2468 stats+=QString ("%1 items on canvas\n").arg (i,6);
2475 bo=mapCenter->first();
2478 if (!bo->getNote().isEmpty() ) n++;
2479 f+= bo->countFloatImages();
2481 xl+=bo->countXLinks();
2484 stats+=QString ("%1 branches\n").arg (b-1,6);
2485 stats+=QString ("%1 xLinks \n").arg (xl,6);
2486 stats+=QString ("%1 notes\n").arg (n,6);
2487 stats+=QString ("%1 images\n").arg (f,6);
2488 dia.setStats (stats);
2490 // Finally show dialog
2491 if (dia.exec() == QDialog::Accepted)
2493 saveState(); //TODO undoCommand
2494 mapCenter->setAuthor (dia.getAuthor() );
2495 mapCenter->setComment (dia.getComment() );
2499 void MapEditor::updateActions()
2502 if (getLinkColorHint()==HeadingColor)
2503 actionFormatLinkColorHint->setOn(true);
2505 actionFormatLinkColorHint->setOn(false);
2510 actionFormatLinkStyleLine->setOn(true);
2513 actionFormatLinkStyleParabel->setOn(true);
2516 actionFormatLinkStylePolyLine->setOn(true);
2518 case StylePolyParabel:
2519 actionFormatLinkStylePolyParabel->setOn(true);
2525 QPixmap pix( 16, 16 );
2526 pix.fill( mapCanvas->backgroundColor() );
2527 actionFormatBackColor->setIconSet( pix );
2528 pix.fill( defLinkColor );
2529 actionFormatLinkColor->setIconSet( pix );
2531 actionEditUndo->setEnabled( mapChanged );
2532 actionFileSave->setEnabled( mapUnsaved );
2536 if ( (typeid(*selection) == typeid(BranchObj)) ||
2537 (typeid(*selection) == typeid(MapCenterObj)) )
2539 BranchObj *bo=(BranchObj*)selection;
2540 // Take care of links
2541 if (bo->countXLinks()==0)
2543 branchLinksContextMenu->clear();
2544 branchLinksContextMenu->insertItem ("No xLink available");
2545 branchLinksContextMenuDup->clear();
2546 branchLinksContextMenuDup->insertItem ("No xLink available");
2552 branchLinksContextMenu->clear();
2553 branchLinksContextMenuDup->clear();
2554 for (int i=0; i<=bo->countXLinks();i++)
2556 bot=bo->XLinkTargetAt(i);
2559 s=bot->getHeading();
2562 branchLinksContextMenu->insertItem (s);
2563 branchLinksContextMenuDup->insertItem (s);
2568 standardFlagsDefault->setEnabled (true);
2570 if ( bo->getURL().isEmpty() )
2571 actionEditOpenURL->setEnabled (false);
2573 actionEditOpenURL->setEnabled (true);
2575 if ( bo->getVymLink().isEmpty() )
2577 actionEditOpenVymLink->setEnabled (false);
2578 actionEditDeleteVymLink->setEnabled (false);
2581 actionEditOpenVymLink->setEnabled (true);
2582 actionEditDeleteVymLink->setEnabled (true);
2585 actionEditCopy->setEnabled (true);
2586 actionEditCut->setEnabled (true);
2587 if (!clipboardEmpty)
2588 actionEditPaste->setEnabled (true);
2590 actionEditPaste->setEnabled (false);
2591 for (a=actionListBranches.first();a;a=actionListBranches.next())
2592 a->setEnabled(true);
2593 actionEditDelete->setEnabled (true);
2594 actionEditToggleFloatExport->setEnabled (false);
2595 switch (selection->getFrameType())
2598 actionFormatFrameNone->setOn(true);
2601 actionFormatFrameRectangle->setOn(true);
2606 actionFormatIncludeImagesVer->setOn
2607 ( ((BranchObj*)selection)->getIncludeImagesVer());
2608 actionFormatIncludeImagesHor->setOn
2609 ( ((BranchObj*)selection)->getIncludeImagesHor());
2610 actionFormatHideLinkUnselected->setOn
2611 (selection->getHideLinkUnselected());
2613 if ( (typeid(*selection) == typeid(FloatImageObj)) )
2615 standardFlagsDefault->setEnabled (false);
2617 actionEditOpenURL->setEnabled (false);
2618 actionEditOpenVymLink->setEnabled (false);
2619 actionEditDeleteVymLink->setEnabled (false);
2621 actionEditCopy->setEnabled (true);
2622 actionEditCut->setEnabled (true);
2623 actionEditPaste->setEnabled (false); //FIXME
2624 for (a=actionListBranches.first();a;a=actionListBranches.next())
2625 a->setEnabled(false);
2626 actionEditDelete->setEnabled (true);
2627 actionEditToggleFloatExport->setOn
2628 ( ((FloatImageObj*)selection)->getFloatExport() );
2629 actionFormatHideLinkUnselected->setOn
2630 ( selection->getHideLinkUnselected());
2635 standardFlagsDefault->setEnabled (false);
2637 actionEditCopy->setEnabled (false);
2638 actionEditCut->setEnabled (false);
2639 actionEditPaste->setEnabled (false);
2640 for (a=actionListBranches.first();a;a=actionListBranches.next())
2641 a->setEnabled(false);
2643 actionEditOpenURL->setEnabled (false);
2644 actionEditOpenVymLink->setEnabled (false);
2645 actionEditDeleteVymLink->setEnabled (false);
2646 actionEditHeading2URL->setEnabled (false);
2647 actionEditDelete->setEnabled (false);
2648 actionEditToggleFloatExport->setEnabled (false);
2652 void MapEditor::updateNoteFlag()
2655 if ( (typeid(*selection) == typeid(BranchObj)) ||
2656 (typeid(*selection) == typeid(MapCenterObj)) )
2657 ((BranchObj*)selection)->updateNoteFlag();
2660 void MapEditor::setLinkStyle (LinkStyle ls)
2664 saveState(); // TODO undoCommand
2666 bo=mapCenter->first();
2670 bo->setLinkStyle(bo->getDefLinkStyle());
2673 mapCenter->reposition();
2676 LinkStyle MapEditor::getLinkStyle ()
2681 void MapEditor::setLinkColor(QColor c)
2687 void MapEditor::setLinkColorHint()
2689 // called from setLinkColorHint(lch) or at end of parse
2691 bo=mapCenter->first();
2699 void MapEditor::setLinkColorHint(LinkColorHint lch)
2705 void MapEditor::toggleLinkColorHint()
2707 if (linkcolorhint==HeadingColor)
2708 linkcolorhint=DefaultColor;
2710 linkcolorhint=HeadingColor;
2712 bo=mapCenter->first();
2720 LinkColorHint MapEditor::getLinkColorHint()
2722 return linkcolorhint;
2725 QColor MapEditor::getDefLinkColor()
2727 return defLinkColor;
2730 void MapEditor::setDefXLinkColor(QColor col)
2735 QColor MapEditor::getDefXLinkColor()
2737 return defXLinkColor;
2740 void MapEditor::setDefXLinkWidth (int w)
2745 int MapEditor::getDefXLinkWidth()
2747 return defXLinkWidth;
2750 void MapEditor::selectLinkColor()
2752 // Finish open lineEdits
2753 if (lineedit) finishedLineEditNoSave();
2755 QColor col = QColorDialog::getColor( defLinkColor, this );
2756 if ( !col.isValid() ) return;
2757 setLinkColor( col );
2758 saveState(); //TODO undoCommand
2762 void MapEditor::toggleScroll()
2764 if (selection && (typeid(*selection) == typeid(BranchObj)) )
2766 BranchObj *bo=((BranchObj*)selection);
2767 if (bo->countBranches()==0) return;
2768 if (bo->getDepth()==0) return;
2769 saveState(selection);
2776 void MapEditor::unScrollAll()
2779 bo=mapCenter->first();
2782 if (bo->isScrolled()) bo->toggleScroll();
2787 void MapEditor::loadFloatImage ()
2790 (typeid(*selection) == typeid(BranchObj)) ||
2791 (typeid(*selection) == typeid(MapCenterObj)) )
2793 BranchObj *bo=((BranchObj*)selection);
2795 QFileDialog *fd=new QFileDialog( this,tr("vym - load image"));
2796 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2797 ImagePreview *p =new ImagePreview (fd);
2798 fd->setContentsPreviewEnabled( TRUE );
2799 fd->setContentsPreview( p, p );
2800 fd->setPreviewMode( QFileDialog::Contents );
2801 fd->setCaption(tr("vym - Load image"));
2802 fd->setDir (lastImageDir);
2806 if ( fd->exec() == QDialog::Accepted )
2808 saveState(selection);
2809 QString fn=fd->selectedFile();
2810 lastImageDir=fn.left(fn.findRev ("/"));
2811 bo->addFloatImage();
2812 // TODO check if load was successful
2813 bo->getLastFloatImage()->load(fn);
2814 bo->getLastFloatImage()->setOriginalFilename(fn);
2815 mapCenter->reposition();
2822 void MapEditor::saveFloatImage (int item)
2825 (typeid(*selection) == typeid(FloatImageObj)) )
2827 FloatImageObj *fio=((FloatImageObj*)selection);
2828 const char* fmt = saveImageFormatMenu->text(item);
2830 QFileDialog *fd=new QFileDialog( this, tr("vym - save image as") + fmt);
2831 fd->addFilter ("PNG (*.png)");
2832 fd->addFilter ("BMP (*.bmp)");
2833 fd->addFilter ("XBM (*.xbm)");
2834 fd->addFilter ("JPG (*.jpg)");
2835 fd->addFilter ("XPM (*.xpm)");
2836 fd->addFilter ("GIF (*.gif)");
2837 fd->addFilter ("PNM (*.pnm)");
2838 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2839 fd->setCaption(tr("vym - Save image as %1").arg(fmt));
2840 fd->setMode( QFileDialog::AnyFile );
2841 fd->setSelection (fio->getOriginalFilename());
2845 if ( fd->exec() == QDialog::Accepted )
2847 if (QFile (fd->selectedFile()).exists() )
2849 QMessageBox mb( "VYM",
2850 tr("The file %1 exists already.\n"
2851 "Do you want to overwrite it?").arg(fd->selectedFile()),
2852 QMessageBox::Warning,
2853 QMessageBox::Yes | QMessageBox::Default,
2854 QMessageBox::Cancel | QMessageBox::Escape,
2855 QMessageBox::QMessageBox::NoButton );
2857 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
2858 mb.setButtonText( QMessageBox::No, tr("Cancel"));
2861 case QMessageBox::Yes:
2864 case QMessageBox::Cancel:
2870 fio->save (fd->selectedFile(),fmt);
2875 void MapEditor::toggleFloatExport()
2878 (typeid(*selection) == typeid(FloatImageObj))||
2879 (typeid(*selection) == typeid(FloatObj)) )
2881 FloatImageObj *fio=((FloatImageObj*)selection);
2882 fio->setFloatExport (actionEditToggleFloatExport->isOn() );
2886 void MapEditor::setFrame(const FrameType &t)
2889 (typeid(*selection) == typeid(BranchObj)) ||
2890 (typeid(*selection) == typeid(MapCenterObj)) )
2892 selection->setFrameType (t);
2893 mapCenter->reposition();
2894 selection->updateLink();
2898 void MapEditor::setIncludeImagesVer(bool b)
2901 (typeid(*selection) == typeid(BranchObj)) ||
2902 (typeid(*selection) == typeid(MapCenterObj)) )
2903 ((BranchObj*)selection)->setIncludeImagesVer(b);
2904 mapCenter->reposition();
2907 void MapEditor::setIncludeImagesHor(bool b)
2910 (typeid(*selection) == typeid(BranchObj)) ||
2911 (typeid(*selection) == typeid(MapCenterObj)) )
2912 ((BranchObj*)selection)->setIncludeImagesHor(b);
2913 mapCenter->reposition();
2916 void MapEditor::setHideLinkUnselected (bool b)
2919 (typeid(*selection) == typeid(BranchObj)) ||
2920 (typeid(*selection) == typeid(MapCenterObj)) ||
2921 (typeid(*selection) == typeid(FloatImageObj)) )
2922 selection->setHideLinkUnselected(b);
2925 void MapEditor::importDir(BranchObj *dst, QDir d)
2928 (typeid(*selection) == typeid(BranchObj)) ||
2929 (typeid(*selection) == typeid(MapCenterObj)) )
2933 // Traverse directories
2934 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
2935 const QFileInfoList *dirlist = d.entryInfoList();
2936 QFileInfoListIterator itdir( *dirlist );
2939 while ( (fi = itdir.current()) != 0 )
2941 if (fi->fileName() != "." && fi->fileName() != ".." )
2944 bo=dst->getLastBranch();
2945 bo->setHeading (fi->fileName() );
2946 bo->setColor (QColor("blue"),false);
2948 if ( !d.cd(fi->fileName()) )
2949 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi->fileName()));
2952 // Recursively add subdirs
2960 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
2961 const QFileInfoList *filelist = d.entryInfoList();
2962 QFileInfoListIterator itfile( *filelist );
2964 while ( (fi = itfile.current()) != 0 )
2967 bo=dst->getLastBranch();
2968 bo->setHeading (fi->fileName() );
2969 bo->setColor (QColor("black"),false);
2970 if (fi->fileName().right(4) == ".vym" )
2971 bo->setVymLink (fi->filePath());
2978 void MapEditor::importDir()
2981 (typeid(*selection) == typeid(BranchObj)) ||
2982 (typeid(*selection) == typeid(MapCenterObj)) )
2984 QFileDialog *fd=new QFileDialog( this,tr("VYM - Choose directory structur to import"));
2985 fd->setMode (QFileDialog::DirectoryOnly);
2986 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2987 fd->setCaption(tr("VYM - Choose directory structur to import"));
2991 if ( fd->exec() == QDialog::Accepted )
2993 BranchObj *bo=((BranchObj*)selection);
2994 importDir (bo,QDir(fd->selectedFile()) );
2995 mapCenter->reposition();
3002 void MapEditor::followXLink(int i)
3005 (typeid(*selection) == typeid(BranchObj)) ||
3006 (typeid(*selection) == typeid(MapCenterObj)) )
3008 BranchObj *bo=((BranchObj*)selection)->XLinkTargetAt(i);
3011 selection->unselect();
3013 selection->select();
3014 ensureSelectionVisible();
3019 void MapEditor::editXLink(int i)
3022 (typeid(*selection) == typeid(BranchObj)) ||
3023 (typeid(*selection) == typeid(MapCenterObj)) )
3025 XLinkObj *xlo=((BranchObj*)selection)->XLinkAt(i);
3028 EditXLinkDialog dia;
3030 dia.setSelection(selection);
3031 if (dia.exec() == QDialog::Accepted)
3033 if (dia.useSettingsGlobal() )
3035 setDefXLinkColor (xlo->getColor() );
3036 setDefXLinkWidth (xlo->getWidth() );
3038 if (dia.deleteXLink())
3039 ((BranchObj*)selection)->deleteXLinkAt(i);
3040 saveState(); //TODO undoCommand
3046 void MapEditor::testFunction()
3048 cout << "MapEditor::testFunction() called\n";
3049 mapCenter->move(mapCenter->x(),mapCenter->y());
3052 void MapEditor::ensureSelectionVisible()
3056 LinkableMapObj* lmo= dynamic_cast <LinkableMapObj*> (selection);
3058 if (selection->getOrientation() == OrientLeftOfCenter)
3059 p= worldMatrix().map(QPoint (lmo->x(),lmo->y()));
3061 p= worldMatrix().map(QPoint (lmo->x()+lmo->width(),lmo->y()+lmo->height()));
3062 ensureVisible (p.x(), p.y() );
3067 void MapEditor::updateViewCenter()
3069 // Update movingCenter, so that we can zoom comfortably later
3070 QRect rc = QRect( contentsX(), contentsY(),
3071 visibleWidth(), visibleHeight() );
3072 QRect canvasRect = inverseWorldMatrix().mapRect(rc);
3073 movingCenter.setX((canvasRect.right() + canvasRect.left())/2);
3074 movingCenter.setY((canvasRect.top() + canvasRect.bottom())/2);
3077 void MapEditor::contentsContextMenuEvent ( QContextMenuEvent * e )
3079 // Lineedits are already closed by preceding
3080 // mouseEvent, we don't need to close here.
3082 QPoint p = inverseWorldMatrix().map(e->pos());
3083 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3086 { // MapObj was found
3087 if (selection != lmo)
3089 // select the MapObj
3090 if (selection) selection->unselect();
3092 selection->select();
3098 if (typeid(*selection)==typeid(BranchObj) ||
3099 typeid(*selection)==typeid(MapCenterObj) )
3101 // Context Menu on branch or mapcenter
3103 branchContextMenu->popup(e->globalPos() );
3105 if (typeid(*selection)==typeid(FloatImageObj))
3107 // Context Menu on floatimage
3109 floatimageContextMenu->popup(e->globalPos() );
3113 { // No MapObj found, we are on the Canvas itself
3114 // Context Menu on Canvas
3116 canvasContextMenu->popup(e->globalPos() );
3120 void MapEditor::contentsMousePressEvent(QMouseEvent* e)
3122 // Finish open lineEdits
3123 if (lineedit) finishedLineEditNoSave();
3125 QPoint p = inverseWorldMatrix().map(e->pos());
3126 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3128 // Special case: CTRL is pressed
3129 if (e->state() & QMouseEvent::ControlButton)
3131 if (actionModModeColor->isOn())
3133 if (e->state() & QMouseEvent::ControlButton)
3136 setCursor (pickColorCursor);
3140 if (actionModModeLink->isOn())
3142 BranchObj *bo_begin=NULL;
3144 bo_begin=(BranchObj*)(lmo);
3147 ((typeid(*selection) == typeid(BranchObj)) ||
3148 (typeid(*selection) == typeid(MapCenterObj))) )
3149 bo_begin=(BranchObj*)selection;
3153 linkingObj_src=bo_begin;
3154 tmpXLink=new XLinkObj (mapCanvas);
3155 tmpXLink->setBegin (bo_begin);
3156 tmpXLink->setEnd (p);
3157 tmpXLink->setColor(defXLinkColor);
3158 tmpXLink->setWidth(defXLinkWidth);
3159 tmpXLink->updateXLink();
3160 tmpXLink->setVisibility (true);
3167 { // MapObj was found
3168 if (selection != lmo)
3170 // select the MapObj
3171 if (selection) selection->unselect();
3173 selection->select();
3178 // Check, if systemFlag clicked
3179 if (typeid(*selection)==typeid(BranchObj) ||
3180 typeid(*selection)==typeid(MapCenterObj) )
3182 QString foname=((BranchObj*)selection)->getSystemFlagName(p);
3183 if (!foname.isEmpty())
3185 // Do not move, if systemFlag clicked
3189 if (foname=="vymLink")
3191 mainWindow->editOpenVymLink();
3192 // tabWidget may change, better return now
3193 // before segfaulting...
3197 mainWindow->windowToggleNoteEditor();
3201 // Left Button Move Branches
3202 if (e->button() == QMouseEvent::LeftButton )
3204 movingObj_start.setX( p.x() - selection->x() );
3205 movingObj_start.setY( p.y() - selection->y() );
3206 movingObj_orgPos.setX (lmo->x() );
3207 movingObj_orgPos.setY (lmo->y() );
3209 // If modMode==copy, then we want to "move" the _new_ object around
3210 // then we need the offset from p to the _old_ selection, because of tmp
3211 if (actionModModeCopy->isOn() &&
3212 e->state() & QMouseEvent::ControlButton)
3214 if (typeid(*selection)==typeid(BranchObj) )
3217 mapCenter->addBranch ((BranchObj*)selection);
3219 selection=mapCenter->getLastBranch();
3220 selection->select();
3221 mapCenter->reposition();
3224 movingObj=selection;
3226 // Middle Button Toggle Scroll
3227 // (On Mac OS X this won't work, but we still have
3228 // a button in the toolbar)
3229 if (e->button() == QMouseEvent::MidButton )
3233 { // No MapObj found, we are on the Canvas itself
3234 // Left Button move Pos of CanvasView
3235 if (e->button() == QMouseEvent::LeftButton )
3237 movingObj=NULL; // move Content not Obj
3238 movingObj_start=e->globalPos();
3239 movingCont_start=QPoint (contentsX(), contentsY() );
3240 movingVec=QPoint(0,0);
3241 setCursor(handOpenCursor);
3246 void MapEditor::contentsMouseMoveEvent(QMouseEvent* e)
3248 QPoint p = inverseWorldMatrix().map(e->pos());
3250 // Move the selected MapObj
3251 if ( selection && movingObj)
3253 // To avoid jumping of the CanvasView, only
3254 // ensureSelectionVisible, if not tmp linked
3255 if (!selection->hasParObjTmp())
3256 ensureSelectionVisible ();
3258 // Now move the selection, but add relative position
3259 // (movingObj_start) where selection was chosen with
3260 // mousepointer. (This avoids flickering resp. jumping
3261 // of selection back to absPos)
3263 LinkableMapObj *lmosel;
3264 lmosel = dynamic_cast <LinkableMapObj*> (selection);
3266 // Check if we could link
3267 LinkableMapObj* lmo=mapCenter->findMapObj(p, lmosel);
3270 if (typeid(*selection) == typeid(FloatImageObj))
3272 FloatObj *fo=(FloatObj*)selection;
3273 saveState("move "+qpointToString(movingObj_orgPos),fo->getSelectString() );
3274 fo->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3278 // Relink float to new mapcenter or branch, if shift is pressed
3279 // Only relink, if selection really has a new parent
3280 if ( (e->state() & QMouseEvent::ShiftButton) && lmo &&
3281 ( (typeid(*lmo)==typeid(BranchObj)) ||
3282 (typeid(*lmo)==typeid(MapCenterObj)) ) &&
3283 ( lmo != fo->getParObj())
3286 if (typeid(*fo) == typeid(FloatImageObj))
3289 FloatImageObj *fio=(FloatImageObj*)(fo);
3290 ((BranchObj*)(lmo))->addFloatImage (fio);
3292 ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
3293 fio=((BranchObj*)(lmo))->getLastFloatImage();
3296 selection=(LinkableMapObj*)(fio);
3297 selection->select();
3298 movingObj=(MapObj*)(fio);
3301 } else // selection != a FloatObj
3303 if (lmosel->getDepth()==0)
3305 if (e->state() == (LeftButton | !ShiftButton))
3306 // If mapCenter is moved, move all the rest by default, too.
3307 mapCenter->moveAll(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3309 mapCenter->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3312 if (lmosel->getDepth()==1)
3314 // depth==1, mainbranch
3315 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3319 if (lmosel->getOrientation() == OrientLeftOfCenter)
3320 // Add width of bbox here, otherwise alignRelTo will cause jumping around
3321 lmosel->move(p.x() -movingObj_start.x()+lmosel->getBBox().width(),
3322 p.y()-movingObj_start.y() +lmosel->getTopPad() );
3324 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() -lmosel->getTopPad());
3326 // reposition subbranch
3327 lmosel->reposition();
3328 //ensureSelectionVisible();
3330 if (lmo && (lmo!=selection) &&
3331 (typeid(*lmo) == typeid(BranchObj) ||
3332 (typeid(*lmo) == typeid(MapCenterObj) )
3335 if (e->state() & QMouseEvent::ControlButton)
3337 // Special case: CTRL to link below lmo
3338 lmosel->setParObjTmp (lmo,p,+1);
3340 else if (e->state() & QMouseEvent::ShiftButton)
3341 lmosel->setParObjTmp (lmo,p,-1);
3343 lmosel->setParObjTmp (lmo,p,0);
3346 lmosel->unsetParObjTmp();
3347 /* FIXME not needed anymore?
3348 if (lmo &&(lmo==selection))
3349 // Could link to myself (happens sometimes...)
3350 lmosel->unsetParObjTmp();
3352 // no Obj under selection, go back to original Parent
3353 lmosel->unsetParObjTmp();
3358 } // no FloatImageObj
3362 } // selection && moving_obj
3364 // Draw a link from one branch to another
3367 tmpXLink->setEnd (p);
3368 tmpXLink->updateXLink();
3372 if (!movingObj && !pickingColor &&!drawingLink)
3374 QPoint p=e->globalPos();
3375 movingVec.setX(-p.x() + movingObj_start.x() );
3376 movingVec.setY(-p.y() + movingObj_start.y() );
3377 setContentsPos( movingCont_start.x() + movingVec.x(),
3378 movingCont_start.y() + movingVec.y());
3385 void MapEditor::contentsMouseReleaseEvent(QMouseEvent* e)
3387 LinkableMapObj *dst;
3388 // Have we been picking color?
3392 setCursor (ArrowCursor);
3393 // Check if we are over another branch
3394 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3395 if (dst && selection)
3397 if (e->state() & QMouseEvent::ShiftButton)
3399 ((BranchObj*)selection)->setColor (((BranchObj*)(dst))->getColor(),false);
3400 ((BranchObj*)selection)->setLinkColor ();
3404 ((BranchObj*)selection)->setColor (((BranchObj*)(dst))->getColor(),true);
3405 ((BranchObj*)selection)->setLinkColor ();
3411 // Have we been drawing a link?
3415 // Check if we are over another branch
3416 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3417 if (dst && selection)
3419 tmpXLink->setEnd ( ((BranchObj*)(dst)) );
3420 tmpXLink->updateXLink();
3421 tmpXLink->activate();
3422 saveState(); //TODO undoCommand
3431 // Have we been moving something?
3432 if ( selection && movingObj )
3434 // Moved FloatObj? Maybe we need to reposition
3435 if(typeid(*selection)==typeid (FloatImageObj))
3437 selection->getParObj()->requestReposition();
3438 mapCenter->reposition();
3441 // Check if we are over another branch, but ignore
3442 // any found LMOs, which are FloatObjs
3443 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ),
3444 ((LinkableMapObj*)selection) );
3447 (typeid(*dst)!=typeid(BranchObj)&&typeid(*dst)!=typeid(MapCenterObj)))
3450 // Now check, if we have been moving a branch
3451 if (typeid(*selection) == typeid(BranchObj) )
3453 // save the position in case we link to mapcenter
3454 QPoint savePos=QPoint (selection->x(),selection->y() );
3456 // Reset the temporary drawn link to the original one
3457 ((LinkableMapObj*)selection)->unsetParObjTmp();
3463 BranchObj* bs=((BranchObj*)selection);
3464 QString undoCom="linkBranchToPos (\""+
3465 (bs->getParObj())->getSelectString()+
3467 QString("%1").arg(bs->getNum())+
3469 QString ("%1,%2").arg(movingObj_orgPos.x()).arg(movingObj_orgPos.y())+
3471 // TODO we also could check, if dest and src are on same branch,
3472 // then it would be sufficient to saveState of this branch
3474 // Modifiers allow to insert above/below dst
3475 if (e->state() & QMouseEvent::ShiftButton)
3477 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum());
3479 if (e->state() & QMouseEvent::ControlButton)
3481 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum()+1);
3484 bs->moveBranchTo ((BranchObj*)(dst),-1);
3485 if (dst->getDepth()==0)
3488 saveState (undoCom,bs->getSelectString() );
3490 if (selection->getDepth()==1)
3491 // If we have moved mainbranch only save endposition
3492 saveState("move "+qpointToString(movingObj_orgPos), selection->getSelectString() );
3494 // Draw the original link, before selection was moved around
3495 mapCenter->reposition();
3497 // Finally resize canvas, if needed
3502 // maybe we moved View: set old cursor
3503 setCursor (ArrowCursor);
3507 void MapEditor::contentsMouseDoubleClickEvent(QMouseEvent* e)
3509 // Finish open lineEdits
3510 if (lineedit) finishedLineEditNoSave();
3512 if (e->button() == QMouseEvent::LeftButton )
3514 QPoint p = inverseWorldMatrix().map(e->pos());
3515 LinkableMapObj *lmo=mapCenter->findMapObj(p, NULL);
3516 if (lmo) { // MapObj was found
3517 // First select the MapObj than edit heading
3518 if (selection) selection->unselect();
3520 selection->select();
3521 saveState(selection);
3527 void MapEditor::resizeEvent (QResizeEvent* e)
3529 QCanvasView::resizeEvent( e );
3533 void MapEditor::contentsDragEnterEvent(QDragEnterEvent *event)
3536 // for (unsigned int i=0;event->format(i);i++) // Debug mime type
3537 // cerr << event->format(i) << endl;
3540 (typeid(*selection) == typeid(BranchObj)) ||
3541 (typeid(*selection) == typeid(MapCenterObj))) {
3543 // If QImageDrag can decode mime type
3544 if (QImageDrag::canDecode(event)) {
3549 // If image are dragged from firefox
3550 if (event->provides("application/x-moz-file-promise-url") &&
3551 event->provides("application/x-moz-nativeimage")) {
3552 event->accept(true);
3556 // If QUriDrag can decode mime type
3557 if (QUriDrag::canDecode(event)) {
3562 // If Uri are dragged from firefox
3563 if (event->provides("_NETSCAPE_URL")){
3568 // If QTextDrag can decode mime type
3569 if (QTextDrag::canDecode(event)) {
3578 bool isUnicode16(const QByteArray &d)
3580 // TODO: make more precise check for unicode 16.
3581 // Guess unicode16 if any of second bytes are zero
3582 unsigned int length = max(0,d.size()-2)/2;
3583 for (unsigned int i = 0; i<length ; i++)
3584 if (d.at(i*2+1)==0) return true;
3588 void MapEditor::contentsDropEvent(QDropEvent *event)
3591 (typeid(*selection) == typeid(BranchObj)) ||
3592 (typeid(*selection) == typeid(MapCenterObj)))
3597 if (event->provides("image/png"))
3600 if (QImageDrag::decode(event, pix))
3608 } else if (event->provides("application/x-moz-file-promise-url") &&
3609 event->provides("application/x-moz-nativeimage"))
3611 // Contains url to the img src in unicode16
3612 QByteArray d = event->encodedData("application/x-moz-file-promise-url");
3613 QString url = QString((const QChar*)d.data(),d.size()/2);
3617 } else if (event->provides ("text/uri-list"))
3618 { // Uris provided e.g. by konqueror
3619 QUriDrag::decode (event,uris);
3620 } else if (event->provides ("_NETSCAPE_URL"))
3621 { // Uris provided by Mozilla
3622 QStringList l = QStringList::split("\n", event->encodedData("_NETSCAPE_URL"));
3625 } else if (event->provides("text/html")) {
3627 // Handels text mime types
3628 // Look like firefox allways handle text as unicode16 (2 bytes per char.)
3629 QByteArray d = event->encodedData("text/html");
3632 text = QString((const QChar*)d.data(),d.size()/2);
3636 textEditor->setText(text);
3640 } else if (event->provides("text/plain")) {
3641 QByteArray d = event->encodedData("text/plain");
3644 text = QString((const QChar*)d.data(),d.size()/2);
3648 textEditor->setText(text);
3660 for (const char* u=uris.first(); u; u=uris.next())
3662 bo=((BranchObj*)selection)->addBranch();
3665 s=QUriDrag::uriToLocalFile(u);
3667 QString file = QDir::convertSeparators(s);
3668 heading = QFileInfo(file).baseName();
3670 if (file.endsWith(".vym", false))
3671 bo->setVymLink(file);
3680 bo->setHeading(heading);
3690 saveState(); //TODO undo Command
3691 mapCenter->reposition();
3698 void MapEditor::addFloatImage(const QPixmap &img)
3701 (typeid(*selection) == typeid(BranchObj)) ||
3702 (typeid(*selection) == typeid(MapCenterObj)) )
3704 BranchObj *bo=((BranchObj*)selection);
3705 saveState(selection);
3706 //QString fn=fd->selectedFile();
3707 //lastImageDir=fn.left(fn.findRev ("/"));
3708 bo->addFloatImage();
3709 // FIXME check if load was successful
3710 bo->getLastFloatImage()->load(img);
3711 //bo->getLastFloatImage()->setOriginalFilename(fn);
3712 mapCenter->reposition();
3719 void MapEditor::imageDataFetched(const QByteArray &a, QNetworkOperation */*nop*/)
3721 if (!imageBuffer) imageBuffer = new QBuffer();
3722 if (!imageBuffer->isOpen()) {
3723 imageBuffer->open(IO_WriteOnly | IO_Append);
3725 imageBuffer->at(imageBuffer->at()+imageBuffer->writeBlock(a));
3729 void MapEditor::imageDataFinished(QNetworkOperation *nop)
3731 if (nop->state()==QNetworkProtocol::StDone) {
3732 QPixmap img(imageBuffer->buffer());
3737 imageBuffer->close();
3739 imageBuffer->close();
3746 void MapEditor::fetchImage(const QString &url)
3749 urlOperator->stop();
3750 disconnect(urlOperator);
3754 urlOperator = new QUrlOperator(url);
3755 connect(urlOperator, SIGNAL(finished(QNetworkOperation *)),
3756 this, SLOT(imageDataFinished(QNetworkOperation*)));
3758 connect(urlOperator, SIGNAL(data(const QByteArray &, QNetworkOperation *)),
3759 this, SLOT(imageDataFetched(const QByteArray &, QNetworkOperation *)));