1 #include "mainwindow.h"
8 #include "aboutdialog.h"
9 #include "branchpropwindow.h"
10 #include "exportoofiledialog.h"
13 #include "flagrowobj.h"
14 #include "historywindow.h"
16 #include "mapeditor.h"
21 #include "texteditor.h"
22 #include "warningdialog.h"
24 #if defined(Q_OS_WIN32)
25 // Define only this structure as opposed to
26 // including full 'windows.h'. FindWindow
27 // clashes with the one in Win32 API.
28 typedef struct _PROCESS_INFORMATION
34 } PROCESS_INFORMATION, *LPPROCESS_INFORMATION;
37 extern TextEditor *textEditor;
38 extern Main *mainWindow;
39 extern QString tmpVymDir;
40 extern QString clipboardDir;
41 extern QString clipboardFile;
42 extern bool clipboardEmpty;
43 extern int statusbarTime;
44 extern FlagRowObj* standardFlagsDefault;
45 extern FlagRowObj* systemFlagsDefault;
46 extern QString vymName;
47 extern QString vymVersion;
48 extern QString vymBuildDate;
51 QMenu* branchContextMenu;
52 QMenu* branchAddContextMenu;
53 QMenu* branchRemoveContextMenu;
54 QMenu* branchLinksContextMenu;
55 QMenu* branchXLinksContextMenuEdit;
56 QMenu* branchXLinksContextMenuFollow;
57 QMenu* floatimageContextMenu;
58 QMenu* canvasContextMenu;
59 QMenu* fileLastMapsMenu;
60 QMenu* fileImportMenu;
61 QMenu* fileExportMenu;
64 extern Settings settings;
65 extern Options options;
66 extern ImageIO imageIO;
68 extern QDir vymBaseDir;
69 extern QDir lastImageDir;
70 extern QDir lastFileDir;
71 #if defined(Q_OS_WIN32)
72 extern QDir vymInstallDir;
74 extern QString iconPath;
75 extern QString flagsPath;
78 Main::Main(QWidget* parent, const char* name, Qt::WFlags f) :
79 QMainWindow(parent,name,f)
83 setCaption ("VYM - View Your Mind");
85 // Load window settings
86 #if defined(Q_OS_WIN32)
87 if (settings.value("/mainwindow/geometry/maximized", false).toBool())
89 setWindowState(Qt::WindowMaximized);
94 resize (settings.value("/mainwindow/geometry/size", QSize (800,600)).toSize());
95 move (settings.value("/mainwindow/geometry/pos", QPoint(300,100)).toPoint());
98 // Sometimes we may need to remember old selections
102 currentColor=Qt::black;
104 // Create unique temporary directory
106 tmpVymDir=makeTmpDir (ok,"vym");
109 qWarning ("Mainwindow: Could not create temporary directory, failed to start vym");
112 if (debug) qDebug (QString("vym tmpDir=%1").arg(tmpVymDir) );
114 // Create direcctory for clipboard
115 clipboardDir=tmpVymDir+"/clipboard";
116 clipboardFile="map.xml";
117 QDir d(clipboardDir);
118 d.mkdir (clipboardDir,true);
119 makeSubDirs (clipboardDir);
124 // Satellite windows //////////////////////////////////////////
127 historyWindow=new HistoryWindow();
128 connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
131 branchPropertyWindow = new BranchPropertyWindow();
132 connect (branchPropertyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
134 // Connect TextEditor, so that we can update flags if text changes
135 connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag()));
136 connect (textEditor, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
138 // Connect HistoryWindow, so that we can update flags
139 connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
142 // Initialize script editor
143 scriptEditor = new SimpleScriptEditor();
144 scriptEditor->move (50,50);
146 connect( scriptEditor, SIGNAL( runScript ( QString ) ),
147 this, SLOT( runScript( QString ) ) );
150 // Initialize Find window
151 findWindow=new FindWindow(NULL);
152 findWindow->move (x(),y()+70);
153 connect (findWindow, SIGNAL( findButton(QString) ),
154 this, SLOT(editFind(QString) ) );
155 connect (findWindow, SIGNAL( somethingChanged() ),
156 this, SLOT(editFindChanged() ) );
158 // Initialize some settings, which are platform dependant
161 // application to open URLs
162 p="/mainwindow/readerURL";
163 #if defined(Q_OS_LINUX)
164 s=settings.value (p,"xdg-open").toString();
166 #if defined(Q_OS_MACX)
167 s=settings.value (p,"/usr/bin/open").toString();
170 #if defined(Q_OS_WIN32)
171 // Assume that system has been set up so that
172 // Explorer automagically opens up the URL
173 // in the user's preferred browser.
174 s=settings.value (p,"explorer").toString();
176 s=settings.value (p,"mozilla").toString();
180 settings.setValue( p,s);
182 // application to open PDFs
183 p="/mainwindow/readerPDF";
184 #if defined(Q_OS_LINUX)
185 s=settings.value (p,"xdg-open").toString();
187 #if defined(Q_OS_MACX)
188 s=settings.value (p,"/usr/bin/open").toString();
189 #elif defined(Q_OS_WIN32)
190 s=settings.value (p,"acrord32").toString();
192 s=settings.value (p,"acroread").toString();
195 settings.setValue( p,s);
197 // width of xLinksMenu
200 // Create tab widget which holds the maps
201 tabWidget= new QTabWidget (this);
202 connect( tabWidget, SIGNAL( currentChanged( QWidget * ) ),
203 this, SLOT( editorChanged( QWidget * ) ) );
205 setCentralWidget(tabWidget);
209 setupFormatActions();
213 setupNetworkActions();
214 setupSettingsActions();
217 if (settings.value( "/mainwindow/showTestMenu",false).toBool()) setupTestActions();
222 restoreState (settings.value("/mainwindow/state",0).toByteArray());
230 #if defined(Q_OS_WIN32)
231 settings.setValue ("/mainwindow/geometry/maximized", isMaximized());
233 settings.setValue ("/mainwindow/geometry/size", size());
234 settings.setValue ("/mainwindow/geometry/pos", pos());
235 settings.setValue ("/mainwindow/state",saveState(0));
237 settings.setValue ("/mainwindow/view/AntiAlias",actionViewToggleAntiAlias->isOn());
238 settings.setValue ("/mainwindow/view/SmoothPixmapTransform",actionViewToggleSmoothPixmapTransform->isOn());
239 settings.setValue( "/version/version", vymVersion );
240 settings.setValue( "/version/builddate", vymBuildDate );
242 settings.setValue( "/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
243 settings.setValue( "/mapeditor/editmode/autoSelectNewBranch",actionSettingsAutoSelectNewBranch->isOn() );
244 settings.setValue( "/mainwindow/writeBackupFile",actionSettingsWriteBackupFile->isOn() );
245 settings.setValue( "/mapeditor/editmode/autoSelectText",actionSettingsAutoSelectText->isOn() );
246 settings.setValue( "/mapeditor/editmode/autoEditNewBranch",actionSettingsAutoEditNewBranch->isOn() );
247 settings.setValue( "/mapeditor/editmode/useDelKey",actionSettingsUseDelKey->isOn() );
248 settings.setValue( "/mapeditor/editmode/useFlagGroups",actionSettingsUseFlagGroups->isOn() );
249 settings.setValue( "/export/useHideExport",actionSettingsUseHideExport->isOn() );
251 //TODO save scriptEditor settings
253 // call the destructors
255 delete historyWindow;
256 delete branchPropertyWindow;
258 // Remove temporary directory
259 removeDir (QDir(tmpVymDir));
262 void Main::loadCmdLine()
264 /* TODO draw some kind of splashscreen while loading...
270 QStringList flist=options.getFileList();
271 QStringList::Iterator it=flist.begin();
273 while (it !=flist.end() )
275 fileLoad (*it, NewMap);
281 void Main::statusMessage(const QString &s)
283 statusBar()->message( s);
286 void Main::closeEvent (QCloseEvent* )
292 void Main::setupFileActions()
294 QMenu *fileMenu = menuBar()->addMenu ( tr ("&Map") );
295 QToolBar *tb = addToolBar( tr ("&Map") );
296 tb->setObjectName ("mapTB");
299 a = new QAction(QPixmap( iconPath+"filenew.png"), tr( "&New map","File menu" ),this);
300 a->setStatusTip ( tr( "New map","Status tip File menu" ) );
301 a->setShortcut ( Qt::CTRL + Qt::Key_N ); //New map
303 fileMenu->addAction (a);
304 connect( a, SIGNAL( triggered() ), this, SLOT( fileNew() ) );
306 a = new QAction(QPixmap( iconPath+"filenewcopy.png"), tr( "&Copy to new map","File menu" ),this);
307 a->setStatusTip ( tr( "Copy selection to mapcenter of a new map","Status tip File menu" ) );
308 a->setShortcut ( Qt::CTRL +Qt::SHIFT + Qt::Key_N ); //New map
309 fileMenu->addAction (a);
310 connect( a, SIGNAL( triggered() ), this, SLOT( fileNewCopy() ) );
313 a = new QAction( QPixmap( iconPath+"fileopen.png"), tr( "&Open..." ,"File menu"),this);
314 a->setStatusTip (tr( "Open","Status tip File menu" ) );
315 a->setShortcut ( Qt::CTRL + Qt::Key_O ); //Open map
317 fileMenu->addAction (a);
318 connect( a, SIGNAL( triggered() ), this, SLOT( fileLoad() ) );
320 fileLastMapsMenu = fileMenu->addMenu (tr("Open Recent","File menu"));
321 fileMenu->addSeparator();
323 a = new QAction( QPixmap( iconPath+"filesave.png"), tr( "&Save...","File menu" ), this);
324 a->setStatusTip ( tr( "Save","Status tip file menu" ));
325 a->setShortcut (Qt::CTRL + Qt::Key_S ); //Save map
327 fileMenu->addAction (a);
328 connect( a, SIGNAL( triggered() ), this, SLOT( fileSave() ) );
331 a = new QAction( QPixmap(iconPath+"filesaveas.png"), tr( "Save &As...","File menu" ), this);
332 a->setStatusTip (tr( "Save &As","Status tip file menu" ) );
333 fileMenu->addAction (a);
334 connect( a, SIGNAL( triggered() ), this, SLOT( fileSaveAs() ) );
336 fileMenu->addSeparator();
338 fileImportMenu = fileMenu->addMenu (tr("Import","File menu"));
340 a = new QAction(tr("KDE Bookmarks"), this);
341 a->setStatusTip ( tr( "Import %1","Status tip file menu" ).arg(tr("KDE bookmarks")));
342 a->addTo (fileImportMenu);
343 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportKDEBookmarks() ) );
345 if (settings.value( "/mainwindow/showTestMenu",false).toBool())
347 a = new QAction( QPixmap(), tr("Firefox Bookmarks","File menu"),this);
348 a->setStatusTip (tr( "Import %1","Status tip file menu").arg(tr("Firefox Bookmarks" ) ));
349 a->addTo (fileImportMenu);
350 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportFirefoxBookmarks() ) );
353 a = new QAction("Freemind...",this);
354 a->setStatusTip ( tr( "Import %1","status tip file menu").arg(" Freemind") );
355 fileImportMenu->addAction (a);
356 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportFreemind() ) );
358 a = new QAction("Mind Manager...",this);
359 a->setStatusTip ( tr( "Import %1","status tip file menu").arg(" Mind Manager") );
360 fileImportMenu->addAction (a);
361 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportMM() ) );
363 a = new QAction( tr( "Import Dir%1","File menu").arg("..."), this);
364 a->setStatusTip (tr( "Import directory structure (experimental)","status tip file menu" ) );
365 fileImportMenu->addAction (a);
366 connect( a, SIGNAL( triggered() ), this, SLOT( fileImportDir() ) );
368 fileExportMenu = fileMenu->addMenu (tr("Export","File menu"));
370 a = new QAction( tr("Image%1","File export menu").arg("..."), this);
371 a->setStatusTip( tr( "Export map as image","status tip file menu" ));
372 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportImage() ) );
373 fileExportMenu->addAction (a);
375 a = new QAction( "Open Office...", this);
376 a->setStatusTip( tr( "Export in Open Document Format used e.g. in Open Office ","status tip file menu" ));
377 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportOOPresentation() ) );
378 fileExportMenu->addAction (a);
380 a = new QAction( "Webpage (XHTML)...",this );
381 a->setShortcut (Qt::ALT + Qt::Key_X); //Export XHTML
382 a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (XHTML)","status tip file menu")));
383 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXHTML() ) );
384 fileExportMenu->addAction (a);
386 a = new QAction( "Text (ASCII)...", this);
387 a->setStatusTip ( tr( "Export as %1").arg("ASCII "+tr("(still experimental)" )));
388 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportASCII() ) );
389 fileExportMenu->addAction (a);
391 a = new QAction( "Spreadsheet (CSV)...", this);
392 a->setStatusTip ( tr( "Export as %1").arg("CSV "+tr("(still experimental)" )));
393 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportCSV() ) );
394 fileExportMenu->addAction (a);
396 a = new QAction( tr("KDE Bookmarks","File menu"), this);
397 a->setStatusTip( tr( "Export as %1").arg(tr("KDE Bookmarks" )));
398 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportKDEBookmarks() ) );
399 fileExportMenu->addAction (a);
401 a = new QAction( "Taskjuggler...", this );
402 a->setStatusTip( tr( "Export as %1").arg("Taskjuggler "+tr("(still experimental)" )));
403 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportTaskjuggler() ) );
404 fileExportMenu->addAction (a);
406 a = new QAction( "LaTeX...", this);
407 a->setStatusTip( tr( "Export as %1").arg("LaTeX "+tr("(still experimental)" )));
408 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportLaTeX() ) );
409 fileExportMenu->addAction (a);
411 a = new QAction( "XML..." , this );
412 a->setStatusTip (tr( "Export as %1").arg("XML"));
413 connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXML() ) );
414 fileExportMenu->addAction (a);
416 fileMenu->addSeparator();
418 a = new QAction(QPixmap( iconPath+"fileprint.png"), tr( "&Print")+QString("..."), this);
419 a->setStatusTip ( tr( "Print" ,"File menu") );
420 a->setShortcut (Qt::CTRL + Qt::Key_P ); //Print map
422 fileMenu->addAction (a);
423 connect( a, SIGNAL( triggered() ), this, SLOT( filePrint() ) );
426 a = new QAction( QPixmap(iconPath+"fileclose.png"), tr( "&Close Map","File menu" ), this);
427 a->setStatusTip (tr( "Close Map" ) );
428 a->setShortcut (Qt::CTRL + Qt::Key_W ); //Close map
429 fileMenu->addAction (a);
430 connect( a, SIGNAL( triggered() ), this, SLOT( fileCloseMap() ) );
432 a = new QAction(QPixmap(iconPath+"exit.png"), tr( "E&xit","File menu")+" "+vymName, this);
433 a->setStatusTip ( tr( "Exit")+" "+vymName );
434 a->setShortcut (Qt::CTRL + Qt::Key_Q ); //Quit vym
435 fileMenu->addAction (a);
436 connect( a, SIGNAL( triggered() ), this, SLOT( fileExitVYM() ) );
441 void Main::setupEditActions()
443 QToolBar *tb = addToolBar( tr ("&Actions toolbar","Toolbar name") );
444 tb->setLabel( "Edit Actions" );
445 tb->setObjectName ("actionsTB");
446 QMenu *editMenu = menuBar()->addMenu( tr("&Edit","Edit menu") );
450 a = new QAction( QPixmap( iconPath+"undo.png"), tr( "&Undo","Edit menu" ),this);
451 connect( a, SIGNAL( triggered() ), this, SLOT( editUndo() ) );
452 a->setStatusTip (tr( "Undo" ) );
453 a->setShortcut ( Qt::CTRL + Qt::Key_Z ); //Undo last action
454 a->setEnabled (false);
456 editMenu->addAction (a);
459 a = new QAction( QPixmap( iconPath+"redo.png"), tr( "&Redo","Edit menu" ), this);
460 a->setStatusTip (tr( "Redo" ));
461 a->setShortcut (Qt::CTRL + Qt::Key_Y ); //Redo last action
463 editMenu->addAction (a);
464 connect( a, SIGNAL( triggered() ), this, SLOT( editRedo() ) );
467 editMenu->addSeparator();
468 a = new QAction(QPixmap( iconPath+"editcopy.png"), tr( "&Copy","Edit menu" ), this);
469 a->setStatusTip ( tr( "Copy" ) );
470 a->setShortcut (Qt::CTRL + Qt::Key_C ); //Copy
471 a->setEnabled (false);
473 editMenu->addAction (a);
474 connect( a, SIGNAL( triggered() ), this, SLOT( editCopy() ) );
477 a = new QAction(QPixmap( iconPath+"editcut.png" ), tr( "Cu&t","Edit menu" ), this);
478 a->setStatusTip ( tr( "Cut" ) );
479 a->setShortcut (Qt::CTRL + Qt::Key_X ); //Cut
480 a->setEnabled (false);
482 editMenu->addAction (a);
484 connect( a, SIGNAL( triggered() ), this, SLOT( editCut() ) );
486 a = new QAction(QPixmap( iconPath+"editpaste.png"), tr( "&Paste","Edit menu" ),this);
487 connect( a, SIGNAL( triggered() ), this, SLOT( editPaste() ) );
488 a->setStatusTip ( tr( "Paste" ) );
489 a->setShortcut ( Qt::CTRL + Qt::Key_V ); //Paste
490 a->setEnabled (false);
492 editMenu->addAction (a);
496 // Shortcuts to modify heading:
497 a = new QAction(tr( "Edit heading","Edit menu" ),this);
498 a->setStatusTip ( tr( "edit Heading" ));
499 a->setShortcut ( Qt::Key_Enter); //Edit heading
500 // a->setShortcutContext (Qt::WindowShortcut);
502 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
503 actionListBranches.append(a);
504 a = new QAction( tr( "Edit heading","Edit menu" ), this);
505 a->setStatusTip (tr( "edit Heading" ));
506 a->setShortcut (Qt::Key_Return ); //Edit heading
507 //a->setShortcutContext (Qt::WindowShortcut);
509 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
510 actionListBranches.append(a);
511 editMenu->addAction (a);
514 a = new QAction( tr( "Edit heading","Edit menu" ), this);
515 a->setStatusTip (tr( "edit Heading" ));
516 //a->setShortcut ( Qt::Key_F2 ); //Edit heading
517 a->setShortcutContext (Qt::WindowShortcut);
519 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
520 actionListBranches.append(a);
523 // Shortcut to delete selection
524 a = new QAction( tr( "Delete Selection","Edit menu" ),this);
525 a->setStatusTip (tr( "Delete Selection" ));
526 a->setShortcut ( Qt::Key_Delete); //Delete selection
527 a->setShortcutContext (Qt::WindowShortcut);
529 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteSelection() ) );
532 // Shortcut to add mapcenter
533 a= new QAction(tr( "Add mapcenter","Canvas context menu" ), this);
534 connect( a, SIGNAL( triggered() ), this, SLOT( editAddMapCenter() ) );
535 actionAddMapCenter = a;
538 // Shortcut to add branch
539 alt = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
540 alt->setStatusTip ( tr( "Add a branch as child of selection" ));
541 alt->setShortcut (Qt::Key_A); //Add branch
542 alt->setShortcutContext (Qt::WindowShortcut);
544 connect( alt, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
545 a = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
546 a->setStatusTip ( tr( "Add a branch as child of selection" ));
547 a->setShortcut (Qt::Key_Insert); //Add branch
548 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
549 actionListBranches.append(a);
550 #if defined (Q_OS_MACX)
551 // In OSX show different shortcut in menues, the keys work indepently always
556 editMenu->addAction (actionAddBranch);
557 tb->addAction (actionAddBranch);
560 // Add branch by inserting it at selection
561 a = new QAction(tr( "Add branch (insert)","Edit menu" ), this);
562 a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
563 a->setShortcut (Qt::ALT + Qt::Key_Insert ); //Insert branch
564 a->setShortcutContext (Qt::WindowShortcut);
566 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
567 a->setEnabled (false);
568 actionListBranches.append(a);
569 actionAddBranchBefore=a;
570 a = new QAction(tr( "Add branch (insert)","Edit menu" ),this);
571 a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
572 a->setShortcut ( Qt::ALT + Qt::Key_A ); //Insert branch
573 a->setShortcutContext (Qt::WindowShortcut);
575 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
576 actionListBranches.append(a);
579 a = new QAction(tr( "Add branch above","Edit menu" ), this);
580 a->setStatusTip ( tr( "Add a branch above selection" ));
581 a->setShortcut (Qt::SHIFT+Qt::Key_Insert ); //Add branch above
582 a->setShortcutContext (Qt::WindowShortcut);
584 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
585 a->setEnabled (false);
586 actionListBranches.append(a);
587 actionAddBranchAbove=a;
588 a = new QAction(tr( "Add branch above","Edit menu" ), this);
589 a->setStatusTip ( tr( "Add a branch above selection" ));
590 a->setShortcut (Qt::SHIFT+Qt::Key_A ); //Add branch above
591 a->setShortcutContext (Qt::WindowShortcut);
593 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
594 actionListBranches.append(a);
597 a = new QAction(tr( "Add branch below","Edit menu" ), this);
598 a->setStatusTip ( tr( "Add a branch below selection" ));
599 a->setShortcut (Qt::CTRL +Qt::Key_Insert ); //Add branch below
600 a->setShortcutContext (Qt::WindowShortcut);
602 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
603 a->setEnabled (false);
604 actionListBranches.append(a);
605 actionAddBranchBelow=a;
606 a = new QAction(tr( "Add branch below","Edit menu" ), this);
607 a->setStatusTip ( tr( "Add a branch below selection" ));
608 a->setShortcut (Qt::CTRL +Qt::Key_A ); // Add branch below
609 a->setShortcutContext (Qt::WindowShortcut);
611 connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
612 actionListBranches.append(a);
614 a = new QAction(QPixmap(iconPath+"up.png" ), tr( "Move up","Edit menu" ), this);
615 a->setStatusTip ( tr( "Move branch up" ) );
616 a->setShortcut (Qt::Key_PageUp ); // Move branch up
617 a->setEnabled (false);
619 editMenu->addAction (a);
620 connect( a, SIGNAL( triggered() ), this, SLOT( editMoveUp() ) );
623 a = new QAction( QPixmap( iconPath+"down.png"), tr( "Move down","Edit menu" ),this);
624 connect( a, SIGNAL( triggered() ), this, SLOT( editMoveDown() ) );
625 a->setStatusTip (tr( "Move branch down" ) );
626 a->setShortcut ( Qt::Key_PageDown ); // Move branch down
627 a->setEnabled (false);
629 editMenu->addAction (a);
632 a = new QAction( QPixmap(iconPath+"editsort.png" ), tr( "Sort children","Edit menu" ), this );
633 connect( a, SIGNAL( activated() ), this, SLOT( editSortChildren() ) );
634 a->setEnabled (true);
636 editMenu->addAction (a);
637 actionSortChildren=a;
639 a = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ),this);
640 a->setShortcut ( Qt::Key_ScrollLock );
641 a->setStatusTip (tr( "Scroll branch" ) );
642 connect( a, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
644 alt = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ), this);
645 alt->setShortcut ( Qt::Key_S ); // Scroll branch
646 alt->setStatusTip (tr( "Scroll branch" ));
647 connect( alt, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
648 #if defined(Q_OS_MACX)
649 actionToggleScroll=alt;
651 actionToggleScroll=a;
653 actionToggleScroll->setEnabled (false);
654 actionToggleScroll->setToggleAction(true);
655 tb->addAction (actionToggleScroll);
656 editMenu->addAction ( actionToggleScroll);
657 editMenu->addAction (actionToggleScroll);
660 actionListBranches.append(actionToggleScroll);
662 a = new QAction( tr( "Unscroll children","Edit menu" ), this);
663 a->setStatusTip (tr( "Unscroll all scrolled branches in selected subtree" ));
664 editMenu->addAction (a);
665 connect( a, SIGNAL( triggered() ), this, SLOT( editUnscrollChildren() ) );
667 editMenu->addSeparator();
669 a = new QAction( QPixmap(iconPath+"find.png"), tr( "Find...","Edit menu"), this);
670 a->setStatusTip (tr( "Find" ) );
671 a->setShortcut (Qt::CTRL + Qt::Key_F ); //Find
672 editMenu->addAction (a);
673 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenFindWindow() ) );
675 editMenu->addSeparator();
677 a = new QAction( QPixmap(flagsPath+"flag-url.png"), tr( "Open URL","Edit menu" ), this);
678 a->setShortcut (Qt::CTRL + Qt::Key_U );
679 a->setShortcut (tr( "Open URL" ));
682 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURL() ) );
685 a = new QAction( tr( "Open URL in new tab","Edit menu" ), this);
686 a->setStatusTip (tr( "Open URL in new tab" ));
687 //a->setShortcut (Qt::CTRL+Qt::Key_U );
689 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURLTab() ) );
692 a = new QAction( tr( "Open all URLs in subtree","Edit menu" ), this);
693 a->setStatusTip (tr( "Open all URLs in subtree" ));
695 actionListBranches.append(a);
696 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleURLTabs() ) );
697 actionOpenMultipleURLTabs=a;
699 a = new QAction(QPixmap(), tr( "Edit URL...","Edit menu"), this);
700 a->setStatusTip ( tr( "Edit URL" ) );
701 a->setShortcut ( Qt::Key_U );
702 a->setShortcutContext (Qt::WindowShortcut);
703 actionListBranches.append(a);
705 connect( a, SIGNAL( triggered() ), this, SLOT( editURL() ) );
708 a = new QAction(QPixmap(), tr( "Edit local URL...","Edit menu"), this);
709 a->setStatusTip ( tr( "Edit local URL" ) );
710 a->setShortcut (Qt::SHIFT + Qt::Key_U );
711 a->setShortcutContext (Qt::WindowShortcut);
712 actionListBranches.append(a);
714 connect( a, SIGNAL( triggered() ), this, SLOT( editLocalURL() ) );
717 a = new QAction( tr( "Use heading for URL","Edit menu" ), this);
718 a->setStatusTip ( tr( "Use heading of selected branch as URL" ));
719 a->setEnabled (false);
720 actionListBranches.append(a);
721 connect( a, SIGNAL( triggered() ), this, SLOT( editHeading2URL() ) );
724 a = new QAction(tr( "Create URL to Novell Bugzilla","Edit menu" ), this);
725 a->setStatusTip ( tr( "Create URL to Novell Bugzilla" ));
726 a->setEnabled (false);
727 actionListBranches.append(a);
728 connect( a, SIGNAL( triggered() ), this, SLOT( editBugzilla2URL() ) );
729 actionBugzilla2URL=a;
731 a = new QAction(tr( "Create URL to Novell FATE","Edit menu" ), this);
732 a->setStatusTip ( tr( "Create URL to Novell FATE" ));
733 a->setEnabled (false);
734 actionListBranches.append(a);
735 connect( a, SIGNAL( triggered() ), this, SLOT( editFATE2URL() ) );
738 a = new QAction(QPixmap(flagsPath+"flag-vymlink.png"), tr( "Open linked map","Edit menu" ), this);
739 a->setStatusTip ( tr( "Jump to another vym map, if needed load it first" ));
741 a->setEnabled (false);
742 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenVymLink() ) );
745 a = new QAction(QPixmap(), tr( "Open all vym links in subtree","Edit menu" ), this);
746 a->setStatusTip ( tr( "Open all vym links in subtree" ));
747 a->setEnabled (false);
748 actionListBranches.append(a);
749 connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleVymLinks() ) );
750 actionOpenMultipleVymLinks=a;
753 a = new QAction(tr( "Edit vym link...","Edit menu" ), this);
754 a->setEnabled (false);
755 a->setStatusTip ( tr( "Edit link to another vym map" ));
756 connect( a, SIGNAL( triggered() ), this, SLOT( editVymLink() ) );
757 actionListBranches.append(a);
760 a = new QAction(tr( "Delete vym link","Edit menu" ),this);
761 a->setStatusTip ( tr( "Delete link to another vym map" ));
762 a->setEnabled (false);
763 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteVymLink() ) );
764 actionDeleteVymLink=a;
766 a = new QAction(QPixmap(flagsPath+"flag-hideexport.png"), tr( "Hide in exports","Edit menu" ), this);
767 a->setStatusTip ( tr( "Hide object in exports" ) );
768 a->setShortcut (Qt::Key_H );
769 a->setToggleAction(true);
771 a->setEnabled (false);
772 connect( a, SIGNAL( triggered() ), this, SLOT( editToggleHideExport() ) );
773 actionToggleHideExport=a;
775 a = new QAction(tr( "Edit Map Info...","Edit menu" ),this);
776 a->setStatusTip ( tr( "Edit Map Info" ));
777 a->setEnabled (true);
778 connect( a, SIGNAL( triggered() ), this, SLOT( editMapInfo() ) );
781 // Import at selection (adding to selection)
782 a = new QAction( tr( "Add map (insert)","Edit menu" ),this);
783 a->setStatusTip (tr( "Add map at selection" ));
784 connect( a, SIGNAL( triggered() ), this, SLOT( editImportAdd() ) );
785 a->setEnabled (false);
786 actionListBranches.append(a);
789 // Import at selection (replacing selection)
790 a = new QAction( tr( "Add map (replace)","Edit menu" ), this);
791 a->setStatusTip (tr( "Replace selection with map" ));
792 connect( a, SIGNAL( triggered() ), this, SLOT( editImportReplace() ) );
793 a->setEnabled (false);
794 actionListBranches.append(a);
795 actionImportReplace=a;
798 a = new QAction( tr( "Save selection","Edit menu" ), this);
799 a->setStatusTip (tr( "Save selection" ));
800 connect( a, SIGNAL( triggered() ), this, SLOT( editSaveBranch() ) );
801 a->setEnabled (false);
802 actionListBranches.append(a);
805 // Only remove branch, not its children
806 a = new QAction(tr( "Remove only branch ","Edit menu" ), this);
807 a->setStatusTip ( tr( "Remove only branch and keep its children" ));
808 a->setShortcut (Qt::ALT + Qt::Key_Delete );
809 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteKeepChildren() ) );
810 a->setEnabled (false);
812 actionListBranches.append(a);
813 actionDeleteKeepChildren=a;
815 // Only remove children of a branch
816 a = new QAction( tr( "Remove children","Edit menu" ), this);
817 a->setStatusTip (tr( "Remove children of branch" ));
818 a->setShortcut (Qt::SHIFT + Qt::Key_Delete );
819 connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteChildren() ) );
820 a->setEnabled (false);
821 actionListBranches.append(a);
822 actionDeleteChildren=a;
824 // Shortcuts for navigating with cursor:
825 a = new QAction(tr( "Select upper branch","Edit menu" ), this);
826 a->setStatusTip ( tr( "Select upper branch" ));
827 a->setShortcut (Qt::Key_Up );
828 a->setShortcutContext (Qt::WindowShortcut);
830 connect( a, SIGNAL( triggered() ), this, SLOT( editUpperBranch() ) );
831 a = new QAction( tr( "Select lower branch","Edit menu" ),this);
832 a->setStatusTip (tr( "Select lower branch" ));
833 a->setShortcut ( Qt::Key_Down );
834 a->setShortcutContext (Qt::WindowShortcut);
836 connect( a, SIGNAL( triggered() ), this, SLOT( editLowerBranch() ) );
837 a = new QAction(tr( "Select left branch","Edit menu" ), this);
838 a->setStatusTip ( tr( "Select left branch" ));
839 a->setShortcut (Qt::Key_Left );
840 a->setShortcutContext (Qt::WindowShortcut);
842 connect( a, SIGNAL( triggered() ), this, SLOT( editLeftBranch() ) );
843 a = new QAction( tr( "Select child branch","Edit menu" ), this);
844 a->setStatusTip (tr( "Select right branch" ));
845 a->setShortcut (Qt::Key_Right);
846 a->setShortcutContext (Qt::WindowShortcut);
848 connect( a, SIGNAL( triggered() ), this, SLOT( editRightBranch() ) );
849 a = new QAction( tr( "Select first branch","Edit menu" ), this);
850 a->setStatusTip (tr( "Select first branch" ));
851 a->setShortcut (Qt::Key_Home );
852 a->setShortcutContext (Qt::WindowShortcut);
854 a->setEnabled (false);
855 editMenu->addAction (a);
856 actionListBranches.append(a);
858 connect( a, SIGNAL( triggered() ), this, SLOT( editFirstBranch() ) );
859 a = new QAction( tr( "Select last branch","Edit menu" ),this);
860 a->setStatusTip (tr( "Select last branch" ));
861 a->setShortcut ( Qt::Key_End );
862 a->setShortcutContext (Qt::WindowShortcut);
864 connect( a, SIGNAL( triggered() ), this, SLOT( editLastBranch() ) );
865 a->setEnabled (false);
866 editMenu->addAction (a);
867 actionListBranches.append(a);
870 a = new QAction( tr( "Add Image...","Edit menu" ), this);
871 a->setStatusTip (tr( "Add Image" ));
872 connect( a, SIGNAL( triggered() ), this, SLOT( editLoadImage() ) );
875 a = new QAction( tr( "Property window","Dialog to edit properties of selection" )+QString ("..."), this);
876 a->setStatusTip (tr( "Set properties for selection" ));
877 a->setShortcut ( Qt::CTRL + Qt::Key_I ); //Property window
878 a->setShortcutContext (Qt::WindowShortcut);
879 a->setToggleAction (true);
881 connect( a, SIGNAL( triggered() ), this, SLOT( windowToggleProperty() ) );
882 actionViewTogglePropertyWindow=a;
886 void Main::setupFormatActions()
888 QMenu *formatMenu = menuBar()->addMenu (tr ("F&ormat","Format menu"));
890 QToolBar *tb = addToolBar( tr("Format Actions","Format Toolbar name"));
891 tb->setObjectName ("formatTB");
894 pix.fill (Qt::black);
895 a= new QAction(pix, tr( "Set &Color" )+QString("..."), this);
896 a->setStatusTip ( tr( "Set Color" ));
897 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectColor() ) );
899 formatMenu->addAction (a);
901 a= new QAction( QPixmap(iconPath+"formatcolorpicker.png"), tr( "Pic&k color","Edit menu" ), this);
902 a->setStatusTip (tr( "Pick color\nHint: You can pick a color from another branch and color using CTRL+Left Button" ) );
903 a->setShortcut (Qt::CTRL + Qt::Key_K );
904 connect( a, SIGNAL( triggered() ), this, SLOT( formatPickColor() ) );
905 a->setEnabled (false);
907 formatMenu->addAction (a);
908 actionListBranches.append(a);
909 actionFormatPickColor=a;
911 a= new QAction(QPixmap(iconPath+"formatcolorbranch.png"), tr( "Color &branch","Edit menu" ), this);
912 a->setStatusTip ( tr( "Color branch" ) );
913 a->setShortcut (Qt::CTRL + Qt::Key_B);
914 connect( a, SIGNAL( triggered() ), this, SLOT( formatColorBranch() ) );
915 a->setEnabled (false);
917 formatMenu->addAction (a);
918 actionListBranches.append(a);
919 actionFormatColorSubtree=a;
921 a= new QAction(QPixmap(iconPath+"formatcolorsubtree.png"), tr( "Color sub&tree","Edit menu" ), this);
922 a->setStatusTip ( tr( "Color Subtree" ));
923 a->setShortcut (Qt::CTRL + Qt::Key_T);
924 connect( a, SIGNAL( triggered() ), this, SLOT( formatColorSubtree() ) );
925 a->setEnabled (false);
926 formatMenu->addAction (a);
928 actionListBranches.append(a);
929 actionFormatColorSubtree=a;
931 formatMenu->addSeparator();
932 actionGroupFormatLinkStyles=new QActionGroup ( this);
933 actionGroupFormatLinkStyles->setExclusive (true);
934 a= new QAction( tr( "Linkstyle Line" ), actionGroupFormatLinkStyles);
935 a->setStatusTip (tr( "Line" ));
936 a->setToggleAction(true);
937 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleLine() ) );
938 formatMenu->addAction (a);
939 actionFormatLinkStyleLine=a;
940 a= new QAction( tr( "Linkstyle Curve" ), actionGroupFormatLinkStyles);
941 a->setStatusTip (tr( "Line" ));
942 a->setToggleAction(true);
943 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleParabel() ) );
944 formatMenu->addAction (a);
945 actionFormatLinkStyleParabel=a;
946 a= new QAction( tr( "Linkstyle Thick Line" ), actionGroupFormatLinkStyles );
947 a->setStatusTip (tr( "PolyLine" ));
948 a->setToggleAction(true);
949 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyLine() ) );
950 formatMenu->addAction (a);
951 actionFormatLinkStylePolyLine=a;
952 a= new QAction( tr( "Linkstyle Thick Curve" ), actionGroupFormatLinkStyles);
953 a->setStatusTip (tr( "PolyParabel" ) );
954 a->setToggleAction(true);
955 a->setChecked (true);
956 connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyParabel() ) );
957 formatMenu->addAction (a);
958 actionFormatLinkStylePolyParabel=a;
960 a = new QAction( tr( "Hide link if object is not selected","Branch attribute" ), this);
961 a->setStatusTip (tr( "Hide link" ));
962 a->setToggleAction(true);
963 connect( a, SIGNAL( triggered() ), this, SLOT( formatHideLinkUnselected() ) );
964 actionFormatHideLinkUnselected=a;
966 formatMenu->addSeparator();
967 a= new QAction( tr( "&Use color of heading for link","Branch attribute" ), this);
968 a->setStatusTip (tr( "Use same color for links and headings" ));
969 a->setToggleAction(true);
970 connect( a, SIGNAL( triggered() ), this, SLOT( formatToggleLinkColorHint() ) );
971 formatMenu->addAction (a);
972 actionFormatLinkColorHint=a;
974 pix.fill (Qt::white);
975 a= new QAction( pix, tr( "Set &Link Color"+QString("...") ), this );
976 a->setStatusTip (tr( "Set Link Color" ));
977 formatMenu->addAction (a);
978 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectLinkColor() ) );
979 actionFormatLinkColor=a;
981 a= new QAction( pix, tr( "Set &Selection Color"+QString("...") ), this );
982 a->setStatusTip (tr( "Set Selection Color" ));
983 formatMenu->addAction (a);
984 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectSelectionColor() ) );
985 actionFormatSelectionColor=a;
987 a= new QAction( pix, tr( "Set &Background Color" )+QString("..."), this );
988 a->setStatusTip (tr( "Set Background Color" ));
989 formatMenu->addAction (a);
990 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackColor() ) );
991 actionFormatBackColor=a;
993 a= new QAction( pix, tr( "Set &Background image" )+QString("..."), this );
994 a->setStatusTip (tr( "Set Background image" ));
995 formatMenu->addAction (a);
996 connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackImage() ) );
997 actionFormatBackImage=a;
1001 void Main::setupViewActions()
1003 QToolBar *tb = addToolBar( tr("View Actions","View Toolbar name") );
1004 tb->setLabel( "View Actions" );
1005 tb->setObjectName ("viewTB");
1006 QMenu *viewMenu = menuBar()->addMenu ( tr( "&View" ));
1009 a = new QAction(QPixmap(iconPath+"viewmag-reset.png"), tr( "reset Zoom","View action" ), this);
1010 a->setStatusTip ( tr( "Zoom reset" ) );
1011 a->setShortcut (Qt::CTRL + Qt::Key_0 );
1013 viewMenu->addAction (a);
1014 connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomReset() ) );
1016 a = new QAction( QPixmap(iconPath+"viewmag+.png"), tr( "Zoom in","View action" ), this);
1017 a->setStatusTip (tr( "Zoom in" ));
1018 a->setShortcut (Qt::CTRL + Qt::Key_Plus);
1020 viewMenu->addAction (a);
1021 connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomIn() ) );
1023 a = new QAction( QPixmap(iconPath+"viewmag-.png"), tr( "Zoom out","View action" ), this);
1024 a->setStatusTip (tr( "Zoom out" ));
1025 a->setShortcut (Qt::CTRL + Qt::Key_Minus );
1027 viewMenu->addAction (a);
1028 connect( a, SIGNAL( triggered() ), this, SLOT( viewZoomOut() ) );
1030 a = new QAction( QPixmap(iconPath+"viewshowsel.png"), tr( "Show selection","View action" ), this);
1031 a->setStatusTip (tr( "Show selection" ));
1032 a->setShortcut (Qt::Key_Period);
1034 viewMenu->addAction (a);
1035 connect( a, SIGNAL( triggered() ), this, SLOT( viewCenter() ) );
1037 viewMenu->addSeparator();
1039 a = new QAction(QPixmap(flagsPath+"flag-note.png"), tr( "Show Note Editor","View action" ),this);
1040 a->setStatusTip ( tr( "Show Note Editor" ));
1041 a->setShortcut ( Qt::CTRL + Qt::Key_E );
1042 a->setToggleAction(true);
1044 viewMenu->addAction (a);
1045 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleNoteEditor() ) );
1046 actionViewToggleNoteEditor=a;
1048 a = new QAction(QPixmap(iconPath+"history.png"), tr( "History Window","View action" ),this );
1049 a->setStatusTip ( tr( "Show History Window" ));
1050 a->setShortcut ( Qt::CTRL + Qt::Key_H );
1051 a->setToggleAction(true);
1053 viewMenu->addAction (a);
1054 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleHistory() ) );
1055 actionViewToggleHistoryWindow=a;
1057 viewMenu->addAction (actionViewTogglePropertyWindow);
1059 viewMenu->addSeparator();
1061 a = new QAction(tr( "Antialiasing","View action" ),this );
1062 a->setStatusTip ( tr( "Antialiasing" ));
1063 a->setToggleAction(true);
1064 a->setOn (settings.value("/mainwindow/view/AntiAlias",true).toBool());
1065 viewMenu->addAction (a);
1066 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleAntiAlias() ) );
1067 actionViewToggleAntiAlias=a;
1069 a = new QAction(tr( "Smooth pixmap transformations","View action" ),this );
1070 a->setStatusTip (a->text());
1071 a->setToggleAction(true);
1072 a->setOn (settings.value("/mainwindow/view/SmoothPixmapTransformation",true).toBool());
1073 viewMenu->addAction (a);
1074 connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleSmoothPixmap() ) );
1075 actionViewToggleSmoothPixmapTransform=a;
1077 a = new QAction(tr( "Next Map","View action" ), this);
1078 a->setStatusTip (a->text());
1079 a->setShortcut (Qt::ALT + Qt::Key_N );
1080 viewMenu->addAction (a);
1081 connect( a, SIGNAL( triggered() ), this, SLOT(windowNextEditor() ) );
1083 a = new QAction (tr( "Previous Map","View action" ), this );
1084 a->setStatusTip (a->text());
1085 a->setShortcut (Qt::ALT + Qt::Key_P );
1086 viewMenu->addAction (a);
1087 connect( a, SIGNAL( triggered() ), this, SLOT(windowPreviousEditor() ) );
1091 void Main::setupModeActions()
1093 //QPopupMenu *menu = new QPopupMenu( this );
1094 //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
1096 QToolBar *tb = addToolBar( tr ("Modes when using modifiers","Modifier Toolbar name") );
1097 tb->setObjectName ("modesTB");
1099 actionGroupModModes=new QActionGroup ( this);
1100 actionGroupModModes->setExclusive (true);
1101 a= new QAction( QPixmap(iconPath+"modecolor.png"), tr( "Use modifier to color branches","Mode modifier" ), actionGroupModModes);
1102 a->setShortcut (Qt::Key_J);
1103 a->setStatusTip ( tr( "Use modifier to color branches" ));
1104 a->setToggleAction(true);
1107 actionModModeColor=a;
1109 a= new QAction( QPixmap(iconPath+"modecopy.png"), tr( "Use modifier to copy","Mode modifier" ), actionGroupModModes );
1110 a->setShortcut( Qt::Key_K);
1111 a->setStatusTip( tr( "Use modifier to copy" ));
1112 a->setToggleAction(true);
1114 actionModModeCopy=a;
1116 a= new QAction(QPixmap(iconPath+"modelink.png"), tr( "Use modifier to draw xLinks","Mode modifier" ), actionGroupModModes );
1117 a->setShortcut (Qt::Key_L);
1118 a->setStatusTip( tr( "Use modifier to draw xLinks" ));
1119 a->setToggleAction(true);
1121 actionModModeXLink=a;
1125 void Main::setupFlagActions()
1127 // Create System Flags
1131 systemFlagsDefault = new FlagRowObj ();
1132 systemFlagsDefault->setVisibility (false);
1133 systemFlagsDefault->setName ("systemFlagsDef");
1135 FlagObj *fo = new FlagObj ();
1136 fo->load(QPixmap(flagsPath+"flag-note.png"));
1137 setupFlag (fo,tb,avis,"note",tr("Note","SystemFlag"));
1139 fo->load(QPixmap(flagsPath+"flag-url.png"));
1140 setupFlag (fo,tb,avis,"url",tr("URL to Document ","SystemFlag"));
1142 fo->load(QPixmap(flagsPath+"flag-vymlink.png"));
1143 setupFlag (fo,tb,avis,"vymLink",tr("Link to another vym map","SystemFlag"));
1145 fo->load(QPixmap(flagsPath+"flag-scrolled-right.png"));
1146 setupFlag (fo,tb,avis,"scrolledright",tr("subtree is scrolled","SystemFlag"));
1148 fo->load(QPixmap(flagsPath+"flag-tmpUnscrolled-right.png"));
1149 setupFlag (fo,tb,avis,"tmpUnscrolledright",tr("subtree is temporary scrolled","SystemFlag"));
1151 fo->load(QPixmap(flagsPath+"flag-hideexport.png"));
1152 setupFlag (fo,tb,avis,"hideInExport",tr("Hide object in exported maps","SystemFlag"));
1154 // Create Standard Flags
1155 tb=addToolBar (tr ("Standard Flags","Standard Flag Toolbar"));
1156 tb->setObjectName ("standardFlagTB");
1158 standardFlagsDefault = new FlagRowObj ();
1159 standardFlagsDefault->setVisibility (false);
1160 standardFlagsDefault->setName ("standardFlagsDef");
1161 standardFlagsDefault->setToolBar (tb);
1163 fo->load(flagsPath+"flag-exclamationmark.png");
1164 fo->setGroup("standard-mark");
1165 setupFlag (fo,tb,avis,"exclamationmark",tr("Take care!","Standardflag"));
1167 fo->load(flagsPath+"flag-questionmark.png");
1168 fo->setGroup("standard-mark");
1169 setupFlag (fo,tb,avis,"questionmark",tr("Really?","Standardflag"));
1171 fo->load(flagsPath+"flag-hook-green.png");
1172 fo->setGroup("standard-hook");
1173 setupFlag (fo,tb,avis,"hook-green",tr("ok!","Standardflag"));
1175 fo->load(flagsPath+"flag-cross-red.png");
1176 fo->setGroup("standard-hook");
1177 setupFlag (fo,tb,avis,"cross-red",tr("Not ok!","Standardflag"));
1180 fo->load(flagsPath+"flag-stopsign.png");
1181 setupFlag (fo,tb,avis,"stopsign",tr("This won't work!","Standardflag"));
1183 fo->load(flagsPath+"flag-smiley-good.png");
1184 fo->setGroup("standard-smiley");
1185 setupFlag (fo,tb,avis,"smiley-good",tr("Good","Standardflag"));
1187 fo->load(flagsPath+"flag-smiley-sad.png");
1188 fo->setGroup("standard-smiley");
1189 setupFlag (fo,tb,avis,"smiley-sad",tr("Bad","Standardflag"));
1191 fo->load(flagsPath+"flag-smiley-omg.png");
1192 fo->setGroup("standard-smiley");
1193 setupFlag (fo,tb,avis,"smiley-omb",tr("Oh no!","Standardflag"));
1194 // Original omg.png (in KDE emoticons)
1197 fo->load(flagsPath+"flag-kalarm.png");
1198 setupFlag (fo,tb,avis,"clock",tr("Time critical","Standardflag"));
1200 fo->load(flagsPath+"flag-phone.png");
1201 setupFlag (fo,tb,avis,"phone",tr("Call...","Standardflag"));
1203 fo->load(flagsPath+"flag-lamp.png");
1204 setupFlag (fo,tb,avis,"lamp",tr("Idea!","Standardflag"));
1206 fo->load(flagsPath+"flag-arrow-up.png");
1207 fo->setGroup("standard-arrow");
1208 setupFlag (fo,tb,avis,"arrow-up",tr("Important","Standardflag"));
1210 fo->load(flagsPath+"flag-arrow-down.png");
1211 fo->setGroup("standard-arrow");
1212 setupFlag (fo,tb,avis,"arrow-down",tr("Unimportant","Standardflag"));
1214 fo->load(flagsPath+"flag-arrow-2up.png");
1215 fo->setGroup("standard-arrow");
1216 setupFlag (fo,tb,avis,"2arrow-up",tr("Very important!","Standardflag"));
1218 fo->load(flagsPath+"flag-arrow-2down.png");
1219 fo->setGroup("standard-arrow");
1220 setupFlag (fo,tb,avis,"2arrow-down",tr("Very unimportant!","Standardflag"));
1223 fo->load(flagsPath+"flag-thumb-up.png");
1224 fo->setGroup("standard-thumb");
1225 setupFlag (fo,tb,avis,"thumb-up",tr("I like this","Standardflag"));
1227 fo->load(flagsPath+"flag-thumb-down.png");
1228 fo->setGroup("standard-thumb");
1229 setupFlag (fo,tb,avis,"thumb-down",tr("I do not like this","Standardflag"));
1232 fo->load(flagsPath+"flag-rose.png");
1233 setupFlag (fo,tb,avis,"rose",tr("Rose","Standardflag"));
1235 fo->load(flagsPath+"flag-heart.png");
1236 setupFlag (fo,tb,avis,"heart",tr("I just love...","Standardflag"));
1238 fo->load(flagsPath+"flag-present.png");
1239 setupFlag (fo,tb,avis,"present",tr("Surprise!","Standardflag"));
1241 fo->load(flagsPath+"flag-flash.png");
1242 setupFlag (fo,tb,avis,"flash",tr("Dangerous","Standardflag"));
1244 // Original: xsldbg_output.png
1245 fo->load(flagsPath+"flag-info.png");
1246 setupFlag (fo,tb,avis,"info",tr("Info","Standardflag"));
1248 // Original khelpcenter.png
1249 fo->load(flagsPath+"flag-lifebelt.png");
1250 setupFlag (fo,tb,avis,"lifebelt",tr("This will help","Standardflag"));
1256 fo->load(flagsPath+"freemind/warning.png");
1257 setupFlag (fo,tb, avis, "freemind-warning",tr("Important","Freemind-Flag"));
1259 for (int i=1; i<8; i++)
1261 fo->load(flagsPath+QString("freemind/priority-%1.png").arg(i));
1262 setupFlag (fo,tb, avis,QString("freemind-priority-%1").arg(i),tr("Priority","Freemind-Flag"));
1265 fo->load(flagsPath+"freemind/back.png");
1266 setupFlag (fo,tb,avis,"freemind-back",tr("Back","Freemind-Flag"));
1268 fo->load(flagsPath+"freemind/forward.png");
1269 setupFlag (fo,tb,avis,"freemind-forward",tr("Forward","Freemind-Flag"));
1271 fo->load(flagsPath+"freemind/attach.png");
1272 setupFlag (fo,tb,avis,"freemind-attach",tr("Look here","Freemind-Flag"));
1274 fo->load(flagsPath+"freemind/clanbomber.png");
1275 setupFlag (fo,tb,avis,"freemind-clanbomber",tr("Dangerous","Freemind-Flag"));
1277 fo->load(flagsPath+"freemind/desktopnew.png");
1278 setupFlag (fo,tb,avis,"freemind-desktopnew",tr("Don't forget","Freemind-Flag"));
1280 fo->load(flagsPath+"freemind/flag.png");
1281 setupFlag (fo,tb,avis,"freemind-flag",tr("Flag","Freemind-Flag"));
1284 fo->load(flagsPath+"freemind/gohome.png");
1285 setupFlag (fo,tb,avis,"freemind-gohome",tr("Home","Freemind-Flag"));
1288 fo->load(flagsPath+"freemind/kaddressbook.png");
1289 setupFlag (fo,tb,avis,"freemind-kaddressbook",tr("Telephone","Freemind-Flag"));
1291 fo->load(flagsPath+"freemind/knotify.png");
1292 setupFlag (fo,tb,avis,"freemind-knotify",tr("Music","Freemind-Flag"));
1294 fo->load(flagsPath+"freemind/korn.png");
1295 setupFlag (fo,tb,avis,"freemind-korn",tr("Mailbox","Freemind-Flag"));
1297 fo->load(flagsPath+"freemind/mail.png");
1298 setupFlag (fo,tb,avis,"freemind-mail",tr("Maix","Freemind-Flag"));
1300 fo->load(flagsPath+"freemind/password.png");
1301 setupFlag (fo,tb,avis,"freemind-password",tr("Password","Freemind-Flag"));
1303 fo->load(flagsPath+"freemind/pencil.png");
1304 setupFlag (fo,tb,avis,"freemind-pencil",tr("To be improved","Freemind-Flag"));
1306 fo->load(flagsPath+"freemind/stop.png");
1307 setupFlag (fo,tb,avis,"freemind-stop",tr("Stop","Freemind-Flag"));
1309 fo->load(flagsPath+"freemind/wizard.png");
1310 setupFlag (fo,tb,avis,"freemind-wizard",tr("Magic","Freemind-Flag"));
1312 fo->load(flagsPath+"freemind/xmag.png");
1313 setupFlag (fo,tb,avis,"freemind-xmag",tr("To be discussed","Freemind-Flag"));
1315 fo->load(flagsPath+"freemind/bell.png");
1316 setupFlag (fo,tb,avis,"freemind-bell",tr("Reminder","Freemind-Flag"));
1318 fo->load(flagsPath+"freemind/bookmark.png");
1319 setupFlag (fo,tb,avis,"freemind-bookmark",tr("Excellent","Freemind-Flag"));
1321 fo->load(flagsPath+"freemind/penguin.png");
1322 setupFlag (fo,tb,avis,"freemind-penguin",tr("Linux","Freemind-Flag"));
1324 fo->load(flagsPath+"freemind/licq.png");
1325 setupFlag (fo,tb,avis,"freemind-licq",tr("Sweet","Freemind-Flag"));
1330 void Main::setupFlag (FlagObj *fo, QToolBar *tb, bool aw, const QString &name, const QString &tooltip)
1333 fo->setToolTip (tooltip);
1334 QAction *a=new QAction (fo->getPixmap(),fo->getName(),this);
1340 fo->setAlwaysVisible(aw);
1341 a->setCheckable(true);
1342 a->setObjectName(fo->getName());
1343 a->setToolTip(tooltip);
1344 connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
1345 standardFlagsDefault->addFlag (fo);
1349 systemFlagsDefault->addFlag (fo);
1353 void Main::setupNetworkActions()
1355 if (!settings.value( "/mainwindow/showTestMenu",false).toBool() )
1357 QMenu *netMenu = menuBar()->addMenu( "Network" );
1361 a = new QAction( "Start TCPserver for MapEditor",this);
1362 //a->setStatusTip ( "Set application to open pdf files"));
1363 a->setShortcut ( Qt::Key_T ); //New TCP server
1364 connect( a, SIGNAL( triggered() ), this, SLOT( networkStartServer() ) );
1365 netMenu->addAction (a);
1367 a = new QAction( "Connect MapEditor to server",this);
1368 //a->setStatusTip ( "Set application to open pdf files"));
1369 a->setShortcut ( Qt::Key_C ); // Connect to server
1370 connect( a, SIGNAL( triggered() ), this, SLOT( networkConnect() ) );
1371 netMenu->addAction (a);
1375 void Main::setupSettingsActions()
1377 QMenu *settingsMenu = menuBar()->addMenu( tr( "&Settings" ));
1381 a = new QAction( tr( "Set application to open pdf files","Settings action"), this);
1382 a->setStatusTip ( tr( "Set application to open pdf files"));
1383 connect( a, SIGNAL( triggered() ), this, SLOT( settingsPDF() ) );
1384 settingsMenu->addAction (a);
1386 a = new QAction( tr( "Set application to open external links","Settings action"), this);
1387 a->setStatusTip( tr( "Set application to open external links"));
1388 connect( a, SIGNAL( triggered() ), this, SLOT( settingsURL() ) );
1389 settingsMenu->addAction (a);
1391 a = new QAction( tr( "Set path for macros","Settings action")+"...", this);
1392 a->setStatusTip( tr( "Set path for macros"));
1393 connect( a, SIGNAL( triggered() ), this, SLOT( settingsMacroDir() ) );
1394 settingsMenu->addAction (a);
1396 a = new QAction( tr( "Set number of undo levels","Settings action")+"...", this);
1397 a->setStatusTip( tr( "Set number of undo levels"));
1398 connect( a, SIGNAL( triggered() ), this, SLOT( settingsUndoLevels() ) );
1399 settingsMenu->addAction (a);
1401 settingsMenu->addSeparator();
1403 a = new QAction( tr( "Autosave","Settings action"), this);
1404 a->setStatusTip( tr( "Autosave"));
1405 a->setToggleAction(true);
1406 a->setOn ( settings.value ("/mapeditor/autosave/use",false).toBool());
1407 connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveToggle() ) );
1408 settingsMenu->addAction (a);
1409 actionSettingsAutosaveToggle=a;
1411 a = new QAction( tr( "Autosave time","Settings action")+"...", this);
1412 a->setStatusTip( tr( "Autosave time"));
1413 connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveTime() ) );
1414 settingsMenu->addAction (a);
1415 actionSettingsAutosaveTime=a;
1417 a = new QAction( tr( "Write backup file on save","Settings action"), this);
1418 a->setStatusTip( tr( "Write backup file on save"));
1419 a->setToggleAction(true);
1420 a->setOn ( settings.value ("/mainwindow/writeBackupFile",false).toBool());
1421 connect( a, SIGNAL( triggered() ), this, SLOT( settingsWriteBackupFileToggle() ) );
1422 settingsMenu->addAction (a);
1423 actionSettingsWriteBackupFile=a;
1425 settingsMenu->addSeparator();
1427 a = new QAction( tr( "Edit branch after adding it","Settings action" ), this );
1428 a->setStatusTip( tr( "Edit branch after adding it" ));
1429 a->setToggleAction(true);
1430 a->setOn ( settings.value ("/mapeditor/editmode/autoEditNewBranch",true).toBool());
1431 settingsMenu->addAction (a);
1432 actionSettingsAutoEditNewBranch=a;
1434 a= new QAction( tr( "Select branch after adding it","Settings action" ), this );
1435 a->setStatusTip( tr( "Select branch after adding it" ));
1436 a->setToggleAction(true);
1437 a->setOn ( settings.value ("/mapeditor/editmode/autoSelectNewBranch",false).toBool() );
1438 settingsMenu->addAction (a);
1439 actionSettingsAutoSelectNewBranch=a;
1441 a= new QAction(tr( "Select existing heading","Settings action" ), this);
1442 a->setStatusTip( tr( "Select heading before editing" ));
1443 a->setToggleAction(true);
1444 a->setOn ( settings.value ("/mapeditor/editmode/autoSelectText",true).toBool() );
1445 settingsMenu->addAction (a);
1446 actionSettingsAutoSelectText=a;
1448 a= new QAction( tr( "Delete key","Settings action" ), this);
1449 a->setStatusTip( tr( "Delete key for deleting branches" ));
1450 a->setToggleAction(true);
1451 a->setOn ( settings.value ("/mapeditor/editmode/useDelKey",true).toBool() );
1452 settingsMenu->addAction (a);
1453 connect( a, SIGNAL( triggered() ), this, SLOT( settingsToggleDelKey() ) );
1454 actionSettingsUseDelKey=a;
1456 a= new QAction( tr( "Exclusive flags","Settings action" ), this);
1457 a->setStatusTip( tr( "Use exclusive flags in flag toolbars" ));
1458 a->setToggleAction(true);
1459 a->setOn ( settings.value ("/mapeditor/editmode/useFlagGroups",true).toBool() );
1460 settingsMenu->addAction (a);
1461 actionSettingsUseFlagGroups=a;
1463 a= new QAction( tr( "Use hide flags","Settings action" ), this);
1464 a->setStatusTip( tr( "Use hide flag during exports " ));
1465 a->setToggleAction(true);
1466 a->setOn ( settings.value ("/export/useHideExport",true).toBool() );
1467 settingsMenu->addAction (a);
1468 actionSettingsUseHideExport=a;
1470 a = new QAction( tr( "Animation","Settings action"), this);
1471 a->setStatusTip( tr( "Animation"));
1472 a->setToggleAction(true);
1473 a->setOn (settings.value("/animation/use",false).toBool() );
1474 connect( a, SIGNAL( triggered() ), this, SLOT( settingsToggleAnimation() ) );
1475 if (settings.value( "/mainwindow/showTestMenu",false).toBool() )
1477 settingsMenu->addAction (a);
1479 actionSettingsUseAnimation=a;
1483 void Main::setupTestActions()
1485 QMenu *testMenu = menuBar()->addMenu( tr( "&Test" ));
1488 a = new QAction( "Test function 1" , this);
1489 a->setStatusTip( "Call test function 1" );
1490 testMenu->addAction (a);
1491 connect( a, SIGNAL( triggered() ), this, SLOT( testFunction1() ) );
1493 a = new QAction( "Test function 2" , this);
1494 a->setStatusTip( "Call test function 2" );
1495 testMenu->addAction (a);
1496 connect( a, SIGNAL( triggered() ), this, SLOT( testFunction2() ) );
1498 a = new QAction( "Command" , this);
1499 a->setStatusTip( "Enter command to call in editor" );
1500 connect( a, SIGNAL( triggered() ), this, SLOT( testCommand() ) );
1501 testMenu->addAction (a);
1505 void Main::setupHelpActions()
1507 QMenu *helpMenu = menuBar()->addMenu ( tr( "&Help","Help menubar entry" ));
1510 a = new QAction( tr( "Open VYM Documentation (pdf) ","Help action" ), this );
1511 a->setStatusTip( tr( "Open VYM Documentation (pdf)" ));
1512 connect( a, SIGNAL( triggered() ), this, SLOT( helpDoc() ) );
1513 helpMenu->addAction (a);
1515 a = new QAction( tr( "Open VYM example maps ","Help action" ), this );
1516 a->setStatusTip( tr( "Open VYM example maps " ));
1517 connect( a, SIGNAL( triggered() ), this, SLOT( helpDemo() ) );
1518 helpMenu->addAction (a);
1520 a = new QAction( tr( "About VYM","Help action" ), this);
1521 a->setStatusTip( tr( "About VYM")+vymName);
1522 connect( a, SIGNAL( triggered() ), this, SLOT( helpAbout() ) );
1523 helpMenu->addAction (a);
1525 a = new QAction( tr( "About QT","Help action" ), this);
1526 a->setStatusTip( tr( "Information about QT toolkit" ));
1527 connect( a, SIGNAL( triggered() ), this, SLOT( helpAboutQT() ) );
1528 helpMenu->addAction (a);
1532 void Main::setupContextMenus()
1536 // Context Menu for branch or mapcenter
1537 branchContextMenu =new QMenu (this);
1538 branchContextMenu->addAction (actionViewTogglePropertyWindow);
1539 branchContextMenu->addSeparator();
1542 branchAddContextMenu =branchContextMenu->addMenu (tr("Add"));
1543 branchAddContextMenu->addAction (actionPaste );
1544 branchAddContextMenu->addAction ( actionAddBranch );
1545 branchAddContextMenu->addAction ( actionAddBranchBefore );
1546 branchAddContextMenu->addAction ( actionAddBranchAbove);
1547 branchAddContextMenu->addAction ( actionAddBranchBelow );
1548 branchAddContextMenu->addSeparator();
1549 branchAddContextMenu->addAction ( actionImportAdd );
1550 branchAddContextMenu->addAction ( actionImportReplace );
1553 branchRemoveContextMenu =branchContextMenu->addMenu (tr ("Remove","Context menu name"));
1554 branchRemoveContextMenu->addAction (actionCut);
1555 branchRemoveContextMenu->addAction ( actionDelete );
1556 branchRemoveContextMenu->addAction ( actionDeleteKeepChildren );
1557 branchRemoveContextMenu->addAction ( actionDeleteChildren );
1560 actionSaveBranch->addTo( branchContextMenu );
1561 actionFileNewCopy->addTo (branchContextMenu );
1563 branchContextMenu->addSeparator();
1564 branchContextMenu->addAction ( actionLoadImage);
1566 // Submenu for Links (URLs, vymLinks)
1567 branchLinksContextMenu =new QMenu (this);
1569 branchContextMenu->addSeparator();
1570 branchLinksContextMenu=branchContextMenu->addMenu(tr("References (URLs, vymLinks, ...)","Context menu name"));
1571 branchLinksContextMenu->addAction ( actionOpenURL );
1572 branchLinksContextMenu->addAction ( actionOpenURLTab );
1573 branchLinksContextMenu->addAction ( actionOpenMultipleURLTabs );
1574 branchLinksContextMenu->addAction ( actionURL );
1575 branchLinksContextMenu->addAction ( actionLocalURL );
1576 branchLinksContextMenu->addAction ( actionHeading2URL );
1577 branchLinksContextMenu->addAction ( actionBugzilla2URL );
1578 if (settings.value( "/mainwindow/showTestMenu",false).toBool() )
1580 branchLinksContextMenu->addAction ( actionFATE2URL );
1582 branchLinksContextMenu->addSeparator();
1583 branchLinksContextMenu->addAction ( actionOpenVymLink );
1584 branchLinksContextMenu->addAction ( actionOpenMultipleVymLinks );
1585 branchLinksContextMenu->addAction ( actionVymLink );
1586 branchLinksContextMenu->addAction ( actionDeleteVymLink );
1589 // Context Menu for XLinks in a branch menu
1590 // This will be populated "on demand" in MapEditor::updateActions
1591 branchContextMenu->addSeparator();
1592 branchXLinksContextMenuEdit =branchContextMenu->addMenu (tr ("Edit XLink","Context menu name"));
1593 branchXLinksContextMenuFollow =branchContextMenu->addMenu (tr ("Follow XLink","Context menu name"));
1594 connect( branchXLinksContextMenuFollow, SIGNAL( triggered(QAction *) ), this, SLOT( editFollowXLink(QAction * ) ) );
1595 connect( branchXLinksContextMenuEdit, SIGNAL( triggered(QAction *) ), this, SLOT( editEditXLink(QAction * ) ) );
1598 // Context menu for floatimage
1599 floatimageContextMenu =new QMenu (this);
1600 a= new QAction (tr ("Save image","Context action"),this);
1601 connect (a, SIGNAL (triggered()), this, SLOT (editSaveImage()));
1602 floatimageContextMenu->addAction (a);
1604 floatimageContextMenu->addSeparator();
1605 actionCopy->addTo( floatimageContextMenu );
1606 actionCut->addTo( floatimageContextMenu );
1608 floatimageContextMenu->addSeparator();
1609 floatimageContextMenu->addAction ( actionFormatHideLinkUnselected );
1612 // Context menu for canvas
1613 canvasContextMenu =new QMenu (this);
1614 if (settings.value( "/mainwindow/showTestMenu",false).toBool() )
1615 actionAddMapCenter->addTo( canvasContextMenu );
1616 actionMapInfo->addTo( canvasContextMenu );
1617 canvasContextMenu->insertSeparator();
1618 actionGroupFormatLinkStyles->addTo( canvasContextMenu );
1619 canvasContextMenu->insertSeparator();
1620 actionFormatLinkColorHint->addTo( canvasContextMenu );
1621 actionFormatLinkColor->addTo( canvasContextMenu );
1622 actionFormatSelectionColor->addTo( canvasContextMenu );
1623 actionFormatBackColor->addTo( canvasContextMenu );
1624 // actionFormatBackImage->addTo( canvasContextMenu ); //FIXME makes vym too slow: postponed for later version
1626 // Menu for last opened files
1628 for (int i = 0; i < MaxRecentFiles; ++i)
1630 recentFileActions[i] = new QAction(this);
1631 recentFileActions[i]->setVisible(false);
1632 fileLastMapsMenu->addAction(recentFileActions[i]);
1633 connect(recentFileActions[i], SIGNAL(triggered()),
1634 this, SLOT(fileLoadRecent()));
1636 setupRecentMapsMenu();
1639 void Main::setupRecentMapsMenu()
1641 QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
1643 int numRecentFiles = qMin(files.size(), (int)MaxRecentFiles);
1645 for (int i = 0; i < numRecentFiles; ++i) {
1646 QString text = tr("&%1 %2").arg(i + 1).arg(files[i]);
1647 recentFileActions[i]->setText(text);
1648 recentFileActions[i]->setData(files[i]);
1649 recentFileActions[i]->setVisible(true);
1651 for (int j = numRecentFiles; j < MaxRecentFiles; ++j)
1652 recentFileActions[j]->setVisible(false);
1655 void Main::setupMacros()
1657 for (int i = 0; i <= 11; i++)
1659 macroActions[i] = new QAction(this);
1660 macroActions[i]->setData(i);
1661 addAction (macroActions[i]);
1662 connect(macroActions[i], SIGNAL(triggered()),
1663 this, SLOT(callMacro()));
1665 macroActions[0]->setShortcut ( Qt::Key_F1 );
1666 macroActions[1]->setShortcut ( Qt::Key_F2 );
1667 macroActions[2]->setShortcut ( Qt::Key_F3 );
1668 macroActions[3]->setShortcut ( Qt::Key_F4 );
1669 macroActions[4]->setShortcut ( Qt::Key_F5 );
1670 macroActions[5]->setShortcut ( Qt::Key_F6 );
1671 macroActions[6]->setShortcut ( Qt::Key_F7 );
1672 macroActions[7]->setShortcut ( Qt::Key_F8 );
1673 macroActions[8]->setShortcut ( Qt::Key_F9 );
1674 macroActions[9]->setShortcut ( Qt::Key_F10 );
1675 macroActions[10]->setShortcut ( Qt::Key_F11 );
1676 macroActions[11]->setShortcut ( Qt::Key_F12 );
1679 void Main::hideEvent (QHideEvent * )
1681 if (!textEditor->isMinimized() ) textEditor->hide();
1684 void Main::showEvent (QShowEvent * )
1686 if (actionViewToggleNoteEditor->isOn()) textEditor->showNormal();
1690 MapEditor* Main::currentMapEditor() const
1692 if ( tabWidget->currentPage())
1693 return tabModel.at(tabWidget->currentIndex())->getMapEditor();
1697 VymModel* Main::currentModel() const
1699 if ( tabWidget->currentPage())
1700 return tabModel.at(tabWidget->currentIndex());
1705 void Main::editorChanged(QWidget *)
1707 // Unselect all possibly selected objects
1708 // (Important to update note editor)
1709 for (int i=0;i<=tabWidget->count() -1;i++)
1711 tabModel.at(i)->unselect();
1713 VymModel *m=currentModel();
1714 if (m) m->reselect();
1716 // Update actions to in menus and toolbars according to editor
1720 VymView *Main::createView (VymModel *model)
1722 VymView *vm=new VymView (model);
1727 void Main::fileNew()
1729 VymModel *m=new VymModel;
1730 tabModel.append (m);
1731 //MapEditor* me = new MapEditor (m);
1732 //me->setObjectName ("MapEditor");
1734 VymView *view=createView (m);
1735 tabWidget->addTab (view,tr("unnamed","MainWindow: name for new and empty file"));
1736 tabWidget->setCurrentIndex (tabModel.count() );
1738 // For the very first map we do not have flagrows yet...
1742 void Main::fileNewCopy()
1744 QString fn="unnamed";
1745 VymModel *srcModel=currentModel();
1750 VymModel *dstModel=tabModel.last ();
1751 dstModel->select("mc:");
1752 dstModel->load (clipboardDir+"/"+clipboardFile,ImportReplace, VymMap);
1756 ErrorCode Main::fileLoad(QString fn, const LoadMode &lmode, const FileType &ftype)
1758 ErrorCode err=success;
1760 // fn is usually the archive, mapfile the file after uncompressing
1763 // Make fn absolute (needed for unzip)
1764 fn=QDir (fn).absPath();
1770 // Check, if map is already loaded
1772 while (i<=tabWidget->count() -1)
1774 if (tabModel.at(i)->getFilePath() == fn)
1776 // Already there, ask for confirmation
1777 QMessageBox mb( vymName,
1778 tr("The map %1\nis already opened."
1779 "Opening the same map in multiple editors may lead \n"
1780 "to confusion when finishing working with vym."
1781 "Do you want to").arg(fn),
1782 QMessageBox::Warning,
1783 QMessageBox::Yes | QMessageBox::Default,
1784 QMessageBox::Cancel | QMessageBox::Escape,
1785 QMessageBox::NoButton);
1786 mb.setButtonText( QMessageBox::Yes, tr("Open anyway") );
1787 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
1790 case QMessageBox::Yes:
1791 // end loop and load anyway
1792 i=tabWidget->count();
1794 case QMessageBox::Cancel:
1804 int tabIndex=tabWidget->currentPageIndex();
1807 if ( !fn.isEmpty() )
1809 vm = currentModel();
1810 // Check first, if mapeditor exists
1811 // If it is not default AND we want a new map,
1812 // create a new mapeditor in a new tab
1813 if ( lmode==NewMap && (!vm || !vm->isDefault() ) )
1816 tabModel.append (vm);
1817 VymView *view=createView (vm);
1818 tabWidget->addTab (view,fn);
1819 tabIndex=tabWidget->count()-1;
1820 tabWidget->setCurrentPage (tabIndex);
1823 // Check, if file exists (important for creating new files
1824 // from command line
1825 if (!QFile(fn).exists() )
1827 QMessageBox mb( vymName,
1828 tr("This map does not exist:\n %1\nDo you want to create a new one?").arg(fn),
1829 QMessageBox::Question,
1831 QMessageBox::Cancel | QMessageBox::Default,
1832 QMessageBox::NoButton );
1834 mb.setButtonText( QMessageBox::Yes, tr("Create"));
1835 mb.setButtonText( QMessageBox::No, tr("Cancel"));
1838 case QMessageBox::Yes:
1840 currentMapEditor()->getModel()->setFilePath(fn);
1841 tabWidget->setTabText (tabIndex,
1842 currentMapEditor()->getModel()->getFileName() );
1843 statusBar()->message( "Created " + fn , statusbarTime );
1846 case QMessageBox::Cancel:
1847 // don't create new map
1848 statusBar()->message( "Loading " + fn + " failed!", statusbarTime );
1855 //tabWidget->currentPage() won't be NULL here, because of above...
1856 tabWidget->setCurrentIndex (tabIndex);
1857 //FIXME no me anymore... me->viewport()->setFocus();
1861 // Save existing filename in case we import
1862 QString fn_org=vm->getFilePath();
1864 // Finally load map into mapEditor
1865 vm->setFilePath (fn);
1866 err=vm->load(fn,lmode,ftype);
1868 // Restore old (maybe empty) filepath, if this is an import
1870 vm->setFilePath (fn_org);
1873 // Finally check for errors and go home
1876 if (lmode==NewMap) fileCloseMap();
1877 statusBar()->message( "Could not load " + fn, statusbarTime );
1882 vm->setFilePath (fn);
1883 tabWidget->setTabText (tabIndex, vm->getFileName());
1884 if (!isInTmpDir (fn))
1886 // Only append to lastMaps if not loaded from a tmpDir
1887 // e.g. imported bookmarks are in a tmpDir
1888 addRecentMap(vm->getFilePath() );
1890 actionFilePrint->setEnabled (true);
1892 statusBar()->message( "Loaded " + fn, statusbarTime );
1899 void Main::fileLoad(const LoadMode &lmode)
1901 QStringList filters;
1902 filters <<"VYM map (*.vym *.vyp)"<<"XML (*.xml)";
1903 QFileDialog *fd=new QFileDialog( this);
1904 fd->setDir (lastFileDir);
1905 fd->setFileMode (QFileDialog::ExistingFiles);
1906 fd->setFilters (filters);
1910 fd->setCaption(vymName+ " - " +tr("Load vym map"));
1913 fd->setCaption(vymName+ " - " +tr("Import: Add vym map to selection"));
1916 fd->setCaption(vymName+ " - " +tr("Import: Replace selection with vym map"));
1922 if ( fd->exec() == QDialog::Accepted )
1924 lastFileDir=fd->directory().path();
1925 QStringList flist = fd->selectedFiles();
1926 QStringList::Iterator it = flist.begin();
1927 while( it != flist.end() )
1930 fileLoad(*it, lmode);
1937 void Main::fileLoad()
1942 void Main::fileLoadRecent()
1944 QAction *action = qobject_cast<QAction *>(sender());
1946 fileLoad (action->data().toString(), NewMap);
1949 void Main::addRecentMap (const QString &fileName)
1952 QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
1953 files.removeAll(fileName);
1954 files.prepend(fileName);
1955 while (files.size() > MaxRecentFiles)
1958 settings.setValue("/mainwindow/recentFileList", files);
1960 setupRecentMapsMenu();
1963 void Main::fileSave(VymModel *m, const SaveMode &savemode)
1967 if ( m->getFilePath().isEmpty() )
1969 // We have no filepath yet,
1970 // call fileSaveAs() now, this will call fileSave()
1972 // First switch to editor
1973 //FIXME needed??? tabWidget->setCurrentWidget (m->getMapEditor());
1974 fileSaveAs(savemode);
1977 if (m->save (savemode)==success)
1979 statusBar()->message(
1980 tr("Saved %1").arg(m->getFilePath()),
1982 addRecentMap (m->getFilePath() );
1984 statusBar()->message(
1985 tr("Couldn't save ").arg(m->getFilePath()),
1989 void Main::fileSave()
1991 fileSave (currentModel(), CompleteMap);
1994 void Main::fileSave(VymModel *m)
1996 fileSave (m,CompleteMap);
1999 void Main::fileSaveAs(const SaveMode& savemode)
2003 if (currentMapEditor())
2005 if (savemode==CompleteMap)
2006 fn = Q3FileDialog::getSaveFileName( QString::null, "VYM map (*.vym)", this );
2008 fn = Q3FileDialog::getSaveFileName( QString::null, "VYM part of map (*.vyp)", this );
2009 if ( !fn.isEmpty() )
2011 // Check for existing file
2012 if (QFile (fn).exists())
2014 QMessageBox mb( vymName,
2015 tr("The file %1\nexists already. Do you want to").arg(fn),
2016 QMessageBox::Warning,
2017 QMessageBox::Yes | QMessageBox::Default,
2018 QMessageBox::Cancel | QMessageBox::Escape,
2019 QMessageBox::NoButton);
2020 mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
2021 mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
2024 case QMessageBox::Yes:
2027 case QMessageBox::Cancel:
2034 // New file, add extension to filename, if missing
2035 // This is always .vym or .vyp, depending on savemode
2036 if (savemode==CompleteMap)
2038 if (!fn.contains (".vym") && !fn.contains (".xml"))
2042 if (!fn.contains (".vyp") && !fn.contains (".xml"))
2051 VymModel *m=currentModel();
2053 fileSave(m, savemode);
2055 // Set name of tab, assuming current tab is the one we just saved
2056 if (savemode==CompleteMap)
2057 tabWidget->setTabText (tabWidget->currentIndex(), m->getFileName() );
2063 void Main::fileSaveAs()
2065 fileSaveAs (CompleteMap);
2068 void Main::fileImportKDEBookmarks()
2070 ImportKDEBookmarks im;
2072 if (success==fileLoad (im.getTransformedFile(),NewMap) && currentMapEditor() )
2073 currentMapEditor()->getModel()->setFilePath ("");
2076 void Main::fileImportFirefoxBookmarks()
2078 Q3FileDialog *fd=new Q3FileDialog( this);
2079 fd->setDir (vymBaseDir.homeDirPath()+"/.mozilla/firefox");
2080 fd->setMode (Q3FileDialog::ExistingFiles);
2081 fd->addFilter ("Firefox "+tr("Bookmarks")+" (*.html)");
2082 fd->setCaption(tr("Import")+" "+"Firefox "+tr("Bookmarks"));
2085 if ( fd->exec() == QDialog::Accepted )
2087 ImportFirefoxBookmarks im;
2088 QStringList flist = fd->selectedFiles();
2089 QStringList::Iterator it = flist.begin();
2090 while( it != flist.end() )
2093 if (im.transform() &&
2094 success==fileLoad (im.getTransformedFile(),NewMap,FreemindMap) &&
2095 currentMapEditor() )
2096 currentMapEditor()->getModel()->setFilePath ("");
2103 void Main::fileImportFreemind()
2105 QStringList filters;
2106 filters <<"Freemind map (*.mm)"<<"All files (*)";
2107 QFileDialog *fd=new QFileDialog( this);
2108 fd->setDir (lastFileDir);
2109 fd->setFileMode (QFileDialog::ExistingFiles);
2110 fd->setFilters (filters);
2111 fd->setCaption(vymName+ " - " +tr("Load Freemind map"));
2115 if ( fd->exec() == QDialog::Accepted )
2117 lastFileDir=fd->directory().path();
2118 QStringList flist = fd->selectedFiles();
2119 QStringList::Iterator it = flist.begin();
2120 while( it != flist.end() )
2123 if ( fileLoad (fn,NewMap, FreemindMap) )
2125 currentMapEditor()->getModel()->setFilePath ("");
2134 void Main::fileImportMM()
2138 Q3FileDialog *fd=new Q3FileDialog( this);
2139 fd->setDir (lastFileDir);
2140 fd->setMode (Q3FileDialog::ExistingFiles);
2141 fd->addFilter ("Mind Manager (*.mmap)");
2142 fd->setCaption(tr("Import")+" "+"Mind Manager");
2145 if ( fd->exec() == QDialog::Accepted )
2147 lastFileDir=fd->dirPath();
2148 QStringList flist = fd->selectedFiles();
2149 QStringList::Iterator it = flist.begin();
2150 while( it != flist.end() )
2153 if (im.transform() &&
2154 success==fileLoad (im.getTransformedFile(),NewMap) &&
2155 currentMapEditor() )
2156 currentMapEditor()->getModel()->setFilePath ("");
2163 void Main::fileImportDir()
2165 VymModel *m=currentModel();
2166 if (m) m->importDir();
2169 void Main::fileExportXML()
2171 VymModel *m=currentModel();
2172 if (m) m->exportXML();
2176 void Main::fileExportXHTML()
2178 VymModel *m=currentModel();
2179 if (m) m->exportXHTML();
2182 void Main::fileExportImage()
2184 VymModel *m=currentModel();
2185 if (m) m->exportImage();
2188 void Main::fileExportASCII()
2190 VymModel *m=currentModel();
2191 if (m) m->exportASCII();
2194 void Main::fileExportCSV() //FIXME not scriptable yet
2196 VymModel *m=currentModel();
2201 ex.addFilter ("CSV (*.csv)");
2202 ex.setDir(lastImageDir);
2203 ex.setCaption(vymName+ " -" +tr("Export as CSV")+" "+tr("(still experimental)"));
2204 if (ex.execDialog() )
2206 m->setExportMode(true);
2208 m->setExportMode(false);
2213 void Main::fileExportLaTeX() //FIXME not scriptable yet
2215 VymModel *m=currentModel();
2220 ex.addFilter ("Tex (*.tex)");
2221 ex.setDir(lastImageDir);
2222 ex.setCaption(vymName+ " -" +tr("Export as LaTeX")+" "+tr("(still experimental)"));
2223 if (ex.execDialog() )
2225 m->setExportMode(true);
2227 m->setExportMode(false);
2232 void Main::fileExportKDEBookmarks() //FIXME not scriptable yet
2234 ExportKDEBookmarks ex;
2235 VymModel *m=currentModel();
2243 void Main::fileExportTaskjuggler() //FIXME not scriptable yet
2245 ExportTaskjuggler ex;
2246 VymModel *m=currentModel();
2250 ex.setCaption ( vymName+" - "+tr("Export to")+" Taskjuggler"+tr("(still experimental)"));
2251 ex.setDir(lastImageDir);
2252 ex.addFilter ("Taskjuggler (*.tjp)");
2253 if (ex.execDialog() )
2255 m->setExportMode(true);
2257 m->setExportMode(false);
2262 void Main::fileExportOOPresentation() //FIXME not scriptable yet
2264 ExportOOFileDialog *fd=new ExportOOFileDialog( this,vymName+" - "+tr("Export to")+" Open Office");
2265 // TODO add preview in dialog
2266 //ImagePreview *p =new ImagePreview (fd);
2267 //fd->setContentsPreviewEnabled( TRUE );
2268 //fd->setContentsPreview( p, p );
2269 //fd->setPreviewMode( QFileDialog::Contents );
2270 fd->setCaption(vymName+" - " +tr("Export to")+" Open Office");
2271 fd->setDir (QDir().current());
2272 if (fd->foundConfig())
2276 if ( fd->exec() == QDialog::Accepted )
2278 QString fn=fd->selectedFile();
2279 if (!fn.contains (".odp"))
2282 //lastImageDir=fn.left(fn.findRev ("/"));
2283 VymModel *m=currentModel();
2284 if (m) m->exportOOPresentation(fn,fd->selectedConfig());
2288 QMessageBox::warning(0,
2290 tr("Couldn't find configuration for export to Open Office\n"));
2294 void Main::fileCloseMap()
2296 MapEditor *me = currentMapEditor();
2297 VymModel *m=currentModel();
2300 if (m->hasChanged())
2302 QMessageBox mb( vymName,
2303 tr("The map %1 has been modified but not saved yet. Do you want to").arg(me->getModel()->getFileName()),
2304 QMessageBox::Warning,
2305 QMessageBox::Yes | QMessageBox::Default,
2307 QMessageBox::Cancel | QMessageBox::Escape );
2308 mb.setButtonText( QMessageBox::Yes, tr("Save modified map before closing it") );
2309 mb.setButtonText( QMessageBox::No, tr("Discard changes"));
2312 case QMessageBox::Yes:
2314 fileSave(m, CompleteMap);
2316 case QMessageBox::No:
2317 // close without saving
2319 case QMessageBox::Cancel:
2325 tabModel.removeAt (tabWidget->currentIndex() );
2326 tabWidget->removeTab (tabWidget->currentIndex() );
2327 delete me; // FIXME if event was triggered _in_ ME this causes warning message
2332 void Main::filePrint()
2334 if (currentMapEditor())
2335 currentMapEditor()->print();
2338 void Main::fileExitVYM()
2340 // Check if one or more editors have changed
2342 for (i=0;i<=tabModel.count() -1;i++)
2344 // If something changed, ask what to do
2345 if (tabModel.at(i)->hasChanged())
2347 tabWidget->setCurrentPage(i);
2348 QMessageBox mb( vymName,
2349 tr("This map is not saved yet. Do you want to"),
2350 QMessageBox::Warning,
2351 QMessageBox::Yes | QMessageBox::Default,
2353 QMessageBox::Cancel | QMessageBox::Escape );
2354 mb.setButtonText( QMessageBox::Yes, tr("Save map") );
2355 mb.setButtonText( QMessageBox::No, tr("Discard changes") );
2358 mb.setActiveWindow();
2359 switch( mb.exec() ) {
2360 case QMessageBox::Yes:
2361 // save (the changed editors) and exit
2362 fileSave(currentModel(), CompleteMap);
2364 case QMessageBox::No:
2365 // exit without saving
2367 case QMessageBox::Cancel:
2368 // don't save and don't exit
2372 } // loop over all MEs
2376 void Main::editUndo()
2378 VymModel *m=currentModel();
2382 void Main::editRedo()
2384 VymModel *m=currentModel();
2388 void Main::gotoHistoryStep (int i)
2390 VymModel *m=currentModel();
2391 if (m) m->gotoHistoryStep(i);
2394 void Main::editCopy()
2396 VymModel *m=currentModel();
2400 void Main::editPaste()
2402 VymModel *m=currentModel();
2406 void Main::editCut()
2408 VymModel *m=currentModel();
2412 void Main::editOpenFindWindow()
2414 findWindow->popup();
2415 findWindow->raise();
2416 findWindow->setActiveWindow();
2419 void Main::editFind(QString s)
2421 VymModel *m=currentModel();
2425 BranchObj *bo=m->findText(s, cs);
2428 statusBar()->message( "Found: " + bo->getHeading(), statusbarTime );
2431 QMessageBox::information( findWindow, tr( "VYM -Information:" ),
2432 tr("No matches found for \"%1\"").arg(s));
2437 void Main::editFindChanged()
2438 { // Notify editor, to abort the current find process
2439 VymModel *m=currentModel();
2440 if (m) m->findReset();
2443 void Main::openTabs(QStringList urls)
2445 if (!urls.isEmpty())
2449 QString browser=settings.value("/mainwindow/readerURL" ).toString();
2451 if (!procBrowser || procBrowser->state()!=QProcess::Running)
2453 QString u=urls.takeFirst();
2454 procBrowser = new QProcess( this );
2456 procBrowser->start(browser,args);
2457 if ( !procBrowser->waitForStarted())
2459 // try to set path to browser
2460 QMessageBox::warning(0,
2462 tr("Couldn't find a viewer to open %1.\n").arg(u)+
2463 tr("Please use Settings->")+tr("Set application to open an URL"));
2466 #if defined(Q_OS_WIN32)
2467 // There's no sleep in VCEE, replace it with Qt's QThread::wait().
2468 this->thread()->wait(3000);
2473 if (browser.contains("konqueror"))
2475 for (int i=0; i<urls.size(); i++)
2478 // Try to open new tab in existing konqueror started previously by vym
2479 p=new QProcess (this);
2481 #if defined(Q_OS_WIN32)
2482 // In Win32, pid is not a longlong, but a pointer to a _PROCESS_INFORMATION structure.
2483 // Redundant change in Win32, as there's no konqueror, but I wanted to follow the original logic.
2484 args<< QString("konqueror-%1").arg(procBrowser->pid()->dwProcessId)<<
2485 "konqueror-mainwindow#1"<<
2489 args<< QString("konqueror-%1").arg(procBrowser->pid())<<
2490 "konqueror-mainwindow#1"<<
2494 p->start ("dcop",args);
2495 //cout << qPrintable (args.join(" "))<<endl;
2496 if ( !p->waitForStarted() ) success=false;
2499 QMessageBox::warning(0,
2501 tr("Couldn't start %1 to open a new tab in %2.").arg("dcop").arg("konqueror"));
2503 } else if (browser.contains ("firefox") || browser.contains ("mozilla") )
2505 for (int i=0; i<urls.size(); i++)
2507 // Try to open new tab in firefox
2508 p=new QProcess (this);
2509 args<< "-remote"<< QString("openurl(%1,new-tab)").arg(urls.at(i));
2510 p->start (browser,args);
2511 if ( !p->waitForStarted() ) success=false;
2514 QMessageBox::warning(0,
2516 tr("Couldn't start %1 to open a new tab").arg(browser));
2519 QMessageBox::warning(0,
2521 tr("Sorry, currently only Konqueror and Mozilla support tabbed browsing."));
2525 void Main::editOpenURL()
2528 VymModel *m=currentModel();
2531 QString url=m->getURL();
2533 if (url=="") return;
2534 QString browser=settings.value("/mainwindow/readerURL" ).toString();
2535 procBrowser = new QProcess( this );
2537 procBrowser->start(browser,args);
2538 if ( !procBrowser->waitForStarted())
2540 // try to set path to browser
2541 QMessageBox::warning(0,
2543 tr("Couldn't find a viewer to open %1.\n").arg(url)+
2544 tr("Please use Settings->")+tr("Set application to open an URL"));
2549 void Main::editOpenURLTab()
2551 VymModel *m=currentModel();
2555 urls.append(m->getURL());
2559 void Main::editOpenMultipleURLTabs()
2561 VymModel *m=currentModel();
2571 void Main::editURL()
2573 VymModel *m=currentModel();
2574 if (m) m->editURL();
2577 void Main::editLocalURL()
2579 VymModel *m=currentModel();
2580 if (m) m->editLocalURL();
2583 void Main::editHeading2URL()
2585 VymModel *m=currentModel();
2586 if (m) m->editHeading2URL();
2589 void Main::editBugzilla2URL()
2591 VymModel *m=currentModel();
2592 if (m) m->editBugzilla2URL();
2595 void Main::editFATE2URL()
2597 VymModel *m=currentModel();
2598 if (m) m->editFATE2URL();
2601 void Main::editHeadingFinished(VymModel *m)
2605 if (!actionSettingsAutoSelectNewBranch->isOn() &&
2606 !prevSelection.isEmpty())
2607 m->select(prevSelection);
2613 void Main::editAttributeFinished()
2615 // only called from editHeading(), so there is a currentME
2618 MapEditor *me=currentMapEditor();
2621 me->setStateEditHeading (false);
2622 QPoint p; //Not used here, only to find out pos of branch
2624 QString s=me->getHeading(ok,p);
2626 #if defined(Q_OS_MACX)
2628 if (ok && s!=lineedit->text())
2629 me->setHeading(lineedit->text());
2631 lineedit->releaseKeyboard();
2635 if (!actionSettingsAutoSelectNewBranch->isOn() &&
2636 !prevSelection.isEmpty())
2637 me->select(prevSelection);
2643 #include "attribute.h"
2644 #include "attributedialog.h"
2645 void Main::editAttribute()
2648 MapEditor *me=currentMapEditor();
2651 BranchObj *bo=me->getModel()->getSelectedBranch();
2654 AttributeDialog dia(this);
2655 dia.setTable (me->attributeTable() );
2657 dia.setMode (Definition);
2664 if (currentMapEditor())
2666 MapEditor *me=currentMapEditor();
2667 QString oldSel=me->getSelectString();
2669 if (lineedit->isVisible())
2670 editAttributeFinished();
2675 QString s=me->getHeading(ok,p);
2679 me->setStateEditHeading (true);
2680 #if defined(Q_OS_MACX)
2681 p=me->mapToGlobal (p);
2682 QDialog *d =new QDialog(NULL);
2683 QLineEdit *le=new QLineEdit (d);
2684 d->setWindowFlags (Qt::FramelessWindowHint);
2685 d->setGeometry(p.x(),p.y(),230,25);
2686 le->resize (d->width()-10,d->height());
2689 connect (le, SIGNAL (returnPressed()), d, SLOT (accept()));
2690 d->activateWindow();
2692 me->setHeading (le->text());
2695 editHeadingFinished();
2697 p=me->mapTo (this,p);
2698 lineedit->setGeometry(p.x(),p.y(),230,25);
2699 lineedit->setText(s);
2700 lineedit->setCursorPosition(1);
2701 lineedit->selectAll();
2703 lineedit->grabKeyboard();
2704 lineedit->setFocus();
2708 } // currentMapEditor()
2713 void Main::openVymLinks(const QStringList &vl)
2715 for (int j=0; j<vl.size(); j++)
2717 // compare path with already loaded maps
2720 for (i=0;i<=tabModel.count() -1;i++)
2722 if (vl.at(j)==tabModel.at(i)->getFilePath() )
2731 if (!QFile(vl.at(j)).exists() )
2732 QMessageBox::critical( 0, tr( "Critical Error" ),
2733 tr("Couldn't open map %1").arg(vl.at(j)));
2736 fileLoad (vl.at(j), NewMap);
2737 tabWidget->setCurrentIndex (tabWidget->count()-1);
2740 // Go to tab containing the map
2741 tabWidget->setCurrentIndex (index);
2745 void Main::editOpenVymLink()
2747 VymModel *m=currentModel();
2751 vl.append(m->getVymLink());
2756 void Main::editOpenMultipleVymLinks()
2758 QString currentVymLink;
2759 VymModel *m=currentModel();
2762 QStringList vl=m->getVymLinks();
2767 void Main::editVymLink()
2769 VymModel *m=currentModel();
2774 void Main::editDeleteVymLink()
2776 VymModel *m=currentModel();
2777 if (m) m->deleteVymLink();
2780 void Main::editToggleHideExport()
2782 VymModel *m=currentModel();
2783 if (m) m->toggleHideExport();
2786 void Main::editMapInfo()
2788 VymModel *m=currentModel();
2790 ExtraInfoDialog dia;
2791 dia.setMapName (m->getFileName() );
2792 dia.setAuthor (m->getAuthor() );
2793 dia.setComment(m->getComment() );
2795 /* FIXME no stats at the moment (view dependent...)
2798 stats+=tr("%1 items on map\n","Info about map").arg (mapScene->items().size(),6);
2808 if (!bo->getNote().isEmpty() ) n++;
2809 f+= bo->countFloatImages();
2811 xl+=bo->countXLinks();
2814 stats+=QString ("%1 branches\n").arg (b-1,6);
2815 stats+=QString ("%1 xLinks \n").arg (xl,6);
2816 stats+=QString ("%1 notes\n").arg (n,6);
2817 stats+=QString ("%1 images\n").arg (f,6);
2818 dia.setStats (stats);
2821 // Finally show dialog
2822 if (dia.exec() == QDialog::Accepted)
2824 m->setAuthor (dia.getAuthor() );
2825 m->setComment (dia.getComment() );
2829 void Main::editMoveUp()
2831 VymModel *m=currentModel();
2832 if (m) m->moveBranchUp();
2835 void Main::editMoveDown()
2837 VymModel *m=currentModel();
2838 if (m) m->moveBranchDown();
2841 void Main::editSortChildren()
2843 VymModel *m=currentModel();
2844 if (m) m->sortChildren();
2847 void Main::editToggleScroll()
2849 VymModel *m=currentModel();
2850 if (m) m->toggleScroll();
2853 void Main::editUnscrollChildren()
2855 VymModel *m=currentModel();
2856 if (m) m->unscrollChildren();
2859 void Main::editAddMapCenter()
2861 VymModel *m=currentModel();
2868 void Main::editNewBranch()
2870 VymModel *m=currentModel();
2873 BranchObj *bo=(BranchObj*)m->getSelection();
2874 BranchObj *newbo=m->addNewBranch(0);
2876 prevSelection=m->getSelectString(bo);
2882 if (actionSettingsAutoEditNewBranch->isOn())
2884 currentMapEditor()->editHeading();
2887 if (!prevSelection.isEmpty())
2889 m->select(prevSelection);
2895 void Main::editNewBranchBefore()
2897 VymModel *m=currentModel();
2900 BranchObj *bo=(BranchObj*)m->getSelection();
2901 BranchObj *newbo=m->addNewBranchBefore();
2908 if (actionSettingsAutoEditNewBranch->isOn())
2910 if (!actionSettingsAutoSelectNewBranch->isOn())
2911 prevSelection=m->getSelectString(bo);
2912 currentMapEditor()->editHeading();
2917 void Main::editNewBranchAbove()
2919 VymModel *m=currentModel();
2922 BranchObj *bo=(BranchObj*)m->getSelection();
2923 BranchObj *newbo=m->addNewBranch (-1);
2930 if (actionSettingsAutoEditNewBranch->isOn())
2932 if (!actionSettingsAutoSelectNewBranch->isOn())
2933 prevSelection=m->getSelectString (bo);
2934 currentMapEditor()->editHeading();
2939 void Main::editNewBranchBelow()
2941 VymModel *m=currentModel();
2944 BranchObj *bo=(BranchObj*)m->getSelection();
2945 BranchObj *newbo=m->addNewBranch (1);
2952 if (actionSettingsAutoEditNewBranch->isOn())
2954 if (!actionSettingsAutoSelectNewBranch->isOn())
2955 prevSelection=m->getSelectString(bo);
2956 currentMapEditor()->editHeading();
2961 void Main::editImportAdd()
2963 fileLoad (ImportAdd);
2966 void Main::editImportReplace()
2968 fileLoad (ImportReplace);
2971 void Main::editSaveBranch()
2973 fileSaveAs (PartOfMap);
2976 void Main::editDeleteKeepChildren()
2978 VymModel *m=currentModel();
2979 if (m) m->deleteKeepChildren();
2982 void Main::editDeleteChildren()
2984 VymModel *m=currentModel();
2985 if (m) m->deleteChildren();
2988 void Main::editDeleteSelection()
2990 VymModel *m=currentModel();
2991 if (m && actionSettingsUseDelKey->isOn())
2992 m->deleteSelection();
2995 void Main::editUpperBranch()
2997 VymModel *m=currentModel();
2998 if (m) m->selectUpperBranch();
3001 void Main::editLowerBranch()
3003 VymModel *m=currentModel();
3004 if (m) m->selectLowerBranch();
3007 void Main::editLeftBranch()
3009 VymModel *m=currentModel();
3010 if (m) m->selectLeftBranch();
3013 void Main::editRightBranch()
3015 VymModel *m=currentModel();
3016 if (m) m->selectRightBranch();
3019 void Main::editFirstBranch()
3021 VymModel *m=currentModel();
3022 if (m) m->selectFirstBranch();
3025 void Main::editLastBranch()
3027 VymModel *m=currentModel();
3028 if (m) m->selectLastBranch();
3031 void Main::editLoadImage()
3033 VymModel *m=currentModel();
3034 if (m) m->loadFloatImage();
3037 void Main::editSaveImage()
3039 VymModel *m=currentModel();
3040 if (m) m->saveFloatImage();
3043 void Main::editFollowXLink(QAction *a)
3046 VymModel *m=currentModel();
3048 m->followXLink(branchXLinksContextMenuFollow->actions().indexOf(a));
3051 void Main::editEditXLink(QAction *a)
3053 VymModel *m=currentModel();
3055 m->editXLink(branchXLinksContextMenuEdit->actions().indexOf(a));
3058 void Main::formatSelectColor()
3060 QColor col = QColorDialog::getColor((currentColor ), this );
3061 if ( !col.isValid() ) return;
3062 colorChanged( col );
3065 void Main::formatPickColor()
3067 VymModel *m=currentModel();
3069 colorChanged( m->getCurrentHeadingColor() );
3072 void Main::colorChanged(QColor c)
3074 QPixmap pix( 16, 16 );
3076 actionFormatColor->setIconSet( pix );
3080 void Main::formatColorBranch()
3082 VymModel *m=currentModel();
3083 if (m) m->colorBranch(currentColor);
3086 void Main::formatColorSubtree()
3088 VymModel *m=currentModel();
3089 if (m) m->colorSubtree (currentColor);
3092 void Main::formatLinkStyleLine()
3094 VymModel *m=currentModel();
3097 m->setMapLinkStyle("StyleLine");
3098 actionFormatLinkStyleLine->setOn(true);
3102 void Main::formatLinkStyleParabel()
3104 VymModel *m=currentModel();
3107 m->setMapLinkStyle("StyleParabel");
3108 actionFormatLinkStyleParabel->setOn(true);
3112 void Main::formatLinkStylePolyLine()
3114 VymModel *m=currentModel();
3117 m->setMapLinkStyle("StylePolyLine");
3118 actionFormatLinkStylePolyLine->setOn(true);
3122 void Main::formatLinkStylePolyParabel()
3124 VymModel *m=currentModel();
3127 m->setMapLinkStyle("StylePolyParabel");
3128 actionFormatLinkStylePolyParabel->setOn(true);
3132 void Main::formatSelectBackColor()
3134 VymModel *m=currentModel();
3135 if (m) m->selectMapBackgroundColor();
3138 void Main::formatSelectBackImage()
3140 VymModel *m=currentModel();
3142 m->selectMapBackgroundImage();
3145 void Main::formatSelectLinkColor()
3147 VymModel *m=currentModel();
3150 QColor col = QColorDialog::getColor( m->getMapDefLinkColor(), this );
3151 m->setMapDefLinkColor( col );
3155 void Main::formatSelectSelectionColor()
3157 VymModel *m=currentModel();
3160 QColor col = QColorDialog::getColor( m->getMapDefLinkColor(), this );
3161 m->setSelectionColor (col);
3166 void Main::formatToggleLinkColorHint()
3168 VymModel *m=currentModel();
3169 if (m) m->toggleMapLinkColorHint();
3173 void Main::formatHideLinkUnselected() //FIXME get rid of this with imagepropertydialog
3175 VymModel *m=currentModel();
3177 m->setHideLinkUnselected(actionFormatHideLinkUnselected->isOn());
3180 void Main::viewZoomReset()
3182 if (currentMapEditor())
3186 currentMapEditor()->setMatrix( m );
3190 void Main::viewZoomIn()
3192 if (currentMapEditor())
3194 QMatrix m = currentMapEditor()->matrix();
3195 m.scale( 1.25, 1.25 );
3196 currentMapEditor()->setMatrix( m );
3200 void Main::viewZoomOut()
3202 if (currentMapEditor())
3204 QMatrix m = currentMapEditor()->matrix();
3205 m.scale( 0.8, 0.8 );
3206 currentMapEditor()->setMatrix( m );
3210 void Main::viewCenter()
3212 VymModel *m=currentModel();
3213 if (m) m->ensureSelectionVisible();
3216 void Main::networkStartServer()
3218 VymModel *m=currentModel();
3219 if (m) m->newServer();
3222 void Main::networkConnect()
3224 VymModel *m=currentModel();
3225 if (m) m->connectToServer();
3228 bool Main::settingsPDF()
3230 // Default browser is set in constructor
3232 QString text = QInputDialog::getText(
3233 "VYM", tr("Set application to open PDF files")+":", QLineEdit::Normal,
3234 settings.value("/mainwindow/readerPDF").toString(), &ok, this );
3236 settings.setValue ("/mainwindow/readerPDF",text);
3241 bool Main::settingsURL()
3243 // Default browser is set in constructor
3245 QString text = QInputDialog::getText(
3246 "VYM", tr("Set application to open an URL")+":", QLineEdit::Normal,
3247 settings.value("/mainwindow/readerURL").toString()
3250 settings.setValue ("/mainwindow/readerURL",text);
3254 void Main::settingsMacroDir()
3256 QDir defdir(vymBaseDir.path() + "/macros");
3257 if (!defdir.exists())
3259 QDir dir=QFileDialog::getExistingDirectory (
3261 tr ("Directory with vym macros:"),
3262 settings.value ("/macros/macroDir",defdir.path()).toString()
3265 settings.setValue ("/macros/macroDir",dir.absolutePath());
3268 void Main::settingsUndoLevels()
3271 int i = QInputDialog::getInteger(
3273 tr("QInputDialog::getInteger()"),
3274 tr("Number of undo/redo levels:"), settings.value("/mapeditor/stepsTotal").toInt(), 0, 1000, 1, &ok);
3277 settings.setValue ("/mapeditor/stepsTotal",i);
3278 QMessageBox::information( this, tr( "VYM -Information:" ),
3279 tr("Settings have been changed. The next map opened will have \"%1\" undo/redo levels").arg(i));
3283 void Main::settingsAutosaveToggle()
3285 settings.setValue ("/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
3288 void Main::settingsAutosaveTime()
3291 int i = QInputDialog::getInteger(
3293 tr("QInputDialog::getInteger()"),
3294 tr("Number of seconds before autosave:"), settings.value("/mapeditor/autosave/ms").toInt() / 1000, 10, 10000, 1, &ok);
3296 settings.setValue ("/mapeditor/autosave/ms",i * 1000);
3299 void Main::settingsWriteBackupFileToggle()
3301 settings.setValue ("/mapeditor/writeBackupFile",actionSettingsWriteBackupFile->isOn() );
3304 void Main::settingsToggleAnimation()
3306 settings.setValue ("/animation/use",actionSettingsUseAnimation->isOn() );
3309 void Main::settingsToggleDelKey()
3311 if (actionSettingsUseDelKey->isOn())
3313 actionDelete->setAccel (QKeySequence (Qt::Key_Delete));
3316 actionDelete->setAccel (QKeySequence (""));
3320 void Main::windowToggleNoteEditor()
3322 if (textEditor->isVisible() )
3323 windowHideNoteEditor();
3325 windowShowNoteEditor();
3328 void Main::windowToggleHistory()
3330 if (historyWindow->isVisible())
3331 historyWindow->hide();
3333 historyWindow->show();
3337 void Main::windowToggleProperty()
3339 if (branchPropertyWindow->isVisible())
3340 branchPropertyWindow->hide();
3342 branchPropertyWindow->show();
3343 branchPropertyWindow->setModel (currentModel() );
3346 void Main::windowToggleAntiAlias()
3348 bool b=actionViewToggleAntiAlias->isOn();
3350 for (int i=0;i<tabModel.count();i++)
3352 me=tabModel.at(i)->getMapEditor();
3353 if (me) me->setAntiAlias(b);
3358 void Main::windowToggleSmoothPixmap()
3360 bool b=actionViewToggleSmoothPixmapTransform->isOn();
3362 for (int i=0;i<tabModel.count();i++)
3365 me=tabModel.at(i)->getMapEditor();
3366 if (me) me->setSmoothPixmap(b);
3370 void Main::updateHistory(SimpleSettings &undoSet)
3372 historyWindow->update (undoSet);
3375 void Main::updateNoteFlag()
3377 // this slot is connected to TextEditor::textHasChanged()
3379 VymModel *m=currentModel();
3380 if (m) m->updateNoteFlag();
3383 void Main::updateSatellites(VymModel* model)
3385 branchPropertyWindow->setModel (model );
3388 void Main::updateActions()
3390 VymModel *m =currentModel();
3391 LinkableMapObj *selection;
3395 actionFilePrint->setEnabled (true);
3398 selection=m->getSelection();
3400 // Link style in context menu
3401 switch (m->getMapLinkStyle())
3403 case LinkableMapObj::Line:
3404 actionFormatLinkStyleLine->setOn(true);
3406 case LinkableMapObj::Parabel:
3407 actionFormatLinkStyleParabel->setOn(true);
3409 case LinkableMapObj::PolyLine:
3410 actionFormatLinkStylePolyLine->setOn(true);
3412 case LinkableMapObj::PolyParabel:
3413 actionFormatLinkStylePolyParabel->setOn(true);
3420 QPixmap pix( 16, 16 );
3421 pix.fill( m->getMapBackgroundColor() );
3422 actionFormatBackColor->setIconSet( pix );
3423 pix.fill( m->getSelectionColor() );
3424 actionFormatSelectionColor->setIconSet( pix );
3425 pix.fill( m->getMapDefLinkColor() );
3426 actionFormatLinkColor->setIconSet( pix );
3429 historyWindow->setCaption (vymName + " - " +tr("History for %1","Window Caption").arg(m->getFileName()));
3434 actionFilePrint->setEnabled (false);
3440 // updateActions is also called when NoteEditor is closed
3441 actionViewToggleNoteEditor->setOn (textEditor->isVisible());
3442 actionViewToggleHistoryWindow->setOn (historyWindow->isVisible());
3443 actionViewTogglePropertyWindow->setOn (branchPropertyWindow->isVisible());
3445 if (m && m->getMapLinkColorHint()==LinkableMapObj::HeadingColor)
3446 actionFormatLinkColorHint->setOn(true);
3448 actionFormatLinkColorHint->setOn(false);
3451 if (m && m->hasChanged() )
3452 actionFileSave->setEnabled( true);
3454 actionFileSave->setEnabled( true);
3455 if (m && m->isUndoAvailable())
3456 actionUndo->setEnabled( true);
3458 actionUndo->setEnabled( false);
3460 if (m && m->isRedoAvailable())
3461 actionRedo->setEnabled( true);
3463 actionRedo->setEnabled( false);
3467 if ( (typeid(*selection) == typeid(BranchObj)) ||
3468 (typeid(*selection) == typeid(MapCenterObj)) )
3470 BranchObj *bo=(BranchObj*)selection;
3471 // Take care of links
3472 if (bo->countXLinks()==0)
3474 branchXLinksContextMenuEdit->clear();
3475 branchXLinksContextMenuFollow->clear();
3480 branchXLinksContextMenuEdit->clear();
3481 branchXLinksContextMenuFollow->clear();
3482 for (int i=0; i<=bo->countXLinks();i++)
3484 bot=bo->XLinkTargetAt(i);
3487 s=bot->getHeading();
3488 if (s.length()>xLinkMenuWidth)
3489 s=s.left(xLinkMenuWidth)+"...";
3490 branchXLinksContextMenuFollow->addAction (s);
3491 branchXLinksContextMenuEdit->addAction (s);
3496 standardFlagsDefault->setEnabled (true);
3498 actionToggleScroll->setEnabled (true);
3499 if ( bo->isScrolled() )
3500 actionToggleScroll->setOn(true);
3502 actionToggleScroll->setOn(false);
3504 if ( bo->getURL().isEmpty() )
3506 actionOpenURL->setEnabled (false);
3507 actionOpenURLTab->setEnabled (false);
3511 actionOpenURL->setEnabled (true);
3512 actionOpenURLTab->setEnabled (true);
3514 if ( bo->getVymLink().isEmpty() )
3516 actionOpenVymLink->setEnabled (false);
3517 actionDeleteVymLink->setEnabled (false);
3520 actionOpenVymLink->setEnabled (true);
3521 actionDeleteVymLink->setEnabled (true);
3524 if (bo->canMoveBranchUp())
3525 actionMoveUp->setEnabled (true);
3527 actionMoveUp->setEnabled (false);
3528 if (bo->canMoveBranchDown())
3529 actionMoveDown->setEnabled (true);
3531 actionMoveDown->setEnabled (false);
3533 actionSortChildren->setEnabled (true);
3535 actionToggleHideExport->setEnabled (true);
3536 actionToggleHideExport->setOn (bo->hideInExport() );
3538 actionFileSave->setEnabled (true);
3539 actionCopy->setEnabled (true);
3540 actionCut->setEnabled (true);
3541 if (!clipboardEmpty)
3542 actionPaste->setEnabled (true);
3544 actionPaste->setEnabled (false);
3545 for (int i=0; i<actionListBranches.size(); ++i)
3546 actionListBranches.at(i)->setEnabled(true);
3547 actionDelete->setEnabled (true);
3548 actionFormatHideLinkUnselected->setOn
3549 (selection->getHideLinkUnselected());
3551 if ( (typeid(*selection) == typeid(FloatImageObj)) )
3553 FloatObj *fo=(FloatImageObj*)selection;
3555 actionOpenURL->setEnabled (false);
3556 actionOpenVymLink->setEnabled (false);
3557 actionDeleteVymLink->setEnabled (false);
3558 actionToggleHideExport->setEnabled (true);
3559 actionToggleHideExport->setOn (fo->hideInExport() );
3562 actionCopy->setEnabled (true);
3563 actionCut->setEnabled (true);
3564 actionPaste->setEnabled (false);
3565 for (int i=0; i<actionListBranches.size(); ++i)
3566 actionListBranches.at(i)->setEnabled(false);
3567 actionDelete->setEnabled (true);
3568 actionFormatHideLinkUnselected->setOn
3569 ( selection->getHideLinkUnselected());
3570 actionMoveUp->setEnabled (false);
3571 actionMoveDown->setEnabled (false);
3576 standardFlagsDefault->setEnabled (false);
3577 actionFileSave->setEnabled (false);
3578 actionCopy->setEnabled (false);
3579 actionCut->setEnabled (false);
3580 actionPaste->setEnabled (false);
3581 for (int i=0; i<actionListBranches.size(); ++i)
3582 actionListBranches.at(i)->setEnabled(false);
3584 actionToggleScroll->setEnabled (false);
3585 actionOpenURL->setEnabled (false);
3586 actionOpenVymLink->setEnabled (false);
3587 actionDeleteVymLink->setEnabled (false);
3588 actionHeading2URL->setEnabled (false);
3589 actionDelete->setEnabled (false);
3590 actionMoveUp->setEnabled (false);
3591 actionMoveDown->setEnabled (false);
3592 actionSortChildren->setEnabled (false);
3593 actionToggleHideExport->setEnabled (false);
3597 Main::ModMode Main::getModMode()
3599 if (actionModModeColor->isOn()) return ModModeColor;
3600 if (actionModModeCopy->isOn()) return ModModeCopy;
3601 if (actionModModeXLink->isOn()) return ModModeXLink;
3605 bool Main::autoEditNewBranch()
3607 return actionSettingsAutoEditNewBranch->isOn();
3610 bool Main::autoSelectNewBranch()
3612 return actionSettingsAutoSelectNewBranch->isOn();
3615 bool Main::useFlagGroups()
3617 return actionSettingsUseFlagGroups->isOn();
3620 void Main::windowShowNoteEditor()
3622 textEditor->setShowWithMain(true);
3624 actionViewToggleNoteEditor->setOn (true);
3627 void Main::windowHideNoteEditor()
3629 textEditor->setShowWithMain(false);
3631 actionViewToggleNoteEditor->setOn (false);
3634 void Main::setScript (const QString &script)
3636 scriptEditor->setScript (script);
3639 void Main::runScript (const QString &script)
3641 VymModel *m=currentModel();
3642 if (m) m->runScript (script);
3645 void Main::runScriptEverywhere (const QString &script)
3648 for (int i=0;i<=tabWidget->count() -1;i++)
3650 me=(MapEditor*)tabWidget->page(i);
3651 if (me) me->getModel()->runScript (script);
3655 void Main::windowNextEditor()
3657 if (tabWidget->currentIndex() < tabWidget->count())
3658 tabWidget->setCurrentIndex (tabWidget->currentIndex() +1);
3661 void Main::windowPreviousEditor()
3663 if (tabWidget->currentIndex() >0)
3664 tabWidget->setCurrentIndex (tabWidget->currentIndex() -1);
3667 void Main::standardFlagChanged()
3669 if (currentMapEditor())
3670 currentMapEditor()->toggleStandardFlag(sender()->name());
3673 void Main::testFunction1()
3675 if (!currentMapEditor()) return;
3676 currentMapEditor()->testFunction1();
3680 void Main::testFunction2()
3682 if (!currentMapEditor()) return;
3683 currentMapEditor()->testFunction2();
3686 void Main::testCommand()
3688 if (!currentMapEditor()) return;
3689 scriptEditor->show();
3692 QString com = QInputDialog::getText(
3693 vymName, "Enter Command:", QLineEdit::Normal,"command", &ok, this );
3694 if (ok) currentMapEditor()->parseAtom(com);
3698 void Main::helpDoc()
3700 QString locale = QLocale::system().name();
3702 if (locale.left(2)=="es")
3703 docname="vym_es.pdf";
3707 QStringList searchList;
3709 #if defined(Q_OS_MACX)
3710 searchList << "./vym.app/Contents/Resources/doc";
3711 #elif defined(Q_OS_WIN32)
3712 searchList << vymInstallDir.path() + "/share/doc/packages/vym";
3714 #if defined(VYM_DOCDIR)
3715 searchList << VYM_DOCDIR;
3717 // default path in SUSE LINUX
3718 searchList << "/usr/share/doc/packages/vym";
3721 searchList << "doc"; // relative path for easy testing in tarball
3722 searchList << "doc/tex"; // Easy testing working on vym.tex
3723 searchList << "/usr/share/doc/vym"; // Debian
3724 searchList << "/usr/share/doc/packages";// Knoppix
3728 for (int i=0; i<searchList.count(); ++i)
3730 docfile.setFileName(searchList.at(i)+"/"+docname);
3731 if (docfile.exists())
3740 QMessageBox::critical(0,
3741 tr("Critcal error"),
3742 tr("Couldn't find the documentation %1 in:\n%2").arg(searchList.join("\n")));
3747 Process *pdfProc = new Process();
3748 args << QDir::toNativeSeparators(docfile.fileName());
3750 pdfProc->start( settings.value("/mainwindow/readerPDF").toString(),args);
3751 if ( !pdfProc->waitForStarted() )
3754 QMessageBox::warning(0,
3756 tr("Couldn't find a viewer to open %1.\n").arg(docfile.fileName())+
3757 tr("Please use Settings->")+tr("Set application to open PDF files"));
3764 void Main::helpDemo()
3766 QStringList filters;
3767 filters <<"VYM example map (*.vym)";
3768 QFileDialog *fd=new QFileDialog( this);
3769 #if defined(Q_OS_MACX)
3770 fd->setDir (QDir("./vym.app/Contents/Resources/demos"));
3772 // default path in SUSE LINUX
3773 fd->setDir (QDir(vymBaseDir.path()+"/demos"));
3776 fd->setFileMode (QFileDialog::ExistingFiles);
3777 fd->setFilters (filters);
3778 fd->setCaption(vymName+ " - " +tr("Load vym example map"));
3782 if ( fd->exec() == QDialog::Accepted )
3784 lastFileDir=fd->directory().path();
3785 QStringList flist = fd->selectedFiles();
3786 QStringList::Iterator it = flist.begin();
3787 while( it != flist.end() )
3790 fileLoad(*it, NewMap);
3798 void Main::helpAbout()
3801 ad.setName ("aboutwindow");
3802 ad.setMinimumSize(500,500);
3803 ad.resize (QSize (500,500));
3807 void Main::helpAboutQT()
3809 QMessageBox::aboutQt( this, "Qt Application Example" );
3812 void Main::callMacro ()
3814 QAction *action = qobject_cast<QAction *>(sender());
3818 i=action->data().toInt();
3819 QString mDir (settings.value ("macros/macroDir").toString() );
3821 QString fn=mDir + QString("/macro-%1.vys").arg(i+1);
3823 if ( !f.open( QIODevice::ReadOnly ) )
3825 QMessageBox::warning(0,
3827 tr("Couldn't find a macro at %1.\n").arg(fn)+
3828 tr("Please use Settings->")+tr("Set directory for vym macros"));
3832 QTextStream ts( &f );
3833 QString macro= ts.read();
3835 if (! macro.isEmpty())
3837 VymModel *m=currentModel();
3838 if (m) m->runScript(macro);