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, __VYM " - " +tr("Export (ASCII)"));
1069 fd->addFilter ("TXT (*.txt)");
1070 fd->setCaption(__VYM " -" +tr("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, __VYM " - " +tr("Export (LaTex)"));
1108 fd->addFilter ("TEX (*.tex)");
1109 fd->setCaption(__VYM " - " + tr("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(const QString &fn, const QString &cf)
1150 ex.setMapCenter(mapCenter);
1151 if (ex.setConfigFile(cf)) ex.exportPresentation();
1156 void MapEditor::exportXML(const QString &dir)
1158 // Create subdirectories
1161 // write to directory
1162 QString saveFile=saveToDir (dir,mapName+"-",true,mapCenter->getTotalBBox().topLeft() ,NULL);
1165 file.setName ( dir + "/"+mapName+".xml");
1166 if ( !file.open( IO_WriteOnly ) )
1168 // This should neverever happen
1169 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open %1").arg(file.name()));
1173 // Write it finally, and write in UTF8, no matter what
1174 QTextStream ts( &file );
1175 ts.setEncoding (QTextStream::UnicodeUTF8);
1179 // Now write image, too
1180 exportImage (dir+"/images/"+mapName+".png");
1183 void MapEditor::clear()
1187 selection->unselect();
1194 void MapEditor::copy()
1196 // Finish open lineEdits
1197 if (lineedit) finishedLineEditNoSave();
1201 // write to directory
1202 QString clipfile="part";
1203 QString saveFile=saveToDir (fileDir,clipfile+"-",true,QPoint(),selection);
1206 file.setName ( clipboardDir + "/"+clipfile+".xml");
1207 if ( !file.open( IO_WriteOnly ) )
1209 // This should neverever happen
1210 QMessageBox::critical (0,tr("Critical Export Error"),tr("MapEditor::exportXML couldn't open %1").arg(file.name()));
1214 // Write it finally, and write in UTF8, no matter what
1215 QTextStream ts( &file );
1216 ts.setEncoding (QTextStream::UnicodeUTF8);
1220 clipboardEmpty=false;
1225 void MapEditor::redo()
1227 // Finish open lineEdits
1228 if (lineedit) finishedLineEditNoSave();
1230 blockSaveState=true;
1232 // Find out current undo directory
1233 QString bakMapDir=QDir::convertSeparators (QString(tmpMapDir+"/undo-%1").arg(undoNum));
1235 // Restore variables
1236 QString undoCommand;
1237 QString undoSelection;
1238 QString redoCommand;
1239 QString redoSelection;
1241 set.readSettings(QString(bakMapDir+"/commands"));
1242 undoCommand=set.readEntry ("undoCommand");
1243 undoSelection=set.readEntry ("undoSelection");
1244 redoCommand=set.readEntry ("redoCommand");
1245 redoSelection=set.readEntry ("redoSelection");
1247 // select object before redo
1248 if (!redoSelection.isEmpty())
1249 select (redoSelection);
1251 /* TODO remove testing
1252 cout << "ME::redo() begin\n";
1253 cout << " undosTotal="<<undosTotal<<endl;
1254 cout << " undosAvail="<<undosAvail<<endl;
1255 cout << " undoNum="<<undoNum<<endl;
1256 cout << " ---------------------------"<<endl;
1257 cout << " undoCom="<<undoCommand<<endl;
1258 cout << " undoSel="<<undoSelection<<endl;
1259 cout << " ---------------------------"<<endl;
1260 cout << " redoCom="<<redoCommand<<endl;
1261 cout << " redoSel="<<redoSelection<<endl;
1262 cout << " ---------------------------"<<endl;
1264 parseAtom (undoCommand);
1265 mapCenter->reposition();
1267 //if (!redoSelection.isEmpty())
1268 // select (redoSelection);
1272 // Undo not longer available now
1273 actionEditUndo->setEnabled (false);
1275 undoNum--; if (undoNum<1) undoNum=undosTotal;
1277 blockSaveState=false;
1278 /* TODO remove testing
1279 cout << "ME::redo() end\n";
1280 cout << " undosAvail="<<undosAvail<<endl;
1281 cout << " undoNum="<<undoNum<<endl;
1282 cout << " ---------------------------"<<endl<<endl;
1286 void MapEditor::undo()
1288 // Finish open lineEdits
1289 if (lineedit) finishedLineEditNoSave();
1291 blockSaveState=true;
1293 // Find out current undo directory
1294 QString bakMapDir=QDir::convertSeparators (QString(tmpMapDir+"/undo-%1").arg(undoNum));
1296 // Restore variables
1297 QString undoCommand;
1298 QString undoSelection;
1299 QString redoCommand;
1300 QString redoSelection;
1302 set.readSettings(QString(bakMapDir+"/commands"));
1303 undoCommand= set.readEntry ("undoCommand");
1304 undoSelection=set.readEntry ("undoSelection");
1305 redoCommand= set.readEntry ("redoCommand");
1306 redoSelection=set.readEntry ("redoSelection");
1308 // select object before undo
1309 if (!undoSelection.isEmpty())
1310 select (undoSelection);
1313 cout << "ME::undo() begin\n";
1314 cout << " undosTotal="<<undosTotal<<endl;
1315 cout << " undosAvail="<<undosAvail<<endl;
1316 cout << " undoNum="<<undoNum<<endl;
1317 cout << " ---------------------------"<<endl;
1318 cout << " undoCom="<<undoCommand<<endl;
1319 cout << " undoSel="<<undoSelection<<endl;
1320 cout << " ---------------------------"<<endl;
1321 cout << " redoCom="<<redoCommand<<endl;
1322 cout << " redoSel="<<redoSelection<<endl;
1323 cout << " ---------------------------"<<endl;
1325 parseAtom (undoCommand);
1326 mapCenter->reposition();
1328 //if (!redoSelection.isEmpty())
1329 // select (redoSelection);
1333 // Undo not longer available now
1334 actionEditUndo->setEnabled (false);
1336 undoNum--; if (undoNum<1) undoNum=undosTotal;
1338 blockSaveState=false;
1339 /* TODO remove testing
1340 cout << "ME::undo() end\n";
1341 cout << " undosAvail="<<undosAvail<<endl;
1342 cout << " undoNum="<<undoNum<<endl;
1343 cout << " ---------------------------"<<endl<<endl;
1347 void MapEditor::undoXML(const QString &undoSel, const QString &bakMapPath)
1349 QString bakMapDir=bakMapPath.left(bakMapPath.findRev("/"));
1351 QFile file (bakMapPath);
1355 // We need to parse saved XML data
1356 mapBuilderHandler handler;
1357 QXmlInputSource source( file);
1358 QXmlSimpleReader reader;
1359 reader.setContentHandler( &handler );
1360 reader.setErrorHandler( &handler );
1361 handler.setMapEditor( this );
1362 handler.setTmpDir ( bakMapDir ); // needed to load files with rel. path
1363 if (undoSel.isEmpty())
1367 handler.setLoadMode (NewMap);
1371 handler.setLoadMode (ImportReplace);
1373 blockReposition=true;
1374 bool ok = reader.parse( source );
1375 blockReposition=false;
1378 // This should never ever happen
1379 QMessageBox::critical( 0, tr( "Critical Parse Error by reading backupFile" ),
1380 tr( handler.errorProtocol() )+" in "+bakMapDir );
1384 QMessageBox::critical( 0, tr( "Critical Error" ),
1385 tr("Temporary directory %1 used for undo is gone. \n"
1386 "I will create a new one, but at the moment no undo is available.\n"
1387 "Maybe you want to reload your original data.\n\n"
1388 "Sorry for any inconveniences.").arg(bakMapDir) );
1393 void MapEditor::pasteNoSave()
1395 // Finish open lineEdits
1396 if (lineedit) finishedLineEditNoSave();
1398 load (clipboardDir+"/part.xml",ImportAdd);
1401 void MapEditor::cutNoSave()
1407 void MapEditor::paste()
1409 if (selection && (typeid(*selection) == typeid(BranchObj) ||
1410 typeid(*selection) == typeid(MapCenterObj)))
1412 saveState(selection);
1414 mapCenter->reposition();
1419 void MapEditor::cut()
1421 saveState(selection->getParObj());
1424 mapCenter->reposition();
1428 void MapEditor::move(const int &x, const int &y)
1430 // TODO no saveState, because this is only internal at undo so far
1431 if (selection) selection->move(x,y);
1432 if (typeid(*selection) == typeid(FloatImageObj))
1433 ((FloatImageObj*)selection)->setRelPos();
1436 void MapEditor::moveBranchUp()
1438 // Finish open lineEdits
1439 if (lineedit) finishedLineEditNoSave();
1443 if (typeid(*selection) == typeid(BranchObj) )
1445 bo=(BranchObj*)selection;
1446 par=(BranchObj*)(bo->getParObj());
1447 selection->unselect();
1448 selection=par->moveBranchUp (bo);
1449 selection->select();
1450 saveState("moveBranchDown ()",bo);
1451 mapCenter->reposition();
1452 ensureSelectionVisible();
1456 void MapEditor::moveBranchDown()
1458 // Finish open lineEdits
1459 if (lineedit) finishedLineEditNoSave();
1463 if (typeid(*selection) == typeid(BranchObj) )
1465 bo=(BranchObj*)selection;
1466 par=(BranchObj*)(bo->getParObj());
1467 selection->unselect();
1468 selection=par->moveBranchDown(bo);
1469 selection->select();
1470 saveState("moveBranchUp ()",bo);
1471 mapCenter->reposition();
1472 ensureSelectionVisible();
1476 void MapEditor::editHeading()
1478 // Finish open lineEdits
1479 if (lineedit) finishedLineEditNoSave();
1482 (typeid(*selection) == typeid(BranchObj) ||
1483 typeid(*selection) == typeid(MapCenterObj) ) )
1485 editingBO=(BranchObj*)selection;
1486 saveState("setHeading (\""+((BranchObj*)selection)->getHeading()+"\")",editingBO );
1488 ensureSelectionVisible();
1489 QPoint p = worldMatrix().map(QPoint (editingBO->x(),editingBO->y()));
1490 lineedit->setGeometry(p.x()-contentsX(),p.y()-contentsY(),200,25);
1491 QString s=editingBO->getHeading();
1492 lineedit->setText(s);
1493 lineedit->setCursorPosition(1);
1494 if (actionSettingsAutoselectText->isOn() && !s.isEmpty() && actionSettingsPasteNewHeading->isOn() )
1495 lineedit->selectAll();
1497 lineedit->grabKeyboard();
1498 lineedit->setFocus();
1502 void MapEditor::setHeading(const QString &s)
1504 // Internal function, no saveState needed
1506 (typeid(*selection) == typeid(BranchObj) ||
1507 typeid(*selection) == typeid(MapCenterObj) ) )
1509 ((BranchObj*)selection)->setHeading(s);
1510 mapCenter->reposition();
1512 ensureSelectionVisible();
1516 void MapEditor::setURL (const QString &s)
1518 // Internal function, no saveState needed
1520 (typeid(*selection) == typeid(BranchObj) ||
1521 typeid(*selection) == typeid(MapCenterObj) ) )
1523 ((BranchObj*)selection)->setURL(s);
1524 mapCenter->reposition();
1526 ensureSelectionVisible();
1530 void MapEditor::setVymLink (const QString &s)
1532 // Internal function, no saveState needed
1534 (typeid(*selection) == typeid(BranchObj) ||
1535 typeid(*selection) == typeid(MapCenterObj) ) )
1537 ((BranchObj*)selection)->setVymLink(s);
1538 mapCenter->reposition();
1540 ensureSelectionVisible();
1544 void MapEditor::addNewBranch(int pos)
1546 // Finish open lineEdits
1547 if (lineedit) finishedLineEditNoSave();
1550 (typeid(*selection) == typeid(BranchObj) ||
1551 typeid(*selection) == typeid(MapCenterObj) ) )
1553 saveState(selection); //TODO undoCommand
1555 BranchObj* bo1 = (BranchObj*) selection;
1556 bool wasScrolled=false;
1557 BranchObj *newbo=NULL;
1560 // save scroll state. If scrolled, automatically select
1561 // new branch in order to tmp unscroll parent...
1562 wasScrolled=bo1->isScrolled();
1563 newbo=bo1->addBranch();
1566 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1570 // add above selection
1571 newbo=parbo->insertBranch(bo1->getNum());
1573 // add below selection
1574 newbo=parbo->insertBranch(bo1->getNum()+1);
1576 // This should not happen...
1581 LinkableMapObj *oldselection=selection;
1583 mapCenter->reposition();
1585 if (actionSettingsAutoedit->isOn() ||
1586 actionSettingsAutoselectHeading->isOn() )
1588 selection->unselect();
1590 selection->select();
1591 if (actionSettingsPasteNewHeading->isOn() )
1593 BranchObj *bo2= (BranchObj*)selection;
1594 bo2->setHeading("");
1596 if (actionSettingsAutoedit->isOn() )
1598 if (!actionSettingsAutoselectHeading->isOn()
1601 selection->unselect();
1602 selection=oldselection;
1603 selection->select();
1610 void MapEditor::addNewBranchHere()
1612 // Finish open lineEdits
1613 if (lineedit) finishedLineEditNoSave();
1616 (typeid(*selection) == typeid(BranchObj) ) )
1618 saveState(selection);
1620 BranchObj* bo1 = (BranchObj*) selection;
1621 bool wasScrolled=false;
1622 BranchObj *newbo=NULL;
1623 BranchObj *parbo=(BranchObj*)(selection->getParObj());
1626 // add below selection
1627 newbo=parbo->insertBranch(bo1->getNum()+1);
1630 LinkableMapObj *oldselection=selection;
1631 ((BranchObj*)selection)->moveBranchTo (newbo,-1);
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();
1659 void MapEditor::deleteSelection()
1661 // Finish open lineEdits
1662 if (lineedit) finishedLineEditNoSave();
1664 if (selection && typeid(*selection) ==typeid(BranchObj) )
1666 if (selection->getDepth()>1)
1667 // Normal branch, save parent with childs
1668 saveState(selection->getParObj());
1670 // Mainbranch, save whole map
1671 // TODO Better would be to insert mainbranch again at pos
1672 // But undoCommand is missing right now
1674 BranchObj* bo=dynamic_cast <BranchObj*> (selection);
1675 BranchObj* par=(BranchObj*)(bo->getParObj());
1678 par->removeBranch(bo);
1680 selection->select();
1681 ensureSelectionVisible();
1682 mapCenter->reposition();
1685 if (selection && typeid(*selection) ==typeid(FloatImageObj) )
1687 saveState(selection->getParObj());
1688 FloatImageObj* fio=dynamic_cast <FloatImageObj*> (selection);
1689 BranchObj* par=(BranchObj*)(fio->getParObj());
1692 par->removeFloatImage(fio);
1694 selection->select();
1695 ensureSelectionVisible();
1696 mapCenter->reposition();
1701 LinkableMapObj* MapEditor::getSelection()
1706 bool MapEditor::select (const QString &s)
1708 LinkableMapObj *lmo=mapCenter->findObjBySelect(s);
1710 // Finally select the found object
1713 if (selection) unselect();
1715 selection->select();
1717 ensureSelectionVisible();
1723 void MapEditor::unselect()
1727 selectionLast=selection;
1728 selection->unselect();
1733 void MapEditor::reselect()
1737 selection=selectionLast;
1738 selection->select();
1743 void MapEditor::selectNextBranch()
1745 // Increase number of branch
1748 QString s=selection->getSelectString();
1754 part=s.section(",",-1);
1756 num=part.right(part.length() - 3);
1758 s=s.left (s.length() -num.length());
1761 num=QString ("%1").arg(num.toUInt()+1);
1765 // Try to select this one
1766 if (select (s)) return;
1768 // We have no direct successor,
1769 // try to increase the parental number in order to
1770 // find a successor with same depth
1772 int d=selection->getDepth();
1777 while (!found && d>0)
1779 s=s.section (",",0,d-1);
1780 // replace substring of current depth in s with "1"
1781 part=s.section(",",-1);
1783 num=part.right(part.length() - 3);
1787 // increase number of parent
1788 num=QString ("%1").arg(num.toUInt()+1);
1789 s=s.section (",",0,d-2) + ","+ typ+num;
1792 // Special case, look at orientation
1793 if (selection->getOrientation()==OrientRightOfCenter)
1794 num=QString ("%1").arg(num.toUInt()+1);
1796 num=QString ("%1").arg(num.toUInt()-1);
1801 // pad to oldDepth, select the first branch for each depth
1802 for (i=d;i<oldDepth;i++)
1807 if ( ((BranchObj*)selection)->countBranches()>0)
1815 // try to select the freshly built string
1823 void MapEditor::selectPrevBranch()
1825 // Decrease number of branch
1828 QString s=selection->getSelectString();
1834 part=s.section(",",-1);
1836 num=part.right(part.length() - 3);
1838 s=s.left (s.length() -num.length());
1841 num=QString ("%1").arg(num.toUInt()-1);
1845 // Try to select this one
1846 if (select (s)) return;
1848 // We have no direct precessor,
1849 // try to decrease the parental number in order to
1850 // find a precessor with same depth
1852 int d=selection->getDepth();
1857 while (!found && d>0)
1859 s=s.section (",",0,d-1);
1860 // replace substring of current depth in s with "1"
1861 part=s.section(",",-1);
1863 num=part.right(part.length() - 3);
1867 // decrease number of parent
1868 num=QString ("%1").arg(num.toUInt()-1);
1869 s=s.section (",",0,d-2) + ","+ typ+num;
1872 // Special case, look at orientation
1873 if (selection->getOrientation()==OrientRightOfCenter)
1874 num=QString ("%1").arg(num.toUInt()-1);
1876 num=QString ("%1").arg(num.toUInt()+1);
1881 // pad to oldDepth, select the last branch for each depth
1882 for (i=d;i<oldDepth;i++)
1886 if ( ((BranchObj*)selection)->countBranches()>0)
1887 s+=",bo:"+ QString ("%1").arg( ((BranchObj*)selection)->countBranches()-1 );
1894 // try to select the freshly built string
1902 void MapEditor::selectUpperBranch()
1904 // Finish open lineEdits
1905 if (lineedit) finishedLineEditNoSave();
1909 if (typeid(*selection) == typeid(BranchObj))
1911 if (selection->getOrientation()==OrientRightOfCenter)
1914 if (selection->getDepth()==1)
1922 void MapEditor::selectLowerBranch()
1924 // Finish open lineEdits
1925 if (lineedit) finishedLineEditNoSave();
1929 if (typeid(*selection) == typeid(BranchObj))
1931 if (selection->getOrientation()==OrientRightOfCenter)
1934 if (selection->getDepth()==1)
1943 void MapEditor::selectLeftBranch()
1945 // Finish open lineEdits
1946 if (lineedit) finishedLineEditNoSave();
1952 if (typeid(*selection) == typeid(MapCenterObj))
1954 par= (BranchObj*) selection;
1955 bo=par->getLastSelectedBranch();
1958 // Workaround for reselecting on left and right side
1959 if (bo->getOrientation()==OrientRightOfCenter)
1961 bo=par->getLastBranch();
1967 selection->select();
1969 ensureSelectionVisible();
1974 par=(BranchObj*)(selection->getParObj());
1975 if (selection->getOrientation()==OrientRightOfCenter)
1977 if (typeid(*selection) == typeid(BranchObj) ||
1978 typeid(*selection) == typeid(FloatImageObj))
1980 selection->unselect();
1982 selection->select();
1984 ensureSelectionVisible();
1988 if (typeid(*selection) == typeid(BranchObj) )
1990 bo=((BranchObj*)selection)->getLastSelectedBranch();
1993 selection->unselect();
1995 selection->select();
1997 ensureSelectionVisible();
2005 void MapEditor::selectRightBranch()
2007 // Finish open lineEdits
2008 if (lineedit) finishedLineEditNoSave();
2015 if (typeid(*selection) == typeid(MapCenterObj))
2017 par= (BranchObj*) selection;
2018 bo=par->getLastSelectedBranch();
2021 // Workaround for relecting on left and right side
2022 if (bo->getOrientation()==OrientLeftOfCenter)
2023 bo=par->getFirstBranch();
2028 selection->select();
2029 ensureSelectionVisible();
2034 par=(BranchObj*)(selection->getParObj());
2035 if (selection->getOrientation()==OrientLeftOfCenter)
2037 if (typeid(*selection) == typeid(BranchObj) ||
2038 typeid(*selection) == typeid(FloatImageObj))
2040 selection->unselect();
2042 selection->select();
2044 ensureSelectionVisible();
2048 if (typeid(*selection) == typeid(BranchObj) )
2050 bo=((BranchObj*)selection)->getLastSelectedBranch();
2053 selection->unselect();
2055 selection->select();
2057 ensureSelectionVisible();
2065 void MapEditor::selectFirstBranch()
2067 // Finish open lineEdits
2068 if (lineedit) finishedLineEditNoSave();
2074 if (typeid(*selection) == typeid(BranchObj))
2076 bo1= (BranchObj*) selection;
2077 par=(BranchObj*)(bo1->getParObj());
2078 bo2=par->getFirstBranch();
2082 selection->select();
2083 ensureSelectionVisible();
2090 void MapEditor::selectLastBranch()
2092 // Finish open lineEdits
2093 if (lineedit) finishedLineEditNoSave();
2099 if (typeid(*selection) == typeid(BranchObj))
2101 bo1= (BranchObj*) selection;
2102 par=(BranchObj*)(bo1->getParObj());
2103 bo2=par->getLastBranch();
2107 selection->select();
2108 ensureSelectionVisible();
2115 void MapEditor::setColor(QColor c)
2120 void MapEditor::selectBackgroundColor()
2122 // Finish open lineEdits
2123 if (lineedit) finishedLineEditNoSave();
2125 QColor col = QColorDialog::getColor( mapCanvas->backgroundColor(), this );
2126 if ( !col.isValid() ) return;
2127 setBackgroundColor( col );
2131 void MapEditor::setBackgroundColor(QColor c)
2133 mapCanvas->setBackgroundColor (c);
2136 QColor MapEditor::pickColor()
2140 if (typeid(*selection) == typeid(BranchObj) ||
2141 typeid(*selection) == typeid(MapCenterObj))
2143 BranchObj *bo=(BranchObj*)selection;
2144 actColor=bo->getColor();
2150 void MapEditor::colorItem()
2154 if (typeid(*selection) == typeid(BranchObj) ||
2155 typeid(*selection) == typeid(MapCenterObj))
2157 saveState(selection); //TODO undoCommand
2158 BranchObj *bo=(BranchObj*)selection;
2159 bo->setColor(actColor, false); // color links, color childs
2164 void MapEditor::colorBranch()
2168 if (typeid(*selection) == typeid(BranchObj) ||
2169 typeid(*selection) == typeid(MapCenterObj))
2171 saveState(selection); //TODO undoCommand
2172 BranchObj *bo=(BranchObj*)selection;
2173 bo->setColor(actColor, true); // color links, color childs
2179 void MapEditor::toggleStandardFlag(QString f)
2183 saveState(selection);// TODO undoCommand
2184 ((BranchObj*)selection)->toggleStandardFlag (f,actionSettingsUseFlagGroups);
2188 void MapEditor::setViewCenter()
2190 // transform to CanvasView Coord:
2191 QPoint p=worldMatrix().map(movingCenter);
2192 center ( p.x(), p.y());
2196 BranchObj* MapEditor::findText (QString s, bool cs)
2199 { // Nothing found or new find process
2201 // nothing found, start again
2203 itFind=mapCenter->first();
2205 bool searching=true;
2206 bool foundNote=false;
2207 while (searching && !EOFind)
2211 // Searching in Note
2212 if (itFind->getNote().contains(s,cs))
2214 if (selection!=itFind)
2216 if (selection) ((BranchObj*)selection)->unselect();
2218 selection->select();
2220 ensureSelectionVisible();
2222 if (textEditor->findText(s,cs))
2228 // Searching in Heading
2229 if (searching && itFind->getHeading().contains (s,cs) )
2231 if (selection) ((BranchObj*)selection)->unselect();
2233 selection->select();
2235 ensureSelectionVisible();
2241 itFind=itFind->next();
2242 if (!itFind) EOFind=true;
2248 return (BranchObj*)selection;
2253 void MapEditor::findReset()
2254 { // Necessary if text to find changes during a find process
2259 void MapEditor::openURL()
2263 if (typeid(*selection) == typeid(BranchObj) ||
2264 typeid(*selection) == typeid(MapCenterObj))
2266 QString url=((BranchObj*)selection)->getURL();
2268 QProcess *proc = new QProcess( this );
2270 proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL" ));
2271 proc->addArgument( url);
2273 if ( !proc->start() )
2275 if (mainWindow->settingsURL() )
2281 void MapEditor::editURL()
2283 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2284 typeid(*selection) == typeid(MapCenterObj)) )
2287 BranchObj *bo=(BranchObj*)selection;
2288 QString text = QInputDialog::getText(
2289 "VYM", tr("Enter URL:"), QLineEdit::Normal,
2290 bo->getURL(), &ok, this );
2293 // user entered something and pressed OK
2294 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+text+"\")");
2301 void MapEditor::editHeading2URL()
2303 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2304 typeid(*selection) == typeid(MapCenterObj)) )
2306 BranchObj *bo=(BranchObj*)selection;
2307 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+bo->getHeading()+"\")");
2308 bo->setURL (bo->getHeading());
2313 void MapEditor::editBugzilla2URL()
2315 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2316 typeid(*selection) == typeid(MapCenterObj)) )
2318 BranchObj *bo=(BranchObj*)selection;
2319 QString url= "https://bugzilla.novell.com/show_bug.cgi?id="+bo->getHeading();
2320 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+url+"\")");
2326 void MapEditor::editFATE2URL()
2328 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2329 typeid(*selection) == typeid(MapCenterObj)) )
2331 BranchObj *bo=(BranchObj*)selection;
2332 QString url= "http://keeper.suse.de:8080/webfate/match/id?value=ID"+bo->getHeading();
2333 saveState("setURL (\""+bo->getURL()+"\")","setURL (\""+url+"\")");
2339 void MapEditor::editVymLink()
2341 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2342 typeid(*selection) == typeid(MapCenterObj)) )
2344 BranchObj *bo=(BranchObj*)selection;
2345 QFileDialog *fd=new QFileDialog( this,__VYM " - " +tr("Link to another map"));
2346 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2347 fd->setCaption(__VYM " - " +tr("Link to another map"));
2348 if (! bo->getVymLink().isEmpty() )
2349 fd->setSelection( bo->getVymLink() );
2353 if ( fd->exec() == QDialog::Accepted )
2355 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\""+fd->selectedFile()+"\")");
2356 bo->setVymLink (fd->selectedFile() );
2358 mapCenter->reposition();
2365 void MapEditor::deleteVymLink()
2367 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2368 typeid(*selection) == typeid(MapCenterObj)) )
2370 BranchObj *bo=(BranchObj*)selection;
2371 saveState("setVymLink (\""+bo->getVymLink()+"\")","setVymLink (\"\")");
2372 bo->setVymLink ("" );
2374 mapCenter->reposition();
2380 QString MapEditor::getVymLink()
2382 if (selection && (typeid(*selection) == typeid(BranchObj) ||
2383 typeid(*selection) == typeid(MapCenterObj)) )
2385 return ((BranchObj*)selection)->getVymLink();
2391 void MapEditor::removeBranchHere()
2393 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2395 BranchObj* bo=(BranchObj*)selection;
2396 BranchObj* par=(BranchObj*)(bo->getParObj());
2397 if (bo->getDepth()==1)
2400 saveState(selection->getParObj()); // TODO undoCommand
2401 QString sel=selection->getSelectString();
2403 par->removeBranchHere(bo);
2404 mapCenter->reposition();
2409 void MapEditor::removeChilds()
2411 if (selection && (typeid(*selection) == typeid(BranchObj) ))
2413 saveState(selection->getParObj());
2414 ((BranchObj*)selection)->removeChilds();
2415 mapCenter->reposition();
2419 void MapEditor::editMapInfo()
2421 ExtraInfoDialog dia;
2422 dia.setMapName (getFileName() );
2423 dia.setAuthor (mapCenter->getAuthor() );
2424 dia.setComment(mapCenter->getComment() );
2429 QCanvasItemList l=canvas()->allItems();
2430 for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it)
2432 stats+=QString ("%1 items on canvas\n").arg (i,6);
2439 bo=mapCenter->first();
2442 if (!bo->getNote().isEmpty() ) n++;
2443 f+= bo->countFloatImages();
2445 xl+=bo->countXLinks();
2448 stats+=QString ("%1 branches\n").arg (b-1,6);
2449 stats+=QString ("%1 xLinks \n").arg (xl,6);
2450 stats+=QString ("%1 notes\n").arg (n,6);
2451 stats+=QString ("%1 images\n").arg (f,6);
2452 dia.setStats (stats);
2454 // Finally show dialog
2455 if (dia.exec() == QDialog::Accepted)
2457 saveState(); //TODO undoCommand
2458 mapCenter->setAuthor (dia.getAuthor() );
2459 mapCenter->setComment (dia.getComment() );
2463 void MapEditor::updateActions()
2466 if (getLinkColorHint()==HeadingColor)
2467 actionFormatLinkColorHint->setOn(true);
2469 actionFormatLinkColorHint->setOn(false);
2474 actionFormatLinkStyleLine->setOn(true);
2477 actionFormatLinkStyleParabel->setOn(true);
2480 actionFormatLinkStylePolyLine->setOn(true);
2482 case StylePolyParabel:
2483 actionFormatLinkStylePolyParabel->setOn(true);
2489 QPixmap pix( 16, 16 );
2490 pix.fill( mapCanvas->backgroundColor() );
2491 actionFormatBackColor->setIconSet( pix );
2492 pix.fill( defLinkColor );
2493 actionFormatLinkColor->setIconSet( pix );
2495 actionEditUndo->setEnabled( mapChanged );
2496 actionFileSave->setEnabled( mapUnsaved );
2500 if ( (typeid(*selection) == typeid(BranchObj)) ||
2501 (typeid(*selection) == typeid(MapCenterObj)) )
2503 BranchObj *bo=(BranchObj*)selection;
2504 // Take care of links
2505 if (bo->countXLinks()==0)
2507 branchLinksContextMenu->clear();
2508 branchLinksContextMenu->insertItem ("No xLink available");
2509 branchLinksContextMenuDup->clear();
2510 branchLinksContextMenuDup->insertItem ("No xLink available");
2516 branchLinksContextMenu->clear();
2517 branchLinksContextMenuDup->clear();
2518 for (int i=0; i<=bo->countXLinks();i++)
2520 bot=bo->XLinkTargetAt(i);
2523 s=bot->getHeading();
2526 branchLinksContextMenu->insertItem (s);
2527 branchLinksContextMenuDup->insertItem (s);
2532 standardFlagsDefault->setEnabled (true);
2534 if ( bo->getURL().isEmpty() )
2535 actionEditOpenURL->setEnabled (false);
2537 actionEditOpenURL->setEnabled (true);
2539 if ( bo->getVymLink().isEmpty() )
2541 actionEditOpenVymLink->setEnabled (false);
2542 actionEditDeleteVymLink->setEnabled (false);
2545 actionEditOpenVymLink->setEnabled (true);
2546 actionEditDeleteVymLink->setEnabled (true);
2549 actionEditCopy->setEnabled (true);
2550 actionEditCut->setEnabled (true);
2551 if (!clipboardEmpty)
2552 actionEditPaste->setEnabled (true);
2554 actionEditPaste->setEnabled (false);
2555 for (a=actionListBranches.first();a;a=actionListBranches.next())
2556 a->setEnabled(true);
2557 actionEditDelete->setEnabled (true);
2558 actionEditToggleFloatExport->setEnabled (false);
2559 switch (selection->getFrameType())
2562 actionFormatFrameNone->setOn(true);
2565 actionFormatFrameRectangle->setOn(true);
2570 actionFormatIncludeImagesVer->setOn
2571 ( ((BranchObj*)selection)->getIncludeImagesVer());
2572 actionFormatIncludeImagesHor->setOn
2573 ( ((BranchObj*)selection)->getIncludeImagesHor());
2574 actionFormatHideLinkUnselected->setOn
2575 (selection->getHideLinkUnselected());
2577 if ( (typeid(*selection) == typeid(FloatImageObj)) )
2579 standardFlagsDefault->setEnabled (false);
2581 actionEditOpenURL->setEnabled (false);
2582 actionEditOpenVymLink->setEnabled (false);
2583 actionEditDeleteVymLink->setEnabled (false);
2585 actionEditCopy->setEnabled (true);
2586 actionEditCut->setEnabled (true);
2587 actionEditPaste->setEnabled (false); //FIXME
2588 for (a=actionListBranches.first();a;a=actionListBranches.next())
2589 a->setEnabled(false);
2590 actionEditDelete->setEnabled (true);
2591 actionEditToggleFloatExport->setOn
2592 ( ((FloatImageObj*)selection)->getFloatExport() );
2593 actionFormatHideLinkUnselected->setOn
2594 ( selection->getHideLinkUnselected());
2599 standardFlagsDefault->setEnabled (false);
2601 actionEditCopy->setEnabled (false);
2602 actionEditCut->setEnabled (false);
2603 actionEditPaste->setEnabled (false);
2604 for (a=actionListBranches.first();a;a=actionListBranches.next())
2605 a->setEnabled(false);
2607 actionEditOpenURL->setEnabled (false);
2608 actionEditOpenVymLink->setEnabled (false);
2609 actionEditDeleteVymLink->setEnabled (false);
2610 actionEditHeading2URL->setEnabled (false);
2611 actionEditDelete->setEnabled (false);
2612 actionEditToggleFloatExport->setEnabled (false);
2616 void MapEditor::updateNoteFlag()
2619 if ( (typeid(*selection) == typeid(BranchObj)) ||
2620 (typeid(*selection) == typeid(MapCenterObj)) )
2621 ((BranchObj*)selection)->updateNoteFlag();
2624 void MapEditor::setLinkStyle (LinkStyle ls)
2628 saveState(); // TODO undoCommand
2630 bo=mapCenter->first();
2634 bo->setLinkStyle(bo->getDefLinkStyle());
2637 mapCenter->reposition();
2640 LinkStyle MapEditor::getLinkStyle ()
2645 void MapEditor::setLinkColor(QColor c)
2651 void MapEditor::setLinkColorHint()
2653 // called from setLinkColorHint(lch) or at end of parse
2655 bo=mapCenter->first();
2663 void MapEditor::setLinkColorHint(LinkColorHint lch)
2669 void MapEditor::toggleLinkColorHint()
2671 if (linkcolorhint==HeadingColor)
2672 linkcolorhint=DefaultColor;
2674 linkcolorhint=HeadingColor;
2676 bo=mapCenter->first();
2684 LinkColorHint MapEditor::getLinkColorHint()
2686 return linkcolorhint;
2689 QColor MapEditor::getDefLinkColor()
2691 return defLinkColor;
2694 void MapEditor::setDefXLinkColor(QColor col)
2699 QColor MapEditor::getDefXLinkColor()
2701 return defXLinkColor;
2704 void MapEditor::setDefXLinkWidth (int w)
2709 int MapEditor::getDefXLinkWidth()
2711 return defXLinkWidth;
2714 void MapEditor::selectLinkColor()
2716 // Finish open lineEdits
2717 if (lineedit) finishedLineEditNoSave();
2719 QColor col = QColorDialog::getColor( defLinkColor, this );
2720 if ( !col.isValid() ) return;
2721 setLinkColor( col );
2722 saveState(); //TODO undoCommand
2726 void MapEditor::toggleScroll()
2728 if (selection && (typeid(*selection) == typeid(BranchObj)) )
2730 BranchObj *bo=((BranchObj*)selection);
2731 if (bo->countBranches()==0) return;
2732 if (bo->getDepth()==0) return;
2733 saveState(selection);
2740 void MapEditor::unScrollAll()
2743 bo=mapCenter->first();
2746 if (bo->isScrolled()) bo->toggleScroll();
2751 void MapEditor::loadFloatImage ()
2754 (typeid(*selection) == typeid(BranchObj)) ||
2755 (typeid(*selection) == typeid(MapCenterObj)) )
2757 BranchObj *bo=((BranchObj*)selection);
2759 QFileDialog *fd=new QFileDialog( this,QString ("vym - ")+tr("Load image"));
2760 fd->setMode (QFileDialog::ExistingFiles);
2761 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2762 ImagePreview *p =new ImagePreview (fd);
2763 fd->setContentsPreviewEnabled( TRUE );
2764 fd->setContentsPreview( p, p );
2765 fd->setPreviewMode( QFileDialog::Contents );
2766 fd->setCaption(__VYM " - " +tr("Load image"));
2767 fd->setDir (lastImageDir);
2771 if ( fd->exec() == QDialog::Accepted )
2773 saveState(selection);
2774 lastImageDir=fn.left(fn.findRev ("/"));
2775 QStringList flist = fd->selectedFiles();
2776 QStringList::Iterator it = flist.begin();
2777 while( it != flist.end() )
2780 bo->addFloatImage();
2781 // TODO check if load was successful
2782 bo->getLastFloatImage()->load(*it);
2783 bo->getLastFloatImage()->setOriginalFilename(fn);
2787 mapCenter->reposition();
2794 void MapEditor::saveFloatImage (int item)
2797 (typeid(*selection) == typeid(FloatImageObj)) )
2799 FloatImageObj *fio=((FloatImageObj*)selection);
2800 const char* fmt = saveImageFormatMenu->text(item);
2802 QFileDialog *fd=new QFileDialog( this, tr("vym - save image as") + fmt);
2803 fd->addFilter ("PNG (*.png)");
2804 fd->addFilter ("BMP (*.bmp)");
2805 fd->addFilter ("XBM (*.xbm)");
2806 fd->addFilter ("JPG (*.jpg)");
2807 fd->addFilter ("XPM (*.xpm)");
2808 fd->addFilter ("GIF (*.gif)");
2809 fd->addFilter ("PNM (*.pnm)");
2810 fd->addFilter (QString (tr("Images") + " (*.png *.bmp *.xbm *.jpg *.png *.xpm *.gif *.pnm)"));
2811 fd->setCaption(__VYM " - " +tr("Save image as %1").arg(fmt));
2812 fd->setMode( QFileDialog::AnyFile );
2813 fd->setSelection (fio->getOriginalFilename());
2817 if ( fd->exec() == QDialog::Accepted )
2819 if (QFile (fd->selectedFile()).exists() )
2821 QMessageBox mb( __VYM,
2822 tr("The file %1 exists already.\n"
2823 "Do you want to overwrite it?").arg(fd->selectedFile()),
2824 QMessageBox::Warning,
2825 QMessageBox::Yes | QMessageBox::Default,
2826 QMessageBox::Cancel | QMessageBox::Escape,
2827 QMessageBox::QMessageBox::NoButton );
2829 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
2830 mb.setButtonText( QMessageBox::No, tr("Cancel"));
2833 case QMessageBox::Yes:
2836 case QMessageBox::Cancel:
2842 fio->save (fd->selectedFile(),fmt);
2847 void MapEditor::toggleFloatExport()
2850 (typeid(*selection) == typeid(FloatImageObj))||
2851 (typeid(*selection) == typeid(FloatObj)) )
2853 FloatImageObj *fio=((FloatImageObj*)selection);
2854 fio->setFloatExport (actionEditToggleFloatExport->isOn() );
2858 void MapEditor::setFrame(const FrameType &t)
2861 (typeid(*selection) == typeid(BranchObj)) ||
2862 (typeid(*selection) == typeid(MapCenterObj)) )
2864 selection->setFrameType (t);
2865 mapCenter->reposition();
2866 selection->updateLink();
2870 void MapEditor::setIncludeImagesVer(bool b)
2873 (typeid(*selection) == typeid(BranchObj)) ||
2874 (typeid(*selection) == typeid(MapCenterObj)) )
2875 ((BranchObj*)selection)->setIncludeImagesVer(b);
2876 mapCenter->reposition();
2879 void MapEditor::setIncludeImagesHor(bool b)
2882 (typeid(*selection) == typeid(BranchObj)) ||
2883 (typeid(*selection) == typeid(MapCenterObj)) )
2884 ((BranchObj*)selection)->setIncludeImagesHor(b);
2885 mapCenter->reposition();
2888 void MapEditor::setHideLinkUnselected (bool b)
2891 (typeid(*selection) == typeid(BranchObj)) ||
2892 (typeid(*selection) == typeid(MapCenterObj)) ||
2893 (typeid(*selection) == typeid(FloatImageObj)) )
2894 selection->setHideLinkUnselected(b);
2897 void MapEditor::importDir(BranchObj *dst, QDir d)
2900 (typeid(*selection) == typeid(BranchObj)) ||
2901 (typeid(*selection) == typeid(MapCenterObj)) )
2905 // Traverse directories
2906 d.setFilter( QDir::Dirs| QDir::Hidden | QDir::NoSymLinks );
2907 const QFileInfoList *dirlist = d.entryInfoList();
2908 QFileInfoListIterator itdir( *dirlist );
2911 while ( (fi = itdir.current()) != 0 )
2913 if (fi->fileName() != "." && fi->fileName() != ".." )
2916 bo=dst->getLastBranch();
2917 bo->setHeading (fi->fileName() );
2918 bo->setColor (QColor("blue"),false);
2920 if ( !d.cd(fi->fileName()) )
2921 QMessageBox::critical (0,tr("Critical Import Error"),tr("Cannot find the directory %1").arg(fi->fileName()));
2924 // Recursively add subdirs
2932 d.setFilter( QDir::Files| QDir::Hidden | QDir::NoSymLinks );
2933 const QFileInfoList *filelist = d.entryInfoList();
2934 QFileInfoListIterator itfile( *filelist );
2936 while ( (fi = itfile.current()) != 0 )
2939 bo=dst->getLastBranch();
2940 bo->setHeading (fi->fileName() );
2941 bo->setColor (QColor("black"),false);
2942 if (fi->fileName().right(4) == ".vym" )
2943 bo->setVymLink (fi->filePath());
2950 void MapEditor::importDir()
2953 (typeid(*selection) == typeid(BranchObj)) ||
2954 (typeid(*selection) == typeid(MapCenterObj)) )
2956 QFileDialog *fd=new QFileDialog( this,__VYM " - " +tr("Choose directory structure to import"));
2957 fd->setMode (QFileDialog::DirectoryOnly);
2958 fd->addFilter (QString (tr("vym map") + " (*.vym)"));
2959 fd->setCaption(__VYM " - " +tr("Choose directory structure to import"));
2963 if ( fd->exec() == QDialog::Accepted )
2965 BranchObj *bo=((BranchObj*)selection);
2966 importDir (bo,QDir(fd->selectedFile()) );
2967 mapCenter->reposition();
2974 void MapEditor::followXLink(int i)
2977 (typeid(*selection) == typeid(BranchObj)) ||
2978 (typeid(*selection) == typeid(MapCenterObj)) )
2980 BranchObj *bo=((BranchObj*)selection)->XLinkTargetAt(i);
2983 selection->unselect();
2985 selection->select();
2986 ensureSelectionVisible();
2991 void MapEditor::editXLink(int i)
2994 (typeid(*selection) == typeid(BranchObj)) ||
2995 (typeid(*selection) == typeid(MapCenterObj)) )
2997 XLinkObj *xlo=((BranchObj*)selection)->XLinkAt(i);
3000 EditXLinkDialog dia;
3002 dia.setSelection(selection);
3003 if (dia.exec() == QDialog::Accepted)
3005 if (dia.useSettingsGlobal() )
3007 setDefXLinkColor (xlo->getColor() );
3008 setDefXLinkWidth (xlo->getWidth() );
3010 if (dia.deleteXLink())
3011 ((BranchObj*)selection)->deleteXLinkAt(i);
3012 saveState(); //TODO undoCommand
3018 void MapEditor::testFunction()
3020 cout << "MapEditor::testFunction() called\n";
3021 if (selection && (typeid(*selection) == typeid(BranchObj)))
3023 cout << "Note:\n"<<((BranchObj*)selection)->getNoteOpenDoc()<<endl;
3027 void MapEditor::ensureSelectionVisible()
3031 LinkableMapObj* lmo= dynamic_cast <LinkableMapObj*> (selection);
3033 if (selection->getOrientation() == OrientLeftOfCenter)
3034 p= worldMatrix().map(QPoint (lmo->x(),lmo->y()));
3036 p= worldMatrix().map(QPoint (lmo->x()+lmo->width(),lmo->y()+lmo->height()));
3037 ensureVisible (p.x(), p.y() );
3042 void MapEditor::updateViewCenter()
3044 // Update movingCenter, so that we can zoom comfortably later
3045 QRect rc = QRect( contentsX(), contentsY(),
3046 visibleWidth(), visibleHeight() );
3047 QRect canvasRect = inverseWorldMatrix().mapRect(rc);
3048 movingCenter.setX((canvasRect.right() + canvasRect.left())/2);
3049 movingCenter.setY((canvasRect.top() + canvasRect.bottom())/2);
3052 void MapEditor::contentsContextMenuEvent ( QContextMenuEvent * e )
3054 // Lineedits are already closed by preceding
3055 // mouseEvent, we don't need to close here.
3057 QPoint p = inverseWorldMatrix().map(e->pos());
3058 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3061 { // MapObj was found
3062 if (selection != lmo)
3064 // select the MapObj
3065 if (selection) selection->unselect();
3067 selection->select();
3073 if (typeid(*selection)==typeid(BranchObj) ||
3074 typeid(*selection)==typeid(MapCenterObj) )
3076 // Context Menu on branch or mapcenter
3078 branchContextMenu->popup(e->globalPos() );
3080 if (typeid(*selection)==typeid(FloatImageObj))
3082 // Context Menu on floatimage
3084 floatimageContextMenu->popup(e->globalPos() );
3088 { // No MapObj found, we are on the Canvas itself
3089 // Context Menu on Canvas
3091 canvasContextMenu->popup(e->globalPos() );
3095 void MapEditor::contentsMousePressEvent(QMouseEvent* e)
3097 // Finish open lineEdits
3098 if (lineedit) finishedLineEditNoSave();
3100 QPoint p = inverseWorldMatrix().map(e->pos());
3101 LinkableMapObj* lmo=mapCenter->findMapObj(p, NULL);
3103 // Special case: CTRL is pressed
3104 if (e->state() & QMouseEvent::ControlButton)
3106 if (actionModModeColor->isOn())
3108 if (e->state() & QMouseEvent::ControlButton)
3111 setCursor (pickColorCursor);
3115 if (actionModModeLink->isOn())
3117 BranchObj *bo_begin=NULL;
3119 bo_begin=(BranchObj*)(lmo);
3122 ((typeid(*selection) == typeid(BranchObj)) ||
3123 (typeid(*selection) == typeid(MapCenterObj))) )
3124 bo_begin=(BranchObj*)selection;
3128 linkingObj_src=bo_begin;
3129 tmpXLink=new XLinkObj (mapCanvas);
3130 tmpXLink->setBegin (bo_begin);
3131 tmpXLink->setEnd (p);
3132 tmpXLink->setColor(defXLinkColor);
3133 tmpXLink->setWidth(defXLinkWidth);
3134 tmpXLink->updateXLink();
3135 tmpXLink->setVisibility (true);
3142 { // MapObj was found
3143 if (selection != lmo)
3145 // select the MapObj
3146 if (selection) selection->unselect();
3148 selection->select();
3153 // Check, if systemFlag clicked
3154 if (typeid(*selection)==typeid(BranchObj) ||
3155 typeid(*selection)==typeid(MapCenterObj) )
3157 QString foname=((BranchObj*)selection)->getSystemFlagName(p);
3158 if (!foname.isEmpty())
3160 // Do not move, if systemFlag clicked
3164 if (foname=="vymLink")
3166 mainWindow->editOpenVymLink();
3167 // tabWidget may change, better return now
3168 // before segfaulting...
3172 mainWindow->windowToggleNoteEditor();
3176 // Left Button Move Branches
3177 if (e->button() == QMouseEvent::LeftButton )
3179 movingObj_start.setX( p.x() - selection->x() );
3180 movingObj_start.setY( p.y() - selection->y() );
3181 movingObj_orgPos.setX (lmo->x() );
3182 movingObj_orgPos.setY (lmo->y() );
3184 // If modMode==copy, then we want to "move" the _new_ object around
3185 // then we need the offset from p to the _old_ selection, because of tmp
3186 if (actionModModeCopy->isOn() &&
3187 e->state() & QMouseEvent::ControlButton)
3189 if (typeid(*selection)==typeid(BranchObj) )
3192 mapCenter->addBranch ((BranchObj*)selection);
3194 selection=mapCenter->getLastBranch();
3195 selection->select();
3196 mapCenter->reposition();
3199 movingObj=selection;
3201 // Middle Button Toggle Scroll
3202 // (On Mac OS X this won't work, but we still have
3203 // a button in the toolbar)
3204 if (e->button() == QMouseEvent::MidButton )
3208 { // No MapObj found, we are on the Canvas itself
3209 // Left Button move Pos of CanvasView
3210 if (e->button() == QMouseEvent::LeftButton )
3212 movingObj=NULL; // move Content not Obj
3213 movingObj_start=e->globalPos();
3214 movingCont_start=QPoint (contentsX(), contentsY() );
3215 movingVec=QPoint(0,0);
3216 setCursor(handOpenCursor);
3221 void MapEditor::contentsMouseMoveEvent(QMouseEvent* e)
3223 QPoint p = inverseWorldMatrix().map(e->pos());
3225 // Move the selected MapObj
3226 if ( selection && movingObj)
3228 // To avoid jumping of the CanvasView, only
3229 // ensureSelectionVisible, if not tmp linked
3230 if (!selection->hasParObjTmp())
3231 ensureSelectionVisible ();
3233 // Now move the selection, but add relative position
3234 // (movingObj_start) where selection was chosen with
3235 // mousepointer. (This avoids flickering resp. jumping
3236 // of selection back to absPos)
3238 LinkableMapObj *lmosel;
3239 lmosel = dynamic_cast <LinkableMapObj*> (selection);
3241 // Check if we could link
3242 LinkableMapObj* lmo=mapCenter->findMapObj(p, lmosel);
3245 if (typeid(*selection) == typeid(FloatImageObj))
3247 FloatObj *fo=(FloatObj*)selection;
3248 saveState("move "+qpointToString(movingObj_orgPos),fo->getSelectString() );
3249 fo->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3253 // Relink float to new mapcenter or branch, if shift is pressed
3254 // Only relink, if selection really has a new parent
3255 if ( (e->state() & QMouseEvent::ShiftButton) && lmo &&
3256 ( (typeid(*lmo)==typeid(BranchObj)) ||
3257 (typeid(*lmo)==typeid(MapCenterObj)) ) &&
3258 ( lmo != fo->getParObj())
3261 if (typeid(*fo) == typeid(FloatImageObj))
3264 FloatImageObj *fio=(FloatImageObj*)(fo);
3265 ((BranchObj*)(lmo))->addFloatImage (fio);
3267 ((BranchObj*)(fio->getParObj()))->removeFloatImage (fio);
3268 fio=((BranchObj*)(lmo))->getLastFloatImage();
3271 selection=(LinkableMapObj*)(fio);
3272 selection->select();
3273 movingObj=(MapObj*)(fio);
3276 } else // selection != a FloatObj
3278 if (lmosel->getDepth()==0)
3280 if (e->state() == (LeftButton | !ShiftButton))
3281 // If mapCenter is moved, move all the rest by default, too.
3282 mapCenter->moveAll(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3284 mapCenter->move (p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3287 if (lmosel->getDepth()==1)
3289 // depth==1, mainbranch
3290 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() );
3294 if (lmosel->getOrientation() == OrientLeftOfCenter)
3295 // Add width of bbox here, otherwise alignRelTo will cause jumping around
3296 lmosel->move(p.x() -movingObj_start.x()+lmosel->getBBox().width(),
3297 p.y()-movingObj_start.y() +lmosel->getTopPad() );
3299 lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() -lmosel->getTopPad());
3301 // reposition subbranch
3302 lmosel->reposition();
3303 //ensureSelectionVisible();
3305 if (lmo && (lmo!=selection) &&
3306 (typeid(*lmo) == typeid(BranchObj) ||
3307 (typeid(*lmo) == typeid(MapCenterObj) )
3310 if (e->state() & QMouseEvent::ControlButton)
3312 // Special case: CTRL to link below lmo
3313 lmosel->setParObjTmp (lmo,p,+1);
3315 else if (e->state() & QMouseEvent::ShiftButton)
3316 lmosel->setParObjTmp (lmo,p,-1);
3318 lmosel->setParObjTmp (lmo,p,0);
3321 lmosel->unsetParObjTmp();
3322 /* FIXME not needed anymore?
3323 if (lmo &&(lmo==selection))
3324 // Could link to myself (happens sometimes...)
3325 lmosel->unsetParObjTmp();
3327 // no Obj under selection, go back to original Parent
3328 lmosel->unsetParObjTmp();
3333 } // no FloatImageObj
3337 } // selection && moving_obj
3339 // Draw a link from one branch to another
3342 tmpXLink->setEnd (p);
3343 tmpXLink->updateXLink();
3347 if (!movingObj && !pickingColor &&!drawingLink)
3349 QPoint p=e->globalPos();
3350 movingVec.setX(-p.x() + movingObj_start.x() );
3351 movingVec.setY(-p.y() + movingObj_start.y() );
3352 setContentsPos( movingCont_start.x() + movingVec.x(),
3353 movingCont_start.y() + movingVec.y());
3360 void MapEditor::contentsMouseReleaseEvent(QMouseEvent* e)
3362 LinkableMapObj *dst;
3363 // Have we been picking color?
3367 setCursor (ArrowCursor);
3368 // Check if we are over another branch
3369 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3370 if (dst && selection)
3372 if (e->state() & QMouseEvent::ShiftButton)
3374 ((BranchObj*)selection)->setColor (((BranchObj*)(dst))->getColor(),false);
3375 ((BranchObj*)selection)->setLinkColor ();
3379 ((BranchObj*)selection)->setColor (((BranchObj*)(dst))->getColor(),true);
3380 ((BranchObj*)selection)->setLinkColor ();
3386 // Have we been drawing a link?
3390 // Check if we are over another branch
3391 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ), NULL);
3392 if (dst && selection)
3394 tmpXLink->setEnd ( ((BranchObj*)(dst)) );
3395 tmpXLink->updateXLink();
3396 tmpXLink->activate();
3397 saveState(); //TODO undoCommand
3406 // Have we been moving something?
3407 if ( selection && movingObj )
3409 // Moved FloatObj? Maybe we need to reposition
3410 if(typeid(*selection)==typeid (FloatImageObj))
3412 selection->getParObj()->requestReposition();
3413 mapCenter->reposition();
3416 // Check if we are over another branch, but ignore
3417 // any found LMOs, which are FloatObjs
3418 dst=mapCenter->findMapObj(inverseWorldMatrix().map(e->pos() ),
3419 ((LinkableMapObj*)selection) );
3422 (typeid(*dst)!=typeid(BranchObj)&&typeid(*dst)!=typeid(MapCenterObj)))
3425 // Now check, if we have been moving a branch
3426 if (typeid(*selection) == typeid(BranchObj) )
3428 // save the position in case we link to mapcenter
3429 QPoint savePos=QPoint (selection->x(),selection->y() );
3431 // Reset the temporary drawn link to the original one
3432 ((LinkableMapObj*)selection)->unsetParObjTmp();
3438 BranchObj* bs=((BranchObj*)selection);
3439 QString undoCom="linkBranchToPos (\""+
3440 (bs->getParObj())->getSelectString()+
3442 QString("%1").arg(bs->getNum())+
3444 QString ("%1,%2").arg(movingObj_orgPos.x()).arg(movingObj_orgPos.y())+
3446 // TODO we also could check, if dest and src are on same branch,
3447 // then it would be sufficient to saveState of this branch
3449 // Modifiers allow to insert above/below dst
3450 if (e->state() & QMouseEvent::ShiftButton)
3452 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum());
3454 if (e->state() & QMouseEvent::ControlButton)
3456 bs->moveBranchTo ( (BranchObj*)(dst->getParObj()), ((BranchObj*)(dst))->getNum()+1);
3459 bs->moveBranchTo ((BranchObj*)(dst),-1);
3460 if (dst->getDepth()==0)
3463 saveState (undoCom,bs->getSelectString() );
3465 if (selection->getDepth()==1)
3466 // If we have moved mainbranch only save endposition
3467 saveState("move "+qpointToString(movingObj_orgPos), selection->getSelectString() );
3469 // Draw the original link, before selection was moved around
3470 mapCenter->reposition();
3472 // Finally resize canvas, if needed
3477 // maybe we moved View: set old cursor
3478 setCursor (ArrowCursor);
3482 void MapEditor::contentsMouseDoubleClickEvent(QMouseEvent* e)
3484 // Finish open lineEdits
3485 if (lineedit) finishedLineEditNoSave();
3487 if (e->button() == QMouseEvent::LeftButton )
3489 QPoint p = inverseWorldMatrix().map(e->pos());
3490 LinkableMapObj *lmo=mapCenter->findMapObj(p, NULL);
3491 if (lmo) { // MapObj was found
3492 // First select the MapObj than edit heading
3493 if (selection) selection->unselect();
3495 selection->select();
3496 saveState(selection);
3502 void MapEditor::resizeEvent (QResizeEvent* e)
3504 QCanvasView::resizeEvent( e );
3508 void MapEditor::contentsDragEnterEvent(QDragEnterEvent *event)
3511 // for (unsigned int i=0;event->format(i);i++) // Debug mime type
3512 // cerr << event->format(i) << endl;
3515 (typeid(*selection) == typeid(BranchObj)) ||
3516 (typeid(*selection) == typeid(MapCenterObj))) {
3518 // If QImageDrag can decode mime type
3519 if (QImageDrag::canDecode(event)) {
3524 // If image are dragged from firefox
3525 if (event->provides("application/x-moz-file-promise-url") &&
3526 event->provides("application/x-moz-nativeimage")) {
3527 event->accept(true);
3531 // If QUriDrag can decode mime type
3532 if (QUriDrag::canDecode(event)) {
3537 // If Uri are dragged from firefox
3538 if (event->provides("_NETSCAPE_URL")){
3543 // If QTextDrag can decode mime type
3544 if (QTextDrag::canDecode(event)) {
3553 bool isUnicode16(const QByteArray &d)
3555 // TODO: make more precise check for unicode 16.
3556 // Guess unicode16 if any of second bytes are zero
3557 unsigned int length = max(0,d.size()-2)/2;
3558 for (unsigned int i = 0; i<length ; i++)
3559 if (d.at(i*2+1)==0) return true;
3563 void MapEditor::contentsDropEvent(QDropEvent *event)
3566 (typeid(*selection) == typeid(BranchObj)) ||
3567 (typeid(*selection) == typeid(MapCenterObj)))
3572 if (event->provides("image/png"))
3575 if (QImageDrag::decode(event, pix))
3583 } else if (event->provides("application/x-moz-file-promise-url") &&
3584 event->provides("application/x-moz-nativeimage"))
3586 // Contains url to the img src in unicode16
3587 QByteArray d = event->encodedData("application/x-moz-file-promise-url");
3588 QString url = QString((const QChar*)d.data(),d.size()/2);
3592 } else if (event->provides ("text/uri-list"))
3593 { // Uris provided e.g. by konqueror
3594 QUriDrag::decode (event,uris);
3595 } else if (event->provides ("_NETSCAPE_URL"))
3596 { // Uris provided by Mozilla
3597 QStringList l = QStringList::split("\n", event->encodedData("_NETSCAPE_URL"));
3600 } else if (event->provides("text/html")) {
3602 // Handels text mime types
3603 // Look like firefox allways handle text as unicode16 (2 bytes per char.)
3604 QByteArray d = event->encodedData("text/html");
3607 text = QString((const QChar*)d.data(),d.size()/2);
3611 textEditor->setText(text);
3615 } else if (event->provides("text/plain")) {
3616 QByteArray d = event->encodedData("text/plain");
3619 text = QString((const QChar*)d.data(),d.size()/2);
3623 textEditor->setText(text);
3635 for (const char* u=uris.first(); u; u=uris.next())
3637 bo=((BranchObj*)selection)->addBranch();
3640 s=QUriDrag::uriToLocalFile(u);
3642 QString file = QDir::convertSeparators(s);
3643 heading = QFileInfo(file).baseName();
3645 if (file.endsWith(".vym", false))
3646 bo->setVymLink(file);
3655 bo->setHeading(heading);
3665 saveState(); //TODO undo Command
3666 mapCenter->reposition();
3673 void MapEditor::addFloatImage(const QPixmap &img)
3676 (typeid(*selection) == typeid(BranchObj)) ||
3677 (typeid(*selection) == typeid(MapCenterObj)) )
3679 BranchObj *bo=((BranchObj*)selection);
3680 saveState(selection);
3681 //QString fn=fd->selectedFile();
3682 //lastImageDir=fn.left(fn.findRev ("/"));
3683 bo->addFloatImage();
3684 // FIXME check if load was successful
3685 bo->getLastFloatImage()->load(img);
3686 //bo->getLastFloatImage()->setOriginalFilename(fn);
3687 mapCenter->reposition();
3694 void MapEditor::imageDataFetched(const QByteArray &a, QNetworkOperation */*nop*/)
3696 if (!imageBuffer) imageBuffer = new QBuffer();
3697 if (!imageBuffer->isOpen()) {
3698 imageBuffer->open(IO_WriteOnly | IO_Append);
3700 imageBuffer->at(imageBuffer->at()+imageBuffer->writeBlock(a));
3704 void MapEditor::imageDataFinished(QNetworkOperation *nop)
3706 if (nop->state()==QNetworkProtocol::StDone) {
3707 QPixmap img(imageBuffer->buffer());
3712 imageBuffer->close();
3714 imageBuffer->close();
3721 void MapEditor::fetchImage(const QString &url)
3724 urlOperator->stop();
3725 disconnect(urlOperator);
3729 urlOperator = new QUrlOperator(url);
3730 connect(urlOperator, SIGNAL(finished(QNetworkOperation *)),
3731 this, SLOT(imageDataFinished(QNetworkOperation*)));
3733 connect(urlOperator, SIGNAL(data(const QByteArray &, QNetworkOperation *)),
3734 this, SLOT(imageDataFetched(const QByteArray &, QNetworkOperation *)));