1 #include "mainwindow.h"
7 #include "aboutdialog.h"
8 #include "branchpropwindow.h"
9 #include "exportoofiledialog.h"
12 #include "flagrowobj.h"
13 #include "historywindow.h"
15 #include "mapeditor.h"
20 #include "texteditor.h"
21 #include "warningdialog.h"
23 extern TextEditor *textEditor;
24 extern Main *mainWindow;
25 extern QString tmpVymDir;
26 extern QString clipboardDir;
27 extern QString clipboardFile;
28 extern bool clipboardEmpty;
29 extern int statusbarTime;
30 extern FlagRowObj* standardFlagsDefault;
31 extern FlagRowObj* systemFlagsDefault;
32 extern QString vymName;
33 extern QString vymVersion;
34 extern QString vymBuildDate;
37 QMenu* branchContextMenu;
38 QMenu* branchAddContextMenu;
39 QMenu* branchRemoveContextMenu;
40 QMenu* branchLinksContextMenu;
41 QMenu* branchXLinksContextMenuEdit;
42 QMenu* branchXLinksContextMenuFollow;
43 QMenu* floatimageContextMenu;
44 QMenu* canvasContextMenu;
45 QMenu* fileLastMapsMenu;
46 QMenu* fileImportMenu;
47 QMenu* fileExportMenu;
50 extern Settings settings;
51 extern Options options;
52 extern ImageIO imageIO;
54 extern QDir vymBaseDir;
55 extern QDir lastImageDir;
56 extern QDir lastFileDir;
57 extern QString iconPath;
58 extern QString flagsPath;
60 Main::Main(QWidget* parent, const char* name, Qt::WFlags f) :
61 QMainWindow(parent,name,f)
65 setCaption ("VYM - View Your Mind");
67 // Load window settings
68 resize (settings.value( "/mainwindow/geometry/size",QSize (800,600)).toSize());
69 move (settings.value( "/mainwindow/geometry/pos", QPoint(300,100)).toPoint());
72 // Sometimes we may need to remember old selections
76 currentColor=Qt::black;
78 // Create unique temporary directory
80 tmpVymDir=makeUniqueDir (ok,"/tmp/vym-XXXXXX");
83 qWarning ("Mainwindow: Could not create temporary directory, failed to start vym");
86 if (debug) qDebug (QString("vym tmpDir=%1").arg(tmpVymDir) );
88 // Create direcctory for clipboard
89 clipboardDir=tmpVymDir+"/clipboard";
90 clipboardFile="map.xml";
92 d.mkdir (clipboardDir,true);
93 makeSubDirs (clipboardDir);
98 // Satellite windows //////////////////////////////////////////
101 historyWindow=new HistoryWindow();
102 connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
105 branchPropertyWindow = new BranchPropertyWindow();
106 connect (branchPropertyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
108 // Connect TextEditor, so that we can update flags if text changes
109 connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag()));
110 connect (textEditor, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
112 // Connect HistoryWindow, so that we can update flags
113 connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
116 // Initialize script editor
117 scriptEditor = new SimpleScriptEditor();
118 scriptEditor->move (50,50);
120 connect( scriptEditor, SIGNAL( runScript ( QString ) ),
121 this, SLOT( runScript( QString ) ) );
124 // Initialize Find window
125 findWindow=new FindWindow(NULL);
126 findWindow->move (x(),y()+70);
127 connect (findWindow, SIGNAL( findButton(QString) ),
128 this, SLOT(editFind(QString) ) );
129 connect (findWindow, SIGNAL( somethingChanged() ),
130 this, SLOT(editFindChanged() ) );
132 // Initialize some settings, which are platform dependant
135 // application to open URLs
136 p="/mainwindow/readerURL";
137 #if defined(Q_OS_LINUX)
138 s=settings.value (p,"konqueror").toString();
140 #if defined(Q_OS_MACX)
141 s=settings.value (p,"/usr/bin/open").toString();
143 s=settings.value (p,"mozilla");
146 settings.setValue( p,s);
148 // application to open PDFs
149 p="/mainwindow/readerPDF";
150 #if defined(Q_OS_LINUX)
151 s=settings.value (p,"acroread").toString();
153 #if defined(Q_OS_MACX)
154 s=settings.value (p,"/usr/bin/open").toString();
156 s=settings.value (p,"acroread").toString();
159 settings.setValue( p,s);
162 // Create tab widget which holds the maps
163 tabWidget= new QTabWidget (this);
164 connect( tabWidget, SIGNAL( currentChanged( QWidget * ) ),
165 this, SLOT( editorChanged( QWidget * ) ) );
167 lineedit=new QLineEdit (this);
170 setCentralWidget(tabWidget);
174 setupFormatActions();
178 setupNetworkActions();
179 setupSettingsActions();
182 if (settings.value( "/mainwindow/showTestMenu",false).toBool()) setupTestActions();
187 restoreState (settings.value("/mainwindow/state",0).toByteArray());
195 settings.setValue ( "/mainwindow/geometry/size", size() );
196 settings.setValue ( "/mainwindow/geometry/pos", pos() );
197 settings.setValue ("/mainwindow/state",saveState(0));
199 settings.setValue ("/mainwindow/view/AntiAlias",actionViewToggleAntiAlias->isOn());
200 settings.setValue ("/mainwindow/view/SmoothPixmapTransform",actionViewToggleSmoothPixmapTransform->isOn());
201 settings.setValue( "/version/version", vymVersion );
202 settings.setValue( "/version/builddate", vymBuildDate );
204 settings.setValue( "/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
205 settings.setValue( "/mapeditor/editmode/autoSelectNewBranch",actionSettingsAutoSelectNewBranch->isOn() );
206 settings.setValue( "/mapeditor/editmode/autoSelectText",actionSettingsAutoSelectText->isOn() );
207 settings.setValue( "/mapeditor/editmode/autoEditNewBranch",actionSettingsAutoEditNewBranch->isOn() );
208 settings.setValue( "/mapeditor/editmode/useDelKey",actionSettingsUseDelKey->isOn() );
209 settings.setValue( "/mapeditor/editmode/useFlagGroups",actionSettingsUseFlagGroups->isOn() );
210 settings.setValue( "/export/useHideExport",actionSettingsUseHideExport->isOn() );
212 //TODO save scriptEditor settings
214 // call the destructors
216 delete historyWindow;
217 delete branchPropertyWindow;
219 // Remove temporary directory
220 removeDir (QDir(tmpVymDir));
223 void Main::loadCmdLine()
225 /* TODO draw some kind of splashscreen while loading...
231 QStringList flist=options.getFileList();
232 QStringList::Iterator it=flist.begin();
234 while (it !=flist.end() )
236 fileLoad (*it, NewMap);
242 void Main::statusMessage(const QString &s)
244 statusBar()->message( s);
247 void Main::closeEvent (QCloseEvent* )
253 void Main::setupFileActions()
255 QMenu *fileMenu = menuBar()->addMenu ( tr ("&Map") );
256 QToolBar *tb = addToolBar( tr ("&Map") );
257 tb->setObjectName ("mapTB");
260 a = new QAction(QPixmap( iconPath+"filenew.png"), tr( "&New map","File menu" ),this);
261 a->setStatusTip ( tr( "New map","Status tip File menu" ) );
262 a->setShortcut ( Qt::CTRL + Qt::Key_N ); //New map
264 fileMenu->addAction (a);
265 connect( a, SIGNAL( triggered() ), this, SLOT( fileNew() ) );
267 a = new QAction(QPixmap( iconPath+"filenewcopy.png"), tr( "&Copy to new map","File menu" ),this);
268 a->setStatusTip ( tr( "Copy selection to mapcenter of a new map","Status tip File menu" ) );
269 a->setShortcut ( Qt::CTRL +Qt::SHIFT + Qt::Key_N ); //New map
270 fileMenu->addAction (a);
271 connect( a, SIGNAL( triggered() ), this, SLOT( fileNewCopy() ) );
273 a = new QAction( QPixmap( iconPath+"fileopen.png"), tr( "&Open..." ,"File menu"),this);
274 a->setStatusTip (tr( "Open","Status tip File menu" ) );
275 a->setShortcut ( Qt::CTRL + Qt::Key_O ); //Open map
277 fileMenu->addAction (a);
278 connect( a, SIGNAL( triggered() ), this, SLOT( fileLoad() ) );
280 fileLastMapsMenu = fileMenu->addMenu (tr("Open Recent","File menu"));
281 fileMenu->addSeparator();
283 a = new QAction( QPixmap( iconPath+"filesave.png"), tr( "&Save...","File menu" ), this);
284 a->setStatusTip ( tr( "Save","Status tip file menu" ));
285 a->setShortcut (Qt::CTRL + Qt::Key_S ); //Save map
287 fileMenu->addAction (a);
288 connect( a, SIGNAL( triggered() ), this, SLOT( fileSave() ) );
291 a = new QAction( QPixmap(iconPath+"filesaveas.png"), tr( "Save &As...","File menu" ), this);
292 a->setStatusTip (tr( "Save &As","Status tip file menu" ) );
293 fileMenu->addAction (a);
294 connect( a, SIGNAL( triggered() ), this, SLOT( fileSaveAs() ) );
296 fileMenu->addSeparator();
298 fileImportMenu = fileMenu->addMenu (tr("Import","File menu"));
300 a = new QAction(tr("KDE Bookmarks"), this);
301 a->setStatusTip ( tr( "Import %1","Status tip file menu" ).arg(tr("KDE bookmarks")));
302 a->addTo (fileImportMenu);
303 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportKDEBookmarks() ) );
305 if (settings.value( "/mainwindow/showTestMenu",false).toBool())
307 a = new QAction( QPixmap(), tr("Firefox Bookmarks","File menu"),this);
308 a->setStatusTip (tr( "Import %1","Status tip file menu").arg(tr("Firefox Bookmarks" ) ));
309 a->addTo (fileImportMenu);
310 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportFirefoxBookmarks() ) );
313 a = new QAction("Mind Manager...",this);
314 a->setStatusTip ( tr( "Import %1","status tip file menu").arg(" Mind Manager") );
315 fileImportMenu->addAction (a);
316 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportMM() ) );
318 a = new QAction( tr( "Import Dir%1","File menu").arg("..."), this);
319 a->setStatusTip (tr( "Import directory structure (experimental)","status tip file menu" ) );
320 fileImportMenu->addAction (a);
321 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportDir() ) );
323 fileExportMenu = fileMenu->addMenu (tr("Export","File menu"));
325 a = new QAction( tr("Image%1","File export menu").arg("..."), this);
326 a->setStatusTip( tr( "Export map as image","status tip file menu" ));
327 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportImage() ) );
328 fileExportMenu->addAction (a);
330 a = new QAction( "Open Office...", this);
331 a->setStatusTip( tr( "Export in Open Document Format used e.g. in Open Office ","status tip file menu" ));
332 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportOOPresentation() ) );
333 fileExportMenu->addAction (a);
335 a = new QAction( "Webpage (XHTML)...",this );
336 a->setShortcut (Qt::ALT + Qt::Key_X); //Export XHTML
337 a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (XHTML)","status tip file menu")));
338 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXHTML() ) );
339 fileExportMenu->addAction (a);
341 a = new QAction( "Text (ASCII)...", this);
342 a->setStatusTip ( tr( "Export as %1").arg("ASCII "+tr("(still experimental)" )));
343 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportASCII() ) );
344 fileExportMenu->addAction (a);
346 a = new QAction( "Spreadsheet (CSV)...", this);
347 a->setStatusTip ( tr( "Export as %1").arg("CSV "+tr("(still experimental)" )));
348 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportCSV() ) );
349 fileExportMenu->addAction (a);
351 a = new QAction( tr("KDE Bookmarks","File menu"), this);
352 a->setStatusTip( tr( "Export as %1").arg(tr("KDE Bookmarks" )));
353 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportKDEBookmarks() ) );
354 fileExportMenu->addAction (a);
356 a = new QAction( "Taskjuggler...", this );
357 a->setStatusTip( tr( "Export as %1").arg("Taskjuggler "+tr("(still experimental)" )));
358 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportTaskjuggler() ) );
359 fileExportMenu->addAction (a);
361 a = new QAction( "LaTeX...", this);
362 a->setStatusTip( tr( "Export as %1").arg("LaTeX "+tr("(still experimental)" )));
363 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportLaTeX() ) );
364 fileExportMenu->addAction (a);
366 a = new QAction( "XML..." , this );
367 a->setStatusTip (tr( "Export as %1").arg("XML"));
368 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXML() ) );
369 fileExportMenu->addAction (a);
371 fileMenu->addSeparator();
373 a = new QAction(QPixmap( iconPath+"fileprint.png"), tr( "&Print")+QString("..."), this);
374 a->setStatusTip ( tr( "Print" ,"File menu") );
375 a->setShortcut (Qt::CTRL + Qt::Key_P ); //Print map
377 fileMenu->addAction (a);
378 connect( a, SIGNAL( triggered() ), this, SLOT( filePrint() ) );
381 a = new QAction( QPixmap(iconPath+"fileclose.png"), tr( "&Close Map","File menu" ), this);
382 a->setStatusTip (tr( "Close Map" ) );
383 a->setShortcut (Qt::CTRL + Qt::Key_W ); //Close map
384 fileMenu->addAction (a);
385 connect( a, SIGNAL( triggered() ), this, SLOT( fileCloseMap() ) );
387 a = new QAction(QPixmap(iconPath+"exit.png"), tr( "E&xit","File menu")+" "+vymName, this);
388 a->setStatusTip ( tr( "Exit")+" "+vymName );
389 a->setShortcut (Qt::CTRL + Qt::Key_Q ); //Quit vym
390 fileMenu->addAction (a);
391 connect( a, SIGNAL( triggered() ), this, SLOT( fileExitVYM() ) );
396 void Main::setupEditActions()
398 QToolBar *tb = addToolBar( tr ("&Actions toolbar","Toolbar name") );
399 tb->setLabel( "Edit Actions" );
400 tb->setObjectName ("actionsTB");
401 QMenu *editMenu = menuBar()->addMenu( tr("&Edit","Edit menu") );
405 a = new QAction( QPixmap( iconPath+"undo.png"), tr( "&Undo","Edit menu" ),this);
406 connect( a, SIGNAL( triggered() ), this, SLOT( editUndo() ) );
407 a->setStatusTip (tr( "Undo" ) );
408 a->setShortcut ( Qt::CTRL + Qt::Key_Z ); //Undo last action
409 a->setEnabled (false);
411 editMenu->addAction (a);
414 a = new QAction( QPixmap( iconPath+"redo.png"), tr( "&Redo","Edit menu" ), this);
415 a->setStatusTip (tr( "Redo" ));
416 a->setShortcut (Qt::CTRL + Qt::Key_Y ); //Redo last action
418 editMenu->addAction (a);
419 connect( a, SIGNAL( triggered() ), this, SLOT( editRedo() ) );
422 editMenu->addSeparator();
423 a = new QAction(QPixmap( iconPath+"editcopy.png"), tr( "&Copy","Edit menu" ), this);
424 a->setStatusTip ( tr( "Copy" ) );
425 a->setShortcut (Qt::CTRL + Qt::Key_C ); //Copy
426 a->setEnabled (false);
428 editMenu->addAction (a);
429 connect( a, SIGNAL( triggered() ), this, SLOT( editCopy() ) );
432 a = new QAction(QPixmap( iconPath+"editcut.png" ), tr( "Cu&t","Edit menu" ), this);
433 a->setStatusTip ( tr( "Cut" ) );
434 a->setShortcut (Qt::CTRL + Qt::Key_X ); //Cut
435 a->setEnabled (false);
437 editMenu->addAction (a);
439 connect( a, SIGNAL( triggered() ), this, SLOT( editCut() ) );
441 a = new QAction(QPixmap( iconPath+"editpaste.png"), tr( "&Paste","Edit menu" ),this);
442 connect( a, SIGNAL( triggered() ), this, SLOT( editPaste() ) );
443 a->setStatusTip ( tr( "Paste" ) );
444 a->setShortcut ( Qt::CTRL + Qt::Key_V ); //Paste
445 a->setEnabled (false);
447 editMenu->addAction (a);
450 // Shortcuts to modify heading:
451 a = new QAction(tr( "Edit heading","Edit menu" ),this);
452 a->setStatusTip ( tr( "edit Heading" ));
453 a->setShortcut ( Qt::Key_Enter); //Edit heading
454 // a->setShortcutContext (Qt::WindowShortcut);
456 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
457 actionListBranches.append(a);
458 a = new QAction( tr( "Edit heading","Edit menu" ), this);
459 a->setStatusTip (tr( "edit Heading" ));
460 a->setShortcut (Qt::Key_Return ); //Edit heading
461 //a->setShortcutContext (Qt::WindowShortcut);
463 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
464 actionListBranches.append(a);
465 editMenu->addAction (a);
467 a = new QAction( tr( "Edit heading","Edit menu" ), this);
468 a->setStatusTip (tr( "edit Heading" ));
469 //a->setShortcut ( Qt::Key_F2 ); //Edit heading
470 a->setShortcutContext (Qt::WindowShortcut);
472 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
473 actionListBranches.append(a);
475 // Shortcut to delete selection
476 a = new QAction( tr( "Delete Selection","Edit menu" ),this);
477 a->setStatusTip (tr( "Delete Selection" ));
478 a->setShortcut ( Qt::Key_Delete); //Delete selection
479 a->setShortcutContext (Qt::WindowShortcut);
481 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteSelection() ) );
484 // Shortcut to add branch
485 alt = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
486 alt->setStatusTip ( tr( "Add a branch as child of selection" ));
487 alt->setShortcut (Qt::Key_A); //Add branch
488 alt->setShortcutContext (Qt::WindowShortcut);
490 connect( alt, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
491 a = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
492 a->setStatusTip ( tr( "Add a branch as child of selection" ));
493 a->setShortcut (Qt::Key_Insert); //Add branch
494 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
495 actionListBranches.append(a);
496 #if defined (Q_OS_MACX)
497 // In OSX show different shortcut in menues, the keys work indepently always
498 actionEditAddBranch=alt;
500 actionEditAddBranch=a;
502 editMenu->addAction (actionEditAddBranch);
503 tb->addAction (actionEditAddBranch);
506 // Add branch by inserting it at selection
507 a = new QAction(tr( "Add branch (insert)","Edit menu" ), this);
508 a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
509 a->setShortcut (Qt::ALT + Qt::Key_Insert ); //Insert branch
510 a->setShortcutContext (Qt::WindowShortcut);
512 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
513 a->setEnabled (false);
514 actionListBranches.append(a);
515 actionEditAddBranchBefore=a;
516 a = new QAction(tr( "Add branch (insert)","Edit menu" ),this);
517 a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
518 a->setShortcut ( Qt::ALT + Qt::Key_A ); //Insert branch
519 a->setShortcutContext (Qt::WindowShortcut);
521 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
522 actionListBranches.append(a);
525 a = new QAction(tr( "Add branch above","Edit menu" ), this);
526 a->setStatusTip ( tr( "Add a branch above selection" ));
527 a->setShortcut (Qt::SHIFT+Qt::Key_Insert ); //Add branch above
528 a->setShortcutContext (Qt::WindowShortcut);
530 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
531 a->setEnabled (false);
532 actionListBranches.append(a);
533 actionEditAddBranchAbove=a;
534 a = new QAction(tr( "Add branch above","Edit menu" ), this);
535 a->setStatusTip ( tr( "Add a branch above selection" ));
536 a->setShortcut (Qt::SHIFT+Qt::Key_A ); //Add branch above
537 a->setShortcutContext (Qt::WindowShortcut);
539 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
540 actionListBranches.append(a);
543 a = new QAction(tr( "Add branch below","Edit menu" ), this);
544 a->setStatusTip ( tr( "Add a branch below selection" ));
545 a->setShortcut (Qt::CTRL +Qt::Key_Insert ); //Add branch below
546 a->setShortcutContext (Qt::WindowShortcut);
548 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
549 a->setEnabled (false);
550 actionListBranches.append(a);
551 actionEditAddBranchBelow=a;
552 a = new QAction(tr( "Add branch below","Edit menu" ), this);
553 a->setStatusTip ( tr( "Add a branch below selection" ));
554 a->setShortcut (Qt::CTRL +Qt::Key_A ); // Add branch below
555 a->setShortcutContext (Qt::WindowShortcut);
557 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
558 actionListBranches.append(a);
560 a = new QAction(QPixmap(iconPath+"up.png" ), tr( "Move up","Edit menu" ), this);
561 a->setStatusTip ( tr( "Move branch up" ) );
562 a->setShortcut (Qt::Key_PageUp ); // Move branch up
563 a->setEnabled (false);
565 editMenu->addAction (a);
566 connect( a, SIGNAL( triggered() ), this, SLOT( editMoveUp() ) );
569 a = new QAction( QPixmap( iconPath+"down.png"), tr( "Move down","Edit menu" ),this);
570 connect( a, SIGNAL( triggered() ), this, SLOT( editMoveDown() ) );
571 a->setStatusTip (tr( "Move branch down" ) );
572 a->setShortcut ( Qt::Key_PageDown ); // Move branch down
573 a->setEnabled (false);
575 editMenu->addAction (a);
576 actionEditMoveDown=a;
579 a = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ),this);
580 a->setShortcut ( Qt::Key_ScrollLock );
581 a->setStatusTip (tr( "Scroll branch" ) );
582 connect( a, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
584 alt = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ), this);
585 alt->setShortcut ( Qt::Key_S ); // Scroll branch
586 alt->setStatusTip (tr( "Scroll branch" ));
587 connect( alt, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
588 #if defined(Q_OS_MACX)
589 actionEditToggleScroll=alt;
591 actionEditToggleScroll=a;
593 actionEditToggleScroll->setEnabled (false);
594 actionEditToggleScroll->setToggleAction(true);
595 tb->addAction (actionEditToggleScroll);
596 editMenu->addAction ( actionEditToggleScroll);
597 editMenu->addAction (actionEditToggleScroll);
600 actionListBranches.append(actionEditToggleScroll);
602 a = new QAction( tr( "Unscroll childs","Edit menu" ), this);
603 a->setStatusTip (tr( "Unscroll all scrolled branches in selected subtree" ));
604 editMenu->addAction (a);
605 connect( a, SIGNAL( triggered() ), this, SLOT( editUnscrollChilds() ) );
607 editMenu->addSeparator();
609 a = new QAction( QPixmap(iconPath+"find.png"), tr( "Find...","Edit menu"), this);
610 a->setStatusTip (tr( "Find" ) );
611 a->setShortcut (Qt::CTRL + Qt::Key_F ); //Find
612 editMenu->addAction (a);
613 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenFindWindow() ) );
615 editMenu->addSeparator();
617 a = new QAction( QPixmap(flagsPath+"flag-url.png"), tr( "Open URL","Edit menu" ), this);
618 a->setShortcut (Qt::CTRL + Qt::Key_U );
619 a->setShortcut (tr( "Open URL" ));
622 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURL() ) );
625 a = new QAction( tr( "Open URL in new tab","Edit menu" ), this);
626 a->setStatusTip (tr( "Open URL in new tab" ));
627 //a->setShortcut (Qt::CTRL+Qt::Key_U );
629 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURLTab() ) );
630 actionEditOpenURLTab=a;
632 a = new QAction( tr( "Open all URLs in subtree","Edit menu" ), this);
633 a->setStatusTip (tr( "Open all URLs in subtree" ));
635 actionListBranches.append(a);
636 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleURLTabs() ) );
637 actionEditOpenMultipleURLTabs=a;
639 a = new QAction(QPixmap(), tr( "Edit URL...","Edit menu"), this);
640 a->setStatusTip ( tr( "Edit URL" ) );
641 //a->setShortcut (Qt::SHIFT + Qt::CTRL + Qt::Key_U );
642 a->setShortcut ( Qt::Key_U );
643 a->setShortcutContext (Qt::WindowShortcut);
644 actionListBranches.append(a);
646 connect( a, SIGNAL( triggered() ), this, SLOT( editURL() ) );
649 a = new QAction(QPixmap(), tr( "Edit local URL...","Edit menu"), this);
650 a->setStatusTip ( tr( "Edit local URL" ) );
651 a->setShortcut (Qt::SHIFT + Qt::Key_U );
652 a->setShortcutContext (Qt::WindowShortcut);
653 actionListBranches.append(a);
655 connect( a, SIGNAL( triggered() ), this, SLOT( editLocalURL() ) );
658 a = new QAction( tr( "Use heading for URL","Edit menu" ), this);
659 a->setStatusTip ( tr( "Use heading of selected branch as URL" ));
660 a->setEnabled (false);
661 actionListBranches.append(a);
662 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading2URL() ) );
663 actionEditHeading2URL=a;
665 a = new QAction(tr( "Create URL to Novell Bugzilla","Edit menu" ), this);
666 a->setStatusTip ( tr( "Create URL to Novell Bugzilla" ));
667 a->setEnabled (false);
668 actionListBranches.append(a);
669 connect( a, SIGNAL( triggered() ), this, SLOT( editBugzilla2URL() ) );
670 actionEditBugzilla2URL=a;
672 a = new QAction(tr( "Create URL to Novell FATE","Edit menu" ), this);
673 a->setStatusTip ( tr( "Create URL to Novell FATE" ));
674 a->setEnabled (false);
675 actionListBranches.append(a);
676 connect( a, SIGNAL( triggered() ), this, SLOT( editFATE2URL() ) );
677 actionEditFATE2URL=a;
679 a = new QAction(QPixmap(flagsPath+"flag-vymlink.png"), tr( "Open linked map","Edit menu" ), this);
680 a->setStatusTip ( tr( "Jump to another vym map, if needed load it first" ));
682 a->setEnabled (false);
683 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenVymLink() ) );
684 actionEditOpenVymLink=a;
686 a = new QAction(QPixmap(), tr( "Open all vym links in subtree","Edit menu" ), this);
687 a->setStatusTip ( tr( "Open all vym links in subtree" ));
688 a->setEnabled (false);
689 actionListBranches.append(a);
690 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleVymLinks() ) );
691 actionEditOpenMultipleVymLinks=a;
694 a = new QAction(tr( "Edit vym link...","Edit menu" ), this);
695 a->setEnabled (false);
696 a->setStatusTip ( tr( "Edit link to another vym map" ));
697 connect( a, SIGNAL( triggered() ), this, SLOT( editVymLink() ) );
698 actionListBranches.append(a);
701 a = new QAction(tr( "Delete vym link","Edit menu" ),this);
702 a->setStatusTip ( tr( "Delete link to another vym map" ));
703 a->setEnabled (false);
704 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteVymLink() ) );
705 actionEditDeleteVymLink=a;
707 a = new QAction(QPixmap(flagsPath+"flag-hideexport.png"), tr( "Hide in exports","Edit menu" ), this);
708 a->setStatusTip ( tr( "Hide object in exports" ) );
709 a->setShortcut (Qt::Key_H );
710 a->setToggleAction(true);
712 a->setEnabled (false);
713 connect( a, SIGNAL( triggered() ), this, SLOT( editToggleHideExport() ) );
714 actionEditToggleHideExport=a;
716 a = new QAction(tr( "Edit Map Info...","Edit menu" ),this);
717 a->setStatusTip ( tr( "Edit Map Info" ));
718 a->setEnabled (true);
719 connect( a, SIGNAL( triggered() ), this, SLOT( editMapInfo() ) );
722 // Import at selection (adding to selection)
723 a = new QAction( tr( "Add map (insert)","Edit menu" ),this);
724 a->setStatusTip (tr( "Add map at selection" ));
725 connect( a, SIGNAL( triggered() ), this, SLOT( editImportAdd() ) );
726 a->setEnabled (false);
727 actionListBranches.append(a);
728 actionEditImportAdd=a;
730 // Import at selection (replacing selection)
731 a = new QAction( tr( "Add map (replace)","Edit menu" ), this);
732 a->setStatusTip (tr( "Replace selection with map" ));
733 connect( a, SIGNAL( triggered() ), this, SLOT( editImportReplace() ) );
734 a->setEnabled (false);
735 actionListBranches.append(a);
736 actionEditImportReplace=a;
739 a = new QAction( tr( "Save selection","Edit menu" ), this);
740 a->setStatusTip (tr( "Save selection" ));
741 connect( a, SIGNAL( triggered() ), this, SLOT( editSaveBranch() ) );
742 a->setEnabled (false);
743 actionListBranches.append(a);
744 actionEditSaveBranch=a;
746 // Only remove branch, not its childs
747 a = new QAction(tr( "Remove only branch ","Edit menu" ), this);
748 a->setStatusTip ( tr( "Remove only branch and keep its childs" ));
749 a->setShortcut (Qt::ALT + Qt::Key_Delete );
750 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteKeepChilds() ) );
751 a->setEnabled (false);
753 actionListBranches.append(a);
754 actionEditDeleteKeepChilds=a;
756 // Only remove childs of a branch
757 a = new QAction( tr( "Remove childs","Edit menu" ), this);
758 a->setStatusTip (tr( "Remove childs of branch" ));
759 a->setShortcut (Qt::SHIFT + Qt::Key_Delete );
760 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteChilds() ) );
761 a->setEnabled (false);
762 actionListBranches.append(a);
763 actionEditDeleteChilds=a;
765 // Shortcuts for navigating with cursor:
766 a = new QAction(tr( "Select upper branch","Edit menu" ), this);
767 a->setStatusTip ( tr( "Select upper branch" ));
768 a->setShortcut (Qt::Key_Up );
769 a->setShortcutContext (Qt::WindowShortcut);
771 connect( a, SIGNAL( triggered() ), this, SLOT( editUpperBranch() ) );
772 a = new QAction( tr( "Select lower branch","Edit menu" ),this);
773 a->setStatusTip (tr( "Select lower branch" ));
774 a->setShortcut ( Qt::Key_Down );
775 a->setShortcutContext (Qt::WindowShortcut);
777 connect( a, SIGNAL( triggered() ), this, SLOT( editLowerBranch() ) );
778 a = new QAction(tr( "Select left branch","Edit menu" ), this);
779 a->setStatusTip ( tr( "Select left branch" ));
780 a->setShortcut (Qt::Key_Left );
781 a->setShortcutContext (Qt::WindowShortcut);
783 connect( a, SIGNAL( triggered() ), this, SLOT( editLeftBranch() ) );
784 a = new QAction( tr( "Select child branch","Edit menu" ), this);
785 a->setStatusTip (tr( "Select right branch" ));
786 a->setShortcut (Qt::Key_Right);
787 a->setShortcutContext (Qt::WindowShortcut);
789 connect( a, SIGNAL( triggered() ), this, SLOT( editRightBranch() ) );
790 a = new QAction( tr( "Select first branch","Edit menu" ), this);
791 a->setStatusTip (tr( "Select first branch" ));
792 a->setShortcut (Qt::Key_Home );
793 a->setShortcutContext (Qt::WindowShortcut);
795 a->setEnabled (false);
796 editMenu->addAction (a);
797 actionListBranches.append(a);
798 actionEditSelectFirst=a;
799 connect( a, SIGNAL( triggered() ), this, SLOT( editFirstBranch() ) );
800 a = new QAction( tr( "Select last branch","Edit menu" ),this);
801 a->setStatusTip (tr( "Select last branch" ));
802 a->setShortcut ( Qt::Key_End );
803 a->setShortcutContext (Qt::WindowShortcut);
805 connect( a, SIGNAL( triggered() ), this, SLOT( editLastBranch() ) );
806 a->setEnabled (false);
807 editMenu->addAction (a);
808 actionListBranches.append(a);
809 actionEditSelectLast=a;
811 a = new QAction( tr( "Add Image...","Edit menu" ), this);
812 a->setStatusTip (tr( "Add Image" ));
813 connect( a, SIGNAL( triggered() ), this, SLOT( editLoadImage() ) );
814 actionEditLoadImage=a;
816 a = new QAction( tr( "Property window","Dialog to edit properties of selection" )+QString ("..."), this);
817 a->setStatusTip (tr( "Set properties for selection" ));
818 a->setShortcut ( Qt::CTRL + Qt::Key_I ); //Property window
819 a->setShortcutContext (Qt::WindowShortcut);
820 a->setToggleAction (true);
822 connect( a, SIGNAL( triggered() ), this, SLOT( windowToggleProperty() ) );
823 actionViewTogglePropertyWindow=a;
827 void Main::setupFormatActions()
829 QMenu *formatMenu = menuBar()->addMenu (tr ("F&ormat","Format menu"));
831 QToolBar *tb = addToolBar( tr("Format Actions","Format Toolbar name"));
832 tb->setObjectName ("formatTB");
835 pix.fill (Qt::black);
836 a= new QAction(pix, tr( "Set &Color" )+QString("..."), this);
837 a->setStatusTip ( tr( "Set Color" ));
838 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectColor() ) );
840 formatMenu->addAction (a);
842 a= new QAction( QPixmap(iconPath+"formatcolorpicker.png"), tr( "Pic&k color","Edit menu" ), this);
843 a->setStatusTip (tr( "Pick color\nHint: You can pick a color from another branch and color using CTRL+Left Button" ) );
844 a->setShortcut (Qt::CTRL + Qt::Key_K );
845 connect( a, SIGNAL( triggered() ), this, SLOT( formatPickColor() ) );
846 a->setEnabled (false);
848 formatMenu->addAction (a);
849 actionListBranches.append(a);
850 actionFormatPickColor=a;
852 a= new QAction(QPixmap(iconPath+"formatcolorbranch.png"), tr( "Color &branch","Edit menu" ), this);
853 a->setStatusTip ( tr( "Color branch" ) );
854 a->setShortcut (Qt::CTRL + Qt::Key_B);
855 connect( a, SIGNAL( triggered() ), this, SLOT( formatColorBranch() ) );
856 a->setEnabled (false);
858 formatMenu->addAction (a);
859 actionListBranches.append(a);
860 actionFormatColorSubtree=a;
862 a= new QAction(QPixmap(iconPath+"formatcolorsubtree.png"), tr( "Color sub&tree","Edit menu" ), this);
863 a->setStatusTip ( tr( "Color Subtree" ));
864 a->setShortcut (Qt::CTRL + Qt::Key_T);
865 connect( a, SIGNAL( triggered() ), this, SLOT( formatColorSubtree() ) );
866 a->setEnabled (false);
867 formatMenu->addAction (a);
869 actionListBranches.append(a);
870 actionFormatColorSubtree=a;
872 formatMenu->addSeparator();
873 actionGroupFormatLinkStyles=new QActionGroup ( this);
874 actionGroupFormatLinkStyles->setExclusive (true);
875 a= new QAction( tr( "Linkstyle Line" ), actionGroupFormatLinkStyles);
876 a->setStatusTip (tr( "Line" ));
877 a->setToggleAction(true);
878 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleLine() ) );
879 formatMenu->addAction (a);
880 actionFormatLinkStyleLine=a;
881 a= new QAction( tr( "Linkstyle Curve" ), actionGroupFormatLinkStyles);
882 a->setStatusTip (tr( "Line" ));
883 a->setToggleAction(true);
884 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleParabel() ) );
885 formatMenu->addAction (a);
886 actionFormatLinkStyleParabel=a;
887 a= new QAction( tr( "Linkstyle Thick Line" ), actionGroupFormatLinkStyles );
888 a->setStatusTip (tr( "PolyLine" ));
889 a->setToggleAction(true);
890 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyLine() ) );
891 formatMenu->addAction (a);
892 actionFormatLinkStylePolyLine=a;
893 a= new QAction( tr( "Linkstyle Thick Curve" ), actionGroupFormatLinkStyles);
894 a->setStatusTip (tr( "PolyParabel" ) );
895 a->setToggleAction(true);
896 a->setChecked (true);
897 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyParabel() ) );
898 formatMenu->addAction (a);
899 actionFormatLinkStylePolyParabel=a;
901 a = new QAction( tr( "Hide link if object is not selected","Branch attribute" ), this);
902 a->setStatusTip (tr( "Hide link" ));
903 a->setToggleAction(true);
904 connect( a, SIGNAL( triggered() ), this, SLOT( formatHideLinkUnselected() ) );
905 actionFormatHideLinkUnselected=a;
907 formatMenu->addSeparator();
908 a= new QAction( tr( "&Use color of heading for link","Branch attribute" ), this);
909 a->setStatusTip (tr( "Use same color for links and headings" ));
910 a->setToggleAction(true);
911 connect( a, SIGNAL( triggered() ), this, SLOT( formatToggleLinkColorHint() ) );
912 formatMenu->addAction (a);
913 actionFormatLinkColorHint=a;
915 pix.fill (Qt::white);
916 a= new QAction( pix, tr( "Set &Link Color"+QString("...") ), this );
917 a->setStatusTip (tr( "Set Link Color" ));
918 formatMenu->addAction (a);
919 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectLinkColor() ) );
920 actionFormatLinkColor=a;
922 a= new QAction( pix, tr( "Set &Selection Color"+QString("...") ), this );
923 a->setStatusTip (tr( "Set Selection Color" ));
924 formatMenu->addAction (a);
925 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectSelectionColor() ) );
926 actionFormatSelectionColor=a;
928 a= new QAction( pix, tr( "Set &Background Color" )+QString("..."), this );
929 a->setStatusTip (tr( "Set Background Color" ));
930 formatMenu->addAction (a);
931 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackColor() ) );
932 actionFormatBackColor=a;
934 a= new QAction( pix, tr( "Set &Background image" )+QString("..."), this );
935 a->setStatusTip (tr( "Set Background image" ));
936 formatMenu->addAction (a);
937 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackImage() ) );
938 actionFormatBackImage=a;
942 void Main::setupViewActions()
944 QToolBar *tb = addToolBar( tr("View Actions","View Toolbar name") );
945 tb->setLabel( "View Actions" );
946 tb->setObjectName ("viewTB");
947 QMenu *viewMenu = menuBar()->addMenu ( tr( "&View" ));
950 a = new QAction(QPixmap(iconPath+"viewmag-reset.png"), tr( "reset Zoom","View action" ), this);
951 a->setStatusTip ( tr( "Zoom reset" ) );
952 a->setShortcut (Qt::CTRL + Qt::Key_0 );
954 viewMenu->addAction (a);
955 connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomReset() ) );
957 a = new QAction( QPixmap(iconPath+"viewmag+.png"), tr( "Zoom in","View action" ), this);
958 a->setStatusTip (tr( "Zoom in" ));
959 a->setShortcut (Qt::CTRL + Qt::Key_Plus);
961 viewMenu->addAction (a);
962 connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomIn() ) );
964 a = new QAction( QPixmap(iconPath+"viewmag-.png"), tr( "Zoom out","View action" ), this);
965 a->setStatusTip (tr( "Zoom out" ));
966 a->setShortcut (Qt::CTRL + Qt::Key_Minus );
968 viewMenu->addAction (a);
969 connect( a, SIGNAL( triggered() ), this, SLOT( viewZoomOut() ) );
971 a = new QAction( QPixmap(iconPath+"viewshowsel.png"), tr( "Show selection","View action" ), this);
972 a->setStatusTip (tr( "Show selection" ));
973 a->setShortcut (Qt::Key_Period);
975 viewMenu->addAction (a);
976 connect( a, SIGNAL( triggered() ), this, SLOT( viewCenter() ) );
978 viewMenu->addSeparator();
980 a = new QAction(QPixmap(flagsPath+"flag-note.png"), tr( "Show Note Editor","View action" ),this);
981 a->setStatusTip ( tr( "Show Note Editor" ));
982 a->setShortcut ( Qt::CTRL + Qt::Key_E );
983 a->setToggleAction(true);
985 viewMenu->addAction (a);
986 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleNoteEditor() ) );
987 actionViewToggleNoteEditor=a;
989 a = new QAction(QPixmap(iconPath+"history.png"), tr( "History Window","View action" ),this );
990 a->setStatusTip ( tr( "Show History Window" ));
991 a->setShortcut ( Qt::CTRL + Qt::Key_H );
992 a->setToggleAction(true);
994 viewMenu->addAction (a);
995 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleHistory() ) );
996 actionViewToggleHistoryWindow=a;
998 viewMenu->addAction (actionViewTogglePropertyWindow);
1000 viewMenu->addSeparator();
1002 a = new QAction(tr( "Antialiasing","View action" ),this );
1003 a->setStatusTip ( tr( "Antialiasing" ));
1004 a->setToggleAction(true);
1005 a->setOn (settings.value("/mainwindow/view/AntiAlias",true).toBool());
1006 viewMenu->addAction (a);
1007 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleAntiAlias() ) );
1008 actionViewToggleAntiAlias=a;
1010 a = new QAction(tr( "Smooth pixmap transformations","View action" ),this );
1011 a->setStatusTip (a->text());
1012 a->setToggleAction(true);
1013 a->setOn (settings.value("/mainwindow/view/SmoothPixmapTransformation",true).toBool());
1014 viewMenu->addAction (a);
1015 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleSmoothPixmap() ) );
1016 actionViewToggleSmoothPixmapTransform=a;
1018 a = new QAction(tr( "Next Map","View action" ), this);
1019 a->setStatusTip (a->text());
1020 a->setShortcut (Qt::ALT + Qt::Key_N );
1021 viewMenu->addAction (a);
1022 connect( a, SIGNAL( triggered() ), this, SLOT(windowNextEditor() ) );
1024 a = new QAction (tr( "Previous Map","View action" ), this );
1025 a->setStatusTip (a->text());
1026 a->setShortcut (Qt::ALT + Qt::Key_P );
1027 viewMenu->addAction (a);
1028 connect( a, SIGNAL( triggered() ), this, SLOT(windowPreviousEditor() ) );
1032 void Main::setupModeActions()
1034 //QPopupMenu *menu = new QPopupMenu( this );
1035 //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
1037 QToolBar *tb = addToolBar( tr ("Modes when using modifiers","Modifier Toolbar name") );
1038 tb->setObjectName ("modesTB");
1040 actionGroupModModes=new QActionGroup ( this);
1041 actionGroupModModes->setExclusive (true);
1042 a= new QAction( QPixmap(iconPath+"modecolor.png"), tr( "Use modifier to color branches","Mode modifier" ), actionGroupModModes);
1043 a->setShortcut (Qt::Key_J);
1044 a->setStatusTip ( tr( "Use modifier to color branches" ));
1045 a->setToggleAction(true);
1048 actionModModeColor=a;
1050 a= new QAction( QPixmap(iconPath+"modecopy.png"), tr( "Use modifier to copy","Mode modifier" ), actionGroupModModes );
1051 a->setShortcut( Qt::Key_K);
1052 a->setStatusTip( tr( "Use modifier to copy" ));
1053 a->setToggleAction(true);
1055 actionModModeCopy=a;
1057 a= new QAction(QPixmap(iconPath+"modelink.png"), tr( "Use modifier to draw xLinks","Mode modifier" ), actionGroupModModes );
1058 a->setShortcut (Qt::Key_L);
1059 a->setStatusTip( tr( "Use modifier to draw xLinks" ));
1060 a->setToggleAction(true);
1062 actionModModeXLink=a;
1066 void Main::setupFlagActions()
1068 // Create System Flags
1069 systemFlagsDefault = new FlagRowObj ();
1070 systemFlagsDefault->setVisibility (false);
1071 systemFlagsDefault->setName ("systemFlagsDef");
1073 FlagObj *fo = new FlagObj ();
1074 fo->load(QPixmap(flagsPath+"flag-note.png"));
1075 fo->setName("note");
1076 fo->setToolTip(tr("Note","Systemflag"));
1077 systemFlagsDefault->addFlag (fo); // makes deep copy
1079 fo->load(QPixmap(flagsPath+"flag-url.png"));
1081 fo->setToolTip(tr("WWW Document (external)","Systemflag"));
1082 systemFlagsDefault->addFlag (fo);
1084 fo->load(QPixmap(flagsPath+"flag-vymlink.png"));
1085 fo->setName("vymLink");
1086 fo->setToolTip(tr("Link to another vym map","Systemflag"));
1087 systemFlagsDefault->addFlag (fo);
1089 fo->load(QPixmap(flagsPath+"flag-scrolled-right.png"));
1090 fo->setName("scrolledright");
1091 fo->setToolTip(tr("subtree is scrolled","Systemflag"));
1092 systemFlagsDefault->addFlag (fo);
1094 fo->load(QPixmap(flagsPath+"flag-tmpUnscrolled-right.png"));
1095 fo->setName("tmpUnscrolledright");
1096 fo->setToolTip(tr("subtree is temporary scrolled","Systemflag"));
1097 systemFlagsDefault->addFlag (fo);
1099 fo->load(QPixmap(flagsPath+"flag-hideexport.png"));
1100 fo->setName("hideInExport");
1101 fo->setToolTip(tr("Hide object in exported maps","Systemflag"));
1102 systemFlagsDefault->addFlag (fo);
1104 // Create Standard Flags
1105 QToolBar *tb=addToolBar (tr ("Standard Flags","Standard Flag Toolbar"));
1106 tb->setObjectName ("standardFlagTB");
1108 standardFlagsDefault = new FlagRowObj ();
1109 standardFlagsDefault->setVisibility (false);
1110 standardFlagsDefault->setName ("standardFlagsDef");
1111 standardFlagsDefault->setToolBar (tb);
1113 fo->load(flagsPath+"flag-exclamationmark.png");
1114 fo->setName ("exclamationmark");
1115 fo->setGroup("standard-mark");
1116 QAction *a=new QAction (fo->getPixmap(),fo->getName(),this);
1119 a->setCheckable(true);
1120 a->setObjectName(fo->getName());
1121 a->setToolTip(tr("Take care!","Standardflag"));
1122 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1123 standardFlagsDefault->addFlag (fo); // makes deep copy
1125 fo->load(flagsPath+"flag-questionmark.png");
1126 fo->setName("questionmark");
1127 fo->setGroup("standard-mark");
1128 a=new QAction (fo->getPixmap(),fo->getName(),this);
1131 a->setCheckable(true);
1132 a->setObjectName(fo->getName());
1133 a->setToolTip(tr("Really?","Standardflag"));
1134 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1135 standardFlagsDefault->addFlag (fo);
1137 fo->load(flagsPath+"flag-hook-green.png");
1138 fo->setName("hook-green");
1139 fo->setGroup("standard-hook");
1140 a=new QAction (fo->getPixmap(),fo->getName(),this);
1143 a->setCheckable(true);
1144 a->setObjectName(fo->getName());
1145 a->setToolTip(tr("ok!","Standardflag"));
1146 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1147 standardFlagsDefault->addFlag (fo);
1149 fo->load(flagsPath+"flag-cross-red.png");
1150 fo->setName("cross-red");
1151 fo->setGroup("standard-hook");
1152 a=new QAction (fo->getPixmap(),fo->getName(),this);
1155 a->setCheckable(true);
1156 a->setObjectName(fo->getName());
1157 a->setToolTip(tr("Not ok!","Standardflag"));
1158 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1159 standardFlagsDefault->addFlag (fo);
1161 fo->load(flagsPath+"flag-stopsign.png");
1162 fo->setName("stopsign");
1163 a=new QAction (fo->getPixmap(),fo->getName(),this);
1166 a->setCheckable(true);
1167 a->setObjectName(fo->getName());
1168 a->setToolTip(tr("This won't work!","Standardflag"));
1169 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1170 standardFlagsDefault->addFlag (fo);
1172 fo->load(flagsPath+"flag-smiley-good.png");
1173 fo->setName("smiley-good");
1174 fo->setGroup("standard-smiley");
1175 a=new QAction (fo->getPixmap(),fo->getName(),this);
1178 a->setCheckable(true);
1179 a->setObjectName(fo->getName());
1180 a->setToolTip(tr("Good","Standardflag"));
1181 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1182 standardFlagsDefault->addFlag (fo);
1184 fo->load(flagsPath+"flag-smiley-sad.png");
1185 fo->setName("smiley-sad");
1186 fo->setGroup("standard-smiley");
1187 a=new QAction (fo->getPixmap(),fo->getName(),this);
1190 a->setCheckable(true);
1191 a->setObjectName(fo->getName());
1192 a->setToolTip(tr("Bad","Standardflag"));
1193 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1194 standardFlagsDefault->addFlag (fo);
1196 fo->load(flagsPath+"flag-smiley-omg.png");
1197 // Original omg.png (in KDE emoticons)
1198 fo->setName("smiley-omg");
1199 fo->setGroup("standard-smiley");
1200 a=new QAction (fo->getPixmap(),fo->getName(),this);
1203 a->setCheckable(true);
1204 a->setObjectName(fo->getName());
1205 a->setToolTip(tr("Oh no!","Standardflag"));
1206 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1207 standardFlagsDefault->addFlag (fo);
1209 fo->load(flagsPath+"flag-kalarm.png");
1210 fo->setName("clock");
1211 a=new QAction (fo->getPixmap(),fo->getName(),this);
1214 a->setCheckable(true);
1215 a->setObjectName(fo->getName());
1216 a->setToolTip(tr("Time critical","Standardflag"));
1217 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1218 standardFlagsDefault->addFlag (fo);
1220 fo->load(flagsPath+"flag-phone.png");
1221 fo->setName("phone");
1222 a=new QAction (fo->getPixmap(),fo->getName(),this);
1225 a->setCheckable(true);
1226 a->setObjectName(fo->getName());
1227 a->setToolTip(tr("Call...","Standardflag"));
1228 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1229 standardFlagsDefault->addFlag (fo);
1231 fo->load(flagsPath+"flag-lamp.png");
1232 fo->setName("lamp");
1233 a=new QAction (fo->getPixmap(),fo->getName(),this);
1236 a->setCheckable(true);
1237 a->setObjectName(fo->getName());
1238 a->setToolTip(tr("Idea!","Standardflag"));
1239 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1240 standardFlagsDefault->addFlag (fo);
1242 fo->load(flagsPath+"flag-arrow-up.png");
1243 fo->setName("arrow-up");
1244 fo->setGroup("standard-arrow");
1245 a=new QAction (fo->getPixmap(),fo->getName(),this);
1248 a->setCheckable(true);
1249 a->setObjectName(fo->getName());
1250 a->setToolTip(tr("Important","Standardflag"));
1251 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1252 standardFlagsDefault->addFlag (fo);
1254 fo->load(flagsPath+"flag-arrow-down.png");
1255 fo->setName("arrow-down");
1256 fo->setGroup("standard-arrow");
1257 a=new QAction (fo->getPixmap(),fo->getName(),this);
1260 a->setCheckable(true);
1261 a->setObjectName(fo->getName());
1262 a->setToolTip(tr("Unimportant","Standardflag"));
1263 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1264 standardFlagsDefault->addFlag (fo);
1266 fo->load(flagsPath+"flag-arrow-2up.png");
1267 fo->setName("2arrow-up");
1268 fo->setGroup("standard-arrow");
1269 a=new QAction (fo->getPixmap(),fo->getName(),this);
1272 a->setCheckable(true);
1273 a->setObjectName(fo->getName());
1274 a->setToolTip(tr("Very important!","Standardflag"));
1275 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1276 standardFlagsDefault->addFlag (fo);
1278 fo->load(flagsPath+"flag-arrow-2down.png");
1279 fo->setName("2arrow-down");
1280 fo->setGroup("standard-arrow");
1281 a=new QAction (fo->getPixmap(),fo->getName(),this);
1284 a->setCheckable(true);
1285 a->setObjectName(fo->getName());
1286 a->setToolTip(tr("Very unimportant!","Standardflag"));
1287 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1288 standardFlagsDefault->addFlag (fo);
1290 fo->load(flagsPath+"flag-thumb-up.png");
1291 fo->setName("thumb-up");
1292 fo->setGroup("standard-thumb");
1293 a=new QAction (fo->getPixmap(),fo->getName(),this);
1296 a->setCheckable(true);
1297 a->setObjectName(fo->getName());
1298 a->setToolTip(tr("I like this","Standardflag"));
1299 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1300 standardFlagsDefault->addFlag (fo);
1302 fo->load(flagsPath+"flag-thumb-down.png");
1303 fo->setName("thumb-down");
1304 fo->setGroup("standard-thumb");
1305 a=new QAction (fo->getPixmap(),fo->getName(),this);
1308 a->setCheckable(true);
1309 a->setObjectName(fo->getName());
1310 a->setToolTip(tr("I do not like this","Standardflag"));
1311 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1312 standardFlagsDefault->addFlag (fo);
1314 fo->load(flagsPath+"flag-rose.png");
1315 fo->setName("rose");
1316 a=new QAction (fo->getPixmap(),fo->getName(),this);
1319 a->setCheckable(true);
1320 a->setObjectName(fo->getName());
1321 a->setToolTip(tr("Rose","Standardflag"));
1322 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1323 standardFlagsDefault->addFlag (fo);
1325 fo->load(flagsPath+"flag-heart.png");
1326 fo->setName("heart");
1327 a=new QAction (fo->getPixmap(),fo->getName(),this);
1329 a->setCheckable(true);
1330 a->setObjectName(fo->getName());
1331 a->setToolTip(tr("I just love... ","Standardflag"));
1332 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1333 standardFlagsDefault->addFlag (fo);
1336 fo->load(flagsPath+"flag-present.png");
1337 setupFlag (fo,tb,"present",tr("Surprise!","Standardflag"));
1339 fo->load(flagsPath+"flag-flash.png");
1340 setupFlag (fo,tb,"flash",tr("Dangerous","Standardflag"));
1342 // Original: xsldbg_output.png
1343 fo->load(flagsPath+"flag-info.png");
1344 setupFlag (fo,tb,"info",tr("Info","Standardflag"));
1346 // Original khelpcenter.png
1347 fo->load(flagsPath+"flag-lifebelt.png");
1348 setupFlag (fo,tb,"lifebelt",tr("This will help","Standardflag"));
1352 fo->load(flagsPath+"freemind/warning.png");
1353 setupFlag (fo,tb,"freemind-warning",tr("Important","Freemind-Flag"));
1355 for (int i=1; i<8; i++)
1357 fo->load(flagsPath+QString("freemind/priority-%1.png").arg(i));
1358 setupFlag (fo,tb,QString("freemind-priority-%1").arg(i),tr("Priority","Freemind-Flag"));
1361 fo->load(flagsPath+"freemind/back.png");
1362 setupFlag (fo,tb,"freemind-back",tr("Back","Freemind-Flag"));
1364 fo->load(flagsPath+"freemind/forward.png");
1365 setupFlag (fo,tb,"freemind-forward",tr("Forward","Freemind-Flag"));
1368 fo->load(flagsPath+"freemind/attach.png");
1369 setupFlag (fo,tb,"freemind-attach",tr("Look here","Freemind-Flag"));
1372 fo->load(flagsPath+"freemind/clanbomber.png");
1373 setupFlag (fo,tb,"freemind-clanbomber",tr("Dangerous","Freemind-Flag"));
1376 fo->load(flagsPath+"freemind/desktopnew.png");
1377 setupFlag (fo,tb,"freemind-desktopnew",tr("Don't forget","Freemind-Flag"));
1380 fo->load(flagsPath+"freemind/flag.png");
1381 setupFlag (fo,tb,"freemind-flag",tr("Flag","Freemind-Flag"));
1384 fo->load(flagsPath+"freemind/gohome.png");
1385 setupFlag (fo,tb,"freemind-gohome",tr("Home","Freemind-Flag"));
1388 fo->load(flagsPath+"freemind/kaddressbook.png");
1389 setupFlag (fo,tb,"freemind-kaddressbook",tr("Telephone","Freemind-Flag"));
1392 fo->load(flagsPath+"freemind/knotify.png");
1393 setupFlag (fo,tb,"freemind-knotify",tr("Music","Freemind-Flag"));
1396 fo->load(flagsPath+"freemind/korn.png");
1397 setupFlag (fo,tb,"freemind-korn",tr("Mailbox","Freemind-Flag"));
1400 fo->load(flagsPath+"freemind/mail.png");
1401 setupFlag (fo,tb,"freemind-mail",tr("Maix","Freemind-Flag"));
1403 fo->load(flagsPath+"freemind/password.png");
1404 setupFlag (fo,tb,"freemind-password",tr("Password","Freemind-Flag"));
1406 fo->load(flagsPath+"freemind/pencil.png");
1407 setupFlag (fo,tb,"freemind-pencil",tr("To be improved","Freemind-Flag"));
1409 fo->load(flagsPath+"freemind/stop.png");
1410 setupFlag (fo,tb,"freemind-stop",tr("Stop","Freemind-Flag"));
1412 fo->load(flagsPath+"freemind/wizard.png");
1413 setupFlag (fo,tb,"freemind-wizard",tr("Magic","Freemind-Flag"));
1415 fo->load(flagsPath+"freemind/xmag.png");
1416 setupFlag (fo,tb,"freemind-xmag",tr("To be discussed","Freemind-Flag"));
1418 fo->load(flagsPath+"freemind/bell.png");
1419 setupFlag (fo,tb,"freemind-bell",tr("Reminder","Freemind-Flag"));
1421 fo->load(flagsPath+"freemind/bookmark.png");
1422 setupFlag (fo,tb,"freemind-bookmark",tr("Excellent","Freemind-Flag"));
1424 fo->load(flagsPath+"freemind/penguin.png");
1425 setupFlag (fo,tb,"freemind-penguin",tr("Linux","Freemind-Flag"));
1427 fo->load(flagsPath+"freemind/licq.png");
1428 setupFlag (fo,tb,"freemind-licq",tr("Sweet","Freemind-Flag"));
1433 void Main::setupFlag (FlagObj *fo, QToolBar *tb, const QString &name, const QString &tooltip)
1436 QAction *a=new QAction (fo->getPixmap(),fo->getName(),this);
1439 a->setCheckable(true);
1440 a->setObjectName(fo->getName());
1441 a->setToolTip(tooltip);
1442 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1443 standardFlagsDefault->addFlag (fo);
1446 void Main::setupNetworkActions()
1448 if (!settings.value( "/mainwindow/showTestMenu",false).toBool() )
1450 QMenu *netMenu = menuBar()->addMenu( "&Network" );
1454 a = new QAction( "Start TCPserver for MapEditor",this);
1455 //a->setStatusTip ( "Set application to open pdf files"));
1456 a->setShortcut ( Qt::Key_T ); //New TCP server
1457 connect( a, SIGNAL( triggered() ), this, SLOT( networkStartServer() ) );
1458 netMenu->addAction (a);
1460 a = new QAction( "Connect MapEditor to server",this);
1461 //a->setStatusTip ( "Set application to open pdf files"));
1462 a->setShortcut ( Qt::Key_C ); // Connect to server
1463 connect( a, SIGNAL( triggered() ), this, SLOT( networkConnect() ) );
1464 netMenu->addAction (a);
1468 void Main::setupSettingsActions()
1470 QMenu *settingsMenu = menuBar()->addMenu( tr( "&Settings" ));
1474 a = new QAction( tr( "Set application to open pdf files","Settings action"), this);
1475 a->setStatusTip ( tr( "Set application to open pdf files"));
1476 connect( a, SIGNAL( triggered() ), this, SLOT( settingsPDF() ) );
1477 settingsMenu->addAction (a);
1479 a = new QAction( tr( "Set application to open external links","Settings action"), this);
1480 a->setStatusTip( tr( "Set application to open external links"));
1481 connect( a, SIGNAL( triggered() ), this, SLOT( settingsURL() ) );
1482 settingsMenu->addAction (a);
1484 a = new QAction( tr( "Set path for macros","Settings action")+"...", this);
1485 a->setStatusTip( tr( "Set path for macros"));
1486 connect( a, SIGNAL( triggered() ), this, SLOT( settingsMacroDir() ) );
1487 settingsMenu->addAction (a);
1489 a = new QAction( tr( "Set number of undo levels","Settings action")+"...", this);
1490 a->setStatusTip( tr( "Set number of undo levels"));
1491 connect( a, SIGNAL( triggered() ), this, SLOT( settingsUndoLevels() ) );
1492 settingsMenu->addAction (a);
1494 settingsMenu->addSeparator();
1496 a = new QAction( tr( "Autosave","Settings action"), this);
1497 a->setStatusTip( tr( "Autosave"));
1498 a->setToggleAction(true);
1499 a->setOn ( settings.value ("/mapeditor/autosave/use",true).toBool());
1500 connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveToggle() ) );
1501 settingsMenu->addAction (a);
1502 actionSettingsAutosaveToggle=a;
1504 a = new QAction( tr( "Autosave time","Settings action")+"...", this);
1505 a->setStatusTip( tr( "Autosave time"));
1506 connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveTime() ) );
1507 settingsMenu->addAction (a);
1508 actionSettingsAutosaveTime=a;
1510 settingsMenu->addSeparator();
1512 a = new QAction( tr( "Edit branch after adding it","Settings action" ), this );
1513 a->setStatusTip( tr( "Edit branch after adding it" ));
1514 a->setToggleAction(true);
1515 a->setOn ( settings.value ("/mapeditor/editmode/autoEditNewBranch",true).toBool());
1516 settingsMenu->addAction (a);
1517 actionSettingsAutoEditNewBranch=a;
1519 a= new QAction( tr( "Select branch after adding it","Settings action" ), this );
1520 a->setStatusTip( tr( "Select branch after adding it" ));
1521 a->setToggleAction(true);
1522 a->setOn ( settings.value ("/mapeditor/editmode/autoSelectNewBranch",false).toBool() );
1523 settingsMenu->addAction (a);
1524 actionSettingsAutoSelectNewBranch=a;
1526 a= new QAction(tr( "Select existing heading","Settings action" ), this);
1527 a->setStatusTip( tr( "Select heading before editing" ));
1528 a->setToggleAction(true);
1529 a->setOn ( settings.value ("/mapeditor/editmode/autoSelectText",true).toBool() );
1530 settingsMenu->addAction (a);
1531 actionSettingsAutoSelectText=a;
1533 a= new QAction( tr( "Delete key","Settings action" ), this);
1534 a->setStatusTip( tr( "Delete key for deleting branches" ));
1535 a->setToggleAction(true);
1536 a->setOn ( settings.value ("/mapeditor/editmode/useDelKey",true).toBool() );
1537 settingsMenu->addAction (a);
1538 connect( a, SIGNAL( triggered() ), this, SLOT( settingsToggleDelKey() ) );
1539 actionSettingsUseDelKey=a;
1541 a= new QAction( tr( "Exclusive flags","Settings action" ), this);
1542 a->setStatusTip( tr( "Use exclusive flags in flag toolbars" ));
1543 a->setToggleAction(true);
1544 a->setOn ( settings.value ("/mapeditor/editmode/useFlagGroups",true).toBool() );
1545 settingsMenu->addAction (a);
1546 actionSettingsUseFlagGroups=a;
1548 a= new QAction( tr( "Use hide flags","Settings action" ), this);
1549 a->setStatusTip( tr( "Use hide flag during exports " ));
1550 a->setToggleAction(true);
1551 a->setOn ( settings.value ("/export/useHideExport",true).toBool() );
1552 settingsMenu->addAction (a);
1553 actionSettingsUseHideExport=a;
1557 void Main::setupTestActions()
1559 QMenu *testMenu = menuBar()->addMenu( tr( "&Test" ));
1562 a = new QAction( "Test function 1" , this);
1563 a->setStatusTip( "Call test function 1" );
1564 testMenu->addAction (a);
1565 //a->setShortcut (Qt::Key_F4 );
1566 connect( a, SIGNAL( triggered() ), this, SLOT( testFunction1() ) );
1568 a = new QAction( "Test function 2" , this);
1569 a->setStatusTip( "Call test function 2" );
1570 //a->setShortcut (Qt::Key_F4 );
1571 testMenu->addAction (a);
1572 connect( a, SIGNAL( triggered() ), this, SLOT( testFunction2() ) );
1574 a = new QAction( "Command" , this);
1575 a->setStatusTip( "Enter command to call in editor" );
1576 //a->setShortcut (Qt::Key_F5 );
1577 connect( a, SIGNAL( triggered() ), this, SLOT( testCommand() ) );
1578 testMenu->addAction (a);
1582 void Main::setupHelpActions()
1584 QMenu *helpMenu = menuBar()->addMenu ( tr( "&Help","Help menubar entry" ));
1587 a = new QAction( tr( "Open VYM Documentation (pdf) ","Help action" ), this );
1588 a->setStatusTip( tr( "Open VYM Documentation (pdf)" ));
1589 connect( a, SIGNAL( triggered() ), this, SLOT( helpDoc() ) );
1590 helpMenu->addAction (a);
1592 a = new QAction( tr( "Open VYM example maps ","Help action" ), this );
1593 a->setStatusTip( tr( "Open VYM example maps " ));
1594 connect( a, SIGNAL( triggered() ), this, SLOT( helpDemo() ) );
1595 helpMenu->addAction (a);
1597 a = new QAction( tr( "About VYM","Help action" ), this);
1598 a->setStatusTip( tr( "About VYM")+vymName);
1599 connect( a, SIGNAL( triggered() ), this, SLOT( helpAbout() ) );
1600 helpMenu->addAction (a);
1602 a = new QAction( tr( "About QT","Help action" ), this);
1603 a->setStatusTip( tr( "Information about QT toolkit" ));
1604 connect( a, SIGNAL( triggered() ), this, SLOT( helpAboutQT() ) );
1605 helpMenu->addAction (a);
1609 void Main::setupContextMenus()
1613 // Context Menu for branch or mapcenter
1614 branchContextMenu =new QMenu (this);
1615 branchContextMenu->addAction (actionViewTogglePropertyWindow);
1616 branchContextMenu->addSeparator();
1619 branchAddContextMenu =branchContextMenu->addMenu (tr("Add"));
1620 branchAddContextMenu->addAction (actionEditPaste );
1621 branchAddContextMenu->addAction ( actionEditAddBranch );
1622 branchAddContextMenu->addAction ( actionEditAddBranchBefore );
1623 branchAddContextMenu->addAction ( actionEditAddBranchAbove);
1624 branchAddContextMenu->addAction ( actionEditAddBranchBelow );
1625 branchAddContextMenu->addSeparator();
1626 branchAddContextMenu->addAction ( actionEditImportAdd );
1627 branchAddContextMenu->addAction ( actionEditImportReplace );
1630 branchRemoveContextMenu =branchContextMenu->addMenu (tr ("Remove","Context menu name"));
1631 branchRemoveContextMenu->addAction (actionEditCut);
1632 branchRemoveContextMenu->addAction ( actionEditDelete );
1633 branchRemoveContextMenu->addAction ( actionEditDeleteKeepChilds );
1634 branchRemoveContextMenu->addAction ( actionEditDeleteChilds );
1637 actionEditSaveBranch->addTo( branchContextMenu );
1639 branchContextMenu->addSeparator();
1640 branchContextMenu->addAction ( actionEditLoadImage);
1642 // Submenu for Links (URLs, vymLinks)
1643 branchLinksContextMenu =new QMenu (this);
1645 branchContextMenu->addSeparator();
1646 branchLinksContextMenu=branchContextMenu->addMenu(tr("References (URLs, vymLinks, ...)","Context menu name"));
1647 branchLinksContextMenu->addAction ( actionEditOpenURL );
1648 branchLinksContextMenu->addAction ( actionEditOpenURLTab );
1649 branchLinksContextMenu->addAction ( actionEditOpenMultipleURLTabs );
1650 branchLinksContextMenu->addAction ( actionEditURL );
1651 branchLinksContextMenu->addAction ( actionEditHeading2URL );
1652 branchLinksContextMenu->addAction ( actionEditBugzilla2URL );
1653 if (settings.value( "/mainwindow/showTestMenu",false).toBool() )
1655 branchLinksContextMenu->addAction ( actionEditFATE2URL );
1657 branchLinksContextMenu->addSeparator();
1658 branchLinksContextMenu->addAction ( actionEditOpenVymLink );
1659 branchLinksContextMenu->addAction ( actionEditOpenMultipleVymLinks );
1660 branchLinksContextMenu->addAction ( actionEditVymLink );
1661 branchLinksContextMenu->addAction ( actionEditDeleteVymLink );
1664 // Context Menu for XLinks in a branch menu
1665 // This will be populated "on demand" in MapEditor::updateActions
1666 branchContextMenu->addSeparator();
1667 branchXLinksContextMenuEdit =branchContextMenu->addMenu (tr ("Edit XLink","Context menu name"));
1668 branchXLinksContextMenuFollow =branchContextMenu->addMenu (tr ("Follow XLink","Context menu name"));
1669 connect( branchXLinksContextMenuFollow, SIGNAL( triggered(QAction *) ), this, SLOT( editFollowXLink(QAction * ) ) );
1670 connect( branchXLinksContextMenuEdit, SIGNAL( triggered(QAction *) ), this, SLOT( editEditXLink(QAction * ) ) );
1673 // Context menu for floatimage
1674 floatimageContextMenu =new QMenu (this);
1675 a= new QAction (tr ("Save image","Context action"),this);
1676 connect (a, SIGNAL (triggered()), this, SLOT (editSaveImage()));
1677 floatimageContextMenu->addAction (a);
1679 floatimageContextMenu->addSeparator();
1680 actionEditCopy->addTo( floatimageContextMenu );
1681 actionEditCut->addTo( floatimageContextMenu );
1683 floatimageContextMenu->addSeparator();
1684 floatimageContextMenu->addAction ( actionFormatHideLinkUnselected );
1687 // Context menu for canvas
1688 canvasContextMenu =new QMenu (this);
1689 actionEditMapInfo->addTo( canvasContextMenu );
1690 canvasContextMenu->insertSeparator();
1691 actionGroupFormatLinkStyles->addTo( canvasContextMenu );
1692 canvasContextMenu->insertSeparator();
1693 actionFormatLinkColorHint->addTo( canvasContextMenu );
1694 actionFormatLinkColor->addTo( canvasContextMenu );
1695 actionFormatSelectionColor->addTo( canvasContextMenu );
1696 actionFormatBackColor->addTo( canvasContextMenu );
1697 // actionFormatBackImage->addTo( canvasContextMenu ); //FIXME makes vym too slow: postponed for later version
1699 // Menu for last opened files
1701 for (int i = 0; i < MaxRecentFiles; ++i)
1703 recentFileActions[i] = new QAction(this);
1704 recentFileActions[i]->setVisible(false);
1705 fileLastMapsMenu->addAction(recentFileActions[i]);
1706 connect(recentFileActions[i], SIGNAL(triggered()),
1707 this, SLOT(fileLoadRecent()));
1709 setupRecentMapsMenu();
1712 void Main::setupRecentMapsMenu()
1714 QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
1716 int numRecentFiles = qMin(files.size(), (int)MaxRecentFiles);
1718 for (int i = 0; i < numRecentFiles; ++i) {
1719 QString text = tr("&%1 %2").arg(i + 1).arg(files[i]);
1720 recentFileActions[i]->setText(text);
1721 recentFileActions[i]->setData(files[i]);
1722 recentFileActions[i]->setVisible(true);
1724 for (int j = numRecentFiles; j < MaxRecentFiles; ++j)
1725 recentFileActions[j]->setVisible(false);
1728 void Main::setupMacros()
1730 for (int i = 0; i <= 11; i++)
1732 macroActions[i] = new QAction(this);
1733 macroActions[i]->setData(i);
1734 addAction (macroActions[i]);
1735 connect(macroActions[i], SIGNAL(triggered()),
1736 this, SLOT(callMacro()));
1738 macroActions[0]->setShortcut ( Qt::Key_F1 );
1739 macroActions[1]->setShortcut ( Qt::Key_F2 );
1740 macroActions[2]->setShortcut ( Qt::Key_F3 );
1741 macroActions[3]->setShortcut ( Qt::Key_F4 );
1742 macroActions[4]->setShortcut ( Qt::Key_F5 );
1743 macroActions[5]->setShortcut ( Qt::Key_F6 );
1744 macroActions[6]->setShortcut ( Qt::Key_F7 );
1745 macroActions[7]->setShortcut ( Qt::Key_F8 );
1746 macroActions[8]->setShortcut ( Qt::Key_F9 );
1747 macroActions[9]->setShortcut ( Qt::Key_F10 );
1748 macroActions[10]->setShortcut ( Qt::Key_F11 );
1749 macroActions[11]->setShortcut ( Qt::Key_F12 );
1752 void Main::hideEvent (QHideEvent * )
1754 if (!textEditor->isMinimized() ) textEditor->hide();
1757 void Main::showEvent (QShowEvent * )
1759 if (actionViewToggleNoteEditor->isOn()) textEditor->showNormal();
1763 MapEditor* Main::currentMapEditor() const
1765 if ( tabWidget->currentPage() &&
1766 tabWidget->currentPage()->inherits( "MapEditor" ) )
1767 return (MapEditor*)tabWidget->currentPage();
1772 void Main::editorChanged(QWidget *)
1774 // Unselect all possibly selected objects
1775 // (Important to update note editor)
1777 for (int i=0;i<=tabWidget->count() -1;i++)
1780 me=(MapEditor*)tabWidget->page(i);
1783 currentMapEditor()->reselect();
1785 // Update actions to in menus and toolbars according to editor
1789 void Main::fileNew()
1791 QString fn="unnamed";
1792 MapEditor* me = new MapEditor ( NULL);
1793 tabWidget->addTab (me,fn);
1794 tabWidget->showPage(me);
1795 me->viewport()->setFocus();
1796 me->setAntiAlias (actionViewToggleAntiAlias->isOn());
1797 me->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
1799 // For the very first map we do not have flagrows yet...
1803 void Main::fileNewCopy()
1805 QString fn="unnamed";
1806 MapEditor* oldME =currentMapEditor();
1810 MapEditor* newME = new MapEditor ( NULL);
1813 tabWidget->addTab (newME,fn);
1814 tabWidget->showPage(newME);
1815 newME->viewport()->setFocus();
1816 newME->setAntiAlias (actionViewToggleAntiAlias->isOn());
1817 newME->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
1818 // For the very first map we do not have flagrows yet...
1819 newME->select("mc:");
1820 newME->load (clipboardDir+"/"+clipboardFile,ImportReplace);
1826 ErrorCode Main::fileLoad(QString fn, const LoadMode &lmode)
1828 ErrorCode err=success;
1830 // fn is usually the archive, mapfile the file after uncompressing
1833 // Make fn absolute (needed for unzip)
1834 fn=QDir (fn).absPath();
1840 // Check, if map is already loaded
1842 while (i<=tabWidget->count() -1)
1844 me=(MapEditor*)tabWidget->page(i);
1845 if (me->getFilePath() == fn)
1847 // Already there, ask for confirmation
1848 QMessageBox mb( vymName,
1849 tr("The map %1\nis already opened."
1850 "Opening the same map in multiple editors may lead \n"
1851 "to confusion when finishing working with vym."
1852 "Do you want to").arg(fn),
1853 QMessageBox::Warning,
1854 QMessageBox::Yes | QMessageBox::Default,
1855 QMessageBox::Cancel | QMessageBox::Escape,
1856 QMessageBox::NoButton);
1857 mb.setButtonText( QMessageBox::Yes, tr("Open anyway") );
1858 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
1861 case QMessageBox::Yes:
1863 i=tabWidget->count();
1865 case QMessageBox::Cancel:
1877 if ( !fn.isEmpty() )
1879 me = currentMapEditor();
1880 int tabIndex=tabWidget->currentPageIndex();
1881 // Check first, if mapeditor exists
1882 // If it is not default AND we want a new map,
1883 // create a new mapeditor in a new tab
1884 if ( lmode==NewMap && (!me || !me->isDefault() ) )
1886 me= new MapEditor ( NULL);
1887 tabWidget->addTab (me,fn);
1888 tabIndex=tabWidget->indexOf (me);
1889 tabWidget->setCurrentPage (tabIndex);
1890 me->setAntiAlias (actionViewToggleAntiAlias->isOn());
1891 me->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
1894 // Check, if file exists (important for creating new files
1895 // from command line
1896 if (!QFile(fn).exists() )
1898 QMessageBox mb( vymName,
1899 tr("This map does not exist:\n %1\nDo you want to create a new one?").arg(fn),
1900 QMessageBox::Question,
1902 QMessageBox::Cancel | QMessageBox::Default,
1903 QMessageBox::NoButton );
1905 mb.setButtonText( QMessageBox::Yes, tr("Create"));
1906 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1909 case QMessageBox::Yes:
1911 currentMapEditor()->setFilePath(fn);
1912 tabWidget->setTabLabel (currentMapEditor(),
1913 currentMapEditor()->getFileName() );
1914 statusBar()->message( "Created " + fn , statusbarTime );
1917 case QMessageBox::Cancel:
1918 // don't create new map
1919 statusBar()->message( "Loading " + fn + " failed!", statusbarTime );
1926 //tabWidget->currentPage() won't be NULL here, because of above...
1927 tabWidget->showPage(me);
1928 me->viewport()->setFocus();
1930 // Create temporary directory for packing
1932 QString tmpMapDir=makeUniqueDir (ok,"/tmp/vym-XXXXXX");
1935 QMessageBox::critical( 0, tr( "Critical Load Error" ),
1936 tr("Couldn't create temporary directory before load\n"));
1940 // Try to unzip file
1941 err=unzipDir (tmpMapDir,fn);
1945 me->setZipped(false);
1948 me->setZipped(true);
1950 // Look for mapname.xml
1951 mapfile= fn.left(fn.findRev(".",-1,true));
1952 mapfile=mapfile.section( '/', -1 );
1953 QFile file( tmpMapDir + "/" + mapfile + ".xml");
1954 if (!file.exists() )
1956 // mapname.xml does not exist, well,
1957 // maybe someone renamed the mapname.vym file...
1958 // Try to find any .xml in the toplevel
1959 // directory of the .vym file
1960 QStringList flist=QDir (tmpMapDir).entryList("*.xml");
1961 if (flist.count()==1)
1963 // Only one entry, take this one
1964 mapfile=tmpMapDir + "/"+flist.first();
1967 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it )
1968 *it=tmpMapDir + "/" + *it;
1969 // TODO Multiple entries, load all (but only the first one into this ME)
1970 //mainWindow->fileLoadFromTmp (flist);
1971 //returnCode=1; // Silently forget this attempt to load
1972 qWarning ("MainWindow::load (fn) multimap found...");
1975 if (flist.isEmpty() )
1977 QMessageBox::critical( 0, tr( "Critical Load Error" ),
1978 tr("Couldn't find a map (*.xml) in .vym archive.\n"));
1981 } //file doesn't exist
1983 mapfile=file.name();
1988 // Save existing filename in case we import
1989 QString fn_org=me->getFilePath();
1991 // Finally load map into mapEditor
1992 me->setFilePath (mapfile,fn);
1993 err=me->load(mapfile,lmode);
1995 // Restore old (maybe empty) filepath, if this is an import
1997 me->setFilePath (fn_org);
2000 // Finally check for errors and go home
2003 if (lmode==NewMap) fileCloseMap();
2004 statusBar()->message( "Could not load " + fn, statusbarTime );
2009 me->setFilePath (fn);
2010 tabWidget->changeTab(tabWidget->page(tabIndex), me->getFileName());
2011 if (fn.left(9)!="/tmp/vym-")
2013 // Only append to lastMaps if not loaded from a tmpDir
2014 // e.g. imported bookmarks are in a tmpDir
2015 addRecentMap(me->getFilePath() );
2017 actionFilePrint->setEnabled (true);
2019 statusBar()->message( "Loaded " + fn, statusbarTime );
2023 removeDir (QDir(tmpMapDir));
2029 void Main::fileLoad(const LoadMode &lmode)
2031 QStringList filters;
2032 filters <<"VYM map (*.vym *.vyp)"<<"XML (*.xml)";
2033 QFileDialog *fd=new QFileDialog( this);
2034 fd->setDir (lastFileDir);
2035 fd->setFileMode (QFileDialog::ExistingFiles);
2036 fd->setFilters (filters);
2040 fd->setCaption(vymName+ " - " +tr("Load vym map"));
2043 fd->setCaption(vymName+ " - " +tr("Import: Add vym map to selection"));
2046 fd->setCaption(vymName+ " - " +tr("Import: Replace selection with vym map"));
2052 if ( fd->exec() == QDialog::Accepted )
2054 lastFileDir=fd->directory().path();
2055 QStringList flist = fd->selectedFiles();
2056 QStringList::Iterator it = flist.begin();
2057 while( it != flist.end() )
2060 fileLoad(*it, lmode);
2067 void Main::fileLoad()
2072 void Main::fileLoadRecent()
2074 QAction *action = qobject_cast<QAction *>(sender());
2076 fileLoad (action->data().toString(), NewMap);
2079 void Main::addRecentMap (const QString &fileName)
2082 QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
2083 files.removeAll(fileName);
2084 files.prepend(fileName);
2085 while (files.size() > MaxRecentFiles)
2088 settings.setValue("/mainwindow/recentFileList", files);
2090 setupRecentMapsMenu();
2093 void Main::fileSave(MapEditor *me, const SaveMode &savemode)
2095 // tmp dir for zipping
2099 ErrorCode err=success;
2101 QString safeFilePath;
2103 bool saveZipped=me->saveZipped();
2107 QString fn=me->getFilePath();
2108 // filename=unnamed, filepath="" in constructor of mapEditor
2109 if ( !fn.isEmpty() )
2111 // We have a filepath, go on saving
2112 // First remove existing file, we
2113 // don't want to add to old zip archives
2117 QMessageBox::warning( 0, tr( "Save Error" ),
2118 fn+ tr("\ncould not be removed before saving"));
2120 // Look, if we should zip the data:
2123 QMessageBox mb( vymName,
2124 tr("The map %1\ndid not use the compressed "
2125 "vym file format.\nWriting it uncompressed will also write images \n"
2126 "and flags and thus may overwrite files in the "
2127 "given directory\n\nDo you want to write the map").arg(fn),
2128 QMessageBox::Warning,
2129 QMessageBox::Yes | QMessageBox::Default,
2131 QMessageBox::Cancel | QMessageBox::Escape);
2132 mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
2133 mb.setButtonText( QMessageBox::No, tr("uncompressed") );
2134 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
2137 case QMessageBox::Yes:
2138 // save compressed (default file format)
2141 case QMessageBox::No:
2142 // save uncompressed
2145 case QMessageBox::Cancel:
2154 // Create temporary directory for packing
2156 QString tmpMapDir=makeUniqueDir (ok,"/tmp/vym-XXXXXX");
2159 QMessageBox::critical( 0, tr( "Critical Load Error" ),
2160 tr("Couldn't create temporary directory before save\n"));
2164 safeFilePath=me->getFilePath();
2165 me->setFilePath (tmpMapDir+"/"+
2166 me->getMapName()+ ".xml",
2168 me->save (savemode);
2169 me->setFilePath (safeFilePath);
2171 zipDir (tmpMapDir,fn);
2176 safeFilePath=me->getFilePath();
2177 me->setFilePath (fn, safeFilePath);
2178 me->save (savemode);
2179 me->setFilePath (safeFilePath);
2181 } // filepath available
2184 // We have no filepath yet,
2185 // call fileSaveAs() now, this will call fileSave()
2187 // First switch to editor
2188 tabWidget->setCurrentWidget (me);
2189 fileSaveAs(savemode);
2193 if (saveZipped && !tmpMapDir.isEmpty())
2195 removeDir (QDir(tmpMapDir));
2199 statusBar()->message(
2200 tr("Saved %1").arg(me->getFilePath()),
2202 addRecentMap (me->getFilePath() );
2204 statusBar()->message(
2205 tr("Couldn't save ").arg(me->getFilePath()),
2209 void Main::fileSave()
2211 fileSave (currentMapEditor(), CompleteMap);
2214 void Main::fileSave(MapEditor *me)
2216 fileSave (me,CompleteMap);
2219 void Main::fileSaveAs(const SaveMode& savemode)
2223 if (currentMapEditor())
2225 if (savemode==CompleteMap)
2226 fn = Q3FileDialog::getSaveFileName( QString::null, "VYM map (*.vym)", this );
2228 fn = Q3FileDialog::getSaveFileName( QString::null, "VYM part of map (*.vyp)", this );
2229 if ( !fn.isEmpty() )
2231 // Check for existing file
2232 if (QFile (fn).exists())
2234 QMessageBox mb( vymName,
2235 tr("The file %1\nexists already. Do you want to").arg(fn),
2236 QMessageBox::Warning,
2237 QMessageBox::Yes | QMessageBox::Default,
2238 QMessageBox::Cancel | QMessageBox::Escape,
2239 QMessageBox::NoButton);
2240 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
2241 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
2244 case QMessageBox::Yes:
2247 case QMessageBox::Cancel:
2254 // New file, add extension to filename, if missing
2255 // This is always .vym or .vyp, depending on savemode
2256 if (savemode==CompleteMap)
2258 if (!fn.contains (".vym") && !fn.contains (".xml"))
2262 if (!fn.contains (".vyp") && !fn.contains (".xml"))
2271 currentMapEditor()->setFilePath(fn);
2272 fileSave(currentMapEditor(), savemode);
2275 if (savemode==CompleteMap)
2276 tabWidget->setTabLabel (currentMapEditor(),
2277 currentMapEditor()->getFileName() );
2283 void Main::fileSaveAs()
2285 fileSaveAs (CompleteMap);
2288 void Main::fileImportKDEBookmarks()
2290 ImportKDEBookmarks im;
2292 if (success==fileLoad (im.getTransformedFile(),NewMap) && currentMapEditor() )
2293 currentMapEditor()->setFilePath ("");
2296 void Main::fileImportFirefoxBookmarks()
2298 Q3FileDialog *fd=new Q3FileDialog( this);
2299 fd->setDir (vymBaseDir.homeDirPath()+"/.mozilla/firefox");
2300 fd->setMode (Q3FileDialog::ExistingFiles);
2301 fd->addFilter ("Firefox "+tr("Bookmarks")+" (*.html)");
2302 fd->setCaption(tr("Import")+" "+"Firefox "+tr("Bookmarks"));
2305 if ( fd->exec() == QDialog::Accepted )
2307 ImportFirefoxBookmarks im;
2308 QStringList flist = fd->selectedFiles();
2309 QStringList::Iterator it = flist.begin();
2310 while( it != flist.end() )
2313 if (im.transform() &&
2314 success==fileLoad (im.getTransformedFile(),NewMap) &&
2315 currentMapEditor() )
2316 currentMapEditor()->setFilePath ("");
2323 void Main::fileImportMM()
2327 Q3FileDialog *fd=new Q3FileDialog( this);
2328 fd->setDir (lastFileDir);
2329 fd->setMode (Q3FileDialog::ExistingFiles);
2330 fd->addFilter ("Mind Manager (*.mmap)");
2331 fd->setCaption(tr("Import")+" "+"Mind Manager");
2334 if ( fd->exec() == QDialog::Accepted )
2336 lastFileDir=fd->dirPath();
2337 QStringList flist = fd->selectedFiles();
2338 QStringList::Iterator it = flist.begin();
2339 while( it != flist.end() )
2342 if (im.transform() &&
2343 success==fileLoad (im.getTransformedFile(),NewMap) &&
2344 currentMapEditor() )
2345 currentMapEditor()->setFilePath ("");
2354 void Main::fileImportDir()
2356 if (currentMapEditor())
2357 currentMapEditor()->importDir();
2360 void Main::fileExportXML()
2362 MapEditor *me=currentMapEditor();
2363 if (me) me->exportXML();
2367 void Main::fileExportXHTML()
2369 MapEditor *me=currentMapEditor();
2370 if (me) me->exportXHTML();
2373 void Main::fileExportImage()
2375 MapEditor *me=currentMapEditor();
2376 if (me) me->exportImage();
2379 void Main::fileExportASCII()
2381 MapEditor *me=currentMapEditor();
2382 if (me) me->exportASCII();
2385 void Main::fileExportCSV() //FIXME not scriptable yet
2387 MapEditor *me=currentMapEditor();
2391 ex.setMapCenter(me->getMapCenter());
2392 ex.addFilter ("CSV (*.csv)");
2393 ex.setDir(lastImageDir);
2394 ex.setCaption(vymName+ " -" +tr("Export as CSV")+" "+tr("(still experimental)"));
2395 if (ex.execDialog() )
2397 me->setExportMode(true);
2399 me->setExportMode(false);
2404 void Main::fileExportLaTeX() //FIXME not scriptable yet
2406 MapEditor *me=currentMapEditor();
2410 ex.setMapCenter(me->getMapCenter());
2411 ex.addFilter ("Tex (*.tex)");
2412 ex.setDir(lastImageDir);
2413 ex.setCaption(vymName+ " -" +tr("Export as LaTeX")+" "+tr("(still experimental)"));
2414 if (ex.execDialog() )
2416 me->setExportMode(true);
2418 me->setExportMode(false);
2423 void Main::fileExportKDEBookmarks() //FIXME not scriptable yet
2425 ExportKDEBookmarks ex;
2426 MapEditor *me=currentMapEditor();
2429 ex.setMapCenter (me->getMapCenter() );
2434 void Main::fileExportTaskjuggler() //FIXME not scriptable yet
2436 ExportTaskjuggler ex;
2437 MapEditor *me=currentMapEditor();
2440 ex.setMapCenter (me->getMapCenter() );
2441 ex.setCaption ( vymName+" - "+tr("Export to")+" Taskjuggler"+tr("(still experimental)"));
2442 ex.setDir(lastImageDir);
2443 ex.addFilter ("Taskjuggler (*.tjp)");
2444 if (ex.execDialog() )
2446 me->setExportMode(true);
2448 me->setExportMode(false);
2453 void Main::fileExportOOPresentation() //FIXME not scriptable yet
2455 ExportOOFileDialog *fd=new ExportOOFileDialog( this,vymName+" - "+tr("Export to")+" Open Office");
2456 // TODO add preview in dialog
2457 //ImagePreview *p =new ImagePreview (fd);
2458 //fd->setContentsPreviewEnabled( TRUE );
2459 //fd->setContentsPreview( p, p );
2460 //fd->setPreviewMode( QFileDialog::Contents );
2461 fd->setCaption(vymName+" - " +tr("Export to")+" Open Office");
2462 fd->setDir (QDir().current());
2463 if (fd->foundConfig())
2467 if ( fd->exec() == QDialog::Accepted )
2469 QString fn=fd->selectedFile();
2470 if (!fn.contains (".odp"))
2473 //lastImageDir=fn.left(fn.findRev ("/"));
2474 if (currentMapEditor())
2475 currentMapEditor()->exportOOPresentation(fn,fd->selectedConfig());
2479 QMessageBox::warning(0,
2481 tr("Couldn't find configuration for export to Open Office\n"));
2485 void Main::fileCloseMap()
2487 if (currentMapEditor())
2489 if (currentMapEditor()->hasChanged())
2491 QMessageBox mb( vymName,
2492 tr("The map %1 has been modified but not saved yet. Do you want to").arg(currentMapEditor()->getFileName()),
2493 QMessageBox::Warning,
2494 QMessageBox::Yes | QMessageBox::Default,
2496 QMessageBox::Cancel | QMessageBox::Escape );
2497 mb.setButtonText( QMessageBox::Yes, tr("Save modified map before closing it") );
2498 mb.setButtonText( QMessageBox::No, tr("Discard changes"));
2501 case QMessageBox::Yes:
2503 fileSave(currentMapEditor(), CompleteMap);
2505 case QMessageBox::No:
2506 // close without saving
2508 case QMessageBox::Cancel:
2513 currentMapEditor()->closeMap();
2514 tabWidget->removePage(currentMapEditor());
2515 if (tabWidget->count()==0)
2516 actionFilePrint->setEnabled (false);
2520 void Main::filePrint()
2522 if (currentMapEditor())
2523 currentMapEditor()->print();
2526 void Main::fileExitVYM()
2528 // Check if one or more editors have changed
2531 for (i=0;i<=tabWidget->count() -1;i++)
2534 me=(MapEditor*)tabWidget->page(i);
2536 // If something changed, ask what to do
2537 if (me->hasChanged())
2539 tabWidget->setCurrentPage(i);
2540 QMessageBox mb( vymName,
2541 tr("This map is not saved yet. Do you want to"),
2542 QMessageBox::Warning,
2543 QMessageBox::Yes | QMessageBox::Default,
2545 QMessageBox::Cancel | QMessageBox::Escape );
2546 mb.setButtonText( QMessageBox::Yes, tr("Save map") );
2547 mb.setButtonText( QMessageBox::No, tr("Discard changes") );
2550 mb.setActiveWindow();
2551 switch( mb.exec() ) {
2552 case QMessageBox::Yes:
2553 // save (the changed editors) and exit
2554 fileSave(currentMapEditor(), CompleteMap);
2556 case QMessageBox::No:
2557 // exit without saving
2559 case QMessageBox::Cancel:
2560 // don't save and don't exit
2564 } // loop over all MEs
2568 void Main::editUndo()
2570 if (currentMapEditor())
2571 currentMapEditor()->undo();
2574 void Main::editRedo()
2576 if (currentMapEditor())
2577 currentMapEditor()->redo();
2580 void Main::gotoHistoryStep (int i)
2582 if (currentMapEditor())
2583 currentMapEditor()->gotoHistoryStep (i);
2586 void Main::editCopy()
2588 if (currentMapEditor())
2589 currentMapEditor()->copy();
2592 void Main::editPaste()
2594 if (currentMapEditor())
2595 currentMapEditor()->paste();
2598 void Main::editCut()
2600 if (currentMapEditor())
2601 currentMapEditor()->cut();
2604 void Main::editOpenFindWindow()
2606 findWindow->popup();
2607 findWindow->raise();
2608 findWindow->setActiveWindow();
2611 void Main::editFind(QString s)
2614 BranchObj *bo=currentMapEditor()->findText(s, cs);
2617 statusBar()->message( "Found: " + bo->getHeading(), statusbarTime );
2620 QMessageBox::information( findWindow, tr( "VYM -Information:" ),
2621 tr("No matches found for \"%1\"").arg(s));
2625 void Main::editFindChanged()
2626 { // Notify editor, to abort the current find process
2627 currentMapEditor()->findReset();
2630 void Main::openTabs(QStringList urls)
2632 if (!urls.isEmpty())
2636 QString browser=settings.value("/mainwindow/readerURL" ).toString();
2638 if (!procBrowser || procBrowser->state()!=QProcess::Running)
2640 QString u=urls.takeFirst();
2641 procBrowser = new QProcess( this );
2643 procBrowser->start(browser,args);
2644 if ( !procBrowser->waitForStarted())
2646 // try to set path to browser
2647 QMessageBox::warning(0,
2649 tr("Couldn't find a viewer to open %1.\n").arg(u)+
2650 tr("Please use Settings->")+tr("Set application to open an URL"));
2655 if (browser.contains("konqueror"))
2657 for (int i=0; i<urls.size(); i++)
2660 // Try to open new tab in existing konqueror started previously by vym
2661 p=new QProcess (this);
2663 args<< QString("konqueror-%1").arg(procBrowser->pid())<<
2664 "konqueror-mainwindow#1"<<
2667 p->start ("dcop",args);
2668 if ( !p->waitForStarted() ) success=false;
2671 QMessageBox::warning(0,
2673 tr("Couldn't start %1 to open a new tab in %2.").arg("dcop").arg("konqueror"));
2675 } else if (browser.contains ("firefox") || browser.contains ("mozilla") )
2677 for (int i=0; i<urls.size(); i++)
2679 // Try to open new tab in firefox
2680 p=new QProcess (this);
2681 args<< "-remote"<< QString("openurl(%1,new-tab)").arg(urls.at(i));
2682 p->start (browser,args);
2683 if ( !p->waitForStarted() ) success=false;
2686 QMessageBox::warning(0,
2688 tr("Couldn't start %1 to open a new tab").arg(browser));
2691 QMessageBox::warning(0,
2693 tr("Sorry, currently only Konqueror and Mozilla support tabbed browsing."));
2697 void Main::editOpenURL()
2700 if (currentMapEditor())
2702 QString url=currentMapEditor()->getURL();
2704 if (url=="") return;
2705 QString browser=settings.value("/mainwindow/readerURL" ).toString();
2706 procBrowser = new QProcess( this );
2708 procBrowser->start(browser,args);
2709 if ( !procBrowser->waitForStarted())
2711 // try to set path to browser
2712 QMessageBox::warning(0,
2714 tr("Couldn't find a viewer to open %1.\n").arg(url)+
2715 tr("Please use Settings->")+tr("Set application to open an URL"));
2720 void Main::editOpenURLTab()
2722 if (currentMapEditor())
2725 urls.append(currentMapEditor()->getURL());
2729 void Main::editOpenMultipleURLTabs()
2731 if (currentMapEditor())
2734 urls=currentMapEditor()->getURLs();
2740 void Main::editURL()
2742 if (currentMapEditor())
2743 currentMapEditor()->editURL();
2746 void Main::editLocalURL()
2748 if (currentMapEditor())
2749 currentMapEditor()->editLocalURL();
2752 void Main::editHeading2URL()
2754 if (currentMapEditor())
2755 currentMapEditor()->editHeading2URL();
2758 void Main::editBugzilla2URL()
2760 if (currentMapEditor())
2761 currentMapEditor()->editBugzilla2URL();
2764 void Main::editFATE2URL()
2766 if (currentMapEditor())
2767 currentMapEditor()->editFATE2URL();
2770 void Main::editHeadingFinished()
2772 // only called from editHeading(), so there is a currentME
2773 MapEditor *me=currentMapEditor();
2776 me->setStateEditHeading (false);
2777 QPoint p; //Not used here, only to find out pos of branch
2779 QString s=me->getHeading(ok,p);
2781 #if defined(Q_OS_MACX)
2783 if (ok && s!=lineedit->text())
2784 me->setHeading(lineedit->text());
2786 lineedit->releaseKeyboard();
2790 if (!actionSettingsAutoSelectNewBranch->isOn() &&
2791 !prevSelection.isEmpty())
2792 me->select(prevSelection);
2797 void Main::editHeading()
2799 if (currentMapEditor())
2801 MapEditor *me=currentMapEditor();
2802 QString oldSel=me->getSelectString();
2804 if (lineedit->isVisible())
2805 editHeadingFinished();
2810 QString s=me->getHeading(ok,p);
2814 me->setStateEditHeading (true);
2815 #if defined(Q_OS_MACX)
2816 p=me->mapToGlobal (p);
2817 QDialog *d =new QDialog(NULL);
2818 QLineEdit *le=new QLineEdit (d);
2819 d->setWindowFlags (Qt::FramelessWindowHint);
2820 d->setGeometry(p.x(),p.y(),230,25);
2821 le->resize (d->width()-10,d->height());
2824 connect (le, SIGNAL (returnPressed()), d, SLOT (accept()));
2825 d->activateWindow();
2827 me->setHeading (le->text());
2830 editHeadingFinished();
2832 p=me->mapTo (this,p);
2833 lineedit->setGeometry(p.x(),p.y(),230,25);
2834 lineedit->setText(s);
2835 lineedit->setCursorPosition(1);
2836 lineedit->selectAll();
2838 lineedit->grabKeyboard();
2839 lineedit->setFocus();
2843 } // currentMapEditor()
2846 void Main::openVymLinks(const QStringList &vl)
2848 for (int j=0; j<vl.size(); j++)
2850 // compare path with already loaded maps
2854 for (i=0;i<=tabWidget->count() -1;i++)
2856 me=(MapEditor*)tabWidget->page(i);
2857 if (vl.at(j)==me->getFilePath() )
2866 if (!QFile(vl.at(j)).exists() )
2867 QMessageBox::critical( 0, tr( "Critical Error" ),
2868 tr("Couldn't open map %1").arg(vl.at(j)));
2871 fileLoad (vl.at(j), NewMap);
2872 tabWidget->setCurrentPage (tabWidget->count()-1);
2875 // Go to tab containing the map
2876 tabWidget->setCurrentPage (index);
2880 void Main::editOpenVymLink()
2882 if (currentMapEditor())
2885 vl.append(currentMapEditor()->getVymLink());
2890 void Main::editOpenMultipleVymLinks()
2892 QString currentVymLink;
2893 if (currentMapEditor())
2895 QStringList vl=currentMapEditor()->getVymLinks();
2900 void Main::editVymLink()
2902 if (currentMapEditor())
2903 currentMapEditor()->editVymLink();
2906 void Main::editDeleteVymLink()
2908 if (currentMapEditor())
2909 currentMapEditor()->deleteVymLink();
2912 void Main::editToggleHideExport()
2914 if (currentMapEditor())
2915 currentMapEditor()->toggleHideExport();
2918 void Main::editMapInfo()
2920 if (currentMapEditor())
2921 currentMapEditor()->editMapInfo();
2924 void Main::editMoveUp()
2926 if (currentMapEditor())
2927 currentMapEditor()->moveBranchUp();
2930 void Main::editMoveDown()
2932 if (currentMapEditor())
2933 currentMapEditor()->moveBranchDown();
2936 void Main::editToggleScroll()
2938 if (currentMapEditor())
2940 currentMapEditor()->toggleScroll();
2944 void Main::editUnscrollChilds()
2946 if (currentMapEditor())
2947 currentMapEditor()->unscrollChilds();
2950 void Main::editNewBranch()
2952 MapEditor *me=currentMapEditor();
2953 if (!lineedit->isVisible() && me)
2955 BranchObj *bo=(BranchObj*)me->getSelection();
2956 BranchObj *newbo=me->addNewBranch(0);
2958 prevSelection=bo->getSelectString();
2960 me->select (newbo->getSelectString());
2964 if (actionSettingsAutoEditNewBranch->isOn())
2969 if (!prevSelection.isEmpty())
2971 me->select(prevSelection);
2978 void Main::editNewBranchBefore()
2980 MapEditor *me=currentMapEditor();
2981 if (!lineedit->isVisible() && me)
2983 BranchObj *bo=(BranchObj*)me->getSelection();
2984 BranchObj *newbo=me->addNewBranchBefore();
2987 me->select (newbo->getSelectString());
2991 if (actionSettingsAutoEditNewBranch->isOn())
2993 if (!actionSettingsAutoSelectNewBranch->isOn())
2994 prevSelection=bo->getSelectString();
3000 void Main::editNewBranchAbove()
3002 MapEditor *me=currentMapEditor();
3003 if (!lineedit->isVisible() && me)
3005 BranchObj *bo=(BranchObj*)me->getSelection();
3006 BranchObj *newbo=me->addNewBranch (-1);
3009 me->select (newbo->getSelectString());
3013 if (actionSettingsAutoEditNewBranch->isOn())
3015 if (!actionSettingsAutoSelectNewBranch->isOn())
3016 prevSelection=bo->getSelectString();
3022 void Main::editNewBranchBelow()
3024 MapEditor *me=currentMapEditor();
3025 if (!lineedit->isVisible() && me)
3027 BranchObj *bo=(BranchObj*)me->getSelection();
3028 BranchObj *newbo=me->addNewBranch (1);
3031 me->select (newbo->getSelectString());
3035 if (actionSettingsAutoEditNewBranch->isOn())
3037 if (!actionSettingsAutoSelectNewBranch->isOn())
3038 prevSelection=bo->getSelectString();
3044 void Main::editImportAdd()
3046 fileLoad (ImportAdd);
3049 void Main::editImportReplace()
3051 fileLoad (ImportReplace);
3054 void Main::editSaveBranch()
3056 fileSaveAs (PartOfMap);
3059 void Main::editDeleteKeepChilds()
3061 if (currentMapEditor())
3062 currentMapEditor()->deleteKeepChilds();
3065 void Main::editDeleteChilds()
3067 if (currentMapEditor())
3068 currentMapEditor()->deleteChilds();
3071 void Main::editDeleteSelection()
3073 if (currentMapEditor() && actionSettingsUseDelKey->isOn())
3074 currentMapEditor()->deleteSelection();
3077 void Main::editUpperBranch()
3079 if (currentMapEditor())
3080 currentMapEditor()->selectUpperBranch();
3083 void Main::editLowerBranch()
3085 if (currentMapEditor())
3086 currentMapEditor()->selectLowerBranch();
3089 void Main::editLeftBranch()
3091 if (currentMapEditor())
3092 currentMapEditor()->selectLeftBranch();
3095 void Main::editRightBranch()
3097 if (currentMapEditor())
3098 currentMapEditor()->selectRightBranch();
3101 void Main::editFirstBranch()
3103 if (currentMapEditor())
3104 currentMapEditor()->selectFirstBranch();
3107 void Main::editLastBranch()
3109 if (currentMapEditor())
3110 currentMapEditor()->selectLastBranch();
3113 void Main::editLoadImage()
3115 if (currentMapEditor())
3116 currentMapEditor()->loadFloatImage();
3119 void Main::editSaveImage()
3121 if (currentMapEditor())
3122 currentMapEditor()->saveFloatImage();
3125 void Main::editFollowXLink(QAction *a)
3128 if (currentMapEditor())
3129 currentMapEditor()->followXLink(branchXLinksContextMenuFollow->actions().indexOf(a));
3132 void Main::editEditXLink(QAction *a)
3134 if (currentMapEditor())
3135 currentMapEditor()->editXLink(branchXLinksContextMenuEdit->actions().indexOf(a));
3138 void Main::formatSelectColor()
3140 if (currentMapEditor())
3142 QColor col = QColorDialog::getColor((currentColor ), this );
3143 if ( !col.isValid() ) return;
3144 colorChanged( col );
3148 void Main::formatPickColor()
3150 if (currentMapEditor())
3151 colorChanged( currentMapEditor()->getCurrentHeadingColor() );
3154 void Main::colorChanged(QColor c)
3156 QPixmap pix( 16, 16 );
3158 actionFormatColor->setIconSet( pix );
3162 void Main::formatColorBranch()
3164 if (currentMapEditor())
3165 currentMapEditor()->colorBranch(currentColor);
3168 void Main::formatColorSubtree()
3170 if (currentMapEditor())
3171 currentMapEditor()->colorSubtree (currentColor);
3174 void Main::formatLinkStyleLine()
3176 if (currentMapEditor())
3177 currentMapEditor()->setMapLinkStyle("StyleLine");
3180 void Main::formatLinkStyleParabel()
3182 if (currentMapEditor())
3183 currentMapEditor()->setMapLinkStyle("StyleParabel");
3186 void Main::formatLinkStylePolyLine()
3188 if (currentMapEditor())
3189 currentMapEditor()->setMapLinkStyle("StylePolyLine");
3192 void Main::formatLinkStylePolyParabel()
3194 if (currentMapEditor())
3195 currentMapEditor()->setMapLinkStyle("StylePolyParabel");
3198 void Main::formatSelectBackColor()
3200 if (currentMapEditor())
3201 currentMapEditor()->selectMapBackgroundColor();
3204 void Main::formatSelectBackImage()
3206 if (currentMapEditor())
3207 currentMapEditor()->selectMapBackgroundImage();
3210 void Main::formatSelectLinkColor()
3212 if (currentMapEditor())
3213 currentMapEditor()->selectMapLinkColor();
3216 void Main::formatSelectSelectionColor()
3218 if (currentMapEditor())
3219 currentMapEditor()->selectMapSelectionColor();
3222 void Main::formatToggleLinkColorHint()
3224 currentMapEditor()->toggleMapLinkColorHint();
3228 void Main::formatHideLinkUnselected() //FIXME get rid of this with imagepropertydialog
3230 if (currentMapEditor())
3231 currentMapEditor()->setHideLinkUnselected(actionFormatHideLinkUnselected->isOn());
3234 void Main::viewZoomReset()
3236 if (currentMapEditor())
3240 currentMapEditor()->setMatrix( m );
3244 void Main::viewZoomIn()
3246 if (currentMapEditor())
3248 QMatrix m = currentMapEditor()->matrix();
3249 m.scale( 1.25, 1.25 );
3250 currentMapEditor()->setMatrix( m );
3254 void Main::viewZoomOut()
3256 if (currentMapEditor())
3258 QMatrix m = currentMapEditor()->matrix();
3259 m.scale( 0.8, 0.8 );
3260 currentMapEditor()->setMatrix( m );
3264 void Main::viewCenter()
3266 MapEditor *me=currentMapEditor();
3269 me->ensureSelectionVisible();
3273 void Main::networkStartServer()
3275 MapEditor *me=currentMapEditor();
3276 if (me) me->newServer();
3279 void Main::networkConnect()
3281 MapEditor *me=currentMapEditor();
3282 if (me) me->connectToServer();
3285 bool Main::settingsPDF()
3287 // Default browser is set in constructor
3289 QString text = QInputDialog::getText(
3290 "VYM", tr("Set application to open PDF files")+":", QLineEdit::Normal,
3291 settings.value("/mainwindow/readerPDF").toString(), &ok, this );
3293 settings.setValue ("/mainwindow/readerPDF",text);
3298 bool Main::settingsURL()
3300 // Default browser is set in constructor
3302 QString text = QInputDialog::getText(
3303 "VYM", tr("Set application to open an URL")+":", QLineEdit::Normal,
3304 settings.value("/mainwindow/readerURL").toString()
3307 settings.setValue ("/mainwindow/readerURL",text);
3311 void Main::settingsMacroDir()
3313 QDir defdir=vymBaseDir;
3314 defdir.cd("macros");
3315 if (!defdir.exists())
3317 QDir dir=QFileDialog::getExistingDirectory (
3319 tr ("Directory with vym macros:"),
3320 settings.value ("/macros/macroDir",defdir.path()).toString()
3323 settings.setValue ("/macros/macroDir",dir.path());
3326 void Main::settingsUndoLevels()
3329 int i = QInputDialog::getInteger(
3331 tr("QInputDialog::getInteger()"),
3332 tr("Number of undo/redo levels:"), settings.value("/mapeditor/stepsTotal").toInt(), 0, 1000, 1, &ok);
3335 settings.setValue ("/mapeditor/stepsTotal",i);
3336 QMessageBox::information( this, tr( "VYM -Information:" ),
3337 tr("Settings have been changed. The next map opened will have \"%1\" undo/redo levels").arg(i));
3341 void Main::settingsAutosaveToggle()
3343 settings.setValue ("/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
3346 void Main::settingsAutosaveTime()
3349 int i = QInputDialog::getInteger(
3351 tr("QInputDialog::getInteger()"),
3352 tr("Number of seconds before autosave:"), settings.value("/mapeditor/autosave/ms").toInt() / 1000, 10, 10000, 1, &ok);
3355 settings.setValue ("/mapeditor/autosave/ms",i * 1000);
3359 void Main::settingsToggleDelKey()
3361 if (actionSettingsUseDelKey->isOn())
3363 actionEditDelete->setAccel (QKeySequence (Qt::Key_Delete));
3366 actionEditDelete->setAccel (QKeySequence (""));
3370 void Main::windowToggleNoteEditor()
3372 if (textEditor->isVisible() )
3373 windowHideNoteEditor();
3375 windowShowNoteEditor();
3378 void Main::windowToggleHistory()
3380 if (historyWindow->isVisible())
3381 historyWindow->hide();
3383 historyWindow->show();
3387 void Main::windowToggleProperty()
3389 if (branchPropertyWindow->isVisible())
3390 branchPropertyWindow->hide();
3392 branchPropertyWindow->show();
3394 if(currentMapEditor())
3396 LinkableMapObj *sel=currentMapEditor()->getSelection();
3397 if (sel && (typeid(*sel) == typeid(BranchObj) ||
3398 typeid(*sel) == typeid(MapCenterObj)))
3400 branchPropertyWindow->setMapEditor(currentMapEditor());
3401 branchPropertyWindow->setBranch((BranchObj*)sel);
3406 branchPropertyWindow->setBranch(NULL);
3409 void Main::windowToggleAntiAlias()
3411 bool b=actionViewToggleAntiAlias->isOn();
3413 for (int i=0;i<tabWidget->count();i++)
3416 me=(MapEditor*)tabWidget->page(i);
3417 me->setAntiAlias(b);
3422 void Main::windowToggleSmoothPixmap()
3424 bool b=actionViewToggleSmoothPixmapTransform->isOn();
3426 for (int i=0;i<tabWidget->count();i++)
3429 me=(MapEditor*)tabWidget->page(i);
3430 me->setSmoothPixmap(b);
3434 void Main::updateHistory(SimpleSettings &undoSet)
3436 historyWindow->update (undoSet);
3439 void Main::updateNoteFlag()
3441 if (currentMapEditor())
3442 currentMapEditor()->updateNoteFlag();
3445 void Main::updateSatellites(MapEditor *me)
3447 branchPropertyWindow->setMapEditor (me);
3450 void Main::updateActions()
3452 MapEditor *me=currentMapEditor();
3455 historyWindow->setCaption (vymName + " - " +tr("History for %1","Window Caption").arg(currentMapEditor()->getFileName()));
3457 // updateActions is also called when NoteEditor is closed
3458 actionViewToggleNoteEditor->setOn (textEditor->isVisible());
3459 actionViewToggleHistoryWindow->setOn (historyWindow->isVisible());
3460 actionViewTogglePropertyWindow->setOn (branchPropertyWindow->isVisible());
3462 if (me->getMapLinkColorHint()==LinkableMapObj::HeadingColor)
3463 actionFormatLinkColorHint->setOn(true);
3465 actionFormatLinkColorHint->setOn(false);
3467 switch (me->getMapLinkStyle())
3469 case LinkableMapObj::Line:
3470 actionFormatLinkStyleLine->setOn(true);
3472 case LinkableMapObj::Parabel:
3473 actionFormatLinkStyleParabel->setOn(true);
3475 case LinkableMapObj::PolyLine:
3476 actionFormatLinkStylePolyLine->setOn(true);
3478 case LinkableMapObj::PolyParabel:
3479 actionFormatLinkStylePolyParabel->setOn(true);
3486 QPixmap pix( 16, 16 );
3487 pix.fill( me->getMapBackgroundColor() );
3488 actionFormatBackColor->setIconSet( pix );
3489 pix.fill( me->getSelectionColor() );
3490 actionFormatSelectionColor->setIconSet( pix );
3491 pix.fill( me->getMapDefLinkColor() );
3492 actionFormatLinkColor->setIconSet( pix );
3495 actionFileSave->setEnabled( me->hasChanged() );
3496 if (me->isUndoAvailable())
3497 actionEditUndo->setEnabled( true);
3499 actionEditUndo->setEnabled( false);
3501 if (me->isRedoAvailable())
3502 actionEditRedo->setEnabled( true);
3504 actionEditRedo->setEnabled( false);
3506 LinkableMapObj *selection=me->getSelection();
3509 if ( (typeid(*selection) == typeid(BranchObj)) ||
3510 (typeid(*selection) == typeid(MapCenterObj)) )
3512 BranchObj *bo=(BranchObj*)selection;
3513 // Take care of links
3514 if (bo->countXLinks()==0)
3516 branchXLinksContextMenuEdit->clear();
3517 branchXLinksContextMenuFollow->clear();
3522 branchXLinksContextMenuEdit->clear();
3523 branchXLinksContextMenuFollow->clear();
3524 for (int i=0; i<=bo->countXLinks();i++)
3526 bot=bo->XLinkTargetAt(i);
3529 s=bot->getHeading();
3532 branchXLinksContextMenuFollow->addAction (s);
3533 branchXLinksContextMenuEdit->addAction (s);
3538 standardFlagsDefault->setEnabled (true);
3540 actionEditToggleScroll->setEnabled (true);
3541 if ( bo->isScrolled() )
3542 actionEditToggleScroll->setOn(true);
3544 actionEditToggleScroll->setOn(false);
3546 if ( bo->getURL().isEmpty() )
3548 actionEditOpenURL->setEnabled (false);
3549 actionEditOpenURLTab->setEnabled (false);
3553 actionEditOpenURL->setEnabled (true);
3554 actionEditOpenURLTab->setEnabled (true);
3556 if ( bo->getVymLink().isEmpty() )
3558 actionEditOpenVymLink->setEnabled (false);
3559 actionEditDeleteVymLink->setEnabled (false);
3562 actionEditOpenVymLink->setEnabled (true);
3563 actionEditDeleteVymLink->setEnabled (true);
3566 if (bo->canMoveBranchUp())
3567 actionEditMoveUp->setEnabled (true);
3569 actionEditMoveUp->setEnabled (false);
3570 if (bo->canMoveBranchDown())
3571 actionEditMoveDown->setEnabled (true);
3573 actionEditMoveDown->setEnabled (false);
3576 actionEditToggleHideExport->setEnabled (true);
3577 actionEditToggleHideExport->setOn (bo->hideInExport() );
3579 actionEditCopy->setEnabled (true);
3580 actionEditCut->setEnabled (true);
3581 if (!clipboardEmpty)
3582 actionEditPaste->setEnabled (true);
3584 actionEditPaste->setEnabled (false);
3585 for (int i=0; i<actionListBranches.size(); ++i)
3586 actionListBranches.at(i)->setEnabled(true);
3587 actionEditDelete->setEnabled (true);
3588 actionFormatHideLinkUnselected->setOn
3589 (selection->getHideLinkUnselected());
3591 if ( (typeid(*selection) == typeid(FloatImageObj)) )
3593 FloatObj *fo=(FloatImageObj*)selection;
3595 actionEditOpenURL->setEnabled (false);
3596 actionEditOpenVymLink->setEnabled (false);
3597 actionEditDeleteVymLink->setEnabled (false);
3598 actionEditToggleHideExport->setEnabled (true);
3599 actionEditToggleHideExport->setOn (fo->hideInExport() );
3602 actionEditCopy->setEnabled (true);
3603 actionEditCut->setEnabled (true);
3604 actionEditPaste->setEnabled (false);
3605 for (int i=0; i<actionListBranches.size(); ++i)
3606 actionListBranches.at(i)->setEnabled(false);
3607 actionEditDelete->setEnabled (true);
3608 actionFormatHideLinkUnselected->setOn
3609 ( selection->getHideLinkUnselected());
3610 actionEditMoveUp->setEnabled (false);
3611 actionEditMoveDown->setEnabled (false);
3616 actionEditCopy->setEnabled (false);
3617 actionEditCut->setEnabled (false);
3618 actionEditPaste->setEnabled (false);
3619 for (int i=0; i<actionListBranches.size(); ++i)
3620 actionListBranches.at(i)->setEnabled(false);
3622 actionEditToggleScroll->setEnabled (false);
3623 actionEditOpenURL->setEnabled (false);
3624 actionEditOpenVymLink->setEnabled (false);
3625 actionEditDeleteVymLink->setEnabled (false);
3626 actionEditHeading2URL->setEnabled (false);
3627 actionEditDelete->setEnabled (false);
3628 actionEditMoveUp->setEnabled (false);
3629 actionEditMoveDown->setEnabled (false);
3630 actionEditToggleHideExport->setEnabled (false);
3634 Main::ModMode Main::getModMode()
3636 if (actionModModeColor->isOn()) return ModModeColor;
3637 if (actionModModeCopy->isOn()) return ModModeCopy;
3638 if (actionModModeXLink->isOn()) return ModModeXLink;
3642 bool Main::autoEditNewBranch()
3644 return actionSettingsAutoEditNewBranch->isOn();
3647 bool Main::autoSelectNewBranch()
3649 return actionSettingsAutoSelectNewBranch->isOn();
3652 bool Main::useFlagGroups()
3654 return actionSettingsUseFlagGroups->isOn();
3657 void Main::windowShowNoteEditor()
3659 textEditor->setShowWithMain(true);
3661 actionViewToggleNoteEditor->setOn (true);
3664 void Main::windowHideNoteEditor()
3666 textEditor->setShowWithMain(false);
3668 actionViewToggleNoteEditor->setOn (false);
3671 void Main::setScript (const QString &script)
3673 scriptEditor->setScript (script);
3676 void Main::runScript (const QString &script)
3678 if (currentMapEditor())
3679 currentMapEditor()->runScript (script);
3682 void Main::runScriptEverywhere (const QString &script)
3685 for (int i=0;i<=tabWidget->count() -1;i++)
3687 me=(MapEditor*)tabWidget->page(i);
3688 if (me) me->runScript (script);
3692 void Main::windowNextEditor()
3694 if (tabWidget->currentPageIndex() < tabWidget->count())
3695 tabWidget->setCurrentPage (tabWidget->currentPageIndex() +1);
3698 void Main::windowPreviousEditor()
3700 if (tabWidget->currentPageIndex() >0)
3701 tabWidget->setCurrentPage (tabWidget->currentPageIndex() -1);
3704 void Main::standardFlagChanged()
3706 if (currentMapEditor())
3707 currentMapEditor()->toggleStandardFlag(sender()->name());
3710 void Main::testFunction1()
3712 if (!currentMapEditor()) return;
3713 currentMapEditor()->testFunction1();
3716 void Main::testFunction2()
3718 if (!currentMapEditor()) return;
3719 currentMapEditor()->testFunction2();
3722 void Main::testCommand()
3724 if (!currentMapEditor()) return;
3725 scriptEditor->show();
3728 QString com = QInputDialog::getText(
3729 vymName, "Enter Command:", QLineEdit::Normal,"command", &ok, this );
3730 if (ok) currentMapEditor()->parseAtom(com);
3734 void Main::helpDoc()
3736 QString locale = QLocale::system().name();
3738 if (locale.left(2)=="es")
3739 docname="vym_es.pdf";
3743 QStringList searchList;
3745 #if defined(Q_OS_MACX)
3746 searchList << "./vym.app/Contents/Resources/doc";
3748 // default path in SUSE LINUX
3749 searchList <<"/usr/share/doc/packages/vym/doc";
3752 searchList << "doc"; // relative path for easy testing in tarball
3753 searchList << "doc/tex"; // Easy testing working on vym.tex
3754 searchList << "/usr/share/doc/vym"; // Debian
3755 searchList << "/usr/share/doc/packages";// Knoppix
3759 for (int i=0; i<searchList.count(); ++i)
3761 docfile.setFileName(QDir::convertSeparators(searchList.at(i)+"/"+docname));
3762 if (docfile.exists() )
3771 QMessageBox::critical(0,
3772 tr("Critcal error"),
3773 tr("Couldn't find the documentation %1 in:\n%2").arg(searchList.join("\n")));
3778 Process *pdfProc = new Process();
3779 args <<docfile.fileName();
3781 pdfProc->start( settings.value("/mainwindow/readerPDF").toString(),args);
3782 if ( !pdfProc->waitForStarted() )
3785 QMessageBox::warning(0,
3787 tr("Couldn't find a viewer to open %1.\n").arg(docfile.fileName())+
3788 tr("Please use Settings->")+tr("Set application to open PDF files"));
3795 void Main::helpDemo()
3797 QStringList filters;
3798 filters <<"VYM example map (*.vym)";
3799 QFileDialog *fd=new QFileDialog( this);
3800 fd->setDir (QDir(vymBaseDir.path()+"/demos"));
3801 fd->setFileMode (QFileDialog::ExistingFiles);
3802 fd->setFilters (filters);
3803 fd->setCaption(vymName+ " - " +tr("Load vym example map"));
3807 if ( fd->exec() == QDialog::Accepted )
3809 lastFileDir=fd->directory().path();
3810 QStringList flist = fd->selectedFiles();
3811 QStringList::Iterator it = flist.begin();
3812 while( it != flist.end() )
3815 fileLoad(*it, NewMap);
3823 void Main::helpAbout()
3826 ad.setName ("aboutwindow");
3827 ad.setMinimumSize(500,500);
3828 ad.resize (QSize (500,500));
3832 void Main::helpAboutQT()
3834 QMessageBox::aboutQt( this, "Qt Application Example" );
3837 void Main::callMacro ()
3839 QAction *action = qobject_cast<QAction *>(sender());
3843 i=action->data().toInt();
3844 QString mDir (settings.value ("macros/macroDir").toString() );
3846 QString fn=mDir + QString("/macro-%1.vys").arg(i+1);
3848 if ( !f.open( QIODevice::ReadOnly ) )
3850 QMessageBox::warning(0,
3852 tr("Couldn't find a macro at %1.\n").arg(fn)+
3853 tr("Please use Settings->")+tr("Set directory for vym macros"));
3857 QTextStream ts( &f );
3858 QString m= ts.read();
3862 //cout <<"Main::callMacro m="<<m.ascii()<<endl;
3863 currentMapEditor()->runScript (m);