mainwindow.cpp
author insilmaril
Tue, 05 Aug 2008 07:36:53 +0000
changeset 725 7ea31701156e
parent 724 cf14046909cd
child 726 7f43b93242aa
permissions -rw-r--r--
Preview: Added QTreeView to mainwindow (not yet functional)
     1 #include "mainwindow.h"
     2 
     3 #include <QtGui>
     4 
     5 #include <iostream>
     6 #include <typeinfo>
     7 
     8 #include "aboutdialog.h"
     9 #include "branchpropwindow.h"
    10 #include "exportoofiledialog.h"
    11 #include "exports.h"
    12 #include "file.h"
    13 #include "flagrowobj.h"
    14 #include "historywindow.h"
    15 #include "imports.h"
    16 #include "mapeditor.h"
    17 #include "misc.h"
    18 #include "options.h"
    19 #include "process.h"
    20 #include "settings.h"
    21 #include "texteditor.h"
    22 #include "warningdialog.h"
    23 
    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
    29 {
    30   long hProcess;
    31   long hThread;
    32   long dwProcessId;
    33   long dwThreadId;
    34 } PROCESS_INFORMATION, *LPPROCESS_INFORMATION;
    35 #endif
    36 
    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;
    49 extern bool debug;
    50 
    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;
    62 
    63 
    64 extern Settings settings;
    65 extern Options options;
    66 extern ImageIO imageIO;
    67 
    68 extern QDir vymBaseDir;
    69 extern QDir lastImageDir;
    70 extern QDir lastFileDir;
    71 #if defined(Q_OS_WIN32)
    72 extern QDir vymInstallDir;
    73 #endif
    74 extern QString iconPath;
    75 extern QString flagsPath;
    76 
    77 
    78 Main::Main(QWidget* parent, const char* name, Qt::WFlags f) :
    79     QMainWindow(parent,name,f)
    80 {
    81 	mainWindow=this;
    82 
    83 	setCaption ("VYM - View Your Mind");
    84 
    85 	// Load window settings
    86 #if defined(Q_OS_WIN32)
    87     if (settings.value("/mainwindow/geometry/maximized", false).toBool())
    88     {
    89         setWindowState(Qt::WindowMaximized);
    90     }
    91     else
    92 #endif
    93     {
    94         resize (settings.value("/mainwindow/geometry/size", QSize (800,600)).toSize());
    95         move   (settings.value("/mainwindow/geometry/pos",  QPoint(300,100)).toPoint());
    96     }
    97 
    98 	// Sometimes we may need to remember old selections
    99 	prevSelection="";
   100 
   101 	// Default color
   102 	currentColor=Qt::black;
   103 
   104 	// Create unique temporary directory
   105 	bool ok;
   106 	tmpVymDir=makeTmpDir (ok,"vym");
   107 	if (!ok)
   108 	{
   109 		qWarning ("Mainwindow: Could not create temporary directory, failed to start vym");
   110 		exit (1);
   111 	}
   112 	if (debug) qDebug (QString("vym tmpDir=%1").arg(tmpVymDir) );
   113 
   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);
   120 	clipboardEmpty=true;
   121 
   122 	procBrowser=NULL;
   123 
   124 	// Satellite windows //////////////////////////////////////////
   125 
   126 	// history window
   127 	historyWindow=new HistoryWindow();
   128 	connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   129 
   130 	// properties window
   131 	branchPropertyWindow = new BranchPropertyWindow();
   132 	connect (branchPropertyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   133 
   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()));
   137 
   138 	// Connect HistoryWindow, so that we can update flags
   139 	connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   140 
   141 
   142 	// Initialize script editor
   143 	scriptEditor = new SimpleScriptEditor();
   144 	scriptEditor->move (50,50);
   145 
   146 	connect( scriptEditor, SIGNAL( runScript ( QString ) ), 
   147 		this, SLOT( runScript( QString ) ) );
   148 	
   149 
   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() ) );	
   157 
   158 	// Initialize some settings, which are platform dependant
   159 	QString p,s;
   160 
   161 		// application to open URLs
   162 		p="/mainwindow/readerURL";
   163 		#if defined(Q_OS_LINUX)
   164 			s=settings.value (p,"xdg-open").toString();
   165 		#else
   166 			#if defined(Q_OS_MACX)
   167 				s=settings.value (p,"/usr/bin/open").toString();
   168 
   169             #else
   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();
   175                 #else
   176 					s=settings.value (p,"mozilla").toString();
   177 				#endif
   178 			#endif
   179 		#endif
   180 		settings.setValue( p,s);
   181 
   182 		// application to open PDFs
   183 		p="/mainwindow/readerPDF";
   184 		#if defined(Q_OS_LINUX)
   185 			s=settings.value (p,"xdg-open").toString();
   186 		#else
   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();
   191 			#else
   192 				s=settings.value (p,"acroread").toString();
   193 			#endif
   194 		#endif
   195 		settings.setValue( p,s);
   196 
   197 	// width of xLinksMenu
   198 	xLinkMenuWidth=60;
   199 	
   200 	// Create tab widget which holds the maps
   201 	tabWidget= new QTabWidget (this);
   202 	connect( tabWidget, SIGNAL( currentChanged( QWidget * ) ), 
   203 		this, SLOT( editorChanged( QWidget * ) ) );
   204 
   205 	setCentralWidget(tabWidget);	
   206 
   207     setupFileActions();
   208     setupEditActions();
   209     setupFormatActions();
   210     setupViewActions();
   211     setupModeActions();
   212 	setupFlagActions();
   213     setupNetworkActions();
   214     setupSettingsActions();
   215 	setupContextMenus();
   216 	setupMacros();
   217     if (settings.value( "/mainwindow/showTestMenu",false).toBool()) setupTestActions();
   218     setupHelpActions();
   219     
   220     statusBar();
   221 
   222 	restoreState (settings.value("/mainwindow/state",0).toByteArray());
   223 
   224 	updateGeometry();
   225 }
   226 
   227 Main::~Main()
   228 {
   229 	// Save Settings
   230 #if defined(Q_OS_WIN32)
   231     settings.setValue ("/mainwindow/geometry/maximized", isMaximized());
   232 #endif
   233 	settings.setValue ("/mainwindow/geometry/size", size());
   234 	settings.setValue ("/mainwindow/geometry/pos", pos());
   235 	settings.setValue ("/mainwindow/state",saveState(0));
   236 
   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 );
   241 
   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() );
   250 
   251 	//TODO save scriptEditor settings
   252 
   253 	// call the destructors
   254 	delete textEditor;
   255 	delete historyWindow;
   256 	delete branchPropertyWindow;
   257 
   258 	// Remove temporary directory
   259 	removeDir (QDir(tmpVymDir));
   260 }
   261 
   262 void Main::loadCmdLine()
   263 {
   264 	/* TODO draw some kind of splashscreen while loading...
   265 	if (qApp->argc()>1)
   266 	{
   267 	}
   268 	*/
   269 	
   270 	QStringList flist=options.getFileList();
   271 	QStringList::Iterator it=flist.begin();
   272 
   273 	while (it !=flist.end() )
   274 	{
   275 		fileLoad (*it, NewMap);
   276 		*it++;
   277 	}	
   278 }
   279 
   280 
   281 void Main::statusMessage(const QString &s)
   282 {
   283 	statusBar()->message( s);
   284 }
   285 
   286 void Main::closeEvent (QCloseEvent* )
   287 {
   288 	fileExitVYM();
   289 }
   290 
   291 // File Actions
   292 void Main::setupFileActions()
   293 {
   294 	QMenu *fileMenu = menuBar()->addMenu ( tr ("&Map") );
   295     QToolBar *tb = addToolBar( tr ("&Map") );
   296 	tb->setObjectName ("mapTB");
   297 
   298     QAction *a;
   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
   302     a->addTo( tb );
   303 	fileMenu->addAction (a);
   304     connect( a, SIGNAL( triggered() ), this, SLOT( fileNew() ) );
   305 	
   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() ) );
   311 	actionFileNewCopy=a;
   312 	
   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
   316     a->addTo( tb );
   317 	fileMenu->addAction (a);
   318     connect( a, SIGNAL( triggered() ), this, SLOT( fileLoad() ) );
   319 	
   320 	fileLastMapsMenu = fileMenu->addMenu (tr("Open Recent","File menu"));
   321 	fileMenu->addSeparator();
   322 	
   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
   326     a->addTo( tb );
   327 	fileMenu->addAction (a);
   328     connect( a, SIGNAL( triggered() ), this, SLOT( fileSave() ) );
   329 	actionFileSave=a;
   330 	
   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() ) );
   335 
   336 	fileMenu->addSeparator();
   337 
   338 	fileImportMenu = fileMenu->addMenu (tr("Import","File menu"));
   339 
   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() ) );
   344 
   345     if (settings.value( "/mainwindow/showTestMenu",false).toBool()) 
   346 	{
   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() ) );
   351 	}	
   352 
   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() ) );
   357 
   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() ) );
   362 
   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() ) );
   367 
   368 	fileExportMenu = fileMenu->addMenu (tr("Export","File menu"));
   369 
   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);
   374 
   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);
   379 
   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);
   385 
   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);
   390 
   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);
   395 
   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);
   400 
   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);
   405 
   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);
   410 
   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);
   415 
   416 	fileMenu->addSeparator();
   417 
   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
   421     a->addTo( tb );
   422 	fileMenu->addAction (a);
   423     connect( a, SIGNAL( triggered() ), this, SLOT( filePrint() ) );
   424 	actionFilePrint=a;
   425 
   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() ) );
   431 
   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() ) );
   437 }
   438 
   439 
   440 //Edit Actions
   441 void Main::setupEditActions()
   442 {
   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") );
   447 
   448     QAction *a;
   449 	QAction *alt;
   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);
   455     tb->addAction (a);
   456 	editMenu->addAction (a);
   457 	actionUndo=a;
   458     
   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
   462     tb->addAction (a);
   463 	editMenu->addAction (a);
   464 	connect( a, SIGNAL( triggered() ), this, SLOT( editRedo() ) );
   465 	actionRedo=a;
   466    
   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);
   472     tb->addAction (a);
   473 	editMenu->addAction (a);
   474     connect( a, SIGNAL( triggered() ), this, SLOT( editCopy() ) );
   475 	actionCopy=a;
   476 	
   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);
   481     tb->addAction (a);
   482 	editMenu->addAction (a);
   483 	actionCut=a;
   484     connect( a, SIGNAL( triggered() ), this, SLOT( editCut() ) );
   485 	
   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);
   491     tb->addAction (a);
   492 	editMenu->addAction (a);
   493 	actionPaste=a;
   494 
   495 /*
   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);
   501 	addAction (a);
   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);
   508 	addAction (a);
   509     connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
   510 	actionListBranches.append(a);
   511 	editMenu->addAction (a);
   512 	actionHeading=a;
   513 
   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);
   518 	addAction (a);
   519     connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
   520 	actionListBranches.append(a);
   521 */	
   522     
   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);
   528 	addAction (a);
   529     connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteSelection() ) );
   530 	actionDelete=a;
   531     
   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;
   536 
   537 
   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);
   543 	addAction (alt);
   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			
   552 		actionAddBranch=alt;
   553 	#else	
   554 		actionAddBranch=a;
   555 	#endif	
   556 	editMenu->addAction (actionAddBranch);
   557 	tb->addAction (actionAddBranch);
   558 
   559 
   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);
   565 	addAction (a);
   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);
   574 	addAction (a);
   575     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
   576 	actionListBranches.append(a);
   577 
   578 	// Add branch above
   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);
   583 	addAction (a);
   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);
   592 	addAction (a);
   593     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
   594 	actionListBranches.append(a);
   595 
   596 	// Add branch below 
   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);
   601 	addAction (a);
   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);
   610 	addAction (a);
   611     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
   612 	actionListBranches.append(a);
   613 
   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);
   618     tb->addAction (a);
   619 	editMenu->addAction (a);
   620     connect( a, SIGNAL( triggered() ), this, SLOT( editMoveUp() ) );
   621 	actionMoveUp=a;
   622 
   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);
   628     tb->addAction (a);
   629 	editMenu->addAction (a);
   630 	actionMoveDown=a;
   631 	
   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);
   635 	a->addTo( tb );
   636 	editMenu->addAction (a);
   637 	actionSortChildren=a;
   638 
   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() ) );
   643 
   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;
   650 	#else	
   651 		actionToggleScroll=a;
   652 	#endif	
   653 	actionToggleScroll->setEnabled (false);
   654 	actionToggleScroll->setToggleAction(true);
   655     tb->addAction (actionToggleScroll);
   656     editMenu->addAction ( actionToggleScroll);
   657 	editMenu->addAction (actionToggleScroll);
   658 	addAction (a);
   659 	addAction (alt);
   660 	actionListBranches.append(actionToggleScroll);
   661 	
   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() ) );
   666 	
   667 	editMenu->addSeparator();
   668 
   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() ) );
   674     
   675 	editMenu->addSeparator();
   676 
   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" ));
   680     tb->addAction (a);
   681 	addAction(a);
   682     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURL() ) );
   683 	actionOpenURL=a;
   684 
   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 );
   688 	addAction(a);
   689     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURLTab() ) );
   690 	actionOpenURLTab=a;
   691 
   692 	a = new QAction( tr( "Open all URLs in subtree","Edit menu" ), this);
   693 	a->setStatusTip (tr( "Open all URLs in subtree" ));
   694 	addAction(a);
   695 	actionListBranches.append(a);
   696     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleURLTabs() ) );
   697 	actionOpenMultipleURLTabs=a;
   698 
   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);
   704 	addAction(a);
   705     connect( a, SIGNAL( triggered() ), this, SLOT( editURL() ) );
   706 	actionURL=a;
   707 	
   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);
   713 	addAction(a);
   714     connect( a, SIGNAL( triggered() ), this, SLOT( editLocalURL() ) );
   715 	actionLocalURL=a;
   716 	
   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() ) );
   722 	actionHeading2URL=a;
   723     
   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;
   730     
   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() ) );
   736 	actionFATE2URL=a;
   737 	
   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" ));
   740     tb->addAction (a);
   741 	a->setEnabled (false);
   742     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenVymLink() ) );
   743 	actionOpenVymLink=a;
   744 	
   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;
   751 	
   752 
   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);
   758 	actionVymLink=a;
   759 
   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;
   765 
   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);
   770     tb->addAction (a);
   771 	a->setEnabled (false);
   772     connect( a, SIGNAL( triggered() ), this, SLOT( editToggleHideExport() ) );
   773 	actionToggleHideExport=a;
   774 
   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() ) );
   779 	actionMapInfo=a;
   780 
   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);
   787 	actionImportAdd=a;
   788 
   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;
   796 
   797 	// Save selection 
   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);
   803 	actionSaveBranch=a;
   804 
   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);
   811 	addAction (a);
   812 	actionListBranches.append(a);
   813 	actionDeleteKeepChildren=a;
   814 
   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;
   823 
   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);
   829 	addAction (a);
   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);
   835 	addAction (a);
   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);
   841 	addAction (a);
   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);
   847 	addAction (a);
   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);
   853 	addAction (a);
   854 	a->setEnabled (false);
   855 	editMenu->addAction (a);
   856 	actionListBranches.append(a);
   857 	actionSelectFirst=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);
   863 	addAction (a);
   864     connect( a, SIGNAL( triggered() ), this, SLOT( editLastBranch() ) );
   865 	a->setEnabled (false);
   866 	editMenu->addAction (a);
   867 	actionListBranches.append(a);
   868 	actionSelectLast=a;
   869 
   870     a = new QAction( tr( "Add Image...","Edit menu" ), this);
   871 	a->setStatusTip (tr( "Add Image" ));
   872     connect( a, SIGNAL( triggered() ), this, SLOT( editLoadImage() ) );
   873 	actionLoadImage=a;
   874 
   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);
   880 	addAction (a);
   881     connect( a, SIGNAL( triggered() ), this, SLOT( windowToggleProperty() ) );
   882 	actionViewTogglePropertyWindow=a;
   883 }
   884 
   885 // Format Actions
   886 void Main::setupFormatActions()
   887 {
   888     QMenu *formatMenu = menuBar()->addMenu (tr ("F&ormat","Format menu"));
   889 
   890     QToolBar *tb = addToolBar( tr("Format Actions","Format Toolbar name"));
   891 	tb->setObjectName ("formatTB");
   892     QAction *a;
   893     QPixmap pix( 16,16);
   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() ) );
   898     a->addTo( tb );
   899 	formatMenu->addAction (a);
   900 	actionFormatColor=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);
   906     a->addTo( tb );
   907 	formatMenu->addAction (a);
   908 	actionListBranches.append(a);
   909 	actionFormatPickColor=a;
   910 
   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);
   916     a->addTo( tb );
   917 	formatMenu->addAction (a);
   918 	actionListBranches.append(a);
   919 	actionFormatColorSubtree=a;
   920 
   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);
   927     a->addTo( tb );
   928 	actionListBranches.append(a);
   929 	actionFormatColorSubtree=a;
   930 
   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;
   959 	
   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;
   965 
   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;
   973 
   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;
   980 
   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;
   986 
   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;
   992 
   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;
   998 }
   999 
  1000 // View Actions
  1001 void Main::setupViewActions()
  1002 {
  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" ));
  1007 
  1008     QAction *a;
  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 );
  1012     a->addTo( tb );
  1013 	viewMenu->addAction (a);
  1014     connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomReset() ) );
  1015 	
  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);
  1019     a->addTo( tb );
  1020 	viewMenu->addAction (a);
  1021     connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomIn() ) );
  1022 	
  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 );
  1026     a->addTo( tb );
  1027 	viewMenu->addAction (a);
  1028     connect( a, SIGNAL( triggered() ), this, SLOT( viewZoomOut() ) );
  1029 
  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);
  1033     a->addTo( tb );
  1034 	viewMenu->addAction (a);
  1035     connect( a, SIGNAL( triggered() ), this, SLOT( viewCenter() ) );
  1036 
  1037 	viewMenu->addSeparator();	
  1038 
  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);
  1043     a->addTo( tb );
  1044 	viewMenu->addAction (a);
  1045     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleNoteEditor() ) );
  1046 	actionViewToggleNoteEditor=a;
  1047 
  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);
  1052     a->addTo( tb );
  1053 	viewMenu->addAction (a);
  1054     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleHistory() ) );
  1055 	actionViewToggleHistoryWindow=a;
  1056 
  1057 	viewMenu->addAction (actionViewTogglePropertyWindow);
  1058 
  1059 	viewMenu->addSeparator();	
  1060 
  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;
  1068 
  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;
  1076 
  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() ) );
  1082 
  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() ) );
  1088 }
  1089 
  1090 // Mode Actions
  1091 void Main::setupModeActions()
  1092 {
  1093     //QPopupMenu *menu = new QPopupMenu( this );
  1094     //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
  1095 
  1096     QToolBar *tb = addToolBar( tr ("Modes when using modifiers","Modifier Toolbar name") );
  1097 	tb->setObjectName ("modesTB");
  1098     QAction *a;
  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);
  1105 	a->addTo (tb);
  1106 	a->setOn(true);
  1107 	actionModModeColor=a;
  1108 	
  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);
  1113 	a->addTo (tb);
  1114 	actionModModeCopy=a;
  1115 
  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);
  1120 	a->addTo (tb);
  1121 	actionModModeXLink=a;
  1122 }
  1123 
  1124 // Flag Actions
  1125 void Main::setupFlagActions()
  1126 {
  1127 	// Create System Flags
  1128 	QToolBar *tb=NULL;
  1129 	bool avis=true;
  1130 
  1131 	systemFlagsDefault = new FlagRowObj ();
  1132 	systemFlagsDefault->setVisibility (false);
  1133 	systemFlagsDefault->setName ("systemFlagsDef");
  1134 
  1135 	FlagObj *fo = new FlagObj ();
  1136 	fo->load(QPixmap(flagsPath+"flag-note.png"));
  1137 	setupFlag (fo,tb,avis,"note",tr("Note","SystemFlag"));
  1138 
  1139 	fo->load(QPixmap(flagsPath+"flag-url.png"));
  1140 	setupFlag (fo,tb,avis,"url",tr("URL to Document ","SystemFlag"));
  1141 	
  1142 	fo->load(QPixmap(flagsPath+"flag-vymlink.png"));
  1143 	setupFlag (fo,tb,avis,"vymLink",tr("Link to another vym map","SystemFlag"));
  1144 
  1145 	fo->load(QPixmap(flagsPath+"flag-scrolled-right.png"));
  1146 	setupFlag (fo,tb,avis,"scrolledright",tr("subtree is scrolled","SystemFlag"));
  1147 	
  1148 	fo->load(QPixmap(flagsPath+"flag-tmpUnscrolled-right.png"));
  1149 	setupFlag (fo,tb,avis,"tmpUnscrolledright",tr("subtree is temporary scrolled","SystemFlag"));
  1150 
  1151 	fo->load(QPixmap(flagsPath+"flag-hideexport.png"));
  1152 	setupFlag (fo,tb,avis,"hideInExport",tr("Hide object in exported maps","SystemFlag"));
  1153 
  1154 	// Create Standard Flags
  1155 	tb=addToolBar (tr ("Standard Flags","Standard Flag Toolbar"));
  1156 	tb->setObjectName ("standardFlagTB");
  1157 
  1158 	standardFlagsDefault = new FlagRowObj ();
  1159 	standardFlagsDefault->setVisibility (false);
  1160 	standardFlagsDefault->setName ("standardFlagsDef");
  1161 	standardFlagsDefault->setToolBar (tb);
  1162 
  1163 	fo->load(flagsPath+"flag-exclamationmark.png");
  1164 	fo->setGroup("standard-mark");
  1165 	setupFlag (fo,tb,avis,"exclamationmark",tr("Take care!","Standardflag"));
  1166 	
  1167 	fo->load(flagsPath+"flag-questionmark.png");
  1168 	fo->setGroup("standard-mark");
  1169 	setupFlag (fo,tb,avis,"questionmark",tr("Really?","Standardflag"));
  1170 
  1171 	fo->load(flagsPath+"flag-hook-green.png");
  1172 	fo->setGroup("standard-hook");
  1173 	setupFlag (fo,tb,avis,"hook-green",tr("ok!","Standardflag"));
  1174 
  1175 	fo->load(flagsPath+"flag-cross-red.png");
  1176 	fo->setGroup("standard-hook");
  1177 	setupFlag (fo,tb,avis,"cross-red",tr("Not ok!","Standardflag"));
  1178 	fo->unsetGroup();
  1179 
  1180 	fo->load(flagsPath+"flag-stopsign.png");
  1181 	setupFlag (fo,tb,avis,"stopsign",tr("This won't work!","Standardflag"));
  1182 
  1183 	fo->load(flagsPath+"flag-smiley-good.png");
  1184 	fo->setGroup("standard-smiley");
  1185 	setupFlag (fo,tb,avis,"smiley-good",tr("Good","Standardflag"));
  1186 
  1187 	fo->load(flagsPath+"flag-smiley-sad.png");
  1188 	fo->setGroup("standard-smiley");
  1189 	setupFlag (fo,tb,avis,"smiley-sad",tr("Bad","Standardflag"));
  1190 
  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)
  1195 	fo->unsetGroup();
  1196 
  1197 	fo->load(flagsPath+"flag-kalarm.png");
  1198 	setupFlag (fo,tb,avis,"clock",tr("Time critical","Standardflag"));
  1199 
  1200 	fo->load(flagsPath+"flag-phone.png");
  1201 	setupFlag (fo,tb,avis,"phone",tr("Call...","Standardflag"));
  1202 
  1203 	fo->load(flagsPath+"flag-lamp.png");
  1204 	setupFlag (fo,tb,avis,"lamp",tr("Idea!","Standardflag"));
  1205 
  1206 	fo->load(flagsPath+"flag-arrow-up.png");
  1207 	fo->setGroup("standard-arrow");
  1208 	setupFlag (fo,tb,avis,"arrow-up",tr("Important","Standardflag"));
  1209 
  1210 	fo->load(flagsPath+"flag-arrow-down.png");
  1211 	fo->setGroup("standard-arrow");
  1212 	setupFlag (fo,tb,avis,"arrow-down",tr("Unimportant","Standardflag"));
  1213 
  1214 	fo->load(flagsPath+"flag-arrow-2up.png");
  1215 	fo->setGroup("standard-arrow");
  1216 	setupFlag (fo,tb,avis,"2arrow-up",tr("Very important!","Standardflag"));
  1217 
  1218 	fo->load(flagsPath+"flag-arrow-2down.png");
  1219 	fo->setGroup("standard-arrow");
  1220 	setupFlag (fo,tb,avis,"2arrow-down",tr("Very unimportant!","Standardflag"));
  1221 	fo->unsetGroup();
  1222 
  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"));
  1226 
  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"));
  1230 	fo->unsetGroup();
  1231 	
  1232 	fo->load(flagsPath+"flag-rose.png");
  1233 	setupFlag (fo,tb,avis,"rose",tr("Rose","Standardflag"));
  1234 
  1235 	fo->load(flagsPath+"flag-heart.png");
  1236 	setupFlag (fo,tb,avis,"heart",tr("I just love...","Standardflag"));
  1237 
  1238 	fo->load(flagsPath+"flag-present.png");
  1239 	setupFlag (fo,tb,avis,"present",tr("Surprise!","Standardflag"));
  1240 
  1241 	fo->load(flagsPath+"flag-flash.png");
  1242 	setupFlag (fo,tb,avis,"flash",tr("Dangerous","Standardflag"));
  1243 	
  1244 	// Original: xsldbg_output.png
  1245 	fo->load(flagsPath+"flag-info.png");
  1246 	setupFlag (fo,tb,avis,"info",tr("Info","Standardflag"));
  1247 
  1248 	// Original khelpcenter.png
  1249 	fo->load(flagsPath+"flag-lifebelt.png");
  1250 	setupFlag (fo,tb,avis,"lifebelt",tr("This will help","Standardflag"));
  1251 
  1252 	// Freemind flags
  1253 
  1254 	avis=false;
  1255 
  1256 	fo->load(flagsPath+"freemind/warning.png");
  1257 	setupFlag (fo,tb, avis, "freemind-warning",tr("Important","Freemind-Flag"));
  1258 
  1259 	for (int i=1; i<8; i++)
  1260 	{
  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"));
  1263 	}
  1264 
  1265 	fo->load(flagsPath+"freemind/back.png");
  1266 	setupFlag (fo,tb,avis,"freemind-back",tr("Back","Freemind-Flag"));
  1267 
  1268 	fo->load(flagsPath+"freemind/forward.png");
  1269 	setupFlag (fo,tb,avis,"freemind-forward",tr("Forward","Freemind-Flag"));
  1270 
  1271 	fo->load(flagsPath+"freemind/attach.png");
  1272 	setupFlag (fo,tb,avis,"freemind-attach",tr("Look here","Freemind-Flag"));
  1273 
  1274 	fo->load(flagsPath+"freemind/clanbomber.png");
  1275 	setupFlag (fo,tb,avis,"freemind-clanbomber",tr("Dangerous","Freemind-Flag"));
  1276 
  1277 	fo->load(flagsPath+"freemind/desktopnew.png");
  1278 	setupFlag (fo,tb,avis,"freemind-desktopnew",tr("Don't forget","Freemind-Flag"));
  1279 
  1280 	fo->load(flagsPath+"freemind/flag.png");
  1281 	setupFlag (fo,tb,avis,"freemind-flag",tr("Flag","Freemind-Flag"));
  1282 
  1283 
  1284 	fo->load(flagsPath+"freemind/gohome.png");
  1285 	setupFlag (fo,tb,avis,"freemind-gohome",tr("Home","Freemind-Flag"));
  1286 
  1287 
  1288 	fo->load(flagsPath+"freemind/kaddressbook.png");
  1289 	setupFlag (fo,tb,avis,"freemind-kaddressbook",tr("Telephone","Freemind-Flag"));
  1290 
  1291 	fo->load(flagsPath+"freemind/knotify.png");
  1292 	setupFlag (fo,tb,avis,"freemind-knotify",tr("Music","Freemind-Flag"));
  1293 
  1294 	fo->load(flagsPath+"freemind/korn.png");
  1295 	setupFlag (fo,tb,avis,"freemind-korn",tr("Mailbox","Freemind-Flag"));
  1296 
  1297 	fo->load(flagsPath+"freemind/mail.png");
  1298 	setupFlag (fo,tb,avis,"freemind-mail",tr("Maix","Freemind-Flag"));
  1299 
  1300 	fo->load(flagsPath+"freemind/password.png");
  1301 	setupFlag (fo,tb,avis,"freemind-password",tr("Password","Freemind-Flag"));
  1302 
  1303 	fo->load(flagsPath+"freemind/pencil.png");
  1304 	setupFlag (fo,tb,avis,"freemind-pencil",tr("To be improved","Freemind-Flag"));
  1305 
  1306 	fo->load(flagsPath+"freemind/stop.png");
  1307 	setupFlag (fo,tb,avis,"freemind-stop",tr("Stop","Freemind-Flag"));
  1308 
  1309 	fo->load(flagsPath+"freemind/wizard.png");
  1310 	setupFlag (fo,tb,avis,"freemind-wizard",tr("Magic","Freemind-Flag"));
  1311 
  1312 	fo->load(flagsPath+"freemind/xmag.png");
  1313 	setupFlag (fo,tb,avis,"freemind-xmag",tr("To be discussed","Freemind-Flag"));
  1314 
  1315 	fo->load(flagsPath+"freemind/bell.png");
  1316 	setupFlag (fo,tb,avis,"freemind-bell",tr("Reminder","Freemind-Flag"));
  1317 
  1318 	fo->load(flagsPath+"freemind/bookmark.png");
  1319 	setupFlag (fo,tb,avis,"freemind-bookmark",tr("Excellent","Freemind-Flag"));
  1320 
  1321 	fo->load(flagsPath+"freemind/penguin.png");
  1322 	setupFlag (fo,tb,avis,"freemind-penguin",tr("Linux","Freemind-Flag"));
  1323 
  1324 	fo->load(flagsPath+"freemind/licq.png");
  1325 	setupFlag (fo,tb,avis,"freemind-licq",tr("Sweet","Freemind-Flag"));
  1326 
  1327 	delete (fo);
  1328 }
  1329 
  1330 void Main::setupFlag (FlagObj *fo, QToolBar *tb, bool aw, const QString &name, const QString &tooltip)
  1331 {
  1332 	fo->setName(name);
  1333 	fo->setToolTip (tooltip);
  1334 	QAction *a=new QAction (fo->getPixmap(),fo->getName(),this);
  1335 	if (tb)
  1336 	{
  1337 		// StandardFlag
  1338 		tb->addAction (a);
  1339 		fo->setAction (a);
  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);	
  1346 	} else
  1347 	{
  1348 		// SystemFlag
  1349 		systemFlagsDefault->addFlag (fo);	
  1350 	}
  1351 }
  1352 // Network Actions
  1353 void Main::setupNetworkActions()
  1354 {
  1355 	if (!settings.value( "/mainwindow/showTestMenu",false).toBool() ) 
  1356 		return;
  1357     QMenu *netMenu = menuBar()->addMenu(  "Network" );
  1358 
  1359 	QAction *a;
  1360 
  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);
  1366 
  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);
  1372 }
  1373 	
  1374 // Settings Actions
  1375 void Main::setupSettingsActions()
  1376 {
  1377     QMenu *settingsMenu = menuBar()->addMenu( tr( "&Settings" ));
  1378 
  1379 	QAction *a;
  1380 
  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);
  1385 
  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);
  1390 
  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);
  1395 
  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);
  1400 
  1401 	settingsMenu->addSeparator();
  1402 
  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;
  1410 
  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;
  1416 
  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;
  1424 
  1425 	settingsMenu->addSeparator();
  1426 
  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;
  1433 
  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;
  1440 	
  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;
  1447 	
  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;
  1455 
  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;
  1462 	
  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;
  1469 
  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() )
  1476 	{
  1477 		settingsMenu->addAction (a);
  1478 	}	
  1479 	actionSettingsUseAnimation=a;
  1480 }
  1481 
  1482 // Test Actions
  1483 void Main::setupTestActions()
  1484 {
  1485     QMenu *testMenu = menuBar()->addMenu( tr( "&Test" ));
  1486 
  1487     QAction *a;
  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() ) );
  1492 
  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() ) );
  1497 
  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);
  1502 }
  1503 
  1504 // Help Actions
  1505 void Main::setupHelpActions()
  1506 {
  1507     QMenu *helpMenu = menuBar()->addMenu ( tr( "&Help","Help menubar entry" ));
  1508 
  1509     QAction *a;
  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);
  1514 
  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);
  1519 
  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);
  1524 
  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);
  1529 }
  1530 
  1531 // Context Menus
  1532 void Main::setupContextMenus()
  1533 {
  1534 	QAction*a;
  1535 
  1536 	// Context Menu for branch or mapcenter
  1537 	branchContextMenu =new QMenu (this);
  1538 	branchContextMenu->addAction (actionViewTogglePropertyWindow);
  1539 	branchContextMenu->addSeparator();	
  1540 
  1541 		// Submenu "Add"
  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 );
  1551 
  1552 		// Submenu "Remove"
  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 );
  1558 		
  1559 
  1560 	actionSaveBranch->addTo( branchContextMenu );
  1561 	actionFileNewCopy->addTo (branchContextMenu );
  1562 
  1563 	branchContextMenu->addSeparator();	
  1564 	branchContextMenu->addAction ( actionLoadImage);
  1565 
  1566 	// Submenu for Links (URLs, vymLinks)
  1567 	branchLinksContextMenu =new QMenu (this);
  1568 
  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() )
  1579 		{
  1580 			branchLinksContextMenu->addAction ( actionFATE2URL );
  1581 		}	
  1582 		branchLinksContextMenu->addSeparator();	
  1583 		branchLinksContextMenu->addAction ( actionOpenVymLink );
  1584 		branchLinksContextMenu->addAction ( actionOpenMultipleVymLinks );
  1585 		branchLinksContextMenu->addAction ( actionVymLink );
  1586 		branchLinksContextMenu->addAction ( actionDeleteVymLink );
  1587 		
  1588 
  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 * ) ) );
  1596  	
  1597 	
  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);
  1603 
  1604 	floatimageContextMenu->addSeparator();	
  1605 	actionCopy->addTo( floatimageContextMenu );
  1606 	actionCut->addTo( floatimageContextMenu );
  1607 
  1608 	floatimageContextMenu->addSeparator();	
  1609 	floatimageContextMenu->addAction ( actionFormatHideLinkUnselected );
  1610 
  1611 	
  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 
  1625 
  1626 	// Menu for last opened files
  1627 	// Create actions
  1628 	for (int i = 0; i < MaxRecentFiles; ++i) 
  1629 	{
  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()));
  1635     }
  1636 	setupRecentMapsMenu();
  1637 }
  1638 
  1639 void Main::setupRecentMapsMenu()
  1640 {
  1641     QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
  1642 
  1643     int numRecentFiles = qMin(files.size(), (int)MaxRecentFiles);
  1644 
  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);
  1650     }
  1651     for (int j = numRecentFiles; j < MaxRecentFiles; ++j)
  1652         recentFileActions[j]->setVisible(false);
  1653 }
  1654 
  1655 void Main::setupMacros()
  1656 {
  1657     for (int i = 0; i <= 11; i++) 
  1658 	{
  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()));
  1664 	}			
  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 );
  1677 }
  1678 
  1679 void Main::hideEvent (QHideEvent * )
  1680 {
  1681 	if (!textEditor->isMinimized() ) textEditor->hide();
  1682 }
  1683 
  1684 void Main::showEvent (QShowEvent * )
  1685 {
  1686 	if (actionViewToggleNoteEditor->isOn()) textEditor->showNormal();
  1687 }
  1688 
  1689 
  1690 MapEditor* Main::currentMapEditor() const
  1691 {
  1692     if ( tabWidget->currentPage())
  1693 		return tabModel.at(tabWidget->currentIndex())->getMapEditor();
  1694     return NULL;	
  1695 }
  1696 
  1697 VymModel* Main::currentModel() const
  1698 {
  1699     if ( tabWidget->currentPage())
  1700 		return tabModel.at(tabWidget->currentIndex());
  1701     return NULL;	
  1702 }
  1703 
  1704 
  1705 void Main::editorChanged(QWidget *)
  1706 {
  1707 	// Unselect all possibly selected objects
  1708 	// (Important to update note editor)
  1709 	for (int i=0;i<=tabWidget->count() -1;i++)
  1710 	{
  1711 		tabModel.at(i)->unselect();
  1712 	}	
  1713 	VymModel *m=currentModel();
  1714 	if (m) m->reselect();
  1715 
  1716 	// Update actions to in menus and toolbars according to editor
  1717 	updateActions();
  1718 }
  1719 
  1720 VymView *Main::createView (VymModel *model)
  1721 {
  1722 	VymView *vm=new VymView;
  1723 
  1724 	// Create TreeView
  1725 	QTreeView *tv=new QTreeView;
  1726 	tv->setModel (model->getTreeModel() );
  1727 
  1728 	// Create good old MapEditor
  1729 	MapEditor* me=model->getMapEditor();
  1730 	if (!me) me=new MapEditor (model);
  1731 	//me->viewport()->setFocus();
  1732 	me->setAntiAlias (actionViewToggleAntiAlias->isOn());
  1733 	me->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
  1734 
  1735 	vm->addWidget (tv);
  1736 	vm->addWidget (me);
  1737 
  1738 	// Set geometry
  1739 	QList <int> sizes;
  1740 	sizes.append (150);
  1741 	sizes.append (600);
  1742 	vm->setSizes (sizes);
  1743 
  1744 	return vm;
  1745 }
  1746 
  1747 void Main::fileNew()
  1748 {
  1749 	VymModel *m=new VymModel;
  1750 	tabModel.append (m);
  1751 	MapEditor* me = new MapEditor (m);
  1752 	me->setObjectName ("MapEditor");
  1753 
  1754 	VymView *view=createView (m);
  1755 	tabWidget->addTab (view,tr("unnamed","MainWindow: name for new and empty file"));
  1756 	tabWidget->setCurrentIndex (tabModel.count() );
  1757 	
  1758 	// For the very first map we do not have flagrows yet...
  1759 	m->select("mc:");
  1760 }
  1761 
  1762 void Main::fileNewCopy()
  1763 {
  1764 	QString fn="unnamed";
  1765 	VymModel *srcModel=currentModel();
  1766 	if (srcModel)
  1767 	{
  1768 		srcModel->copy();
  1769 		fileNew();
  1770 		VymModel *dstModel=tabModel.last ();
  1771 		dstModel->select("mc:");
  1772 		dstModel->load (clipboardDir+"/"+clipboardFile,ImportReplace, VymMap);
  1773 	}
  1774 }
  1775 
  1776 ErrorCode Main::fileLoad(QString fn, const LoadMode &lmode, const FileType &ftype)
  1777 {
  1778 	ErrorCode err=success;
  1779 	
  1780 	// fn is usually the archive, mapfile the file after uncompressing
  1781 	QString mapfile;
  1782 
  1783 	// Make fn absolute (needed for unzip)
  1784 	fn=QDir (fn).absPath();
  1785 
  1786 	MapEditor *me;
  1787 
  1788 	if (lmode==NewMap)
  1789 	{
  1790 		// Check, if map is already loaded
  1791 		int i=0;
  1792 		while (i<=tabWidget->count() -1)
  1793 		{
  1794 			if (tabModel.at(i)->getFilePath() == fn)
  1795 			{
  1796 				// Already there, ask for confirmation
  1797 				QMessageBox mb( vymName,
  1798 					tr("The map %1\nis already opened."
  1799 					"Opening the same map in multiple editors may lead \n"
  1800 					"to confusion when finishing working with vym."
  1801 					"Do you want to").arg(fn),
  1802 					QMessageBox::Warning,
  1803 					QMessageBox::Yes | QMessageBox::Default,
  1804 					QMessageBox::Cancel | QMessageBox::Escape,
  1805 					QMessageBox::NoButton);
  1806 				mb.setButtonText( QMessageBox::Yes, tr("Open anyway") );
  1807 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1808 				switch( mb.exec() ) 
  1809 				{
  1810 					case QMessageBox::Yes:
  1811 						// end loop and load anyway
  1812 						i=tabWidget->count();
  1813 						break;
  1814 					case QMessageBox::Cancel:
  1815 						// do nothing
  1816 						return aborted;
  1817 						break;
  1818 				}
  1819 			}
  1820 			i++;
  1821 		}
  1822 	}
  1823 	
  1824 	int tabIndex=tabWidget->currentPageIndex();
  1825 
  1826 	// Try to load map
  1827     if ( !fn.isEmpty() )
  1828 	{
  1829 		me = currentMapEditor();
  1830 		// Check first, if mapeditor exists
  1831 		// If it is not default AND we want a new map, 
  1832 		// create a new mapeditor in a new tab
  1833 		if ( lmode==NewMap && (!me || !me->getModel()->isDefault() )  )
  1834 		{
  1835 			VymModel *m=new VymModel;
  1836 			tabModel.append (m);
  1837 			VymView *view=createView (m);
  1838 			tabWidget->addTab (view,fn);
  1839 			tabIndex=tabWidget->count()-1;
  1840 			tabWidget->setCurrentPage (tabIndex);
  1841 		}
  1842 		
  1843 		// Check, if file exists (important for creating new files
  1844 		// from command line
  1845 		if (!QFile(fn).exists() )
  1846 		{
  1847 			QMessageBox mb( vymName,
  1848 				tr("This map does not exist:\n  %1\nDo you want to create a new one?").arg(fn),
  1849 				QMessageBox::Question,
  1850 				QMessageBox::Yes ,
  1851 				QMessageBox::Cancel | QMessageBox::Default,
  1852 				QMessageBox::NoButton );
  1853 
  1854 			mb.setButtonText( QMessageBox::Yes, tr("Create"));
  1855 			mb.setButtonText( QMessageBox::No, tr("Cancel"));
  1856 			switch( mb.exec() ) 
  1857 			{
  1858 				case QMessageBox::Yes:
  1859 					// Create new map
  1860 					currentMapEditor()->getModel()->setFilePath(fn);
  1861 					tabWidget->setTabText (tabIndex,
  1862 						currentMapEditor()->getModel()->getFileName() );
  1863 					statusBar()->message( "Created " + fn , statusbarTime );
  1864 					return success;
  1865 						
  1866 				case QMessageBox::Cancel:
  1867 					// don't create new map
  1868 					statusBar()->message( "Loading " + fn + " failed!", statusbarTime );
  1869 					fileCloseMap();
  1870 					return aborted;
  1871 			}
  1872 		}	
  1873 
  1874 
  1875 		//tabWidget->currentPage() won't be NULL here, because of above...
  1876 		tabWidget->setCurrentIndex (tabIndex);
  1877 		me->viewport()->setFocus();
  1878 
  1879 		if (err!=aborted)
  1880 		{
  1881 			// Save existing filename in case  we import
  1882 			QString fn_org=me->getModel()->getFilePath();
  1883 
  1884 			// Finally load map into mapEditor
  1885 			me->getModel()->setFilePath (fn);
  1886 			err=me->getModel()->load(fn,lmode,ftype);
  1887 
  1888 			// Restore old (maybe empty) filepath, if this is an import
  1889 			if (lmode!=NewMap)
  1890 				me->getModel()->setFilePath (fn_org);
  1891 		}	
  1892 
  1893 		// Finally check for errors and go home
  1894 		if (err==aborted) 
  1895 		{
  1896 			if (lmode==NewMap) fileCloseMap();
  1897 			statusBar()->message( "Could not load " + fn, statusbarTime );
  1898 		} else 
  1899 		{
  1900 			if (lmode==NewMap)
  1901 			{
  1902 				me->getModel()->setFilePath (fn);
  1903 				tabWidget->setTabText (tabIndex, me->getModel()->getFileName());
  1904 				if (!isInTmpDir (fn))
  1905 				{
  1906 					// Only append to lastMaps if not loaded from a tmpDir
  1907 					// e.g. imported bookmarks are in a tmpDir
  1908 					addRecentMap(me->getModel()->getFilePath() );
  1909 				}
  1910 				actionFilePrint->setEnabled (true);
  1911 			}	
  1912 			statusBar()->message( "Loaded " + fn, statusbarTime );
  1913 		}	
  1914 	}
  1915 	return err;
  1916 }
  1917 
  1918 
  1919 void Main::fileLoad(const LoadMode &lmode)
  1920 {
  1921 	QStringList filters;
  1922 	filters <<"VYM map (*.vym *.vyp)"<<"XML (*.xml)";
  1923 	QFileDialog *fd=new QFileDialog( this);
  1924 	fd->setDir (lastFileDir);
  1925 	fd->setFileMode (QFileDialog::ExistingFiles);
  1926 	fd->setFilters (filters);
  1927 	switch (lmode)
  1928 	{
  1929 		case NewMap:
  1930 			fd->setCaption(vymName+ " - " +tr("Load vym map"));
  1931 			break;
  1932 		case ImportAdd:
  1933 			fd->setCaption(vymName+ " - " +tr("Import: Add vym map to selection"));
  1934 			break;
  1935 		case ImportReplace:
  1936 			fd->setCaption(vymName+ " - " +tr("Import: Replace selection with vym map"));
  1937 			break;
  1938 	}
  1939 	fd->show();
  1940 
  1941 	QString fn;
  1942 	if ( fd->exec() == QDialog::Accepted )
  1943 	{
  1944 		lastFileDir=fd->directory().path();
  1945 	    QStringList flist = fd->selectedFiles();
  1946 		QStringList::Iterator it = flist.begin();
  1947 		while( it != flist.end() ) 
  1948 		{
  1949 			fn = *it;
  1950 			fileLoad(*it, lmode);				   
  1951 			++it;
  1952 		}
  1953 	}
  1954 	delete (fd);
  1955 }
  1956 
  1957 void Main::fileLoad()
  1958 {
  1959 	fileLoad (NewMap);
  1960 }
  1961 
  1962 void Main::fileLoadRecent()
  1963 {
  1964     QAction *action = qobject_cast<QAction *>(sender());
  1965     if (action)
  1966         fileLoad (action->data().toString(), NewMap);
  1967 }
  1968 
  1969 void Main::addRecentMap (const QString &fileName)
  1970 {
  1971 
  1972     QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
  1973     files.removeAll(fileName);
  1974     files.prepend(fileName);
  1975     while (files.size() > MaxRecentFiles)
  1976         files.removeLast();
  1977 
  1978     settings.setValue("/mainwindow/recentFileList", files);
  1979 
  1980 	setupRecentMapsMenu();
  1981 }
  1982 
  1983 void Main::fileSave(VymModel *m, const SaveMode &savemode)
  1984 {
  1985 	if (!m) return;
  1986 
  1987 	if ( m->getFilePath().isEmpty() ) 
  1988 	{
  1989 		// We have  no filepath yet,
  1990 		// call fileSaveAs() now, this will call fileSave() 
  1991 		// again.
  1992 		// First switch to editor
  1993 		//FIXME needed???  tabWidget->setCurrentWidget (m->getMapEditor());
  1994 		fileSaveAs(savemode);
  1995 	}
  1996 
  1997 	if (m->save (savemode)==success)
  1998 	{
  1999 		statusBar()->message( 
  2000 			tr("Saved  %1").arg(m->getFilePath()), 
  2001 			statusbarTime );
  2002 		addRecentMap (m->getFilePath() );
  2003 	} else		
  2004 		statusBar()->message( 
  2005 			tr("Couldn't save ").arg(m->getFilePath()), 
  2006 			statusbarTime );
  2007 }
  2008 
  2009 void Main::fileSave()
  2010 {
  2011 	fileSave (currentModel(), CompleteMap);
  2012 }
  2013 
  2014 void Main::fileSave(VymModel *m)
  2015 {
  2016 	fileSave (m,CompleteMap);
  2017 }
  2018 
  2019 void Main::fileSaveAs(const SaveMode& savemode)
  2020 {
  2021 	QString fn;
  2022 
  2023 	if (currentMapEditor())
  2024 	{
  2025 		if (savemode==CompleteMap)
  2026 			fn = Q3FileDialog::getSaveFileName( QString::null, "VYM map (*.vym)", this );
  2027 		else		
  2028 			fn = Q3FileDialog::getSaveFileName( QString::null, "VYM part of map (*.vyp)", this );
  2029 		if ( !fn.isEmpty() ) 
  2030 		{
  2031 			// Check for existing file
  2032 			if (QFile (fn).exists())
  2033 			{
  2034 				QMessageBox mb( vymName,
  2035 					tr("The file %1\nexists already. Do you want to").arg(fn),
  2036 					QMessageBox::Warning,
  2037 					QMessageBox::Yes | QMessageBox::Default,
  2038 					QMessageBox::Cancel | QMessageBox::Escape,
  2039 					QMessageBox::NoButton);
  2040 				mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
  2041 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  2042 				switch( mb.exec() ) 
  2043 				{
  2044 					case QMessageBox::Yes:
  2045 						// save 
  2046 						break;
  2047 					case QMessageBox::Cancel:
  2048 						// do nothing
  2049 						return;
  2050 						break;
  2051 				}
  2052 			} else
  2053 			{
  2054 				// New file, add extension to filename, if missing
  2055 				// This is always .vym or .vyp, depending on savemode
  2056 				if (savemode==CompleteMap)
  2057 				{
  2058 					if (!fn.contains (".vym") && !fn.contains (".xml"))
  2059 						fn +=".vym";
  2060 				} else		
  2061 				{
  2062 					if (!fn.contains (".vyp") && !fn.contains (".xml"))
  2063 						fn +=".vyp";
  2064 				}
  2065 			}
  2066 	
  2067 
  2068 
  2069 
  2070 			// Save now
  2071 			VymModel *m=currentModel();
  2072 			m->setFilePath(fn);
  2073 			fileSave(m, savemode);
  2074 
  2075 			// Set name of tab, assuming current tab is the one we just saved
  2076 			if (savemode==CompleteMap)
  2077 				tabWidget->setTabText (tabWidget->currentIndex(), m->getFileName() );
  2078 			return;
  2079 		} 
  2080 	}
  2081 }
  2082 
  2083 void Main::fileSaveAs()
  2084 {
  2085 	fileSaveAs (CompleteMap);
  2086 }
  2087 
  2088 void Main::fileImportKDEBookmarks()
  2089 {
  2090 	ImportKDEBookmarks im;
  2091 	im.transform();
  2092 	if (success==fileLoad (im.getTransformedFile(),NewMap) && currentMapEditor() )
  2093 		currentMapEditor()->getModel()->setFilePath ("");
  2094 }
  2095 
  2096 void Main::fileImportFirefoxBookmarks()
  2097 {
  2098 	Q3FileDialog *fd=new Q3FileDialog( this);
  2099 	fd->setDir (vymBaseDir.homeDirPath()+"/.mozilla/firefox");
  2100 	fd->setMode (Q3FileDialog::ExistingFiles);
  2101 	fd->addFilter ("Firefox "+tr("Bookmarks")+" (*.html)");
  2102 	fd->setCaption(tr("Import")+" "+"Firefox "+tr("Bookmarks"));
  2103 	fd->show();
  2104 
  2105 	if ( fd->exec() == QDialog::Accepted )
  2106 	{
  2107 		ImportFirefoxBookmarks im;
  2108 	    QStringList flist = fd->selectedFiles();
  2109 		QStringList::Iterator it = flist.begin();
  2110 		while( it != flist.end() ) 
  2111 		{
  2112 			im.setFile (*it);
  2113 			if (im.transform() && 
  2114 				success==fileLoad (im.getTransformedFile(),NewMap,FreemindMap) && 
  2115 				currentMapEditor() )
  2116 				currentMapEditor()->getModel()->setFilePath ("");
  2117 			++it;
  2118 		}
  2119 	}
  2120 	delete (fd);
  2121 }
  2122 
  2123 void Main::fileImportFreemind()
  2124 {
  2125 	QStringList filters;
  2126 	filters <<"Freemind map (*.mm)"<<"All files (*)";
  2127 	QFileDialog *fd=new QFileDialog( this);
  2128 	fd->setDir (lastFileDir);
  2129 	fd->setFileMode (QFileDialog::ExistingFiles);
  2130 	fd->setFilters (filters);
  2131 	fd->setCaption(vymName+ " - " +tr("Load Freemind map"));
  2132 	fd->show();
  2133 
  2134 	QString fn;
  2135 	if ( fd->exec() == QDialog::Accepted )
  2136 	{
  2137 		lastFileDir=fd->directory().path();
  2138 	    QStringList flist = fd->selectedFiles();
  2139 		QStringList::Iterator it = flist.begin();
  2140 		while( it != flist.end() ) 
  2141 		{
  2142 			fn = *it;
  2143 			if ( fileLoad (fn,NewMap, FreemindMap)  )
  2144 			{	
  2145 				currentMapEditor()->getModel()->setFilePath ("");
  2146 			}	
  2147 			++it;
  2148 		}
  2149 	}
  2150 	delete (fd);
  2151 }
  2152 
  2153 
  2154 void Main::fileImportMM()
  2155 {
  2156 	ImportMM im;
  2157 
  2158 	Q3FileDialog *fd=new Q3FileDialog( this);
  2159 	fd->setDir (lastFileDir);
  2160 	fd->setMode (Q3FileDialog::ExistingFiles);
  2161 	fd->addFilter ("Mind Manager (*.mmap)");
  2162 	fd->setCaption(tr("Import")+" "+"Mind Manager");
  2163 	fd->show();
  2164 
  2165 	if ( fd->exec() == QDialog::Accepted )
  2166 	{
  2167 		lastFileDir=fd->dirPath();
  2168 	    QStringList flist = fd->selectedFiles();
  2169 		QStringList::Iterator it = flist.begin();
  2170 		while( it != flist.end() ) 
  2171 		{
  2172 			im.setFile (*it);
  2173 			if (im.transform() && 
  2174 				success==fileLoad (im.getTransformedFile(),NewMap) && 
  2175 				currentMapEditor() )
  2176 				currentMapEditor()->getModel()->setFilePath ("");
  2177 			++it;
  2178 		}
  2179 	}
  2180 	delete (fd);
  2181 }
  2182 
  2183 void Main::fileImportDir()
  2184 {
  2185 	VymModel *m=currentModel();
  2186 	if (m) m->importDir();
  2187 }
  2188 
  2189 void Main::fileExportXML()	
  2190 {
  2191 	VymModel *m=currentModel();
  2192 	if (m) m->exportXML();
  2193 }
  2194 
  2195 
  2196 void Main::fileExportXHTML()	
  2197 {
  2198 	VymModel *m=currentModel();
  2199 	if (m) m->exportXHTML();
  2200 }
  2201 
  2202 void Main::fileExportImage()	
  2203 {
  2204 	VymModel *m=currentModel();
  2205 	if (m) m->exportImage();
  2206 }
  2207 
  2208 void Main::fileExportASCII()
  2209 {
  2210 	VymModel *m=currentModel();
  2211 	if (m) m->exportASCII();
  2212 }
  2213 
  2214 void Main::fileExportCSV()	//FIXME not scriptable yet
  2215 {
  2216 	VymModel *m=currentModel();
  2217 	if (m)
  2218 	{
  2219 		ExportCSV ex;
  2220 		ex.setModel (m);
  2221 		ex.addFilter ("CSV (*.csv)");
  2222 		ex.setDir(lastImageDir);
  2223 		ex.setCaption(vymName+ " -" +tr("Export as CSV")+" "+tr("(still experimental)"));
  2224 		if (ex.execDialog() ) 
  2225 		{
  2226 			m->setExportMode(true);
  2227 			ex.doExport();
  2228 			m->setExportMode(false);
  2229 		}
  2230 	}
  2231 }
  2232 
  2233 void Main::fileExportLaTeX()	//FIXME not scriptable yet
  2234 {
  2235 	VymModel *m=currentModel();
  2236 	if (m)
  2237 	{
  2238 		ExportLaTeX ex;
  2239 		ex.setModel (m);
  2240 		ex.addFilter ("Tex (*.tex)");
  2241 		ex.setDir(lastImageDir);
  2242 		ex.setCaption(vymName+ " -" +tr("Export as LaTeX")+" "+tr("(still experimental)"));
  2243 		if (ex.execDialog() ) 
  2244 		{
  2245 			m->setExportMode(true);
  2246 			ex.doExport();
  2247 			m->setExportMode(false);
  2248 		}
  2249 	}
  2250 }
  2251 
  2252 void Main::fileExportKDEBookmarks()	//FIXME not scriptable yet
  2253 {
  2254 	ExportKDEBookmarks ex;
  2255 	VymModel *m=currentModel();
  2256 	if (m)
  2257 	{
  2258 		ex.setModel (m);
  2259 		ex.doExport();
  2260 	}	
  2261 }
  2262 
  2263 void Main::fileExportTaskjuggler()	//FIXME not scriptable yet
  2264 {
  2265 	ExportTaskjuggler ex;
  2266 	VymModel *m=currentModel();
  2267 	if (m)
  2268 	{
  2269 		ex.setModel (m);
  2270 		ex.setCaption ( vymName+" - "+tr("Export to")+" Taskjuggler"+tr("(still experimental)"));
  2271 		ex.setDir(lastImageDir);
  2272 		ex.addFilter ("Taskjuggler (*.tjp)");
  2273 		if (ex.execDialog() ) 
  2274 		{
  2275 			m->setExportMode(true);
  2276 			ex.doExport();
  2277 			m->setExportMode(false);
  2278 		}
  2279 	}	
  2280 }
  2281 
  2282 void Main::fileExportOOPresentation()	//FIXME not scriptable yet
  2283 {
  2284 	ExportOOFileDialog *fd=new ExportOOFileDialog( this,vymName+" - "+tr("Export to")+" Open Office");
  2285 	// TODO add preview in dialog
  2286 	//ImagePreview *p =new ImagePreview (fd);
  2287 	//fd->setContentsPreviewEnabled( TRUE );
  2288 	//fd->setContentsPreview( p, p );
  2289 	//fd->setPreviewMode( QFileDialog::Contents );
  2290 	fd->setCaption(vymName+" - " +tr("Export to")+" Open Office");
  2291 	fd->setDir (QDir().current());
  2292 	if (fd->foundConfig())
  2293 	{
  2294 		fd->show();
  2295 
  2296 		if ( fd->exec() == QDialog::Accepted )
  2297 		{
  2298 			QString fn=fd->selectedFile();
  2299 			if (!fn.contains (".odp"))
  2300 				fn +=".odp";
  2301 
  2302 			//lastImageDir=fn.left(fn.findRev ("/"));
  2303 			VymModel *m=currentModel();
  2304 			if (m) m->exportOOPresentation(fn,fd->selectedConfig());	
  2305 		}
  2306 	} else
  2307 	{
  2308 		QMessageBox::warning(0, 
  2309 		tr("Warning"),
  2310 		tr("Couldn't find configuration for export to Open Office\n"));
  2311 	}
  2312 }
  2313 
  2314 void Main::fileCloseMap()
  2315 {
  2316 	MapEditor *me = currentMapEditor();
  2317 	VymModel *m=currentModel();
  2318 	if (m)
  2319 	{
  2320 		if (m->hasChanged())
  2321 		{
  2322 			QMessageBox mb( vymName,
  2323 				tr("The map %1 has been modified but not saved yet. Do you want to").arg(me->getModel()->getFileName()),
  2324 				QMessageBox::Warning,
  2325 				QMessageBox::Yes | QMessageBox::Default,
  2326 				QMessageBox::No,
  2327 				QMessageBox::Cancel | QMessageBox::Escape );
  2328 			mb.setButtonText( QMessageBox::Yes, tr("Save modified map before closing it") );
  2329 			mb.setButtonText( QMessageBox::No, tr("Discard changes"));
  2330 			switch( mb.exec() ) 
  2331 			{
  2332 				case QMessageBox::Yes:
  2333 					// save and close
  2334 					fileSave(m, CompleteMap);
  2335 					break;
  2336 				case QMessageBox::No:
  2337 				// close  without saving
  2338 					break;
  2339 				case QMessageBox::Cancel:
  2340 					// do nothing
  2341 				return;
  2342 			}
  2343 		} 
  2344 		me->close();
  2345 		tabModel.removeAt (tabWidget->currentIndex() );
  2346 		tabWidget->removeTab (tabWidget->currentIndex() );
  2347         delete me;	// FIXME if event was triggered _in_ ME this causes warning message
  2348 		updateActions();
  2349 	}
  2350 }
  2351 
  2352 void Main::filePrint()
  2353 {
  2354 	if (currentMapEditor())
  2355 		currentMapEditor()->print();
  2356 }
  2357 
  2358 void Main::fileExitVYM()
  2359 {
  2360 	// Check if one or more editors have changed
  2361 	int i;
  2362 	for (i=0;i<=tabModel.count() -1;i++)
  2363 	{
  2364 		// If something changed, ask what to do
  2365 		if (tabModel.at(i)->hasChanged())
  2366 		{
  2367 			tabWidget->setCurrentPage(i);
  2368 			QMessageBox mb( vymName,
  2369 				tr("This map is not saved yet. Do you want to"),
  2370 				QMessageBox::Warning,
  2371 				QMessageBox::Yes | QMessageBox::Default,
  2372 				QMessageBox::No,
  2373 				QMessageBox::Cancel | QMessageBox::Escape );
  2374 			mb.setButtonText( QMessageBox::Yes, tr("Save map") );
  2375 			mb.setButtonText( QMessageBox::No, tr("Discard changes") );
  2376 			mb.setModal (true);
  2377 			mb.show();
  2378 			mb.setActiveWindow();
  2379 			switch( mb.exec() ) {
  2380 				case QMessageBox::Yes:
  2381 					// save (the changed editors) and exit
  2382 					fileSave(currentModel(), CompleteMap);
  2383 					break;
  2384 				case QMessageBox::No:
  2385 					// exit without saving
  2386 					break;
  2387 				case QMessageBox::Cancel:
  2388 					// don't save and don't exit
  2389 				return;
  2390 			}
  2391 		}
  2392 	} // loop over all MEs	
  2393     qApp->quit();
  2394 }
  2395 
  2396 void Main::editUndo()
  2397 {
  2398 	VymModel *m=currentModel();
  2399 	if (m) m->undo();
  2400 }
  2401 
  2402 void Main::editRedo()	   
  2403 {
  2404 	VymModel *m=currentModel();
  2405 	if (m) m->redo();
  2406 }
  2407 
  2408 void Main::gotoHistoryStep (int i)	   
  2409 {
  2410 	VymModel *m=currentModel();
  2411 	if (m) m->gotoHistoryStep(i);
  2412 }
  2413 
  2414 void Main::editCopy()
  2415 {
  2416 	VymModel *m=currentModel();
  2417 	if (m) m->copy();
  2418 }
  2419 
  2420 void Main::editPaste()
  2421 {
  2422 	VymModel *m=currentModel();
  2423 	if (m) m->paste();
  2424 }
  2425 
  2426 void Main::editCut()
  2427 {
  2428 	VymModel *m=currentModel();
  2429 	if (m) m->cut();
  2430 }
  2431 
  2432 void Main::editOpenFindWindow()
  2433 {
  2434 	findWindow->popup();
  2435 	findWindow->raise();
  2436 	findWindow->setActiveWindow();
  2437 }
  2438 
  2439 void Main::editFind(QString s)
  2440 {
  2441 	VymModel *m=currentModel();
  2442 	if (m)
  2443 	{
  2444 		bool cs=false;
  2445 		BranchObj *bo=m->findText(s, cs);
  2446 		if (bo)
  2447 		{	
  2448 			statusBar()->message( "Found: " + bo->getHeading(), statusbarTime );
  2449 		} else
  2450 		{
  2451 			QMessageBox::information( findWindow, tr( "VYM -Information:" ),
  2452 								   tr("No matches found for \"%1\"").arg(s));
  2453 		}	
  2454 	}
  2455 }
  2456 
  2457 void Main::editFindChanged()
  2458 {	// Notify editor, to abort the current find process
  2459 	VymModel *m=currentModel();
  2460 	if (m) m->findReset();
  2461 }
  2462 
  2463 void Main::openTabs(QStringList urls)
  2464 {
  2465 	if (!urls.isEmpty())
  2466 	{	
  2467 		bool success=true;
  2468 		QStringList args;
  2469 		QString browser=settings.value("/mainwindow/readerURL" ).toString();
  2470 		QProcess *p;
  2471 		if (!procBrowser ||  procBrowser->state()!=QProcess::Running)
  2472 		{
  2473 			QString u=urls.takeFirst();
  2474 			procBrowser = new QProcess( this );
  2475 			args<<u;
  2476 			procBrowser->start(browser,args);
  2477 			if ( !procBrowser->waitForStarted())
  2478 			{
  2479 				// try to set path to browser
  2480 				QMessageBox::warning(0, 
  2481 					tr("Warning"),
  2482 					tr("Couldn't find a viewer to open %1.\n").arg(u)+
  2483 					tr("Please use Settings->")+tr("Set application to open an URL"));
  2484 				return;
  2485 			}
  2486 #if defined(Q_OS_WIN32)
  2487             // There's no sleep in VCEE, replace it with Qt's QThread::wait().
  2488             this->thread()->wait(3000);
  2489 #else
  2490 			sleep (3);
  2491 #endif
  2492 		}
  2493 		if (browser.contains("konqueror"))
  2494 		{
  2495 			for (int i=0; i<urls.size(); i++)
  2496 			{
  2497 				// Open new browser
  2498 				// Try to open new tab in existing konqueror started previously by vym
  2499 				p=new QProcess (this);
  2500 				args.clear();
  2501 #if defined(Q_OS_WIN32)
  2502                 // In Win32, pid is not a longlong, but a pointer to a _PROCESS_INFORMATION structure.
  2503                 // Redundant change in Win32, as there's no konqueror, but I wanted to follow the original logic.
  2504 				args<< QString("konqueror-%1").arg(procBrowser->pid()->dwProcessId)<<
  2505 					"konqueror-mainwindow#1"<<
  2506 					"newTab" <<
  2507 					urls.at(i);
  2508 #else
  2509 				args<< QString("konqueror-%1").arg(procBrowser->pid())<<
  2510 					"konqueror-mainwindow#1"<<
  2511 					"newTab" <<
  2512 					urls.at(i);
  2513 #endif
  2514 				p->start ("dcop",args);
  2515 				//cout << qPrintable (args.join(" "))<<endl;
  2516 				if ( !p->waitForStarted() ) success=false;
  2517 			}
  2518 			if (!success)
  2519 				QMessageBox::warning(0, 
  2520 					tr("Warning"),
  2521 					tr("Couldn't start %1 to open a new tab in %2.").arg("dcop").arg("konqueror"));
  2522 			return;		
  2523 		} else if (browser.contains ("firefox") || browser.contains ("mozilla") )
  2524 		{
  2525 			for (int i=0; i<urls.size(); i++)
  2526 			{
  2527 				// Try to open new tab in firefox
  2528 				p=new QProcess (this);
  2529 				args<< "-remote"<< QString("openurl(%1,new-tab)").arg(urls.at(i));
  2530 				p->start (browser,args);
  2531 				if ( !p->waitForStarted() ) success=false;
  2532 			}			
  2533 			if (!success)
  2534 				QMessageBox::warning(0, 
  2535 					tr("Warning"),
  2536 					tr("Couldn't start %1 to open a new tab").arg(browser));
  2537 			return;		
  2538 		}			
  2539 		QMessageBox::warning(0, 
  2540 			tr("Warning"),
  2541 			tr("Sorry, currently only Konqueror and Mozilla support tabbed browsing."));
  2542 	}	
  2543 }
  2544 
  2545 void Main::editOpenURL()
  2546 {
  2547 	// Open new browser
  2548 	VymModel *m=currentModel();
  2549 	if (m)
  2550 	{	
  2551 	    QString url=m->getURL();
  2552 		QStringList args;
  2553 		if (url=="") return;
  2554 		QString browser=settings.value("/mainwindow/readerURL" ).toString();
  2555 		procBrowser = new QProcess( this );
  2556 		args<<url;
  2557 		procBrowser->start(browser,args);
  2558 		if ( !procBrowser->waitForStarted())
  2559 		{
  2560 			// try to set path to browser
  2561 			QMessageBox::warning(0, 
  2562 				tr("Warning"),
  2563 				tr("Couldn't find a viewer to open %1.\n").arg(url)+
  2564 				tr("Please use Settings->")+tr("Set application to open an URL"));
  2565 			settingsURL() ; 
  2566 		}	
  2567 	}	
  2568 }
  2569 void Main::editOpenURLTab()
  2570 {
  2571 	VymModel *m=currentModel();
  2572 	if (m)
  2573 	{	
  2574 	    QStringList urls;
  2575 		urls.append(m->getURL());
  2576 		openTabs (urls);
  2577 	}	
  2578 }
  2579 void Main::editOpenMultipleURLTabs()
  2580 {
  2581 	VymModel *m=currentModel();
  2582 	if (m)
  2583 	{	
  2584 	    QStringList urls;
  2585 		urls=m->getURLs();
  2586 		openTabs (urls);
  2587 	}	
  2588 }
  2589 
  2590 
  2591 void Main::editURL()
  2592 {
  2593 	VymModel *m=currentModel();
  2594 	if (m) m->editURL();
  2595 }
  2596 
  2597 void Main::editLocalURL()
  2598 {
  2599 	VymModel *m=currentModel();
  2600 	if (m) m->editLocalURL();
  2601 }
  2602 
  2603 void Main::editHeading2URL()
  2604 {
  2605 	VymModel *m=currentModel();
  2606 	if (m) m->editHeading2URL();
  2607 }
  2608 
  2609 void Main::editBugzilla2URL()
  2610 {
  2611 	VymModel *m=currentModel();
  2612 	if (m) m->editBugzilla2URL();
  2613 }
  2614 
  2615 void Main::editFATE2URL()
  2616 {
  2617 	VymModel *m=currentModel();
  2618 	if (m) m->editFATE2URL();
  2619 }
  2620 
  2621 void Main::editHeadingFinished(VymModel *m)
  2622 {
  2623 	if (m)
  2624 	{
  2625 		if (!actionSettingsAutoSelectNewBranch->isOn() && 
  2626 			!prevSelection.isEmpty()) 
  2627 			m->select(prevSelection);
  2628 		prevSelection="";
  2629 	}
  2630 }
  2631 
  2632 
  2633 void Main::editAttributeFinished()
  2634 {
  2635 	// only called from editHeading(), so there is a currentME
  2636 
  2637 	/*
  2638 	MapEditor *me=currentMapEditor();
  2639 	if (me)
  2640 	{
  2641 		me->setStateEditHeading (false);
  2642 		QPoint p;	//Not used here, only to find out pos of branch
  2643 		bool ok;
  2644 		QString s=me->getHeading(ok,p);
  2645 
  2646 #if defined(Q_OS_MACX)
  2647 #else
  2648 		if (ok && s!=lineedit->text())
  2649 			me->setHeading(lineedit->text());
  2650 			
  2651 		lineedit->releaseKeyboard();
  2652 		lineedit->hide();
  2653 		setFocus();
  2654 #endif	
  2655 		if (!actionSettingsAutoSelectNewBranch->isOn() && 
  2656 			!prevSelection.isEmpty()) 
  2657 			me->select(prevSelection);
  2658 		prevSelection="";
  2659 	}
  2660 	*/
  2661 }
  2662 
  2663 #include "attribute.h"
  2664 #include "attributedialog.h"
  2665 void Main::editAttribute()
  2666 {
  2667 /*
  2668 	MapEditor *me=currentMapEditor();
  2669 	if (me)
  2670 	{
  2671 		BranchObj *bo=me->getModel()->getSelectedBranch();
  2672 		if (bo)
  2673 		{
  2674 			AttributeDialog dia(this);
  2675 			dia.setTable (me->attributeTable() );
  2676 			dia.setBranch (bo);
  2677 			dia.setMode (Definition);
  2678 			dia.updateTable();
  2679 			dia.exec();
  2680 		}
  2681 	}	
  2682 	*/
  2683 	/*
  2684 	if (currentMapEditor())
  2685 	{
  2686 		MapEditor *me=currentMapEditor();
  2687 		QString oldSel=me->getSelectString();
  2688 
  2689 		if (lineedit->isVisible())
  2690 			editAttributeFinished();
  2691 		else
  2692 		{
  2693 			bool ok;
  2694 			QPoint p;
  2695 			QString s=me->getHeading(ok,p);
  2696 
  2697 			if (ok)
  2698 			{
  2699 				me->setStateEditHeading (true);
  2700 #if defined(Q_OS_MACX)
  2701 				p=me->mapToGlobal (p);
  2702 				QDialog *d =new QDialog(NULL);
  2703 				QLineEdit *le=new QLineEdit (d);
  2704 				d->setWindowFlags (Qt::FramelessWindowHint);
  2705 				d->setGeometry(p.x(),p.y(),230,25);
  2706 				le->resize (d->width()-10,d->height());
  2707 				le->setText (s);
  2708 				le->selectAll();
  2709 				connect (le, SIGNAL (returnPressed()), d, SLOT (accept()));
  2710 				d->activateWindow();
  2711 				d->exec();
  2712 				me->setHeading (le->text());
  2713 				delete (le);
  2714 				delete (d);
  2715 				editHeadingFinished();
  2716 #else
  2717 				p=me->mapTo (this,p);
  2718 				lineedit->setGeometry(p.x(),p.y(),230,25);
  2719 				lineedit->setText(s);
  2720 				lineedit->setCursorPosition(1);
  2721 				lineedit->selectAll();
  2722 				lineedit->show();
  2723 				lineedit->grabKeyboard();
  2724 				lineedit->setFocus();
  2725 #endif
  2726 			}
  2727 		} 
  2728 	} // currentMapEditor()	
  2729 
  2730 	*/
  2731 }
  2732 
  2733 void Main::openVymLinks(const QStringList &vl)
  2734 {
  2735 	for (int j=0; j<vl.size(); j++)
  2736 	{
  2737 		// compare path with already loaded maps
  2738 		int index=-1;
  2739 		int i;
  2740 		for (i=0;i<=tabModel.count() -1;i++)
  2741 		{
  2742 			if (vl.at(j)==tabModel.at(i)->getFilePath() )
  2743 			{
  2744 				index=i;
  2745 				break;
  2746 			}
  2747 		}	
  2748 		if (index<0)
  2749 		// Load map
  2750 		{
  2751 			if (!QFile(vl.at(j)).exists() )
  2752 				QMessageBox::critical( 0, tr( "Critical Error" ),
  2753 				   tr("Couldn't open map %1").arg(vl.at(j)));
  2754 			else
  2755 			{
  2756 				fileLoad (vl.at(j), NewMap);
  2757 				tabWidget->setCurrentIndex (tabWidget->count()-1);	
  2758 			}
  2759 		} else
  2760 			// Go to tab containing the map
  2761 			tabWidget->setCurrentIndex (index);	
  2762 	}
  2763 }
  2764 
  2765 void Main::editOpenVymLink()
  2766 {
  2767 	VymModel *m=currentModel();
  2768 	if (m)
  2769 	{
  2770 		QStringList vl;
  2771 		vl.append(m->getVymLink());	
  2772 		openVymLinks (vl);
  2773 	}
  2774 }
  2775 
  2776 void Main::editOpenMultipleVymLinks()
  2777 {
  2778 	QString currentVymLink;
  2779 	VymModel *m=currentModel();
  2780 	if (m)
  2781 	{
  2782 		QStringList vl=m->getVymLinks();
  2783 		openVymLinks (vl);
  2784 	}
  2785 }
  2786 
  2787 void Main::editVymLink()
  2788 {
  2789 	VymModel *m=currentModel();
  2790 	if (m)
  2791 		m->editVymLink();	
  2792 }
  2793 
  2794 void Main::editDeleteVymLink()
  2795 {
  2796 	VymModel *m=currentModel();
  2797 	if (m) m->deleteVymLink();	
  2798 }
  2799 
  2800 void Main::editToggleHideExport()
  2801 {
  2802 	VymModel *m=currentModel();
  2803 	if (m) m->toggleHideExport();	
  2804 }
  2805 
  2806 void Main::editMapInfo()
  2807 {
  2808 	VymModel *m=currentModel();
  2809 
  2810 	ExtraInfoDialog dia;
  2811 	dia.setMapName (m->getFileName() );
  2812 	dia.setAuthor (m->getAuthor() );
  2813 	dia.setComment(m->getComment() );
  2814 
  2815 /* FIXME no stats at the moment (view dependent...)
  2816 	// Calc some stats
  2817 	QString stats;
  2818     stats+=tr("%1 items on map\n","Info about map").arg (mapScene->items().size(),6);
  2819 
  2820 	uint b=0;
  2821 	uint f=0;
  2822 	uint n=0;
  2823 	uint xl=0;
  2824 	BranchObj *bo;
  2825 	bo=m->first();
  2826 	while (bo) 
  2827 	{
  2828 		if (!bo->getNote().isEmpty() ) n++;
  2829 		f+= bo->countFloatImages();
  2830 		b++;
  2831 		xl+=bo->countXLinks();
  2832 		bo=m->next(bo);
  2833 	}
  2834     stats+=QString ("%1 branches\n").arg (b-1,6);
  2835     stats+=QString ("%1 xLinks \n").arg (xl,6);
  2836     stats+=QString ("%1 notes\n").arg (n,6);
  2837     stats+=QString ("%1 images\n").arg (f,6);
  2838 	dia.setStats (stats);
  2839 
  2840 */
  2841 	// Finally show dialog
  2842 	if (dia.exec() == QDialog::Accepted)
  2843 	{
  2844 		m->setAuthor (dia.getAuthor() );
  2845 		m->setComment (dia.getComment() );
  2846 	}
  2847 }
  2848 
  2849 void Main::editMoveUp()
  2850 {
  2851 	VymModel *m=currentModel();
  2852 	if (m) m->moveBranchUp();
  2853 }
  2854 
  2855 void Main::editMoveDown()
  2856 {
  2857 	VymModel *m=currentModel();
  2858 	if (m) m->moveBranchDown();
  2859 }
  2860 
  2861 void Main::editSortChildren()
  2862 {
  2863 	VymModel *m=currentModel();
  2864 	if (m) m->sortChildren();
  2865 }
  2866 
  2867 void Main::editToggleScroll()
  2868 {
  2869 	VymModel *m=currentModel();
  2870 	if (m) m->toggleScroll();
  2871 }
  2872 
  2873 void Main::editUnscrollChildren()
  2874 {
  2875 	VymModel *m=currentModel();
  2876 	if (m) m->unscrollChildren();
  2877 }
  2878 
  2879 void Main::editAddMapCenter()
  2880 {
  2881 	VymModel *m=currentModel();
  2882 	if (m)
  2883 	{
  2884 		m->addMapCenter ();
  2885 	}	
  2886 }
  2887 
  2888 void Main::editNewBranch()
  2889 {
  2890 	VymModel *m=currentModel();
  2891 	if (m)
  2892 	{
  2893 		BranchObj *bo=(BranchObj*)m->getSelection();
  2894 		BranchObj *newbo=m->addNewBranch(0);
  2895 
  2896 		prevSelection=m->getSelectString(bo);
  2897 		if (newbo) 
  2898 			m->select (newbo);
  2899 		else
  2900 			return;
  2901 
  2902 		if (actionSettingsAutoEditNewBranch->isOn())
  2903 		{
  2904 			currentMapEditor()->editHeading();
  2905 			return;
  2906 		}	
  2907 		if (!prevSelection.isEmpty()) 
  2908 		{
  2909 			m->select(prevSelection);
  2910 			prevSelection="";
  2911 		}
  2912 	}	
  2913 }
  2914 
  2915 void Main::editNewBranchBefore()
  2916 {
  2917 	VymModel *m=currentModel();
  2918 	if (m)
  2919 	{
  2920 		BranchObj *bo=(BranchObj*)m->getSelection();
  2921 		BranchObj *newbo=m->addNewBranchBefore();
  2922 
  2923 		if (newbo) 
  2924 			m->select (newbo);
  2925 		else
  2926 			return;
  2927 
  2928 		if (actionSettingsAutoEditNewBranch->isOn())
  2929 		{
  2930 			if (!actionSettingsAutoSelectNewBranch->isOn())
  2931 				prevSelection=m->getSelectString(bo); 
  2932 			currentMapEditor()->editHeading();
  2933 		}
  2934 	}	
  2935 }
  2936 
  2937 void Main::editNewBranchAbove()
  2938 {
  2939 	VymModel *m=currentModel();
  2940 	if ( m)
  2941 	{
  2942 		BranchObj *bo=(BranchObj*)m->getSelection();
  2943 		BranchObj *newbo=m->addNewBranch (-1);
  2944 
  2945 		if (newbo) 
  2946 			m->select (newbo);
  2947 		else
  2948 			return;
  2949 
  2950 		if (actionSettingsAutoEditNewBranch->isOn())
  2951 		{
  2952 			if (!actionSettingsAutoSelectNewBranch->isOn())
  2953 				prevSelection=m->getSelectString (bo);	
  2954 			currentMapEditor()->editHeading();
  2955 		}
  2956 	}	
  2957 }
  2958 
  2959 void Main::editNewBranchBelow()
  2960 {
  2961 	VymModel *m=currentModel();
  2962 	if (m)
  2963 	{
  2964 		BranchObj *bo=(BranchObj*)m->getSelection();
  2965 		BranchObj *newbo=m->addNewBranch (1);
  2966 
  2967 		if (newbo) 
  2968 			m->select (newbo);
  2969 		else
  2970 			return;
  2971 
  2972 		if (actionSettingsAutoEditNewBranch->isOn())
  2973 		{
  2974 			if (!actionSettingsAutoSelectNewBranch->isOn())
  2975 				prevSelection=m->getSelectString(bo);
  2976 			currentMapEditor()->editHeading();
  2977 		}
  2978 	}	
  2979 }
  2980 
  2981 void Main::editImportAdd()
  2982 {
  2983 	fileLoad (ImportAdd);
  2984 }
  2985 
  2986 void Main::editImportReplace()
  2987 {
  2988 	fileLoad (ImportReplace);
  2989 }
  2990 
  2991 void Main::editSaveBranch()
  2992 {
  2993 	fileSaveAs (PartOfMap);
  2994 }
  2995 
  2996 void Main::editDeleteKeepChildren()
  2997 {
  2998 	VymModel *m=currentModel();
  2999 	 if (m) m->deleteKeepChildren();
  3000 }
  3001 
  3002 void Main::editDeleteChildren()
  3003 {
  3004 	VymModel *m=currentModel();
  3005 	if (m) m->deleteChildren();
  3006 }
  3007 
  3008 void Main::editDeleteSelection()
  3009 {
  3010 	VymModel *m=currentModel();
  3011 	if (m && actionSettingsUseDelKey->isOn())
  3012 		m->deleteSelection();
  3013 }
  3014 
  3015 void Main::editUpperBranch()
  3016 {
  3017 	VymModel *m=currentModel();
  3018 	if (m) m->selectUpperBranch();
  3019 }
  3020 
  3021 void Main::editLowerBranch()
  3022 {
  3023 	VymModel *m=currentModel();
  3024 	if (m) m->selectLowerBranch();
  3025 }
  3026 
  3027 void Main::editLeftBranch()
  3028 {
  3029 	VymModel *m=currentModel();
  3030 	if (m) m->selectLeftBranch();
  3031 }
  3032 
  3033 void Main::editRightBranch()
  3034 {
  3035 	VymModel *m=currentModel();
  3036 	if (m) m->selectRightBranch();
  3037 }
  3038 
  3039 void Main::editFirstBranch()
  3040 {
  3041 	VymModel *m=currentModel();
  3042 	if (m) m->selectFirstBranch();
  3043 }
  3044 
  3045 void Main::editLastBranch()
  3046 {
  3047 	VymModel *m=currentModel();
  3048 	if (m) m->selectLastBranch();
  3049 }
  3050 
  3051 void Main::editLoadImage()
  3052 {
  3053 	VymModel *m=currentModel();
  3054 	if (m) m->loadFloatImage();
  3055 }
  3056 
  3057 void Main::editSaveImage()
  3058 {
  3059 	VymModel *m=currentModel();
  3060 	if (m) m->saveFloatImage();
  3061 }
  3062 
  3063 void Main::editFollowXLink(QAction *a)
  3064 {
  3065 
  3066 	VymModel *m=currentModel();
  3067 	if (m)
  3068 		m->followXLink(branchXLinksContextMenuFollow->actions().indexOf(a));
  3069 }
  3070 
  3071 void Main::editEditXLink(QAction *a)
  3072 {
  3073 	VymModel *m=currentModel();
  3074 	if (m)
  3075 		m->editXLink(branchXLinksContextMenuEdit->actions().indexOf(a));
  3076 }
  3077 
  3078 void Main::formatSelectColor()
  3079 {
  3080 	QColor col = QColorDialog::getColor((currentColor ), this );
  3081 	if ( !col.isValid() ) return;
  3082 	colorChanged( col );
  3083 }
  3084 
  3085 void Main::formatPickColor()
  3086 {
  3087 	VymModel *m=currentModel();
  3088 	if (m)
  3089 		colorChanged( m->getCurrentHeadingColor() );
  3090 }
  3091 
  3092 void Main::colorChanged(QColor c)
  3093 {
  3094     QPixmap pix( 16, 16 );
  3095     pix.fill( c );
  3096     actionFormatColor->setIconSet( pix );
  3097 	currentColor=c;
  3098 }
  3099 
  3100 void Main::formatColorBranch()
  3101 {
  3102 	VymModel *m=currentModel();
  3103 	if (m) m->colorBranch(currentColor);
  3104 }
  3105 
  3106 void Main::formatColorSubtree()
  3107 {
  3108 	VymModel *m=currentModel();
  3109 	if (m) m->colorSubtree (currentColor);
  3110 }
  3111 
  3112 void Main::formatLinkStyleLine()
  3113 {
  3114 	VymModel *m=currentModel();
  3115 	if (m)
  3116     {
  3117 		m->setMapLinkStyle("StyleLine");
  3118         actionFormatLinkStyleLine->setOn(true);
  3119     }
  3120 }
  3121 
  3122 void Main::formatLinkStyleParabel()
  3123 {
  3124 	VymModel *m=currentModel();
  3125 	if (m)
  3126     {
  3127 		m->setMapLinkStyle("StyleParabel");
  3128         actionFormatLinkStyleParabel->setOn(true);
  3129     }
  3130 }
  3131 
  3132 void Main::formatLinkStylePolyLine()
  3133 {
  3134 	VymModel *m=currentModel();
  3135 	if (m)
  3136     {
  3137 		m->setMapLinkStyle("StylePolyLine");
  3138         actionFormatLinkStylePolyLine->setOn(true);
  3139     }
  3140 }
  3141 
  3142 void Main::formatLinkStylePolyParabel()
  3143 {
  3144 	VymModel *m=currentModel();
  3145 	if (m)
  3146     {
  3147 		m->setMapLinkStyle("StylePolyParabel");
  3148         actionFormatLinkStylePolyParabel->setOn(true);
  3149     }
  3150 }
  3151 
  3152 void Main::formatSelectBackColor()
  3153 {
  3154 	VymModel *m=currentModel();
  3155 	if (m) m->selectMapBackgroundColor();
  3156 }
  3157 
  3158 void Main::formatSelectBackImage()
  3159 {
  3160 	VymModel *m=currentModel();
  3161 	if (m)
  3162 		m->selectMapBackgroundImage();
  3163 }
  3164 
  3165 void Main::formatSelectLinkColor()
  3166 {
  3167 	VymModel *m=currentModel();
  3168 	if (m)
  3169 	{
  3170 		QColor col = QColorDialog::getColor( m->getMapDefLinkColor(), this );
  3171 		m->setMapDefLinkColor( col );
  3172 	}
  3173 }
  3174 
  3175 void Main::formatSelectSelectionColor()
  3176 {
  3177 	VymModel *m=currentModel();
  3178 	if (m)
  3179 	{
  3180 		QColor col = QColorDialog::getColor( m->getMapDefLinkColor(), this );
  3181 		m->setSelectionColor (col);
  3182 	}
  3183 
  3184 }
  3185 
  3186 void Main::formatToggleLinkColorHint()
  3187 {
  3188 	VymModel *m=currentModel();
  3189 	if (m) m->toggleMapLinkColorHint();
  3190 }
  3191 
  3192 
  3193 void Main::formatHideLinkUnselected()	//FIXME get rid of this with imagepropertydialog
  3194 {
  3195 	VymModel *m=currentModel();
  3196 	if (m)
  3197 		m->setHideLinkUnselected(actionFormatHideLinkUnselected->isOn());
  3198 }
  3199 
  3200 void Main::viewZoomReset()
  3201 {
  3202 	if (currentMapEditor())
  3203 	{
  3204 		QMatrix m;
  3205 		m.reset();
  3206 		currentMapEditor()->setMatrix( m );
  3207 	}	
  3208 }
  3209 
  3210 void Main::viewZoomIn()
  3211 {
  3212 	if (currentMapEditor())
  3213 	{
  3214 		QMatrix m = currentMapEditor()->matrix();
  3215 		m.scale( 1.25, 1.25 );
  3216 		currentMapEditor()->setMatrix( m );
  3217 	}	
  3218 }
  3219 
  3220 void Main::viewZoomOut()
  3221 {
  3222 	if (currentMapEditor())
  3223 	{
  3224 		QMatrix m = currentMapEditor()->matrix();
  3225 		m.scale( 0.8, 0.8 );
  3226 		currentMapEditor()->setMatrix( m );
  3227 	}	
  3228 }
  3229 
  3230 void Main::viewCenter()
  3231 {
  3232 	VymModel *m=currentModel();
  3233 	if (m) m->ensureSelectionVisible();
  3234 }
  3235 
  3236 void Main::networkStartServer()
  3237 {
  3238 	VymModel *m=currentModel();
  3239 	if (m) m->newServer();
  3240 }
  3241 
  3242 void Main::networkConnect()
  3243 {
  3244 	VymModel *m=currentModel();
  3245 	if (m) m->connectToServer();
  3246 }
  3247 
  3248 bool Main::settingsPDF()
  3249 {
  3250 	// Default browser is set in constructor
  3251 	bool ok;
  3252 	QString text = QInputDialog::getText(
  3253 		"VYM", tr("Set application to open PDF files")+":", QLineEdit::Normal,
  3254 		settings.value("/mainwindow/readerPDF").toString(), &ok, this );
  3255 	if (ok)
  3256 		settings.setValue ("/mainwindow/readerPDF",text);
  3257 	return ok;
  3258 }
  3259 
  3260 
  3261 bool Main::settingsURL()
  3262 {
  3263 	// Default browser is set in constructor
  3264 	bool ok;
  3265 	QString text = QInputDialog::getText(
  3266 		"VYM", tr("Set application to open an URL")+":", QLineEdit::Normal,
  3267 		settings.value("/mainwindow/readerURL").toString()
  3268 		, &ok, this );
  3269 	if (ok)
  3270 		settings.setValue ("/mainwindow/readerURL",text);
  3271 	return ok;
  3272 }
  3273 
  3274 void Main::settingsMacroDir()
  3275 {
  3276 	QDir defdir(vymBaseDir.path() + "/macros");
  3277 	if (!defdir.exists())
  3278 		defdir=vymBaseDir;
  3279 	QDir dir=QFileDialog::getExistingDirectory (
  3280 		this,
  3281 		tr ("Directory with vym macros:"), 
  3282 		settings.value ("/macros/macroDir",defdir.path()).toString()
  3283 	);
  3284 	if (dir.exists())
  3285 		settings.setValue ("/macros/macroDir",dir.absolutePath());
  3286 }
  3287 
  3288 void Main::settingsUndoLevels()
  3289 {
  3290 	bool ok;
  3291 	int i = QInputDialog::getInteger(
  3292 		this, 
  3293 		tr("QInputDialog::getInteger()"),
  3294 	    tr("Number of undo/redo levels:"), settings.value("/mapeditor/stepsTotal").toInt(), 0, 1000, 1, &ok);
  3295 	if (ok)
  3296 	{
  3297 		settings.setValue ("/mapeditor/stepsTotal",i);
  3298 		QMessageBox::information( this, tr( "VYM -Information:" ),
  3299 		   tr("Settings have been changed. The next map opened will have \"%1\" undo/redo levels").arg(i)); 
  3300    }	
  3301 }
  3302 
  3303 void Main::settingsAutosaveToggle()
  3304 {
  3305 	settings.setValue ("/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
  3306 }
  3307 
  3308 void Main::settingsAutosaveTime()
  3309 {
  3310 	bool ok;
  3311 	int i = QInputDialog::getInteger(
  3312 		this, 
  3313 		tr("QInputDialog::getInteger()"),
  3314 	    tr("Number of seconds before autosave:"), settings.value("/mapeditor/autosave/ms").toInt() / 1000, 10, 10000, 1, &ok);
  3315 	if (ok)
  3316 		settings.setValue ("/mapeditor/autosave/ms",i * 1000);
  3317 }
  3318 
  3319 void Main::settingsWriteBackupFileToggle()
  3320 {
  3321 	settings.setValue ("/mapeditor/writeBackupFile",actionSettingsWriteBackupFile->isOn() );
  3322 }
  3323 
  3324 void Main::settingsToggleAnimation()
  3325 {
  3326 	settings.setValue ("/animation/use",actionSettingsUseAnimation->isOn() );
  3327 }
  3328 
  3329 void Main::settingsToggleDelKey()
  3330 {
  3331 	if (actionSettingsUseDelKey->isOn())
  3332 	{
  3333 		actionDelete->setAccel (QKeySequence (Qt::Key_Delete));
  3334 	} else
  3335 	{
  3336 		actionDelete->setAccel (QKeySequence (""));
  3337 	}
  3338 }
  3339 
  3340 void Main::windowToggleNoteEditor()
  3341 {
  3342 	if (textEditor->isVisible() )
  3343 		windowHideNoteEditor();
  3344 	else
  3345 		windowShowNoteEditor();
  3346 }
  3347 
  3348 void Main::windowToggleHistory()
  3349 {
  3350 	if (historyWindow->isVisible())
  3351 		historyWindow->hide();
  3352 	else	
  3353 		historyWindow->show();
  3354 
  3355 }
  3356 
  3357 void Main::windowToggleProperty()
  3358 {
  3359 	if (branchPropertyWindow->isVisible())
  3360 		branchPropertyWindow->hide();
  3361 	else	
  3362 		branchPropertyWindow->show();
  3363 	branchPropertyWindow->setModel (currentModel() );
  3364 }
  3365 
  3366 void Main::windowToggleAntiAlias()
  3367 {
  3368 	bool b=actionViewToggleAntiAlias->isOn();
  3369 	MapEditor *me;
  3370 	for (int i=0;i<tabModel.count();i++)
  3371 	{
  3372 		me=tabModel.at(i)->getMapEditor();
  3373 		if (me) me->setAntiAlias(b);
  3374 	}	
  3375 
  3376 }
  3377 
  3378 void Main::windowToggleSmoothPixmap()
  3379 {
  3380 	bool b=actionViewToggleSmoothPixmapTransform->isOn();
  3381 	MapEditor *me;
  3382 	for (int i=0;i<tabModel.count();i++)
  3383 	{
  3384 		
  3385 		me=tabModel.at(i)->getMapEditor();
  3386 		if (me) me->setSmoothPixmap(b);
  3387 	}	
  3388 }
  3389 
  3390 void Main::updateHistory(SimpleSettings &undoSet)
  3391 {
  3392 	historyWindow->update (undoSet);
  3393 }
  3394 
  3395 void Main::updateNoteFlag()
  3396 {
  3397 	// this slot is connected to TextEditor::textHasChanged()
  3398 
  3399 	VymModel *m=currentModel();
  3400 	if (m) m->updateNoteFlag();
  3401 }
  3402 
  3403 void Main::updateSatellites(VymModel* model)
  3404 {
  3405 	branchPropertyWindow->setModel (model );
  3406 }
  3407 
  3408 void Main::updateActions()
  3409 {
  3410 	VymModel  *m =currentModel();
  3411 	LinkableMapObj *selection;
  3412 	if (m) 
  3413 	{
  3414 		// Printing
  3415 		actionFilePrint->setEnabled (true);
  3416 
  3417 		// Selection
  3418 		selection=m->getSelection();
  3419 
  3420 		// Link style in context menu
  3421 		switch (m->getMapLinkStyle())
  3422 		{
  3423 			case LinkableMapObj::Line: 
  3424 				actionFormatLinkStyleLine->setOn(true);
  3425 				break;
  3426 			case LinkableMapObj::Parabel:
  3427 				actionFormatLinkStyleParabel->setOn(true);
  3428 				break;
  3429 			case LinkableMapObj::PolyLine:	
  3430 				actionFormatLinkStylePolyLine->setOn(true);
  3431 				break;
  3432 			case LinkableMapObj::PolyParabel:	
  3433 				actionFormatLinkStylePolyParabel->setOn(true);
  3434 				break;
  3435 			default:
  3436 				break;
  3437 		}		
  3438 
  3439 		// Update colors
  3440 		QPixmap pix( 16, 16 );
  3441 		pix.fill( m->getMapBackgroundColor() );
  3442 		actionFormatBackColor->setIconSet( pix );
  3443 		pix.fill( m->getSelectionColor() );
  3444 		actionFormatSelectionColor->setIconSet( pix );
  3445 		pix.fill( m->getMapDefLinkColor() );
  3446 		actionFormatLinkColor->setIconSet( pix );
  3447 
  3448 		// History window
  3449 		historyWindow->setCaption (vymName + " - " +tr("History for %1","Window Caption").arg(m->getFileName()));
  3450 
  3451 	} else
  3452 	{
  3453 		// Printing
  3454 		actionFilePrint->setEnabled (false);
  3455 
  3456 		// Selection
  3457 		selection=NULL;
  3458 	}
  3459 
  3460 	// updateActions is also called when NoteEditor is closed
  3461 	actionViewToggleNoteEditor->setOn (textEditor->isVisible());
  3462 	actionViewToggleHistoryWindow->setOn (historyWindow->isVisible());
  3463 	actionViewTogglePropertyWindow->setOn (branchPropertyWindow->isVisible());
  3464 
  3465 	if (m && m->getMapLinkColorHint()==LinkableMapObj::HeadingColor) 
  3466 		actionFormatLinkColorHint->setOn(true);
  3467 	else	
  3468 		actionFormatLinkColorHint->setOn(false);
  3469 
  3470 
  3471 	if (m && m->hasChanged() )
  3472 		actionFileSave->setEnabled( true);
  3473 	else	
  3474 		actionFileSave->setEnabled( true);
  3475 	if (m && m->isUndoAvailable())
  3476 		actionUndo->setEnabled( true);
  3477 	else	
  3478 		actionUndo->setEnabled( false);
  3479 
  3480 	if (m && m->isRedoAvailable())
  3481 		actionRedo->setEnabled( true);
  3482 	else	
  3483 		actionRedo->setEnabled( false);
  3484 
  3485 	if (selection)
  3486 	{
  3487 		if ( (typeid(*selection) == typeid(BranchObj)) || 
  3488 			(typeid(*selection) == typeid(MapCenterObj))  )
  3489 		{
  3490 			BranchObj *bo=(BranchObj*)selection;
  3491 			// Take care of links
  3492 			if (bo->countXLinks()==0)
  3493 			{
  3494 				branchXLinksContextMenuEdit->clear();
  3495 				branchXLinksContextMenuFollow->clear();
  3496 			} else
  3497 			{
  3498 				BranchObj *bot;
  3499 				QString s;
  3500 				branchXLinksContextMenuEdit->clear();
  3501 				branchXLinksContextMenuFollow->clear();
  3502 				for (int i=0; i<=bo->countXLinks();i++)
  3503 				{
  3504 					bot=bo->XLinkTargetAt(i);
  3505 					if (bot)
  3506 					{
  3507 						s=bot->getHeading();
  3508 						if (s.length()>xLinkMenuWidth)
  3509 							s=s.left(xLinkMenuWidth)+"...";
  3510 						branchXLinksContextMenuFollow->addAction (s);
  3511 						branchXLinksContextMenuEdit->addAction (s);
  3512 					}	
  3513 				}
  3514 			}
  3515 
  3516 			standardFlagsDefault->setEnabled (true);
  3517 
  3518 			actionToggleScroll->setEnabled (true);
  3519 			if ( bo->isScrolled() )
  3520 				actionToggleScroll->setOn(true);
  3521 			else	
  3522 				actionToggleScroll->setOn(false);
  3523 
  3524 			if ( bo->getURL().isEmpty() )
  3525 			{
  3526 				actionOpenURL->setEnabled (false);
  3527 				actionOpenURLTab->setEnabled (false);
  3528 			}	
  3529 			else	
  3530 			{
  3531 				actionOpenURL->setEnabled (true);
  3532 				actionOpenURLTab->setEnabled (true);
  3533 			}
  3534 			if ( bo->getVymLink().isEmpty() )
  3535 			{
  3536 				actionOpenVymLink->setEnabled (false);
  3537 				actionDeleteVymLink->setEnabled (false);
  3538 			} else	
  3539 			{
  3540 				actionOpenVymLink->setEnabled (true);
  3541 				actionDeleteVymLink->setEnabled (true);
  3542 			}	
  3543 
  3544 			if (bo->canMoveBranchUp()) 
  3545 				actionMoveUp->setEnabled (true);
  3546 			else	
  3547 				actionMoveUp->setEnabled (false);
  3548 			if (bo->canMoveBranchDown()) 
  3549 				actionMoveDown->setEnabled (true);
  3550 			else	
  3551 				actionMoveDown->setEnabled (false);
  3552 
  3553 			actionSortChildren->setEnabled (true);
  3554 
  3555 			actionToggleHideExport->setEnabled (true);	
  3556 			actionToggleHideExport->setOn (bo->hideInExport() );	
  3557 
  3558 			actionFileSave->setEnabled (true);	
  3559 			actionCopy->setEnabled (true);	
  3560 			actionCut->setEnabled (true);	
  3561 			if (!clipboardEmpty)
  3562 				actionPaste->setEnabled (true);	
  3563 			else	
  3564 				actionPaste->setEnabled (false);	
  3565 			for (int i=0; i<actionListBranches.size(); ++i)	
  3566 				actionListBranches.at(i)->setEnabled(true);
  3567 			actionDelete->setEnabled (true);
  3568 			actionFormatHideLinkUnselected->setOn
  3569 				(selection->getHideLinkUnselected());
  3570 		}
  3571 		if ( (typeid(*selection) == typeid(FloatImageObj)) )
  3572 		{
  3573 			FloatObj *fo=(FloatImageObj*)selection;
  3574 
  3575 			actionOpenURL->setEnabled (false);
  3576 			actionOpenVymLink->setEnabled (false);
  3577 			actionDeleteVymLink->setEnabled (false);	
  3578 			actionToggleHideExport->setEnabled (true);	
  3579 			actionToggleHideExport->setOn (fo->hideInExport() );	
  3580 
  3581 
  3582 			actionCopy->setEnabled (true);
  3583 			actionCut->setEnabled (true);	
  3584 			actionPaste->setEnabled (false);
  3585 			for (int i=0; i<actionListBranches.size(); ++i)	
  3586 				actionListBranches.at(i)->setEnabled(false);
  3587 			actionDelete->setEnabled (true);
  3588 			actionFormatHideLinkUnselected->setOn
  3589 				( selection->getHideLinkUnselected());
  3590 			actionMoveUp->setEnabled (false);
  3591 			actionMoveDown->setEnabled (false);
  3592 		}
  3593 
  3594 	} else
  3595 	{
  3596 		standardFlagsDefault->setEnabled (false);
  3597 		actionFileSave->setEnabled (false);	
  3598 		actionCopy->setEnabled (false);	
  3599 		actionCut->setEnabled (false);	
  3600 		actionPaste->setEnabled (false);	
  3601 		for (int i=0; i<actionListBranches.size(); ++i)	
  3602 			actionListBranches.at(i)->setEnabled(false);
  3603 
  3604 		actionToggleScroll->setEnabled (false);
  3605 		actionOpenURL->setEnabled (false);
  3606 		actionOpenVymLink->setEnabled (false);
  3607 		actionDeleteVymLink->setEnabled (false);	
  3608 		actionHeading2URL->setEnabled (false);	
  3609 		actionDelete->setEnabled (false);
  3610 		actionMoveUp->setEnabled (false);
  3611 		actionMoveDown->setEnabled (false);
  3612 		actionSortChildren->setEnabled (false);
  3613 		actionToggleHideExport->setEnabled (false);	
  3614 	}	
  3615 }
  3616 
  3617 Main::ModMode Main::getModMode()
  3618 {
  3619 	if (actionModModeColor->isOn()) return ModModeColor;
  3620 	if (actionModModeCopy->isOn()) return ModModeCopy;
  3621 	if (actionModModeXLink->isOn()) return ModModeXLink;
  3622 	return ModModeNone;
  3623 }
  3624 
  3625 bool Main::autoEditNewBranch()
  3626 {
  3627 	return actionSettingsAutoEditNewBranch->isOn();
  3628 }
  3629 
  3630 bool Main::autoSelectNewBranch()
  3631 {
  3632 	return actionSettingsAutoSelectNewBranch->isOn();
  3633 }
  3634 
  3635 bool Main::useFlagGroups()
  3636 {
  3637 	return actionSettingsUseFlagGroups->isOn();
  3638 }
  3639 
  3640 void Main::windowShowNoteEditor()
  3641 {
  3642 	textEditor->setShowWithMain(true);
  3643 	textEditor->show();
  3644 	actionViewToggleNoteEditor->setOn (true);
  3645 }
  3646 
  3647 void Main::windowHideNoteEditor()
  3648 {
  3649 	textEditor->setShowWithMain(false);
  3650 	textEditor->hide();
  3651 	actionViewToggleNoteEditor->setOn (false);
  3652 }
  3653 
  3654 void Main::setScript (const QString &script)
  3655 {
  3656 	scriptEditor->setScript (script);
  3657 }
  3658 
  3659 void Main::runScript (const QString &script)
  3660 {
  3661 	VymModel *m=currentModel();
  3662 	if (m) m->runScript (script);
  3663 }
  3664 
  3665 void Main::runScriptEverywhere (const QString &script)
  3666 {
  3667 	MapEditor *me;
  3668 	for (int i=0;i<=tabWidget->count() -1;i++)
  3669 	{
  3670 		me=(MapEditor*)tabWidget->page(i);
  3671 		if (me) me->getModel()->runScript (script);
  3672 	}	
  3673 }
  3674 
  3675 void Main::windowNextEditor()
  3676 {
  3677 	if (tabWidget->currentIndex() < tabWidget->count())
  3678 		tabWidget->setCurrentIndex (tabWidget->currentIndex() +1);
  3679 }
  3680 
  3681 void Main::windowPreviousEditor()
  3682 {
  3683 	if (tabWidget->currentIndex() >0)
  3684 		tabWidget->setCurrentIndex (tabWidget->currentIndex() -1);
  3685 }
  3686 
  3687 void Main::standardFlagChanged()
  3688 {
  3689 	if (currentMapEditor())
  3690 		currentMapEditor()->toggleStandardFlag(sender()->name());
  3691 }
  3692 
  3693 void Main::testFunction1()
  3694 {
  3695 	if (!currentMapEditor()) return;
  3696 	currentMapEditor()->testFunction1();
  3697 	//editAttribute();
  3698 }
  3699 
  3700 void Main::testFunction2()
  3701 {
  3702 	if (!currentMapEditor()) return;
  3703 	currentMapEditor()->testFunction2();
  3704 }
  3705 
  3706 void Main::testCommand()
  3707 {
  3708 	if (!currentMapEditor()) return;
  3709 	scriptEditor->show();
  3710 	/*
  3711 	bool ok;
  3712 	QString com = QInputDialog::getText(
  3713 			vymName, "Enter Command:", QLineEdit::Normal,"command", &ok, this );
  3714 	if (ok) currentMapEditor()->parseAtom(com);
  3715 	*/
  3716 }
  3717 
  3718 void Main::helpDoc()
  3719 {
  3720 	QString locale = QLocale::system().name();
  3721 	QString docname;
  3722 	if (locale.left(2)=="es")
  3723 		docname="vym_es.pdf";
  3724 	else	
  3725 		docname="vym.pdf";
  3726 
  3727 	QStringList searchList;
  3728 	QDir docdir;
  3729 	#if defined(Q_OS_MACX)
  3730 		searchList << "./vym.app/Contents/Resources/doc";
  3731     #elif defined(Q_OS_WIN32)
  3732         searchList << vymInstallDir.path() + "/share/doc/packages/vym";
  3733 	#else
  3734 		#if defined(VYM_DOCDIR)
  3735 			searchList << VYM_DOCDIR;
  3736 		#endif
  3737 		// default path in SUSE LINUX
  3738 		searchList << "/usr/share/doc/packages/vym";
  3739 	#endif
  3740 
  3741 	searchList << "doc";	// relative path for easy testing in tarball
  3742 	searchList << "doc/tex";	// Easy testing working on vym.tex
  3743 	searchList << "/usr/share/doc/vym";	// Debian
  3744 	searchList << "/usr/share/doc/packages";// Knoppix
  3745 
  3746 	bool found=false;
  3747 	QFile docfile;
  3748 	for (int i=0; i<searchList.count(); ++i)
  3749 	{
  3750 		docfile.setFileName(searchList.at(i)+"/"+docname);
  3751 		if (docfile.exists())
  3752 		{
  3753 			found=true;
  3754 			break;
  3755 		}	
  3756 	}
  3757 
  3758 	if (!found)
  3759 	{
  3760 		QMessageBox::critical(0, 
  3761 			tr("Critcal error"),
  3762 			tr("Couldn't find the documentation %1 in:\n%2").arg(searchList.join("\n")));
  3763 		return;
  3764 	}	
  3765 
  3766 	QStringList args;
  3767 	Process *pdfProc = new Process();
  3768     args << QDir::toNativeSeparators(docfile.fileName());
  3769 
  3770 	pdfProc->start( settings.value("/mainwindow/readerPDF").toString(),args);
  3771 	if ( !pdfProc->waitForStarted() ) 
  3772 	{
  3773 		// error handling
  3774 		QMessageBox::warning(0, 
  3775 			tr("Warning"),
  3776 			tr("Couldn't find a viewer to open %1.\n").arg(docfile.fileName())+
  3777 			tr("Please use Settings->")+tr("Set application to open PDF files"));
  3778 		settingsPDF();	
  3779 		return;
  3780 	}
  3781 }
  3782 
  3783 
  3784 void Main::helpDemo()
  3785 {
  3786 	QStringList filters;
  3787 	filters <<"VYM example map (*.vym)";
  3788 	QFileDialog *fd=new QFileDialog( this);
  3789 	#if defined(Q_OS_MACX)
  3790 		fd->setDir (QDir("./vym.app/Contents/Resources/demos"));
  3791 	#else
  3792 		// default path in SUSE LINUX
  3793 		fd->setDir (QDir(vymBaseDir.path()+"/demos"));
  3794 	#endif
  3795 
  3796 	fd->setFileMode (QFileDialog::ExistingFiles);
  3797 	fd->setFilters (filters);
  3798 	fd->setCaption(vymName+ " - " +tr("Load vym example map"));
  3799 	fd->show();
  3800 
  3801 	QString fn;
  3802 	if ( fd->exec() == QDialog::Accepted )
  3803 	{
  3804 		lastFileDir=fd->directory().path();
  3805 	    QStringList flist = fd->selectedFiles();
  3806 		QStringList::Iterator it = flist.begin();
  3807 		while( it != flist.end() ) 
  3808 		{
  3809 			fn = *it;
  3810 			fileLoad(*it, NewMap);				   
  3811 			++it;
  3812 		}
  3813 	}
  3814 	delete (fd);
  3815 }
  3816 
  3817 
  3818 void Main::helpAbout()
  3819 {
  3820 	AboutDialog ad;
  3821 	ad.setName ("aboutwindow");
  3822 	ad.setMinimumSize(500,500);
  3823 	ad.resize (QSize (500,500));
  3824 	ad.exec();
  3825 }
  3826 
  3827 void Main::helpAboutQT()
  3828 {
  3829 	QMessageBox::aboutQt( this, "Qt Application Example" );
  3830 }
  3831 
  3832 void Main::callMacro ()
  3833 {
  3834     QAction *action = qobject_cast<QAction *>(sender());
  3835 	int i=-1;
  3836     if (action)
  3837 	{
  3838         i=action->data().toInt();
  3839 		QString mDir (settings.value ("macros/macroDir").toString() );
  3840 
  3841 		QString fn=mDir + QString("/macro-%1.vys").arg(i+1);
  3842 		QFile f (fn);
  3843 		if ( !f.open( QIODevice::ReadOnly ) )
  3844 		{
  3845 			QMessageBox::warning(0, 
  3846 				tr("Warning"),
  3847 				tr("Couldn't find a macro at  %1.\n").arg(fn)+
  3848 				tr("Please use Settings->")+tr("Set directory for vym macros"));
  3849 			return;
  3850 		}	
  3851 
  3852 		QTextStream ts( &f );
  3853 		QString macro= ts.read();
  3854 
  3855 		if (! macro.isEmpty())
  3856 		{
  3857 			VymModel *m=currentModel();
  3858 			if (m) m->runScript(macro);
  3859 		}	
  3860 	}	
  3861 }
  3862