mainwindow.cpp
author insilmaril
Wed, 27 Feb 2008 16:09:06 +0000
changeset 676 3dabc6424d73
parent 663 827d334d55f1
child 679 d2f72e448522
permissions -rw-r--r--
autosave fix
     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 Main::Main(QWidget* parent, const char* name, Qt::WFlags f) :
    78     QMainWindow(parent,name,f)
    79 {
    80 	mainWindow=this;
    81 
    82 	setCaption ("VYM - View Your Mind");
    83 
    84 	// Load window settings
    85 #if defined(Q_OS_WIN32)
    86     if (settings.value("/mainwindow/geometry/maximized", false).toBool())
    87     {
    88         setWindowState(Qt::WindowMaximized);
    89     }
    90     else
    91 #endif
    92     {
    93         resize (settings.value("/mainwindow/geometry/size", QSize (800,600)).toSize());
    94         move   (settings.value("/mainwindow/geometry/pos",  QPoint(300,100)).toPoint());
    95     }
    96 
    97 	// Sometimes we may need to remember old selections
    98 	prevSelection="";
    99 
   100 	// Default color
   101 	currentColor=Qt::black;
   102 
   103 	// Create unique temporary directory
   104 	bool ok;
   105 	tmpVymDir=makeTmpDir (ok,"vym");
   106 	if (!ok)
   107 	{
   108 		qWarning ("Mainwindow: Could not create temporary directory, failed to start vym");
   109 		exit (1);
   110 	}
   111 	if (debug) qDebug (QString("vym tmpDir=%1").arg(tmpVymDir) );
   112 
   113 	// Create direcctory for clipboard
   114 	clipboardDir=tmpVymDir+"/clipboard";
   115 	clipboardFile="map.xml";
   116 	QDir d(clipboardDir);
   117 	d.mkdir (clipboardDir,true);
   118 	makeSubDirs (clipboardDir);
   119 	clipboardEmpty=true;
   120 
   121 	procBrowser=NULL;
   122 
   123 	// Satellite windows //////////////////////////////////////////
   124 
   125 	// history window
   126 	historyWindow=new HistoryWindow();
   127 	connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   128 
   129 	// properties window
   130 	branchPropertyWindow = new BranchPropertyWindow();
   131 	connect (branchPropertyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   132 
   133 	// Connect TextEditor, so that we can update flags if text changes
   134 	connect (textEditor, SIGNAL (textHasChanged() ), this, SLOT (updateNoteFlag()));
   135 	connect (textEditor, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   136 
   137 	// Connect HistoryWindow, so that we can update flags
   138 	connect (historyWindow, SIGNAL (windowClosed() ), this, SLOT (updateActions()));
   139 
   140 
   141 	// Initialize script editor
   142 	scriptEditor = new SimpleScriptEditor();
   143 	scriptEditor->move (50,50);
   144 
   145 	connect( scriptEditor, SIGNAL( runScript ( QString ) ), 
   146 		this, SLOT( runScript( QString ) ) );
   147 	
   148 
   149 	// Initialize Find window
   150 	findWindow=new FindWindow(NULL);
   151 	findWindow->move (x(),y()+70);
   152 	connect (findWindow, SIGNAL( findButton(QString) ), 
   153 		this, SLOT(editFind(QString) ) );	
   154 	connect (findWindow, SIGNAL( somethingChanged() ), 
   155 		this, SLOT(editFindChanged() ) );	
   156 
   157 	// Initialize some settings, which are platform dependant
   158 	QString p,s;
   159 
   160 		// application to open URLs
   161 		p="/mainwindow/readerURL";
   162 		#if defined(Q_OS_LINUX)
   163 			s=settings.value (p,"xdg-open").toString();
   164 		#else
   165 			#if defined(Q_OS_MACX)
   166 				s=settings.value (p,"/usr/bin/open").toString();
   167 
   168             #else
   169                 #if defined(Q_OS_WIN32)
   170                     // Assume that system has been set up so that
   171                     // Explorer automagically opens up the URL
   172                     // in the user's preferred browser.
   173                     s=settings.value (p,"explorer").toString();
   174                 #else
   175 					s=settings.value (p,"mozilla").toString();
   176 				#endif
   177 			#endif
   178 		#endif
   179 		settings.setValue( p,s);
   180 
   181 		// application to open PDFs
   182 		p="/mainwindow/readerPDF";
   183 		#if defined(Q_OS_LINUX)
   184 			s=settings.value (p,"xdg-open").toString();
   185 		#else
   186 			#if defined(Q_OS_MACX)
   187 				s=settings.value (p,"/usr/bin/open").toString();
   188             #elif defined(Q_OS_WIN32)
   189                 s=settings.value (p,"acrord32").toString();
   190 			#else
   191 				s=settings.value (p,"acroread").toString();
   192 			#endif
   193 		#endif
   194 		settings.setValue( p,s);
   195 
   196 	// width of xLinksMenu
   197 	xLinkMenuWidth=60;
   198 	
   199 	// Create tab widget which holds the maps
   200 	tabWidget= new QTabWidget (this);
   201 	connect( tabWidget, SIGNAL( currentChanged( QWidget * ) ), 
   202 		this, SLOT( editorChanged( QWidget * ) ) );
   203 
   204 	lineedit=new QLineEdit (this);
   205 	lineedit->hide();
   206 
   207 	setCentralWidget(tabWidget);	
   208 
   209     setupFileActions();
   210     setupEditActions();
   211     setupFormatActions();
   212     setupViewActions();
   213     setupModeActions();
   214 	setupFlagActions();
   215     setupNetworkActions();
   216     setupSettingsActions();
   217 	setupContextMenus();
   218 	setupMacros();
   219     if (settings.value( "/mainwindow/showTestMenu",false).toBool()) setupTestActions();
   220     setupHelpActions();
   221     
   222     statusBar();
   223 
   224 	restoreState (settings.value("/mainwindow/state",0).toByteArray());
   225 
   226 	updateGeometry();
   227 }
   228 
   229 Main::~Main()
   230 {
   231 	// Save Settings
   232 #if defined(Q_OS_WIN32)
   233     settings.setValue ("/mainwindow/geometry/maximized", isMaximized());
   234 #endif
   235 	settings.setValue ("/mainwindow/geometry/size", size());
   236 	settings.setValue ("/mainwindow/geometry/pos", pos());
   237 	settings.setValue ("/mainwindow/state",saveState(0));
   238 
   239 	settings.setValue ("/mainwindow/view/AntiAlias",actionViewToggleAntiAlias->isOn());
   240 	settings.setValue ("/mainwindow/view/SmoothPixmapTransform",actionViewToggleSmoothPixmapTransform->isOn());
   241 	settings.setValue( "/version/version", vymVersion );
   242 	settings.setValue( "/version/builddate", vymBuildDate );
   243 
   244 	settings.setValue( "/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
   245 	settings.setValue( "/mapeditor/editmode/autoSelectNewBranch",actionSettingsAutoSelectNewBranch->isOn() );
   246 	settings.setValue( "/mainwindow/writeBackupFile",actionSettingsWriteBackupFile->isOn() );
   247 	settings.setValue( "/mapeditor/editmode/autoSelectText",actionSettingsAutoSelectText->isOn() );
   248 	settings.setValue( "/mapeditor/editmode/autoEditNewBranch",actionSettingsAutoEditNewBranch->isOn() );
   249 	settings.setValue( "/mapeditor/editmode/useDelKey",actionSettingsUseDelKey->isOn() );
   250 	settings.setValue( "/mapeditor/editmode/useFlagGroups",actionSettingsUseFlagGroups->isOn() );
   251 	settings.setValue( "/export/useHideExport",actionSettingsUseHideExport->isOn() );
   252 
   253 	//TODO save scriptEditor settings
   254 
   255 	// call the destructors
   256 	delete textEditor;
   257 	delete historyWindow;
   258 	delete branchPropertyWindow;
   259 
   260 	// Remove temporary directory
   261 	removeDir (QDir(tmpVymDir));
   262 }
   263 
   264 void Main::loadCmdLine()
   265 {
   266 	/* TODO draw some kind of splashscreen while loading...
   267 	if (qApp->argc()>1)
   268 	{
   269 	}
   270 	*/
   271 	
   272 	QStringList flist=options.getFileList();
   273 	QStringList::Iterator it=flist.begin();
   274 
   275 	while (it !=flist.end() )
   276 	{
   277 		fileLoad (*it, NewMap);
   278 		*it++;
   279 	}	
   280 }
   281 
   282 
   283 void Main::statusMessage(const QString &s)
   284 {
   285 	statusBar()->message( s);
   286 }
   287 
   288 void Main::closeEvent (QCloseEvent* )
   289 {
   290 	fileExitVYM();
   291 }
   292 
   293 // File Actions
   294 void Main::setupFileActions()
   295 {
   296 	QMenu *fileMenu = menuBar()->addMenu ( tr ("&Map") );
   297     QToolBar *tb = addToolBar( tr ("&Map") );
   298 	tb->setObjectName ("mapTB");
   299 
   300     QAction *a;
   301     a = new QAction(QPixmap( iconPath+"filenew.png"), tr( "&New map","File menu" ),this);
   302 	a->setStatusTip ( tr( "New map","Status tip File menu" ) );
   303 	a->setShortcut ( Qt::CTRL + Qt::Key_N );		//New map
   304     a->addTo( tb );
   305 	fileMenu->addAction (a);
   306     connect( a, SIGNAL( triggered() ), this, SLOT( fileNew() ) );
   307 	
   308     a = new QAction(QPixmap( iconPath+"filenewcopy.png"), tr( "&Copy to new map","File menu" ),this);
   309 	a->setStatusTip ( tr( "Copy selection to mapcenter of a new map","Status tip File menu" ) );
   310 	a->setShortcut ( Qt::CTRL +Qt::SHIFT + Qt::Key_N );		//New map
   311 	fileMenu->addAction (a);
   312     connect( a, SIGNAL( triggered() ), this, SLOT( fileNewCopy() ) );
   313 	
   314     a = new QAction( QPixmap( iconPath+"fileopen.png"), tr( "&Open..." ,"File menu"),this);
   315 	a->setStatusTip (tr( "Open","Status tip File menu" ) );
   316 	a->setShortcut ( Qt::CTRL + Qt::Key_O );		//Open map
   317     a->addTo( tb );
   318 	fileMenu->addAction (a);
   319     connect( a, SIGNAL( triggered() ), this, SLOT( fileLoad() ) );
   320 	
   321 	fileLastMapsMenu = fileMenu->addMenu (tr("Open Recent","File menu"));
   322 	fileMenu->addSeparator();
   323 	
   324     a = new QAction( QPixmap( iconPath+"filesave.png"), tr( "&Save...","File menu" ), this);
   325 	a->setStatusTip ( tr( "Save","Status tip file menu" ));
   326 	a->setShortcut (Qt::CTRL + Qt::Key_S );			//Save map
   327     a->addTo( tb );
   328 	fileMenu->addAction (a);
   329     connect( a, SIGNAL( triggered() ), this, SLOT( fileSave() ) );
   330 	actionFileSave=a;
   331 	
   332     a = new QAction( QPixmap(iconPath+"filesaveas.png"), tr( "Save &As...","File menu" ), this);
   333 	a->setStatusTip (tr( "Save &As","Status tip file menu" ) );
   334 	fileMenu->addAction (a);
   335     connect( a, SIGNAL( triggered() ), this, SLOT( fileSaveAs() ) );
   336 
   337 	fileMenu->addSeparator();
   338 
   339 	fileImportMenu = fileMenu->addMenu (tr("Import","File menu"));
   340 
   341 	a = new QAction(tr("KDE Bookmarks"), this);
   342 	a->setStatusTip ( tr( "Import %1","Status tip file menu" ).arg(tr("KDE bookmarks")));
   343 	a->addTo (fileImportMenu);
   344 	connect( a, SIGNAL( triggered() ), this, SLOT( fileImportKDEBookmarks() ) );
   345 
   346     if (settings.value( "/mainwindow/showTestMenu",false).toBool()) 
   347 	{
   348 		a = new QAction( QPixmap(), tr("Firefox Bookmarks","File menu"),this);
   349 		a->setStatusTip (tr( "Import %1","Status tip file menu").arg(tr("Firefox Bookmarks" ) ));
   350 		a->addTo (fileImportMenu);
   351 		connect( a, SIGNAL( triggered() ), this, SLOT( fileImportFirefoxBookmarks() ) );
   352 	}	
   353 
   354 	a = new QAction("Freemind...",this);
   355 	a->setStatusTip ( tr( "Import %1","status tip file menu").arg(" Freemind")  );
   356 	fileImportMenu->addAction (a);
   357 	connect( a, SIGNAL( triggered() ), this, SLOT( fileImportFreemind() ) );
   358 
   359 	a = new QAction("Mind Manager...",this);
   360 	a->setStatusTip ( tr( "Import %1","status tip file menu").arg(" Mind Manager")  );
   361 	fileImportMenu->addAction (a);
   362 	connect( a, SIGNAL( triggered() ), this, SLOT( fileImportMM() ) );
   363 
   364     a = new QAction( tr( "Import Dir%1","File menu").arg("..."), this);
   365 	a->setStatusTip (tr( "Import directory structure (experimental)","status tip file menu" ) );
   366 	fileImportMenu->addAction (a);
   367     connect( a, SIGNAL( triggered() ), this, SLOT( fileImportDir() ) );
   368 
   369 	fileExportMenu = fileMenu->addMenu (tr("Export","File menu"));
   370 
   371 	a = new QAction( tr("Image%1","File export menu").arg("..."), this);
   372 	a->setStatusTip( tr( "Export map as image","status tip file menu" ));
   373 	connect( a, SIGNAL( triggered() ), this, SLOT( fileExportImage() ) );
   374 	fileExportMenu->addAction (a);
   375 
   376 	a = new QAction( "Open Office...", this);
   377 	a->setStatusTip( tr( "Export in Open Document Format used e.g. in Open Office ","status tip file menu" ));
   378 	connect( a, SIGNAL( triggered() ), this, SLOT( fileExportOOPresentation() ) );
   379 	fileExportMenu->addAction (a);
   380 
   381 	a = new QAction(  "Webpage (XHTML)...",this );
   382 	a->setShortcut (Qt::ALT + Qt::Key_X);			//Export XHTML
   383 	a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (XHTML)","status tip file menu")));
   384     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXHTML() ) );
   385 	fileExportMenu->addAction (a);
   386 
   387     a = new QAction( "Text (ASCII)...", this);
   388 	a->setStatusTip ( tr( "Export as %1").arg("ASCII "+tr("(still experimental)" )));
   389     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportASCII() ) );
   390 	fileExportMenu->addAction (a);
   391 
   392     a = new QAction( "Spreadsheet (CSV)...", this);
   393 	a->setStatusTip ( tr( "Export as %1").arg("CSV "+tr("(still experimental)" )));
   394     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportCSV() ) );
   395 	fileExportMenu->addAction (a);
   396 
   397 	a = new QAction( tr("KDE Bookmarks","File menu"), this);
   398 	a->setStatusTip( tr( "Export as %1").arg(tr("KDE Bookmarks" )));
   399 	connect( a, SIGNAL( triggered() ), this, SLOT( fileExportKDEBookmarks() ) );
   400 	fileExportMenu->addAction (a);
   401 
   402     a = new QAction( "Taskjuggler...", this );
   403     a->setStatusTip( tr( "Export as %1").arg("Taskjuggler "+tr("(still experimental)" )));
   404     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportTaskjuggler() ) );
   405 	fileExportMenu->addAction (a);
   406 
   407     a = new QAction( "LaTeX...", this);
   408     a->setStatusTip( tr( "Export as %1").arg("LaTeX "+tr("(still experimental)" )));
   409     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportLaTeX() ) );
   410 	fileExportMenu->addAction (a);
   411 
   412 	a = new QAction( "XML..." , this );
   413 	a->setStatusTip (tr( "Export as %1").arg("XML"));
   414     connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXML() ) );
   415 	fileExportMenu->addAction (a);
   416 
   417 	fileMenu->addSeparator();
   418 
   419     a = new QAction(QPixmap( iconPath+"fileprint.png"), tr( "&Print")+QString("..."), this);
   420 	a->setStatusTip ( tr( "Print" ,"File menu") );
   421 	a->setShortcut (Qt::CTRL + Qt::Key_P );			//Print map
   422     a->addTo( tb );
   423 	fileMenu->addAction (a);
   424     connect( a, SIGNAL( triggered() ), this, SLOT( filePrint() ) );
   425 	actionFilePrint=a;
   426 
   427     a = new QAction( QPixmap(iconPath+"fileclose.png"), tr( "&Close Map","File menu" ), this);
   428 	a->setStatusTip (tr( "Close Map" ) );
   429 	a->setShortcut (Qt::CTRL + Qt::Key_W );			//Close map
   430 	fileMenu->addAction (a);
   431     connect( a, SIGNAL( triggered() ), this, SLOT( fileCloseMap() ) );
   432 
   433     a = new QAction(QPixmap(iconPath+"exit.png"), tr( "E&xit","File menu")+" "+vymName, this);
   434 	a->setStatusTip ( tr( "Exit")+" "+vymName );
   435 	a->setShortcut (Qt::CTRL + Qt::Key_Q );			//Quit vym
   436 	fileMenu->addAction (a);
   437     connect( a, SIGNAL( triggered() ), this, SLOT( fileExitVYM() ) );
   438 }
   439 
   440 
   441 //Edit Actions
   442 void Main::setupEditActions()
   443 {
   444     QToolBar *tb = addToolBar( tr ("&Actions toolbar","Toolbar name") );
   445     tb->setLabel( "Edit Actions" );
   446 	tb->setObjectName ("actionsTB");
   447     QMenu *editMenu = menuBar()->addMenu( tr("&Edit","Edit menu") );
   448 
   449     QAction *a;
   450 	QAction *alt;
   451     a = new QAction( QPixmap( iconPath+"undo.png"), tr( "&Undo","Edit menu" ),this);
   452     connect( a, SIGNAL( triggered() ), this, SLOT( editUndo() ) );
   453 	a->setStatusTip (tr( "Undo" ) );
   454 	a->setShortcut ( Qt::CTRL + Qt::Key_Z );		//Undo last action
   455 	a->setEnabled (false);
   456     tb->addAction (a);
   457 	editMenu->addAction (a);
   458 	actionEditUndo=a;
   459     
   460 	a = new QAction( QPixmap( iconPath+"redo.png"), tr( "&Redo","Edit menu" ), this); 
   461 	a->setStatusTip (tr( "Redo" ));
   462 	a->setShortcut (Qt::CTRL + Qt::Key_Y );			//Redo last action
   463     tb->addAction (a);
   464 	editMenu->addAction (a);
   465 	connect( a, SIGNAL( triggered() ), this, SLOT( editRedo() ) );
   466 	actionEditRedo=a;
   467    
   468 	editMenu->addSeparator();
   469     a = new QAction(QPixmap( iconPath+"editcopy.png"), tr( "&Copy","Edit menu" ), this);
   470 	a->setStatusTip ( tr( "Copy" ) );
   471 	a->setShortcut (Qt::CTRL + Qt::Key_C );			//Copy
   472 	a->setEnabled (false);
   473     tb->addAction (a);
   474 	editMenu->addAction (a);
   475     connect( a, SIGNAL( triggered() ), this, SLOT( editCopy() ) );
   476 	actionEditCopy=a;
   477 	
   478     a = new QAction(QPixmap( iconPath+"editcut.png" ), tr( "Cu&t","Edit menu" ), this);
   479 	a->setStatusTip ( tr( "Cut" ) );
   480 	a->setShortcut (Qt::CTRL + Qt::Key_X );			//Cut
   481 	a->setEnabled (false);
   482     tb->addAction (a);
   483 	editMenu->addAction (a);
   484 	actionEditCut=a;
   485     connect( a, SIGNAL( triggered() ), this, SLOT( editCut() ) );
   486 	
   487     a = new QAction(QPixmap( iconPath+"editpaste.png"), tr( "&Paste","Edit menu" ),this);
   488     connect( a, SIGNAL( triggered() ), this, SLOT( editPaste() ) );
   489 	a->setStatusTip ( tr( "Paste" ) );
   490 	a->setShortcut ( Qt::CTRL + Qt::Key_V );		//Paste
   491 	a->setEnabled (false);
   492     tb->addAction (a);
   493 	editMenu->addAction (a);
   494 	actionEditPaste=a;
   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 	actionEditHeading=a;
   513     a = new QAction( tr( "Edit heading","Edit menu" ), this);
   514 	a->setStatusTip (tr( "edit Heading" ));
   515 	//a->setShortcut ( Qt::Key_F2 );					//Edit heading
   516 	a->setShortcutContext (Qt::WindowShortcut);
   517 	addAction (a);
   518     connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
   519 	actionListBranches.append(a);
   520     
   521     // Shortcut to delete selection
   522     a = new QAction( tr( "Delete Selection","Edit menu" ),this);
   523 	a->setStatusTip (tr( "Delete Selection" ));
   524 	a->setShortcut ( Qt::Key_Delete);				//Delete selection
   525 	a->setShortcutContext (Qt::WindowShortcut);
   526 	addAction (a);
   527     connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteSelection() ) );
   528 	actionEditDelete=a;
   529     
   530     // Shortcut to add branch
   531 	alt = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
   532 	alt->setStatusTip ( tr( "Add a branch as child of selection" ));
   533 	alt->setShortcut (Qt::Key_A);					//Add branch
   534 	alt->setShortcutContext (Qt::WindowShortcut);
   535 	addAction (alt);
   536 	connect( alt, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
   537 	a = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child","Edit menu" ), this);
   538 	a->setStatusTip ( tr( "Add a branch as child of selection" ));
   539 	a->setShortcut (Qt::Key_Insert);				//Add branch
   540 	connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranch() ) );
   541 	actionListBranches.append(a);
   542 	#if defined (Q_OS_MACX)
   543 		// In OSX show different shortcut in menues, the keys work indepently always			
   544 		actionEditAddBranch=alt;
   545 	#else	
   546 		actionEditAddBranch=a;
   547 	#endif	
   548 	editMenu->addAction (actionEditAddBranch);
   549 	tb->addAction (actionEditAddBranch);
   550 
   551 
   552     // Add branch by inserting it at selection
   553 	a = new QAction(tr( "Add branch (insert)","Edit menu" ), this);
   554 	a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
   555 	a->setShortcut (Qt::ALT + Qt::Key_Insert );		//Insert branch
   556 	a->setShortcutContext (Qt::WindowShortcut);
   557 	addAction (a);
   558     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
   559 	a->setEnabled (false);
   560 	actionListBranches.append(a);
   561 	actionEditAddBranchBefore=a;
   562 	a = new QAction(tr( "Add branch (insert)","Edit menu" ),this);
   563 	a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
   564 	a->setShortcut ( Qt::ALT + Qt::Key_A );			//Insert branch
   565 	a->setShortcutContext (Qt::WindowShortcut);
   566 	addAction (a);
   567     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBefore() ) );
   568 	actionListBranches.append(a);
   569 
   570 	// Add branch above
   571     a = new QAction(tr( "Add branch above","Edit menu" ), this);
   572 	a->setStatusTip ( tr( "Add a branch above selection" ));
   573 	a->setShortcut (Qt::SHIFT+Qt::Key_Insert );		//Add branch above
   574 	a->setShortcutContext (Qt::WindowShortcut);
   575 	addAction (a);
   576     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
   577 	a->setEnabled (false);
   578 	actionListBranches.append(a);
   579 	actionEditAddBranchAbove=a;
   580     a = new QAction(tr( "Add branch above","Edit menu" ), this);
   581 	a->setStatusTip ( tr( "Add a branch above selection" ));
   582 	a->setShortcut (Qt::SHIFT+Qt::Key_A );			//Add branch above
   583 	a->setShortcutContext (Qt::WindowShortcut);
   584 	addAction (a);
   585     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchAbove() ) );
   586 	actionListBranches.append(a);
   587 
   588 	// Add branch below 
   589     a = new QAction(tr( "Add branch below","Edit menu" ), this);
   590 	a->setStatusTip ( tr( "Add a branch below selection" ));
   591 	a->setShortcut (Qt::CTRL +Qt::Key_Insert );		//Add branch below
   592 	a->setShortcutContext (Qt::WindowShortcut);
   593 	addAction (a);
   594     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
   595 	a->setEnabled (false);
   596 	actionListBranches.append(a);
   597 	actionEditAddBranchBelow=a;
   598     a = new QAction(tr( "Add branch below","Edit menu" ), this);
   599 	a->setStatusTip ( tr( "Add a branch below selection" ));
   600 	a->setShortcut (Qt::CTRL +Qt::Key_A );			// Add branch below
   601 	a->setShortcutContext (Qt::WindowShortcut);
   602 	addAction (a);
   603     connect( a, SIGNAL( triggered() ), this, SLOT( editNewBranchBelow() ) );
   604 	actionListBranches.append(a);
   605 
   606     a = new QAction(QPixmap(iconPath+"up.png" ), tr( "Move up","Edit menu" ), this);
   607 	a->setStatusTip ( tr( "Move branch up" ) );
   608 	a->setShortcut (Qt::Key_PageUp );				// Move branch up
   609 	a->setEnabled (false);
   610     tb->addAction (a);
   611 	editMenu->addAction (a);
   612     connect( a, SIGNAL( triggered() ), this, SLOT( editMoveUp() ) );
   613 	actionEditMoveUp=a;
   614 
   615     a = new QAction( QPixmap( iconPath+"down.png"), tr( "Move down","Edit menu" ),this);
   616     connect( a, SIGNAL( triggered() ), this, SLOT( editMoveDown() ) );
   617 	a->setStatusTip (tr( "Move branch down" ) );
   618 	a->setShortcut ( Qt::Key_PageDown );			// Move branch down
   619 	a->setEnabled (false);
   620     tb->addAction (a);
   621 	editMenu->addAction (a);
   622 	actionEditMoveDown=a;
   623 	
   624 	a = new QAction( QPixmap(iconPath+"editsort.png" ), tr( "Sort children","Edit menu" ), this );
   625 	connect( a, SIGNAL( activated() ), this, SLOT( editSortChildren() ) );
   626 	a->setEnabled (true);
   627 	a->addTo( tb );
   628 	editMenu->addAction (a);
   629 	actionEditSortChildren=a;
   630 
   631 	a = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ),this);
   632 	a->setShortcut ( Qt::Key_ScrollLock );
   633 	a->setStatusTip (tr( "Scroll branch" ) );
   634     connect( a, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
   635 
   636 	alt = new QAction( QPixmap(flagsPath+"flag-scrolled-right.png"), tr( "Scroll branch","Edit menu" ), this);
   637 	alt->setShortcut ( Qt::Key_S );					// Scroll branch
   638 	alt->setStatusTip (tr( "Scroll branch" )); 
   639     connect( alt, SIGNAL( triggered() ), this, SLOT( editToggleScroll() ) );
   640 	#if defined(Q_OS_MACX)
   641 		actionEditToggleScroll=alt;
   642 	#else	
   643 		actionEditToggleScroll=a;
   644 	#endif	
   645 	actionEditToggleScroll->setEnabled (false);
   646 	actionEditToggleScroll->setToggleAction(true);
   647     tb->addAction (actionEditToggleScroll);
   648     editMenu->addAction ( actionEditToggleScroll);
   649 	editMenu->addAction (actionEditToggleScroll);
   650 	addAction (a);
   651 	addAction (alt);
   652 	actionListBranches.append(actionEditToggleScroll);
   653 	
   654     a = new QAction( tr( "Unscroll childs","Edit menu" ), this);
   655 	a->setStatusTip (tr( "Unscroll all scrolled branches in selected subtree" ));
   656 	editMenu->addAction (a);
   657     connect( a, SIGNAL( triggered() ), this, SLOT( editUnscrollChilds() ) );
   658 	
   659 	editMenu->addSeparator();
   660 
   661 	a = new QAction( QPixmap(iconPath+"find.png"), tr( "Find...","Edit menu"), this);
   662 	a->setStatusTip (tr( "Find" ) );
   663 	a->setShortcut (Qt::CTRL + Qt::Key_F );				//Find
   664 	editMenu->addAction (a);
   665     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenFindWindow() ) );
   666     
   667 	editMenu->addSeparator();
   668 
   669 	a = new QAction( QPixmap(flagsPath+"flag-url.png"), tr( "Open URL","Edit menu" ), this);
   670 	a->setShortcut (Qt::CTRL + Qt::Key_U );
   671 	a->setShortcut (tr( "Open URL" ));
   672     tb->addAction (a);
   673 	addAction(a);
   674     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURL() ) );
   675 	actionEditOpenURL=a;
   676 
   677 	a = new QAction( tr( "Open URL in new tab","Edit menu" ), this);
   678 	a->setStatusTip (tr( "Open URL in new tab" ));
   679 	//a->setShortcut (Qt::CTRL+Qt::Key_U );
   680 	addAction(a);
   681     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenURLTab() ) );
   682 	actionEditOpenURLTab=a;
   683 
   684 	a = new QAction( tr( "Open all URLs in subtree","Edit menu" ), this);
   685 	a->setStatusTip (tr( "Open all URLs in subtree" ));
   686 	addAction(a);
   687 	actionListBranches.append(a);
   688     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleURLTabs() ) );
   689 	actionEditOpenMultipleURLTabs=a;
   690 
   691 	a = new QAction(QPixmap(), tr( "Edit URL...","Edit menu"), this);
   692 	a->setStatusTip ( tr( "Edit URL" ) );
   693 	a->setShortcut ( Qt::Key_U );
   694 	a->setShortcutContext (Qt::WindowShortcut);
   695 	actionListBranches.append(a);
   696 	addAction(a);
   697     connect( a, SIGNAL( triggered() ), this, SLOT( editURL() ) );
   698 	actionEditURL=a;
   699 	
   700 	a = new QAction(QPixmap(), tr( "Edit local URL...","Edit menu"), this);
   701 	a->setStatusTip ( tr( "Edit local URL" ) );
   702 	a->setShortcut (Qt::SHIFT +  Qt::Key_U );
   703 	a->setShortcutContext (Qt::WindowShortcut);
   704 	actionListBranches.append(a);
   705 	addAction(a);
   706     connect( a, SIGNAL( triggered() ), this, SLOT( editLocalURL() ) );
   707 	actionEditLocalURL=a;
   708 	
   709 	a = new QAction( tr( "Use heading for URL","Edit menu" ), this);
   710 	a->setStatusTip ( tr( "Use heading of selected branch as URL" ));
   711 	a->setEnabled (false);
   712 	actionListBranches.append(a);
   713     connect( a, SIGNAL( triggered() ), this, SLOT( editHeading2URL() ) );
   714 	actionEditHeading2URL=a;
   715     
   716 	a = new QAction(tr( "Create URL to Novell Bugzilla","Edit menu" ), this);
   717 	a->setStatusTip ( tr( "Create URL to Novell Bugzilla" ));
   718 	a->setEnabled (false);
   719 	actionListBranches.append(a);
   720     connect( a, SIGNAL( triggered() ), this, SLOT( editBugzilla2URL() ) );
   721 	actionEditBugzilla2URL=a;
   722     
   723 	a = new QAction(tr( "Create URL to Novell FATE","Edit menu" ), this);
   724 	a->setStatusTip ( tr( "Create URL to Novell FATE" ));
   725 	a->setEnabled (false);
   726 	actionListBranches.append(a);
   727     connect( a, SIGNAL( triggered() ), this, SLOT( editFATE2URL() ) );
   728 	actionEditFATE2URL=a;
   729 	
   730     a = new QAction(QPixmap(flagsPath+"flag-vymlink.png"), tr( "Open linked map","Edit menu" ), this);
   731 	a->setStatusTip ( tr( "Jump to another vym map, if needed load it first" ));
   732     tb->addAction (a);
   733 	a->setEnabled (false);
   734     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenVymLink() ) );
   735 	actionEditOpenVymLink=a;
   736 	
   737     a = new QAction(QPixmap(), tr( "Open all vym links in subtree","Edit menu" ), this);
   738 	a->setStatusTip ( tr( "Open all vym links in subtree" ));
   739 	a->setEnabled (false);
   740 	actionListBranches.append(a);
   741     connect( a, SIGNAL( triggered() ), this, SLOT( editOpenMultipleVymLinks() ) );
   742 	actionEditOpenMultipleVymLinks=a;
   743 	
   744 
   745     a = new QAction(tr( "Edit vym link...","Edit menu" ), this);
   746 	a->setEnabled (false);
   747 	a->setStatusTip ( tr( "Edit link to another vym map" ));
   748     connect( a, SIGNAL( triggered() ), this, SLOT( editVymLink() ) );
   749 	actionListBranches.append(a);
   750 	actionEditVymLink=a;
   751 
   752     a = new QAction(tr( "Delete vym link","Edit menu" ),this);
   753 	a->setStatusTip ( tr( "Delete link to another vym map" ));
   754 	a->setEnabled (false);
   755     connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteVymLink() ) );
   756 	actionEditDeleteVymLink=a;
   757 
   758     a = new QAction(QPixmap(flagsPath+"flag-hideexport.png"), tr( "Hide in exports","Edit menu" ), this);
   759 	a->setStatusTip ( tr( "Hide object in exports" ) );
   760 	a->setShortcut (Qt::Key_H );
   761 	a->setToggleAction(true);
   762     tb->addAction (a);
   763 	a->setEnabled (false);
   764     connect( a, SIGNAL( triggered() ), this, SLOT( editToggleHideExport() ) );
   765 	actionEditToggleHideExport=a;
   766 
   767     a = new QAction(tr( "Edit Map Info...","Edit menu" ),this);
   768 	a->setStatusTip ( tr( "Edit Map Info" ));
   769 	a->setEnabled (true);
   770     connect( a, SIGNAL( triggered() ), this, SLOT( editMapInfo() ) );
   771 	actionEditMapInfo=a;
   772 
   773 	// Import at selection (adding to selection)
   774     a = new QAction( tr( "Add map (insert)","Edit menu" ),this);
   775 	a->setStatusTip (tr( "Add map at selection" ));
   776     connect( a, SIGNAL( triggered() ), this, SLOT( editImportAdd() ) );
   777 	a->setEnabled (false);
   778 	actionListBranches.append(a);
   779 	actionEditImportAdd=a;
   780 
   781 	// Import at selection (replacing selection)
   782     a = new QAction( tr( "Add map (replace)","Edit menu" ), this);
   783 	a->setStatusTip (tr( "Replace selection with map" ));
   784     connect( a, SIGNAL( triggered() ), this, SLOT( editImportReplace() ) );
   785 	a->setEnabled (false);
   786 	actionListBranches.append(a);
   787 	actionEditImportReplace=a;
   788 
   789 	// Save selection 
   790     a = new QAction( tr( "Save selection","Edit menu" ), this);
   791 	a->setStatusTip (tr( "Save selection" ));
   792     connect( a, SIGNAL( triggered() ), this, SLOT( editSaveBranch() ) );
   793 	a->setEnabled (false);
   794 	actionListBranches.append(a);
   795 	actionEditSaveBranch=a;
   796 
   797 	// Only remove branch, not its childs
   798     a = new QAction(tr( "Remove only branch ","Edit menu" ), this);
   799 	a->setStatusTip ( tr( "Remove only branch and keep its childs" ));
   800 	a->setShortcut (Qt::ALT + Qt::Key_Delete );
   801     connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteKeepChilds() ) );
   802 	a->setEnabled (false);
   803 	addAction (a);
   804 	actionListBranches.append(a);
   805 	actionEditDeleteKeepChilds=a;
   806 
   807 	// Only remove childs of a branch
   808     a = new QAction( tr( "Remove childs","Edit menu" ), this);
   809 	a->setStatusTip (tr( "Remove childs of branch" ));
   810 	a->setShortcut (Qt::SHIFT + Qt::Key_Delete );
   811     connect( a, SIGNAL( triggered() ), this, SLOT( editDeleteChilds() ) );
   812 	a->setEnabled (false);
   813 	actionListBranches.append(a);
   814 	actionEditDeleteChilds=a;
   815 
   816     // Shortcuts for navigating with cursor:
   817     a = new QAction(tr( "Select upper branch","Edit menu" ), this);
   818 	a->setStatusTip ( tr( "Select upper branch" ));
   819 	a->setShortcut (Qt::Key_Up );
   820 	a->setShortcutContext (Qt::WindowShortcut);
   821 	addAction (a);
   822     connect( a, SIGNAL( triggered() ), this, SLOT( editUpperBranch() ) );
   823     a = new QAction( tr( "Select lower branch","Edit menu" ),this);
   824 	a->setStatusTip (tr( "Select lower branch" ));
   825 	a->setShortcut ( Qt::Key_Down );
   826 	a->setShortcutContext (Qt::WindowShortcut);
   827 	addAction (a);
   828     connect( a, SIGNAL( triggered() ), this, SLOT( editLowerBranch() ) );
   829     a = new QAction(tr( "Select left branch","Edit menu" ), this);
   830 	a->setStatusTip ( tr( "Select left branch" ));
   831 	a->setShortcut (Qt::Key_Left );
   832 	a->setShortcutContext (Qt::WindowShortcut);
   833 	addAction (a);
   834     connect( a, SIGNAL( triggered() ), this, SLOT( editLeftBranch() ) );
   835     a = new QAction( tr( "Select child branch","Edit menu" ), this);
   836 	a->setStatusTip (tr( "Select right branch" ));
   837 	a->setShortcut (Qt::Key_Right);
   838 	a->setShortcutContext (Qt::WindowShortcut);
   839 	addAction (a);
   840     connect( a, SIGNAL( triggered() ), this, SLOT( editRightBranch() ) );
   841     a = new QAction( tr( "Select first branch","Edit menu" ), this);
   842 	a->setStatusTip (tr( "Select first branch" ));
   843 	a->setShortcut (Qt::Key_Home );
   844 	a->setShortcutContext (Qt::WindowShortcut);
   845 	addAction (a);
   846 	a->setEnabled (false);
   847 	editMenu->addAction (a);
   848 	actionListBranches.append(a);
   849 	actionEditSelectFirst=a;
   850     connect( a, SIGNAL( triggered() ), this, SLOT( editFirstBranch() ) );
   851     a = new QAction( tr( "Select last branch","Edit menu" ),this);
   852 	a->setStatusTip (tr( "Select last branch" ));
   853 	a->setShortcut ( Qt::Key_End );
   854 	a->setShortcutContext (Qt::WindowShortcut);
   855 	addAction (a);
   856     connect( a, SIGNAL( triggered() ), this, SLOT( editLastBranch() ) );
   857 	a->setEnabled (false);
   858 	editMenu->addAction (a);
   859 	actionListBranches.append(a);
   860 	actionEditSelectLast=a;
   861 
   862     a = new QAction( tr( "Add Image...","Edit menu" ), this);
   863 	a->setStatusTip (tr( "Add Image" ));
   864     connect( a, SIGNAL( triggered() ), this, SLOT( editLoadImage() ) );
   865 	actionEditLoadImage=a;
   866 
   867     a = new QAction( tr( "Property window","Dialog to edit properties of selection" )+QString ("..."), this);
   868 	a->setStatusTip (tr( "Set properties for selection" ));
   869 	a->setShortcut ( Qt::CTRL + Qt::Key_I );		//Property window
   870 	a->setShortcutContext (Qt::WindowShortcut);
   871 	a->setToggleAction (true);
   872 	addAction (a);
   873     connect( a, SIGNAL( triggered() ), this, SLOT( windowToggleProperty() ) );
   874 	actionViewTogglePropertyWindow=a;
   875 }
   876 
   877 // Format Actions
   878 void Main::setupFormatActions()
   879 {
   880     QMenu *formatMenu = menuBar()->addMenu (tr ("F&ormat","Format menu"));
   881 
   882     QToolBar *tb = addToolBar( tr("Format Actions","Format Toolbar name"));
   883 	tb->setObjectName ("formatTB");
   884     QAction *a;
   885     QPixmap pix( 16,16);
   886     pix.fill (Qt::black);
   887     a= new QAction(pix, tr( "Set &Color" )+QString("..."), this);
   888 	a->setStatusTip ( tr( "Set Color" ));
   889     connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectColor() ) );
   890     a->addTo( tb );
   891 	formatMenu->addAction (a);
   892 	actionFormatColor=a;
   893     a= new QAction( QPixmap(iconPath+"formatcolorpicker.png"), tr( "Pic&k color","Edit menu" ), this);
   894 	a->setStatusTip (tr( "Pick color\nHint: You can pick a color from another branch and color using CTRL+Left Button" ) );
   895 	a->setShortcut (Qt::CTRL + Qt::Key_K );
   896     connect( a, SIGNAL( triggered() ), this, SLOT( formatPickColor() ) );
   897 	a->setEnabled (false);
   898     a->addTo( tb );
   899 	formatMenu->addAction (a);
   900 	actionListBranches.append(a);
   901 	actionFormatPickColor=a;
   902 
   903     a= new QAction(QPixmap(iconPath+"formatcolorbranch.png"), tr( "Color &branch","Edit menu" ), this);
   904 	a->setStatusTip ( tr( "Color branch" ) );
   905 	a->setShortcut (Qt::CTRL + Qt::Key_B);
   906     connect( a, SIGNAL( triggered() ), this, SLOT( formatColorBranch() ) );
   907 	a->setEnabled (false);
   908     a->addTo( tb );
   909 	formatMenu->addAction (a);
   910 	actionListBranches.append(a);
   911 	actionFormatColorSubtree=a;
   912 
   913     a= new QAction(QPixmap(iconPath+"formatcolorsubtree.png"), tr( "Color sub&tree","Edit menu" ), this);
   914 	a->setStatusTip ( tr( "Color Subtree" ));
   915 	a->setShortcut (Qt::CTRL + Qt::Key_T);
   916     connect( a, SIGNAL( triggered() ), this, SLOT( formatColorSubtree() ) );
   917 	a->setEnabled (false);
   918 	formatMenu->addAction (a);
   919     a->addTo( tb );
   920 	actionListBranches.append(a);
   921 	actionFormatColorSubtree=a;
   922 
   923 	formatMenu->addSeparator();
   924 	actionGroupFormatLinkStyles=new QActionGroup ( this);
   925 	actionGroupFormatLinkStyles->setExclusive (true);
   926     a= new QAction( tr( "Linkstyle Line" ), actionGroupFormatLinkStyles);
   927 	a->setStatusTip (tr( "Line" ));
   928 	a->setToggleAction(true);
   929     connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleLine() ) );
   930 	formatMenu->addAction (a);
   931 	actionFormatLinkStyleLine=a;
   932     a= new QAction( tr( "Linkstyle Curve" ), actionGroupFormatLinkStyles);
   933 	a->setStatusTip (tr( "Line" ));
   934 	a->setToggleAction(true);
   935     connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStyleParabel() ) );
   936 	formatMenu->addAction (a);
   937 	actionFormatLinkStyleParabel=a;
   938     a= new QAction( tr( "Linkstyle Thick Line" ), actionGroupFormatLinkStyles );
   939 	a->setStatusTip (tr( "PolyLine" ));
   940 	a->setToggleAction(true);
   941     connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyLine() ) );
   942 	formatMenu->addAction (a);
   943 	actionFormatLinkStylePolyLine=a;
   944     a= new QAction( tr( "Linkstyle Thick Curve" ), actionGroupFormatLinkStyles);
   945 	a->setStatusTip (tr( "PolyParabel" ) );
   946 	a->setToggleAction(true);
   947 	a->setChecked (true);
   948     connect( a, SIGNAL( triggered() ), this, SLOT( formatLinkStylePolyParabel() ) );
   949 	formatMenu->addAction (a);
   950 	actionFormatLinkStylePolyParabel=a;
   951 	
   952     a = new QAction( tr( "Hide link if object is not selected","Branch attribute" ), this);
   953 	a->setStatusTip (tr( "Hide link" ));
   954 	a->setToggleAction(true);
   955     connect( a, SIGNAL( triggered() ), this, SLOT( formatHideLinkUnselected() ) );
   956 	actionFormatHideLinkUnselected=a;
   957 
   958 	formatMenu->addSeparator();
   959     a= new QAction( tr( "&Use color of heading for link","Branch attribute" ),  this);
   960 	a->setStatusTip (tr( "Use same color for links and headings" ));
   961 	a->setToggleAction(true);
   962     connect( a, SIGNAL( triggered() ), this, SLOT( formatToggleLinkColorHint() ) );
   963 	formatMenu->addAction (a);
   964 	actionFormatLinkColorHint=a;
   965 
   966     pix.fill (Qt::white);
   967     a= new QAction( pix, tr( "Set &Link Color"+QString("...") ), this  );
   968 	a->setStatusTip (tr( "Set Link Color" ));
   969 	formatMenu->addAction (a);
   970     connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectLinkColor() ) );
   971     actionFormatLinkColor=a;
   972 
   973     a= new QAction( pix, tr( "Set &Selection Color"+QString("...") ), this  );
   974 	a->setStatusTip (tr( "Set Selection Color" ));
   975 	formatMenu->addAction (a);
   976     connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectSelectionColor() ) );
   977     actionFormatSelectionColor=a;
   978 
   979     a= new QAction( pix, tr( "Set &Background Color" )+QString("..."), this );
   980 	a->setStatusTip (tr( "Set Background Color" ));
   981 	formatMenu->addAction (a);
   982     connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackColor() ) );
   983     actionFormatBackColor=a;
   984 
   985     a= new QAction( pix, tr( "Set &Background image" )+QString("..."), this );
   986 	a->setStatusTip (tr( "Set Background image" ));
   987 	formatMenu->addAction (a);
   988     connect( a, SIGNAL( triggered() ), this, SLOT( formatSelectBackImage() ) );
   989     actionFormatBackImage=a;
   990 }
   991 
   992 // View Actions
   993 void Main::setupViewActions()
   994 {
   995     QToolBar *tb = addToolBar( tr("View Actions","View Toolbar name") );
   996     tb->setLabel( "View Actions" );
   997 	tb->setObjectName ("viewTB");
   998     QMenu *viewMenu = menuBar()->addMenu ( tr( "&View" ));
   999 
  1000     QAction *a;
  1001     a = new QAction(QPixmap(iconPath+"viewmag-reset.png"), tr( "reset Zoom","View action" ), this);
  1002 	a->setStatusTip ( tr( "Zoom reset" ) );
  1003 	a->setShortcut (Qt::CTRL + Qt::Key_0 );
  1004     a->addTo( tb );
  1005 	viewMenu->addAction (a);
  1006     connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomReset() ) );
  1007 	
  1008     a = new QAction( QPixmap(iconPath+"viewmag+.png"), tr( "Zoom in","View action" ), this);
  1009 	a->setStatusTip (tr( "Zoom in" ));
  1010 	a->setShortcut (Qt::CTRL + Qt::Key_Plus);
  1011     a->addTo( tb );
  1012 	viewMenu->addAction (a);
  1013     connect( a, SIGNAL( triggered() ), this, SLOT(viewZoomIn() ) );
  1014 	
  1015     a = new QAction( QPixmap(iconPath+"viewmag-.png"), tr( "Zoom out","View action" ), this);
  1016 	a->setStatusTip (tr( "Zoom out" ));
  1017 	a->setShortcut (Qt::CTRL + Qt::Key_Minus );
  1018     a->addTo( tb );
  1019 	viewMenu->addAction (a);
  1020     connect( a, SIGNAL( triggered() ), this, SLOT( viewZoomOut() ) );
  1021 
  1022     a = new QAction( QPixmap(iconPath+"viewshowsel.png"), tr( "Show selection","View action" ), this);
  1023 	a->setStatusTip (tr( "Show selection" ));
  1024 	a->setShortcut (Qt::Key_Period);
  1025     a->addTo( tb );
  1026 	viewMenu->addAction (a);
  1027     connect( a, SIGNAL( triggered() ), this, SLOT( viewCenter() ) );
  1028 
  1029 	viewMenu->addSeparator();	
  1030 
  1031     a = new QAction(QPixmap(flagsPath+"flag-note.png"), tr( "Show Note Editor","View action" ),this);
  1032 	a->setStatusTip ( tr( "Show Note Editor" ));
  1033 	a->setShortcut ( Qt::CTRL + Qt::Key_E );
  1034 	a->setToggleAction(true);
  1035     a->addTo( tb );
  1036 	viewMenu->addAction (a);
  1037     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleNoteEditor() ) );
  1038 	actionViewToggleNoteEditor=a;
  1039 
  1040     a = new QAction(QPixmap(iconPath+"history.png"),  tr( "History Window","View action" ),this );
  1041 	a->setStatusTip ( tr( "Show History Window" ));
  1042 	a->setShortcut ( Qt::CTRL + Qt::Key_H  );
  1043 	a->setToggleAction(true);
  1044     a->addTo( tb );
  1045 	viewMenu->addAction (a);
  1046     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleHistory() ) );
  1047 	actionViewToggleHistoryWindow=a;
  1048 
  1049 	viewMenu->addAction (actionViewTogglePropertyWindow);
  1050 
  1051 	viewMenu->addSeparator();	
  1052 
  1053     a = new QAction(tr( "Antialiasing","View action" ),this );
  1054 	a->setStatusTip ( tr( "Antialiasing" ));
  1055 	a->setToggleAction(true);
  1056 	a->setOn (settings.value("/mainwindow/view/AntiAlias",true).toBool());
  1057 	viewMenu->addAction (a);
  1058     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleAntiAlias() ) );
  1059 	actionViewToggleAntiAlias=a;
  1060 
  1061     a = new QAction(tr( "Smooth pixmap transformations","View action" ),this );
  1062 	a->setStatusTip (a->text());
  1063 	a->setToggleAction(true);
  1064 	a->setOn (settings.value("/mainwindow/view/SmoothPixmapTransformation",true).toBool());
  1065 	viewMenu->addAction (a);
  1066     connect( a, SIGNAL( triggered() ), this, SLOT(windowToggleSmoothPixmap() ) );
  1067 	actionViewToggleSmoothPixmapTransform=a;
  1068 
  1069     a = new QAction(tr( "Next Map","View action" ), this);
  1070 	a->setStatusTip (a->text());
  1071 	a->setShortcut (Qt::ALT + Qt::Key_N );
  1072 	viewMenu->addAction (a);
  1073     connect( a, SIGNAL( triggered() ), this, SLOT(windowNextEditor() ) );
  1074 
  1075     a = new QAction (tr( "Previous Map","View action" ), this );
  1076 	a->setStatusTip (a->text());
  1077 	a->setShortcut (Qt::ALT + Qt::Key_P );
  1078 	viewMenu->addAction (a);
  1079     connect( a, SIGNAL( triggered() ), this, SLOT(windowPreviousEditor() ) );
  1080 }
  1081 
  1082 // Mode Actions
  1083 void Main::setupModeActions()
  1084 {
  1085     //QPopupMenu *menu = new QPopupMenu( this );
  1086     //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
  1087 
  1088     QToolBar *tb = addToolBar( tr ("Modes when using modifiers","Modifier Toolbar name") );
  1089 	tb->setObjectName ("modesTB");
  1090     QAction *a;
  1091 	actionGroupModModes=new QActionGroup ( this);
  1092 	actionGroupModModes->setExclusive (true);
  1093     a= new QAction( QPixmap(iconPath+"modecolor.png"), tr( "Use modifier to color branches","Mode modifier" ), actionGroupModModes);
  1094 	a->setShortcut (Qt::Key_J);
  1095     a->setStatusTip ( tr( "Use modifier to color branches" ));
  1096 	a->setToggleAction(true);
  1097 	a->addTo (tb);
  1098 	a->setOn(true);
  1099 	actionModModeColor=a;
  1100 	
  1101     a= new QAction( QPixmap(iconPath+"modecopy.png"), tr( "Use modifier to copy","Mode modifier" ), actionGroupModModes );
  1102 	a->setShortcut( Qt::Key_K); 
  1103     a->setStatusTip( tr( "Use modifier to copy" ));
  1104 	a->setToggleAction(true);
  1105 	a->addTo (tb);
  1106 	actionModModeCopy=a;
  1107 
  1108     a= new QAction(QPixmap(iconPath+"modelink.png"), tr( "Use modifier to draw xLinks","Mode modifier" ), actionGroupModModes );
  1109 	a->setShortcut (Qt::Key_L);
  1110     a->setStatusTip( tr( "Use modifier to draw xLinks" ));
  1111 	a->setToggleAction(true);
  1112 	a->addTo (tb);
  1113 	actionModModeXLink=a;
  1114 }
  1115 
  1116 // Flag Actions
  1117 void Main::setupFlagActions()
  1118 {
  1119 	// Create System Flags
  1120 	QToolBar *tb=NULL;
  1121 	bool avis=true;
  1122 
  1123 	systemFlagsDefault = new FlagRowObj ();
  1124 	systemFlagsDefault->setVisibility (false);
  1125 	systemFlagsDefault->setName ("systemFlagsDef");
  1126 
  1127 	FlagObj *fo = new FlagObj ();
  1128 	fo->load(QPixmap(flagsPath+"flag-note.png"));
  1129 	setupFlag (fo,tb,avis,"note",tr("Note","SystemFlag"));
  1130 
  1131 	fo->load(QPixmap(flagsPath+"flag-url.png"));
  1132 	setupFlag (fo,tb,avis,"url",tr("URL to Document ","SystemFlag"));
  1133 	
  1134 	fo->load(QPixmap(flagsPath+"flag-vymlink.png"));
  1135 	setupFlag (fo,tb,avis,"vymLink",tr("Link to another vym map","SystemFlag"));
  1136 
  1137 	fo->load(QPixmap(flagsPath+"flag-scrolled-right.png"));
  1138 	setupFlag (fo,tb,avis,"scrolledright",tr("subtree is scrolled","SystemFlag"));
  1139 	
  1140 	fo->load(QPixmap(flagsPath+"flag-tmpUnscrolled-right.png"));
  1141 	setupFlag (fo,tb,avis,"tmpUnscrolledright",tr("subtree is temporary scrolled","SystemFlag"));
  1142 
  1143 	fo->load(QPixmap(flagsPath+"flag-hideexport.png"));
  1144 	setupFlag (fo,tb,avis,"hideInExport",tr("Hide object in exported maps","SystemFlag"));
  1145 
  1146 	// Create Standard Flags
  1147 	tb=addToolBar (tr ("Standard Flags","Standard Flag Toolbar"));
  1148 	tb->setObjectName ("standardFlagTB");
  1149 
  1150 	standardFlagsDefault = new FlagRowObj ();
  1151 	standardFlagsDefault->setVisibility (false);
  1152 	standardFlagsDefault->setName ("standardFlagsDef");
  1153 	standardFlagsDefault->setToolBar (tb);
  1154 
  1155 	fo->load(flagsPath+"flag-exclamationmark.png");
  1156 	fo->setGroup("standard-mark");
  1157 	setupFlag (fo,tb,avis,"exclamationmark",tr("Take care!","Standardflag"));
  1158 	
  1159 	fo->load(flagsPath+"flag-questionmark.png");
  1160 	fo->setGroup("standard-mark");
  1161 	setupFlag (fo,tb,avis,"questionmark",tr("Really?","Standardflag"));
  1162 
  1163 	fo->load(flagsPath+"flag-hook-green.png");
  1164 	fo->setGroup("standard-hook");
  1165 	setupFlag (fo,tb,avis,"hook-green",tr("ok!","Standardflag"));
  1166 
  1167 	fo->load(flagsPath+"flag-cross-red.png");
  1168 	fo->setGroup("standard-hook");
  1169 	setupFlag (fo,tb,avis,"cross-red",tr("Not ok!","Standardflag"));
  1170 	fo->unsetGroup();
  1171 
  1172 	fo->load(flagsPath+"flag-stopsign.png");
  1173 	setupFlag (fo,tb,avis,"stopsign",tr("This won't work!","Standardflag"));
  1174 
  1175 	fo->load(flagsPath+"flag-smiley-good.png");
  1176 	fo->setGroup("standard-smiley");
  1177 	setupFlag (fo,tb,avis,"smiley-good",tr("Good","Standardflag"));
  1178 
  1179 	fo->load(flagsPath+"flag-smiley-sad.png");
  1180 	fo->setGroup("standard-smiley");
  1181 	setupFlag (fo,tb,avis,"smiley-sad",tr("Bad","Standardflag"));
  1182 
  1183 	fo->load(flagsPath+"flag-smiley-omg.png");
  1184 	fo->setGroup("standard-smiley");
  1185 	setupFlag (fo,tb,avis,"smiley-omb",tr("Oh no!","Standardflag"));
  1186 	// Original omg.png (in KDE emoticons)
  1187 	fo->unsetGroup();
  1188 
  1189 	fo->load(flagsPath+"flag-kalarm.png");
  1190 	setupFlag (fo,tb,avis,"clock",tr("Time critical","Standardflag"));
  1191 
  1192 	fo->load(flagsPath+"flag-phone.png");
  1193 	setupFlag (fo,tb,avis,"phone",tr("Call...","Standardflag"));
  1194 
  1195 	fo->load(flagsPath+"flag-lamp.png");
  1196 	setupFlag (fo,tb,avis,"lamp",tr("Idea!","Standardflag"));
  1197 
  1198 	fo->load(flagsPath+"flag-arrow-up.png");
  1199 	fo->setGroup("standard-arrow");
  1200 	setupFlag (fo,tb,avis,"arrow-up",tr("Important","Standardflag"));
  1201 
  1202 	fo->load(flagsPath+"flag-arrow-down.png");
  1203 	fo->setGroup("standard-arrow");
  1204 	setupFlag (fo,tb,avis,"arrow-down",tr("Unimportant","Standardflag"));
  1205 
  1206 	fo->load(flagsPath+"flag-arrow-2up.png");
  1207 	fo->setGroup("standard-arrow");
  1208 	setupFlag (fo,tb,avis,"2arrow-up",tr("Very important!","Standardflag"));
  1209 
  1210 	fo->load(flagsPath+"flag-arrow-2down.png");
  1211 	fo->setGroup("standard-arrow");
  1212 	setupFlag (fo,tb,avis,"2arrow-down",tr("Very unimportant!","Standardflag"));
  1213 	fo->unsetGroup();
  1214 
  1215 	fo->load(flagsPath+"flag-thumb-up.png");
  1216 	fo->setGroup("standard-thumb");
  1217 	setupFlag (fo,tb,avis,"thumb-up",tr("I like this","Standardflag"));
  1218 
  1219 	fo->load(flagsPath+"flag-thumb-down.png");
  1220 	fo->setGroup("standard-thumb");
  1221 	setupFlag (fo,tb,avis,"thumb-down",tr("I do not like this","Standardflag"));
  1222 	fo->unsetGroup();
  1223 	
  1224 	fo->load(flagsPath+"flag-rose.png");
  1225 	setupFlag (fo,tb,avis,"rose",tr("Rose","Standardflag"));
  1226 
  1227 	fo->load(flagsPath+"flag-heart.png");
  1228 	setupFlag (fo,tb,avis,"heart",tr("I just love...","Standardflag"));
  1229 
  1230 	fo->load(flagsPath+"flag-present.png");
  1231 	setupFlag (fo,tb,avis,"present",tr("Surprise!","Standardflag"));
  1232 
  1233 	fo->load(flagsPath+"flag-flash.png");
  1234 	setupFlag (fo,tb,avis,"flash",tr("Dangerous","Standardflag"));
  1235 	
  1236 	// Original: xsldbg_output.png
  1237 	fo->load(flagsPath+"flag-info.png");
  1238 	setupFlag (fo,tb,avis,"info",tr("Info","Standardflag"));
  1239 
  1240 	// Original khelpcenter.png
  1241 	fo->load(flagsPath+"flag-lifebelt.png");
  1242 	setupFlag (fo,tb,avis,"lifebelt",tr("This will help","Standardflag"));
  1243 
  1244 	// Freemind flags
  1245 
  1246 	avis=false;
  1247 
  1248 	fo->load(flagsPath+"freemind/warning.png");
  1249 	setupFlag (fo,tb, avis, "freemind-warning",tr("Important","Freemind-Flag"));
  1250 
  1251 	for (int i=1; i<8; i++)
  1252 	{
  1253 		fo->load(flagsPath+QString("freemind/priority-%1.png").arg(i));
  1254 		setupFlag (fo,tb, avis,QString("freemind-priority-%1").arg(i),tr("Priority","Freemind-Flag"));
  1255 	}
  1256 
  1257 	fo->load(flagsPath+"freemind/back.png");
  1258 	setupFlag (fo,tb,avis,"freemind-back",tr("Back","Freemind-Flag"));
  1259 
  1260 	fo->load(flagsPath+"freemind/forward.png");
  1261 	setupFlag (fo,tb,avis,"freemind-forward",tr("Forward","Freemind-Flag"));
  1262 
  1263 	fo->load(flagsPath+"freemind/attach.png");
  1264 	setupFlag (fo,tb,avis,"freemind-attach",tr("Look here","Freemind-Flag"));
  1265 
  1266 	fo->load(flagsPath+"freemind/clanbomber.png");
  1267 	setupFlag (fo,tb,avis,"freemind-clanbomber",tr("Dangerous","Freemind-Flag"));
  1268 
  1269 	fo->load(flagsPath+"freemind/desktopnew.png");
  1270 	setupFlag (fo,tb,avis,"freemind-desktopnew",tr("Don't forget","Freemind-Flag"));
  1271 
  1272 	fo->load(flagsPath+"freemind/flag.png");
  1273 	setupFlag (fo,tb,avis,"freemind-flag",tr("Flag","Freemind-Flag"));
  1274 
  1275 
  1276 	fo->load(flagsPath+"freemind/gohome.png");
  1277 	setupFlag (fo,tb,avis,"freemind-gohome",tr("Home","Freemind-Flag"));
  1278 
  1279 
  1280 	fo->load(flagsPath+"freemind/kaddressbook.png");
  1281 	setupFlag (fo,tb,avis,"freemind-kaddressbook",tr("Telephone","Freemind-Flag"));
  1282 
  1283 	fo->load(flagsPath+"freemind/knotify.png");
  1284 	setupFlag (fo,tb,avis,"freemind-knotify",tr("Music","Freemind-Flag"));
  1285 
  1286 	fo->load(flagsPath+"freemind/korn.png");
  1287 	setupFlag (fo,tb,avis,"freemind-korn",tr("Mailbox","Freemind-Flag"));
  1288 
  1289 	fo->load(flagsPath+"freemind/mail.png");
  1290 	setupFlag (fo,tb,avis,"freemind-mail",tr("Maix","Freemind-Flag"));
  1291 
  1292 	fo->load(flagsPath+"freemind/password.png");
  1293 	setupFlag (fo,tb,avis,"freemind-password",tr("Password","Freemind-Flag"));
  1294 
  1295 	fo->load(flagsPath+"freemind/pencil.png");
  1296 	setupFlag (fo,tb,avis,"freemind-pencil",tr("To be improved","Freemind-Flag"));
  1297 
  1298 	fo->load(flagsPath+"freemind/stop.png");
  1299 	setupFlag (fo,tb,avis,"freemind-stop",tr("Stop","Freemind-Flag"));
  1300 
  1301 	fo->load(flagsPath+"freemind/wizard.png");
  1302 	setupFlag (fo,tb,avis,"freemind-wizard",tr("Magic","Freemind-Flag"));
  1303 
  1304 	fo->load(flagsPath+"freemind/xmag.png");
  1305 	setupFlag (fo,tb,avis,"freemind-xmag",tr("To be discussed","Freemind-Flag"));
  1306 
  1307 	fo->load(flagsPath+"freemind/bell.png");
  1308 	setupFlag (fo,tb,avis,"freemind-bell",tr("Reminder","Freemind-Flag"));
  1309 
  1310 	fo->load(flagsPath+"freemind/bookmark.png");
  1311 	setupFlag (fo,tb,avis,"freemind-bookmark",tr("Excellent","Freemind-Flag"));
  1312 
  1313 	fo->load(flagsPath+"freemind/penguin.png");
  1314 	setupFlag (fo,tb,avis,"freemind-penguin",tr("Linux","Freemind-Flag"));
  1315 
  1316 	fo->load(flagsPath+"freemind/licq.png");
  1317 	setupFlag (fo,tb,avis,"freemind-licq",tr("Sweet","Freemind-Flag"));
  1318 
  1319 	delete (fo);
  1320 }
  1321 
  1322 void Main::setupFlag (FlagObj *fo, QToolBar *tb, bool aw, const QString &name, const QString &tooltip)
  1323 {
  1324 	fo->setName(name);
  1325 	fo->setToolTip (tooltip);
  1326 	QAction *a=new QAction (fo->getPixmap(),fo->getName(),this);
  1327 	if (tb)
  1328 	{
  1329 		// StandardFlag
  1330 		tb->addAction (a);
  1331 		fo->setAction (a);
  1332 		fo->setAlwaysVisible(aw);
  1333 		a->setCheckable(true);
  1334 		a->setObjectName(fo->getName());
  1335 		a->setToolTip(tooltip);
  1336 		connect (a, SIGNAL( triggered() ), this, SLOT( standardFlagChanged() ) );
  1337 		standardFlagsDefault->addFlag (fo);	
  1338 	} else
  1339 	{
  1340 		// SystemFlag
  1341 		systemFlagsDefault->addFlag (fo);	
  1342 	}
  1343 }
  1344 // Network Actions
  1345 void Main::setupNetworkActions()
  1346 {
  1347 	if (!settings.value( "/mainwindow/showTestMenu",false).toBool() ) 
  1348 		return;
  1349     QMenu *netMenu = menuBar()->addMenu(  "Network" );
  1350 
  1351 	QAction *a;
  1352 
  1353     a = new QAction(  "Start TCPserver for MapEditor",this);
  1354     //a->setStatusTip ( "Set application to open pdf files"));
  1355 	a->setShortcut ( Qt::Key_T );		//New TCP server
  1356     connect( a, SIGNAL( triggered() ), this, SLOT( networkStartServer() ) );
  1357 	netMenu->addAction (a);
  1358 
  1359     a = new QAction(  "Connect MapEditor to server",this);
  1360     //a->setStatusTip ( "Set application to open pdf files"));
  1361 	a->setShortcut ( Qt::Key_C );		// Connect to server
  1362     connect( a, SIGNAL( triggered() ), this, SLOT( networkConnect() ) );
  1363 	netMenu->addAction (a);
  1364 }
  1365 	
  1366 // Settings Actions
  1367 void Main::setupSettingsActions()
  1368 {
  1369     QMenu *settingsMenu = menuBar()->addMenu( tr( "&Settings" ));
  1370 
  1371 	QAction *a;
  1372 
  1373     a = new QAction( tr( "Set application to open pdf files","Settings action"), this);
  1374     a->setStatusTip ( tr( "Set application to open pdf files"));
  1375     connect( a, SIGNAL( triggered() ), this, SLOT( settingsPDF() ) );
  1376 	settingsMenu->addAction (a);
  1377 
  1378     a = new QAction( tr( "Set application to open external links","Settings action"), this);
  1379     a->setStatusTip( tr( "Set application to open external links"));
  1380     connect( a, SIGNAL( triggered() ), this, SLOT( settingsURL() ) );
  1381 	settingsMenu->addAction (a);
  1382 
  1383     a = new QAction( tr( "Set path for macros","Settings action")+"...", this);
  1384     a->setStatusTip( tr( "Set path for macros"));
  1385     connect( a, SIGNAL( triggered() ), this, SLOT( settingsMacroDir() ) );
  1386 	settingsMenu->addAction (a);
  1387 
  1388     a = new QAction( tr( "Set number of undo levels","Settings action")+"...", this);
  1389     a->setStatusTip( tr( "Set number of undo levels"));
  1390     connect( a, SIGNAL( triggered() ), this, SLOT( settingsUndoLevels() ) );
  1391 	settingsMenu->addAction (a);
  1392 
  1393 	settingsMenu->addSeparator();
  1394 
  1395     a = new QAction( tr( "Autosave","Settings action"), this);
  1396     a->setStatusTip( tr( "Autosave"));
  1397 	a->setToggleAction(true);
  1398 	a->setOn ( settings.value ("/mapeditor/autosave/use",false).toBool());
  1399     connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveToggle() ) );
  1400 	settingsMenu->addAction (a);
  1401 	actionSettingsAutosaveToggle=a;
  1402 
  1403     a = new QAction( tr( "Autosave time","Settings action")+"...", this);
  1404     a->setStatusTip( tr( "Autosave time"));
  1405     connect( a, SIGNAL( triggered() ), this, SLOT( settingsAutosaveTime() ) );
  1406 	settingsMenu->addAction (a);
  1407 	actionSettingsAutosaveTime=a;
  1408 
  1409     a = new QAction( tr( "Write backup file on save","Settings action"), this);
  1410     a->setStatusTip( tr( "Write backup file on save"));
  1411 	a->setToggleAction(true);
  1412 	a->setOn ( settings.value ("/mainwindow/writeBackupFile",false).toBool());
  1413     connect( a, SIGNAL( triggered() ), this, SLOT( settingsWriteBackupFileToggle() ) );
  1414 	settingsMenu->addAction (a);
  1415 	actionSettingsWriteBackupFile=a;
  1416 
  1417 	settingsMenu->addSeparator();
  1418 
  1419     a = new QAction( tr( "Edit branch after adding it","Settings action" ), this );
  1420     a->setStatusTip( tr( "Edit branch after adding it" ));
  1421 	a->setToggleAction(true);
  1422 	a->setOn ( settings.value ("/mapeditor/editmode/autoEditNewBranch",true).toBool());
  1423 	settingsMenu->addAction (a);
  1424 	actionSettingsAutoEditNewBranch=a;
  1425 
  1426     a= new QAction( tr( "Select branch after adding it","Settings action" ), this );
  1427     a->setStatusTip( tr( "Select branch after adding it" ));
  1428 	a->setToggleAction(true);
  1429 	a->setOn ( settings.value ("/mapeditor/editmode/autoSelectNewBranch",false).toBool() );
  1430 	settingsMenu->addAction (a);
  1431 	actionSettingsAutoSelectNewBranch=a;
  1432 	
  1433     a= new QAction(tr( "Select existing heading","Settings action" ), this);
  1434     a->setStatusTip( tr( "Select heading before editing" ));
  1435 	a->setToggleAction(true);
  1436 	a->setOn ( settings.value ("/mapeditor/editmode/autoSelectText",true).toBool() );
  1437 	settingsMenu->addAction (a);
  1438 	actionSettingsAutoSelectText=a;
  1439 	
  1440     a= new QAction( tr( "Delete key","Settings action" ), this);
  1441     a->setStatusTip( tr( "Delete key for deleting branches" ));
  1442 	a->setToggleAction(true);
  1443 	a->setOn ( settings.value ("/mapeditor/editmode/useDelKey",true).toBool() );
  1444 	settingsMenu->addAction (a);
  1445     connect( a, SIGNAL( triggered() ), this, SLOT( settingsToggleDelKey() ) );
  1446 	actionSettingsUseDelKey=a;
  1447 
  1448     a= new QAction( tr( "Exclusive flags","Settings action" ), this);
  1449     a->setStatusTip( tr( "Use exclusive flags in flag toolbars" ));
  1450 	a->setToggleAction(true);
  1451 	a->setOn ( settings.value ("/mapeditor/editmode/useFlagGroups",true).toBool() );
  1452 	settingsMenu->addAction (a);
  1453 	actionSettingsUseFlagGroups=a;
  1454 	
  1455     a= new QAction( tr( "Use hide flags","Settings action" ), this);
  1456     a->setStatusTip( tr( "Use hide flag during exports " ));
  1457 	a->setToggleAction(true);
  1458 	a->setOn ( settings.value ("/export/useHideExport",true).toBool() );
  1459 	settingsMenu->addAction (a);
  1460 	actionSettingsUseHideExport=a;
  1461 }
  1462 
  1463 // Test Actions
  1464 void Main::setupTestActions()
  1465 {
  1466     QMenu *testMenu = menuBar()->addMenu( tr( "&Test" ));
  1467 
  1468     QAction *a;
  1469     a = new QAction( "Test function 1" , this);
  1470     a->setStatusTip( "Call test function 1" );
  1471 	testMenu->addAction (a);
  1472     connect( a, SIGNAL( triggered() ), this, SLOT( testFunction1() ) );
  1473 
  1474     a = new QAction( "Test function 2" , this);
  1475     a->setStatusTip( "Call test function 2" );
  1476 	testMenu->addAction (a);
  1477     connect( a, SIGNAL( triggered() ), this, SLOT( testFunction2() ) );
  1478 
  1479     a = new QAction( "Command" , this);
  1480     a->setStatusTip( "Enter command to call in editor" );
  1481     connect( a, SIGNAL( triggered() ), this, SLOT( testCommand() ) );
  1482 	testMenu->addAction (a);
  1483 }
  1484 
  1485 // Help Actions
  1486 void Main::setupHelpActions()
  1487 {
  1488     QMenu *helpMenu = menuBar()->addMenu ( tr( "&Help","Help menubar entry" ));
  1489 
  1490     QAction *a;
  1491     a = new QAction(  tr( "Open VYM Documentation (pdf) ","Help action" ), this );
  1492     a->setStatusTip( tr( "Open VYM Documentation (pdf)" ));
  1493     connect( a, SIGNAL( triggered() ), this, SLOT( helpDoc() ) );
  1494 	helpMenu->addAction (a);
  1495 
  1496     a = new QAction(  tr( "Open VYM example maps ","Help action" ), this );
  1497     a->setStatusTip( tr( "Open VYM example maps " ));
  1498     connect( a, SIGNAL( triggered() ), this, SLOT( helpDemo() ) );
  1499 	helpMenu->addAction (a);
  1500 
  1501     a = new QAction( tr( "About VYM","Help action" ), this);
  1502     a->setStatusTip( tr( "About VYM")+vymName);
  1503     connect( a, SIGNAL( triggered() ), this, SLOT( helpAbout() ) );
  1504 	helpMenu->addAction (a);
  1505 
  1506     a = new QAction( tr( "About QT","Help action" ), this);
  1507     a->setStatusTip( tr( "Information about QT toolkit" ));
  1508     connect( a, SIGNAL( triggered() ), this, SLOT( helpAboutQT() ) );
  1509 	helpMenu->addAction (a);
  1510 }
  1511 
  1512 // Context Menus
  1513 void Main::setupContextMenus()
  1514 {
  1515 	QAction*a;
  1516 
  1517 	// Context Menu for branch or mapcenter
  1518 	branchContextMenu =new QMenu (this);
  1519 	branchContextMenu->addAction (actionViewTogglePropertyWindow);
  1520 	branchContextMenu->addSeparator();	
  1521 
  1522 		// Submenu "Add"
  1523 		branchAddContextMenu =branchContextMenu->addMenu (tr("Add"));
  1524 		branchAddContextMenu->addAction (actionEditPaste );
  1525 		branchAddContextMenu->addAction ( actionEditAddBranch );
  1526 		branchAddContextMenu->addAction ( actionEditAddBranchBefore );
  1527 		branchAddContextMenu->addAction ( actionEditAddBranchAbove);
  1528 		branchAddContextMenu->addAction ( actionEditAddBranchBelow );
  1529 		branchAddContextMenu->addSeparator();	
  1530 		branchAddContextMenu->addAction ( actionEditImportAdd );
  1531 		branchAddContextMenu->addAction ( actionEditImportReplace );
  1532 
  1533 		// Submenu "Remove"
  1534 		branchRemoveContextMenu =branchContextMenu->addMenu (tr ("Remove","Context menu name"));
  1535 		branchRemoveContextMenu->addAction (actionEditCut);
  1536 		branchRemoveContextMenu->addAction ( actionEditDelete );
  1537 		branchRemoveContextMenu->addAction ( actionEditDeleteKeepChilds );
  1538 		branchRemoveContextMenu->addAction ( actionEditDeleteChilds );
  1539 		
  1540 
  1541 	actionEditSaveBranch->addTo( branchContextMenu );
  1542 
  1543 	branchContextMenu->addSeparator();	
  1544 	branchContextMenu->addAction ( actionEditLoadImage);
  1545 
  1546 	// Submenu for Links (URLs, vymLinks)
  1547 	branchLinksContextMenu =new QMenu (this);
  1548 
  1549 		branchContextMenu->addSeparator();	
  1550 		branchLinksContextMenu=branchContextMenu->addMenu(tr("References (URLs, vymLinks, ...)","Context menu name"));	
  1551 		branchLinksContextMenu->addAction ( actionEditOpenURL );
  1552 		branchLinksContextMenu->addAction ( actionEditOpenURLTab );
  1553 		branchLinksContextMenu->addAction ( actionEditOpenMultipleURLTabs );
  1554 		branchLinksContextMenu->addAction ( actionEditURL );
  1555 		branchLinksContextMenu->addAction ( actionEditLocalURL );
  1556 		branchLinksContextMenu->addAction ( actionEditHeading2URL );
  1557 		branchLinksContextMenu->addAction ( actionEditBugzilla2URL );
  1558 		if (settings.value( "/mainwindow/showTestMenu",false).toBool() )
  1559 		{
  1560 			branchLinksContextMenu->addAction ( actionEditFATE2URL );
  1561 		}	
  1562 		branchLinksContextMenu->addSeparator();	
  1563 		branchLinksContextMenu->addAction ( actionEditOpenVymLink );
  1564 		branchLinksContextMenu->addAction ( actionEditOpenMultipleVymLinks );
  1565 		branchLinksContextMenu->addAction ( actionEditVymLink );
  1566 		branchLinksContextMenu->addAction ( actionEditDeleteVymLink );
  1567 		
  1568 
  1569 	// Context Menu for XLinks in a branch menu
  1570 	// This will be populated "on demand" in MapEditor::updateActions
  1571 	branchContextMenu->addSeparator();	
  1572 	branchXLinksContextMenuEdit =branchContextMenu->addMenu (tr ("Edit XLink","Context menu name"));
  1573 	branchXLinksContextMenuFollow =branchContextMenu->addMenu (tr ("Follow XLink","Context menu name"));
  1574 	connect( branchXLinksContextMenuFollow, SIGNAL( triggered(QAction *) ), this, SLOT( editFollowXLink(QAction * ) ) );
  1575 	connect( branchXLinksContextMenuEdit, SIGNAL( triggered(QAction *) ), this, SLOT( editEditXLink(QAction * ) ) );
  1576  	
  1577 	
  1578 	// Context menu for floatimage
  1579 	floatimageContextMenu =new QMenu (this);
  1580 	a= new QAction (tr ("Save image","Context action"),this);
  1581 	connect (a, SIGNAL (triggered()), this, SLOT (editSaveImage()));
  1582 	floatimageContextMenu->addAction (a);
  1583 
  1584 	floatimageContextMenu->addSeparator();	
  1585 	actionEditCopy->addTo( floatimageContextMenu );
  1586 	actionEditCut->addTo( floatimageContextMenu );
  1587 
  1588 	floatimageContextMenu->addSeparator();	
  1589 	floatimageContextMenu->addAction ( actionFormatHideLinkUnselected );
  1590 
  1591 	
  1592 	// Context menu for canvas
  1593 	canvasContextMenu =new QMenu (this);
  1594 	actionEditMapInfo->addTo( canvasContextMenu );
  1595 	canvasContextMenu->insertSeparator();	
  1596 	actionGroupFormatLinkStyles->addTo( canvasContextMenu );
  1597 	canvasContextMenu->insertSeparator();	
  1598 	actionFormatLinkColorHint->addTo( canvasContextMenu );
  1599 	actionFormatLinkColor->addTo( canvasContextMenu );
  1600 	actionFormatSelectionColor->addTo( canvasContextMenu );
  1601 	actionFormatBackColor->addTo( canvasContextMenu );
  1602 	// actionFormatBackImage->addTo( canvasContextMenu );  //FIXME makes vym too slow: postponed for later version 
  1603 
  1604 	// Menu for last opened files
  1605 	// Create actions
  1606 	for (int i = 0; i < MaxRecentFiles; ++i) 
  1607 	{
  1608         recentFileActions[i] = new QAction(this);
  1609         recentFileActions[i]->setVisible(false);
  1610         fileLastMapsMenu->addAction(recentFileActions[i]);
  1611         connect(recentFileActions[i], SIGNAL(triggered()),
  1612                 this, SLOT(fileLoadRecent()));
  1613     }
  1614 	setupRecentMapsMenu();
  1615 }
  1616 
  1617 void Main::setupRecentMapsMenu()
  1618 {
  1619     QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
  1620 
  1621     int numRecentFiles = qMin(files.size(), (int)MaxRecentFiles);
  1622 
  1623     for (int i = 0; i < numRecentFiles; ++i) {
  1624         QString text = tr("&%1 %2").arg(i + 1).arg(files[i]);
  1625         recentFileActions[i]->setText(text);
  1626         recentFileActions[i]->setData(files[i]);
  1627         recentFileActions[i]->setVisible(true);
  1628     }
  1629     for (int j = numRecentFiles; j < MaxRecentFiles; ++j)
  1630         recentFileActions[j]->setVisible(false);
  1631 }
  1632 
  1633 void Main::setupMacros()
  1634 {
  1635     for (int i = 0; i <= 11; i++) 
  1636 	{
  1637         macroActions[i] = new QAction(this);
  1638         macroActions[i]->setData(i);
  1639         addAction (macroActions[i]);
  1640         connect(macroActions[i], SIGNAL(triggered()),
  1641                 this, SLOT(callMacro()));
  1642 	}			
  1643 	macroActions[0]->setShortcut ( Qt::Key_F1 );
  1644 	macroActions[1]->setShortcut ( Qt::Key_F2 );
  1645 	macroActions[2]->setShortcut ( Qt::Key_F3 );
  1646 	macroActions[3]->setShortcut ( Qt::Key_F4 );
  1647 	macroActions[4]->setShortcut ( Qt::Key_F5 );
  1648 	macroActions[5]->setShortcut ( Qt::Key_F6 );
  1649 	macroActions[6]->setShortcut ( Qt::Key_F7 );
  1650 	macroActions[7]->setShortcut ( Qt::Key_F8 );
  1651 	macroActions[8]->setShortcut ( Qt::Key_F9 );
  1652 	macroActions[9]->setShortcut ( Qt::Key_F10 );
  1653 	macroActions[10]->setShortcut ( Qt::Key_F11 );
  1654 	macroActions[11]->setShortcut ( Qt::Key_F12 );
  1655 }
  1656 
  1657 void Main::hideEvent (QHideEvent * )
  1658 {
  1659 	if (!textEditor->isMinimized() ) textEditor->hide();
  1660 }
  1661 
  1662 void Main::showEvent (QShowEvent * )
  1663 {
  1664 	if (actionViewToggleNoteEditor->isOn()) textEditor->showNormal();
  1665 }
  1666 
  1667 
  1668 MapEditor* Main::currentMapEditor() const
  1669 {
  1670     if ( tabWidget->currentPage() &&
  1671 	 tabWidget->currentPage()->inherits( "MapEditor" ) )
  1672 		return (MapEditor*)tabWidget->currentPage();
  1673     return NULL;	
  1674 }
  1675 
  1676 
  1677 void Main::editorChanged(QWidget *)
  1678 {
  1679 	// Unselect all possibly selected objects
  1680 	// (Important to update note editor)
  1681 	MapEditor *me;
  1682 	for (int i=0;i<=tabWidget->count() -1;i++)
  1683 	{
  1684 		
  1685 		me=(MapEditor*)tabWidget->page(i);
  1686 		me->unselect();
  1687 	}	
  1688 	currentMapEditor()->reselect();
  1689 
  1690 	// Update actions to in menus and toolbars according to editor
  1691 	updateActions();
  1692 }
  1693 
  1694 void Main::fileNew()
  1695 {
  1696 	QString fn="unnamed";
  1697 	MapEditor* me = new MapEditor ( NULL);
  1698 	tabWidget->addTab (me,fn);
  1699 	tabWidget->showPage(me);
  1700 	me->viewport()->setFocus();
  1701 	me->setAntiAlias (actionViewToggleAntiAlias->isOn());
  1702 	me->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
  1703 	
  1704 	// For the very first map we do not have flagrows yet...
  1705 	me->select("mc:");
  1706 }
  1707 
  1708 void Main::fileNewCopy()
  1709 {
  1710 	QString fn="unnamed";
  1711 	MapEditor* oldME =currentMapEditor();
  1712 	if (oldME)
  1713 	{
  1714 		oldME->copy();
  1715 		MapEditor* newME = new MapEditor ( NULL);
  1716 		if (newME)
  1717 		{
  1718 			tabWidget->addTab (newME,fn);
  1719 			tabWidget->showPage(newME);
  1720 			newME->viewport()->setFocus();
  1721 			newME->setAntiAlias (actionViewToggleAntiAlias->isOn());
  1722 			newME->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
  1723 			// For the very first map we do not have flagrows yet...
  1724 			newME->select("mc:");
  1725 			newME->load (clipboardDir+"/"+clipboardFile,ImportReplace, VymMap);
  1726 		}
  1727 
  1728 	}
  1729 }
  1730 
  1731 ErrorCode Main::fileLoad(QString fn, const LoadMode &lmode, const FileType &ftype)
  1732 {
  1733 	ErrorCode err=success;
  1734 	
  1735 	// fn is usually the archive, mapfile the file after uncompressing
  1736 	QString mapfile;
  1737 
  1738 	// Make fn absolute (needed for unzip)
  1739 	fn=QDir (fn).absPath();
  1740 
  1741 	MapEditor *me;
  1742 
  1743 	if (lmode==NewMap)
  1744 	{
  1745 		// Check, if map is already loaded
  1746 		int i=0;
  1747 		while (i<=tabWidget->count() -1)
  1748 		{
  1749 			me=(MapEditor*)tabWidget->page(i);
  1750 			if (me->getFilePath() == fn)
  1751 			{
  1752 				// Already there, ask for confirmation
  1753 				QMessageBox mb( vymName,
  1754 					tr("The map %1\nis already opened."
  1755 					"Opening the same map in multiple editors may lead \n"
  1756 					"to confusion when finishing working with vym."
  1757 					"Do you want to").arg(fn),
  1758 					QMessageBox::Warning,
  1759 					QMessageBox::Yes | QMessageBox::Default,
  1760 					QMessageBox::Cancel | QMessageBox::Escape,
  1761 					QMessageBox::NoButton);
  1762 				mb.setButtonText( QMessageBox::Yes, tr("Open anyway") );
  1763 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1764 				switch( mb.exec() ) 
  1765 				{
  1766 					case QMessageBox::Yes:
  1767 						// load anyway
  1768 						i=tabWidget->count();
  1769 						break;
  1770 					case QMessageBox::Cancel:
  1771 						// do nothing
  1772 						return aborted;
  1773 						break;
  1774 				}
  1775 			}
  1776 			i++;
  1777 		}
  1778 	}
  1779 
  1780 
  1781 	// Try to load map
  1782     if ( !fn.isEmpty() )
  1783 	{
  1784 		me = currentMapEditor();
  1785 		int tabIndex=tabWidget->currentPageIndex();
  1786 		// Check first, if mapeditor exists
  1787 		// If it is not default AND we want a new map, 
  1788 		// create a new mapeditor in a new tab
  1789 		if ( lmode==NewMap && (!me || !me->isDefault() ) )
  1790 		{
  1791 			me= new MapEditor ( NULL);
  1792 			tabWidget->addTab (me,fn);
  1793 			tabIndex=tabWidget->indexOf (me);
  1794 			tabWidget->setCurrentPage (tabIndex);
  1795 			me->setAntiAlias (actionViewToggleAntiAlias->isOn());
  1796 			me->setSmoothPixmap(actionViewToggleSmoothPixmapTransform->isOn());
  1797 		}
  1798 		
  1799 		// Check, if file exists (important for creating new files
  1800 		// from command line
  1801 		if (!QFile(fn).exists() )
  1802 		{
  1803 			QMessageBox mb( vymName,
  1804 				tr("This map does not exist:\n  %1\nDo you want to create a new one?").arg(fn),
  1805 				QMessageBox::Question,
  1806 				QMessageBox::Yes ,
  1807 				QMessageBox::Cancel | QMessageBox::Default,
  1808 				QMessageBox::NoButton );
  1809 
  1810 			mb.setButtonText( QMessageBox::Yes, tr("Create"));
  1811 			mb.setButtonText( QMessageBox::No, tr("Cancel"));
  1812 			switch( mb.exec() ) 
  1813 			{
  1814 				case QMessageBox::Yes:
  1815 					// Create new map
  1816 					currentMapEditor()->setFilePath(fn);
  1817 					tabWidget->setTabLabel (currentMapEditor(),
  1818 						currentMapEditor()->getFileName() );
  1819 					statusBar()->message( "Created " + fn , statusbarTime );
  1820 					return success;
  1821 						
  1822 				case QMessageBox::Cancel:
  1823 					// don't create new map
  1824 					statusBar()->message( "Loading " + fn + " failed!", statusbarTime );
  1825 					fileCloseMap();
  1826 					return aborted;
  1827 			}
  1828 		}	
  1829 
  1830 
  1831 		//tabWidget->currentPage() won't be NULL here, because of above...
  1832 		tabWidget->showPage(me);
  1833 		me->viewport()->setFocus();
  1834 
  1835 		if (err!=aborted)
  1836 		{
  1837 			// Save existing filename in case  we import
  1838 			QString fn_org=me->getFilePath();
  1839 
  1840 			// Finally load map into mapEditor
  1841 			me->setFilePath (fn);
  1842 			err=me->load(fn,lmode,ftype);
  1843 
  1844 			// Restore old (maybe empty) filepath, if this is an import
  1845 			if (lmode!=NewMap)
  1846 				me->setFilePath (fn_org);
  1847 		}	
  1848 
  1849 		// Finally check for errors and go home
  1850 		if (err==aborted) 
  1851 		{
  1852 			if (lmode==NewMap) fileCloseMap();
  1853 			statusBar()->message( "Could not load " + fn, statusbarTime );
  1854 		} else 
  1855 		{
  1856 			if (lmode==NewMap)
  1857 			{
  1858 				me->setFilePath (fn);
  1859 				tabWidget->changeTab(tabWidget->page(tabIndex), me->getFileName());
  1860 				if (!isInTmpDir (fn))
  1861 				{
  1862 					// Only append to lastMaps if not loaded from a tmpDir
  1863 					// e.g. imported bookmarks are in a tmpDir
  1864 					addRecentMap(me->getFilePath() );
  1865 				}
  1866 				actionFilePrint->setEnabled (true);
  1867 			}	
  1868 			statusBar()->message( "Loaded " + fn, statusbarTime );
  1869 		}	
  1870 	}
  1871 	return err;
  1872 }
  1873 
  1874 
  1875 void Main::fileLoad(const LoadMode &lmode)
  1876 {
  1877 	QStringList filters;
  1878 	filters <<"VYM map (*.vym *.vyp)"<<"XML (*.xml)";
  1879 	QFileDialog *fd=new QFileDialog( this);
  1880 	fd->setDir (lastFileDir);
  1881 	fd->setFileMode (QFileDialog::ExistingFiles);
  1882 	fd->setFilters (filters);
  1883 	switch (lmode)
  1884 	{
  1885 		case NewMap:
  1886 			fd->setCaption(vymName+ " - " +tr("Load vym map"));
  1887 			break;
  1888 		case ImportAdd:
  1889 			fd->setCaption(vymName+ " - " +tr("Import: Add vym map to selection"));
  1890 			break;
  1891 		case ImportReplace:
  1892 			fd->setCaption(vymName+ " - " +tr("Import: Replace selection with vym map"));
  1893 			break;
  1894 	}
  1895 	fd->show();
  1896 
  1897 	QString fn;
  1898 	if ( fd->exec() == QDialog::Accepted )
  1899 	{
  1900 		lastFileDir=fd->directory().path();
  1901 	    QStringList flist = fd->selectedFiles();
  1902 		QStringList::Iterator it = flist.begin();
  1903 		while( it != flist.end() ) 
  1904 		{
  1905 			fn = *it;
  1906 			fileLoad(*it, lmode);				   
  1907 			++it;
  1908 		}
  1909 	}
  1910 	delete (fd);
  1911 }
  1912 
  1913 void Main::fileLoad()
  1914 {
  1915 	fileLoad (NewMap);
  1916 }
  1917 
  1918 void Main::fileLoadRecent()
  1919 {
  1920     QAction *action = qobject_cast<QAction *>(sender());
  1921     if (action)
  1922         fileLoad (action->data().toString(), NewMap);
  1923 }
  1924 
  1925 void Main::addRecentMap (const QString &fileName)
  1926 {
  1927 
  1928     QStringList files = settings.value("/mainwindow/recentFileList").toStringList();
  1929     files.removeAll(fileName);
  1930     files.prepend(fileName);
  1931     while (files.size() > MaxRecentFiles)
  1932         files.removeLast();
  1933 
  1934     settings.setValue("/mainwindow/recentFileList", files);
  1935 
  1936 	setupRecentMapsMenu();
  1937 }
  1938 
  1939 void Main::fileSave(MapEditor *me, const SaveMode &savemode)
  1940 {
  1941 	/* FIXME moved to ME
  1942 	// Error codes
  1943 	ErrorCode err=success;
  1944 
  1945 	QString safeFilePath;
  1946 
  1947 	if (!me) return;
  1948 	bool saveZipped=me->saveZipped();
  1949 
  1950 	// tmp dir for zipping 
  1951 	QString tmpZipDir;
  1952 	
  1953 	*/
  1954 	
  1955 
  1956 	if (!me) return;
  1957 
  1958 	// filename=unnamed, filepath="" in constructor of mapEditor
  1959 
  1960 	/* FIXME moved to ME
  1961 	if ( !fn.isEmpty() ) 
  1962 	{	
  1963 		// We have a filepath, go on saving			
  1964 
  1965 		// Look, if we should zip the data:
  1966 		if (!saveZipped)
  1967 		{
  1968 			QMessageBox mb( vymName,
  1969 				tr("The map %1\ndid not use the compressed "
  1970 				"vym file format.\nWriting it uncompressed will also write images \n"
  1971 				"and flags and thus may overwrite files in the "
  1972 				"given directory\n\nDo you want to write the map").arg(fn),
  1973 				QMessageBox::Warning,
  1974 				QMessageBox::Yes | QMessageBox::Default,
  1975 				QMessageBox::No ,
  1976 				QMessageBox::Cancel | QMessageBox::Escape);
  1977 			mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
  1978 			mb.setButtonText( QMessageBox::No, tr("uncompressed") );
  1979 			mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1980 			switch( mb.exec() ) 
  1981 			{
  1982 				case QMessageBox::Yes:
  1983 					// save compressed (default file format)
  1984 					saveZipped=true;
  1985 					break;
  1986 				case QMessageBox::No:
  1987 					// save uncompressed
  1988 					saveZipped=false;
  1989 					break;
  1990 				case QMessageBox::Cancel:
  1991 					// do nothing
  1992 					return;
  1993 					break;
  1994 			}
  1995 			me->setZipped (saveZipped);
  1996 		}
  1997 
  1998 		// First backup existing file, we 
  1999 		// don't want to add to old zip archives
  2000 		QFile f(fn);
  2001 		if (f.exists())
  2002 		{
  2003 			if (actionSettingsWriteBackupFile->isOn())
  2004 			{
  2005 				QString bfn(fn + "~");
  2006 				QFile bf(bfn);
  2007 				if (bf.exists() && !bf.remove())
  2008 				{
  2009 					QMessageBox::warning(0, tr("Save Error"),
  2010 										 bfn + tr("\ncould not be removed before saving"));
  2011 				}
  2012 				else if (!f.rename(bfn))
  2013 				{
  2014 					QMessageBox::warning(0, tr("Save Error"),
  2015 										 fn + tr("\ncould not be renamed before saving"));
  2016 				}
  2017 			}
  2018 		}
  2019 
  2020 		if (saveZipped)
  2021 		{
  2022 			// Create temporary directory for packing
  2023 			bool ok;
  2024 			tmpZipDir=makeTmpDir (ok,"vym-zip");
  2025 			if (!ok)
  2026 			{
  2027 				QMessageBox::critical( 0, tr( "Critical Load Error" ),
  2028 				   tr("Couldn't create temporary directory before save\n"));
  2029 				return; 
  2030 			}
  2031 
  2032 			safeFilePath=me->getFilePath();
  2033 			me->setFilePath (tmpZipDir+"/"+
  2034 				me->getMapName()+ ".xml",
  2035 				safeFilePath);
  2036 			me->save (savemode);
  2037 			me->setFilePath (safeFilePath);
  2038 			
  2039 			zipDir (tmpZipDir,fn);
  2040 		} // save zipped
  2041 		else
  2042 		{
  2043 			// Save unzipped. 
  2044 			safeFilePath=me->getFilePath();
  2045 			me->setFilePath (fn, safeFilePath);
  2046 			me->save (savemode);
  2047 			me->setFilePath (safeFilePath);
  2048 		} // save zipped 	
  2049 	} // filepath available
  2050 	else
  2051 	*/
  2052 	if ( me->getFilePath().isEmpty() ) 
  2053 	{
  2054 		// We have  no filepath yet,
  2055 		// call fileSaveAs() now, this will call fileSave() 
  2056 		// again.
  2057 		// First switch to editor
  2058 		tabWidget->setCurrentWidget (me);
  2059 		fileSaveAs(savemode);
  2060 	}
  2061 
  2062 /* FIXME moved to ME
  2063 	if (saveZipped && !tmpZipDir.isEmpty())
  2064 		// Delete tmpDir
  2065 		removeDir (QDir(tmpZipDir));
  2066 */
  2067 	if (me->save (savemode)==success)
  2068 	{
  2069 		statusBar()->message( 
  2070 			tr("Saved  %1").arg(me->getFilePath()), 
  2071 			statusbarTime );
  2072 		addRecentMap (me->getFilePath() );
  2073 	} else		
  2074 		statusBar()->message( 
  2075 			tr("Couldn't save ").arg(me->getFilePath()), 
  2076 			statusbarTime );
  2077 }
  2078 
  2079 void Main::fileSave()
  2080 {
  2081 	fileSave (currentMapEditor(), CompleteMap);
  2082 }
  2083 
  2084 void Main::fileSave(MapEditor *me)
  2085 {
  2086 	fileSave (me,CompleteMap);
  2087 }
  2088 
  2089 void Main::fileSaveAs(const SaveMode& savemode)
  2090 {
  2091 	QString fn;
  2092 
  2093 	if (currentMapEditor())
  2094 	{
  2095 		if (savemode==CompleteMap)
  2096 			fn = Q3FileDialog::getSaveFileName( QString::null, "VYM map (*.vym)", this );
  2097 		else		
  2098 			fn = Q3FileDialog::getSaveFileName( QString::null, "VYM part of map (*.vyp)", this );
  2099 		if ( !fn.isEmpty() ) 
  2100 		{
  2101 			// Check for existing file
  2102 			if (QFile (fn).exists())
  2103 			{
  2104 				QMessageBox mb( vymName,
  2105 					tr("The file %1\nexists already. Do you want to").arg(fn),
  2106 					QMessageBox::Warning,
  2107 					QMessageBox::Yes | QMessageBox::Default,
  2108 					QMessageBox::Cancel | QMessageBox::Escape,
  2109 					QMessageBox::NoButton);
  2110 				mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
  2111 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  2112 				switch( mb.exec() ) 
  2113 				{
  2114 					case QMessageBox::Yes:
  2115 						// save 
  2116 						break;
  2117 					case QMessageBox::Cancel:
  2118 						// do nothing
  2119 						return;
  2120 						break;
  2121 				}
  2122 			} else
  2123 			{
  2124 				// New file, add extension to filename, if missing
  2125 				// This is always .vym or .vyp, depending on savemode
  2126 				if (savemode==CompleteMap)
  2127 				{
  2128 					if (!fn.contains (".vym") && !fn.contains (".xml"))
  2129 						fn +=".vym";
  2130 				} else		
  2131 				{
  2132 					if (!fn.contains (".vyp") && !fn.contains (".xml"))
  2133 						fn +=".vyp";
  2134 				}
  2135 			}
  2136 	
  2137 
  2138 
  2139 
  2140 			// Save now
  2141 			currentMapEditor()->setFilePath(fn);
  2142 			fileSave(currentMapEditor(), savemode);
  2143 
  2144 			// Set name of tab
  2145 			if (savemode==CompleteMap)
  2146 				tabWidget->setTabLabel (currentMapEditor(),
  2147 					currentMapEditor()->getFileName() );
  2148 			return;
  2149 		} 
  2150 	}
  2151 }
  2152 
  2153 void Main::fileSaveAs()
  2154 {
  2155 	fileSaveAs (CompleteMap);
  2156 }
  2157 
  2158 void Main::fileImportKDEBookmarks()
  2159 {
  2160 	ImportKDEBookmarks im;
  2161 	im.transform();
  2162 	if (success==fileLoad (im.getTransformedFile(),NewMap) && currentMapEditor() )
  2163 		currentMapEditor()->setFilePath ("");
  2164 }
  2165 
  2166 void Main::fileImportFirefoxBookmarks()
  2167 {
  2168 	Q3FileDialog *fd=new Q3FileDialog( this);
  2169 	fd->setDir (vymBaseDir.homeDirPath()+"/.mozilla/firefox");
  2170 	fd->setMode (Q3FileDialog::ExistingFiles);
  2171 	fd->addFilter ("Firefox "+tr("Bookmarks")+" (*.html)");
  2172 	fd->setCaption(tr("Import")+" "+"Firefox "+tr("Bookmarks"));
  2173 	fd->show();
  2174 
  2175 	if ( fd->exec() == QDialog::Accepted )
  2176 	{
  2177 		ImportFirefoxBookmarks im;
  2178 	    QStringList flist = fd->selectedFiles();
  2179 		QStringList::Iterator it = flist.begin();
  2180 		while( it != flist.end() ) 
  2181 		{
  2182 			im.setFile (*it);
  2183 			if (im.transform() && 
  2184 				success==fileLoad (im.getTransformedFile(),NewMap,FreemindMap) && 
  2185 				currentMapEditor() )
  2186 				currentMapEditor()->setFilePath ("");
  2187 			++it;
  2188 		}
  2189 	}
  2190 	delete (fd);
  2191 }
  2192 
  2193 void Main::fileImportFreemind()
  2194 {
  2195 	QStringList filters;
  2196 	filters <<"Freemind map (*.mm)"<<"All files (*)";
  2197 	QFileDialog *fd=new QFileDialog( this);
  2198 	fd->setDir (lastFileDir);
  2199 	fd->setFileMode (QFileDialog::ExistingFiles);
  2200 	fd->setFilters (filters);
  2201 	fd->setCaption(vymName+ " - " +tr("Load Freemind map"));
  2202 	fd->show();
  2203 
  2204 	QString fn;
  2205 	if ( fd->exec() == QDialog::Accepted )
  2206 	{
  2207 		lastFileDir=fd->directory().path();
  2208 	    QStringList flist = fd->selectedFiles();
  2209 		QStringList::Iterator it = flist.begin();
  2210 		while( it != flist.end() ) 
  2211 		{
  2212 			fn = *it;
  2213 			if ( fileLoad (fn,NewMap, FreemindMap)  )
  2214 			{	
  2215 				currentMapEditor()->setFilePath ("");
  2216 			}	
  2217 			++it;
  2218 		}
  2219 	}
  2220 	delete (fd);
  2221 }
  2222 
  2223 
  2224 void Main::fileImportMM()
  2225 {
  2226 	ImportMM im;
  2227 
  2228 	Q3FileDialog *fd=new Q3FileDialog( this);
  2229 	fd->setDir (lastFileDir);
  2230 	fd->setMode (Q3FileDialog::ExistingFiles);
  2231 	fd->addFilter ("Mind Manager (*.mmap)");
  2232 	fd->setCaption(tr("Import")+" "+"Mind Manager");
  2233 	fd->show();
  2234 
  2235 	if ( fd->exec() == QDialog::Accepted )
  2236 	{
  2237 		lastFileDir=fd->dirPath();
  2238 	    QStringList flist = fd->selectedFiles();
  2239 		QStringList::Iterator it = flist.begin();
  2240 		while( it != flist.end() ) 
  2241 		{
  2242 			im.setFile (*it);
  2243 			if (im.transform() && 
  2244 				success==fileLoad (im.getTransformedFile(),NewMap) && 
  2245 				currentMapEditor() )
  2246 				currentMapEditor()->setFilePath ("");
  2247 
  2248 			++it;
  2249 		}
  2250 	}
  2251 	delete (fd);
  2252 
  2253 }
  2254 
  2255 void Main::fileImportDir()
  2256 {
  2257 	if (currentMapEditor())
  2258 		currentMapEditor()->importDir();	
  2259 }
  2260 
  2261 void Main::fileExportXML()	
  2262 {
  2263 	MapEditor *me=currentMapEditor();
  2264 	if (me) me->exportXML();
  2265 }
  2266 
  2267 
  2268 void Main::fileExportXHTML()	
  2269 {
  2270 	MapEditor *me=currentMapEditor();
  2271 	if (me) me->exportXHTML();
  2272 }
  2273 
  2274 void Main::fileExportImage()	
  2275 {
  2276 	MapEditor *me=currentMapEditor();
  2277 	if (me) me->exportImage();
  2278 }
  2279 
  2280 void Main::fileExportASCII()
  2281 {
  2282 	MapEditor *me=currentMapEditor();
  2283 	if (me) me->exportASCII();
  2284 }
  2285 
  2286 void Main::fileExportCSV()	//FIXME not scriptable yet
  2287 {
  2288 	MapEditor *me=currentMapEditor();
  2289 	if (me)
  2290 	{
  2291 		ExportCSV ex;
  2292 		ex.setModel (me->getModel());
  2293 		ex.addFilter ("CSV (*.csv)");
  2294 		ex.setDir(lastImageDir);
  2295 		ex.setCaption(vymName+ " -" +tr("Export as CSV")+" "+tr("(still experimental)"));
  2296 		if (ex.execDialog() ) 
  2297 		{
  2298 			me->setExportMode(true);
  2299 			ex.doExport();
  2300 			me->setExportMode(false);
  2301 		}
  2302 	}
  2303 }
  2304 
  2305 void Main::fileExportLaTeX()	//FIXME not scriptable yet
  2306 {
  2307 	MapEditor *me=currentMapEditor();
  2308 	if (me)
  2309 	{
  2310 		ExportLaTeX ex;
  2311 		ex.setModel (me->getModel());
  2312 		ex.addFilter ("Tex (*.tex)");
  2313 		ex.setDir(lastImageDir);
  2314 		ex.setCaption(vymName+ " -" +tr("Export as LaTeX")+" "+tr("(still experimental)"));
  2315 		if (ex.execDialog() ) 
  2316 		{
  2317 			me->setExportMode(true);
  2318 			ex.doExport();
  2319 			me->setExportMode(false);
  2320 		}
  2321 	}
  2322 }
  2323 
  2324 void Main::fileExportKDEBookmarks()	//FIXME not scriptable yet
  2325 {
  2326 	ExportKDEBookmarks ex;
  2327 	MapEditor *me=currentMapEditor();
  2328 	if (me)
  2329 	{
  2330 		ex.setModel (me->getModel());
  2331 		ex.doExport();
  2332 	}	
  2333 }
  2334 
  2335 void Main::fileExportTaskjuggler()	//FIXME not scriptable yet
  2336 {
  2337 	ExportTaskjuggler ex;
  2338 	MapEditor *me=currentMapEditor();
  2339 	if (me)
  2340 	{
  2341 		ex.setModel (me->getModel());
  2342 		ex.setCaption ( vymName+" - "+tr("Export to")+" Taskjuggler"+tr("(still experimental)"));
  2343 		ex.setDir(lastImageDir);
  2344 		ex.addFilter ("Taskjuggler (*.tjp)");
  2345 		if (ex.execDialog() ) 
  2346 		{
  2347 			me->setExportMode(true);
  2348 			ex.doExport();
  2349 			me->setExportMode(false);
  2350 		}
  2351 	}	
  2352 }
  2353 
  2354 void Main::fileExportOOPresentation()	//FIXME not scriptable yet
  2355 {
  2356 	ExportOOFileDialog *fd=new ExportOOFileDialog( this,vymName+" - "+tr("Export to")+" Open Office");
  2357 	// TODO add preview in dialog
  2358 	//ImagePreview *p =new ImagePreview (fd);
  2359 	//fd->setContentsPreviewEnabled( TRUE );
  2360 	//fd->setContentsPreview( p, p );
  2361 	//fd->setPreviewMode( QFileDialog::Contents );
  2362 	fd->setCaption(vymName+" - " +tr("Export to")+" Open Office");
  2363 	fd->setDir (QDir().current());
  2364 	if (fd->foundConfig())
  2365 	{
  2366 		fd->show();
  2367 
  2368 		if ( fd->exec() == QDialog::Accepted )
  2369 		{
  2370 			QString fn=fd->selectedFile();
  2371 			if (!fn.contains (".odp"))
  2372 				fn +=".odp";
  2373 
  2374 			//lastImageDir=fn.left(fn.findRev ("/"));
  2375 			if (currentMapEditor())
  2376 				currentMapEditor()->exportOOPresentation(fn,fd->selectedConfig());	
  2377 		}
  2378 	} else
  2379 	{
  2380 		QMessageBox::warning(0, 
  2381 		tr("Warning"),
  2382 		tr("Couldn't find configuration for export to Open Office\n"));
  2383 	}
  2384 }
  2385 
  2386 void Main::fileCloseMap()
  2387 {
  2388 	MapEditor *me = currentMapEditor();
  2389 	if (me)
  2390 	{
  2391 		if (me->hasChanged())
  2392 		{
  2393 			QMessageBox mb( vymName,
  2394 				tr("The map %1 has been modified but not saved yet. Do you want to").arg(me->getFileName()),
  2395 				QMessageBox::Warning,
  2396 				QMessageBox::Yes | QMessageBox::Default,
  2397 				QMessageBox::No,
  2398 				QMessageBox::Cancel | QMessageBox::Escape );
  2399 			mb.setButtonText( QMessageBox::Yes, tr("Save modified map before closing it") );
  2400 			mb.setButtonText( QMessageBox::No, tr("Discard changes"));
  2401 			switch( mb.exec() ) 
  2402 			{
  2403 				case QMessageBox::Yes:
  2404 					// save and close
  2405 					fileSave(me, CompleteMap);
  2406 					break;
  2407 				case QMessageBox::No:
  2408 				// close  without saving
  2409 					break;
  2410 				case QMessageBox::Cancel:
  2411 					// do nothing
  2412 				return;
  2413 			}
  2414 		} 
  2415 		me->closeMap();
  2416 		tabWidget->removePage(me);
  2417 		if (tabWidget->count()==0)
  2418 			actionFilePrint->setEnabled (false);
  2419         delete me;
  2420 	}
  2421 }
  2422 
  2423 void Main::filePrint()
  2424 {
  2425 	if (currentMapEditor())
  2426 		currentMapEditor()->print();
  2427 }
  2428 
  2429 void Main::fileExitVYM()
  2430 {
  2431 	// Check if one or more editors have changed
  2432 	MapEditor *me;
  2433 	int i;
  2434 	for (i=0;i<=tabWidget->count() -1;i++)
  2435 	{
  2436 		
  2437 		me=(MapEditor*)tabWidget->page(i);
  2438 
  2439 		// If something changed, ask what to do
  2440 		if (me->hasChanged())
  2441 		{
  2442 			tabWidget->setCurrentPage(i);
  2443 			QMessageBox mb( vymName,
  2444 				tr("This map is not saved yet. Do you want to"),
  2445 				QMessageBox::Warning,
  2446 				QMessageBox::Yes | QMessageBox::Default,
  2447 				QMessageBox::No,
  2448 				QMessageBox::Cancel | QMessageBox::Escape );
  2449 			mb.setButtonText( QMessageBox::Yes, tr("Save map") );
  2450 			mb.setButtonText( QMessageBox::No, tr("Discard changes") );
  2451 			mb.setModal (true);
  2452 			mb.show();
  2453 			mb.setActiveWindow();
  2454 			switch( mb.exec() ) {
  2455 				case QMessageBox::Yes:
  2456 					// save (the changed editors) and exit
  2457 					fileSave(currentMapEditor(), CompleteMap);
  2458 					break;
  2459 				case QMessageBox::No:
  2460 					// exit without saving
  2461 					break;
  2462 				case QMessageBox::Cancel:
  2463 					// don't save and don't exit
  2464 				return;
  2465 			}
  2466 		}
  2467 	} // loop over all MEs	
  2468     qApp->quit();
  2469 }
  2470 
  2471 void Main::editUndo()
  2472 {
  2473 	if (currentMapEditor())
  2474 		currentMapEditor()->undo();
  2475 }
  2476 
  2477 void Main::editRedo()	   
  2478 {
  2479 	if (currentMapEditor())
  2480 		currentMapEditor()->redo();
  2481 }
  2482 
  2483 void Main::gotoHistoryStep (int i)	   
  2484 {
  2485 	if (currentMapEditor())
  2486 		currentMapEditor()->gotoHistoryStep (i);
  2487 }
  2488 
  2489 void Main::editCopy()
  2490 {
  2491 	if (currentMapEditor())
  2492 		currentMapEditor()->copy();
  2493 }
  2494 
  2495 void Main::editPaste()
  2496 {
  2497 	if (currentMapEditor())
  2498 		currentMapEditor()->paste();
  2499 }
  2500 
  2501 void Main::editCut()
  2502 {
  2503 	if (currentMapEditor())
  2504 		currentMapEditor()->cut();
  2505 }
  2506 
  2507 void Main::editOpenFindWindow()
  2508 {
  2509 	findWindow->popup();
  2510 	findWindow->raise();
  2511 	findWindow->setActiveWindow();
  2512 }
  2513 
  2514 void Main::editFind(QString s)
  2515 {
  2516 	bool cs=false;
  2517 	BranchObj *bo=currentMapEditor()->findText(s, cs);
  2518 	if (bo)
  2519 	{	
  2520 		statusBar()->message( "Found: " + bo->getHeading(), statusbarTime );
  2521 	} else
  2522 	{
  2523 		QMessageBox::information( findWindow, tr( "VYM -Information:" ),
  2524 							   tr("No matches found for \"%1\"").arg(s));
  2525 	}	
  2526 }
  2527 
  2528 void Main::editFindChanged()
  2529 {	// Notify editor, to abort the current find process
  2530 	currentMapEditor()->findReset();
  2531 }
  2532 
  2533 void Main::openTabs(QStringList urls)
  2534 {
  2535 	if (!urls.isEmpty())
  2536 	{	
  2537 		bool success=true;
  2538 		QStringList args;
  2539 		QString browser=settings.value("/mainwindow/readerURL" ).toString();
  2540 		QProcess *p;
  2541 		if (!procBrowser ||  procBrowser->state()!=QProcess::Running)
  2542 		{
  2543 			QString u=urls.takeFirst();
  2544 			procBrowser = new QProcess( this );
  2545 			args<<u;
  2546 			procBrowser->start(browser,args);
  2547 			if ( !procBrowser->waitForStarted())
  2548 			{
  2549 				// try to set path to browser
  2550 				QMessageBox::warning(0, 
  2551 					tr("Warning"),
  2552 					tr("Couldn't find a viewer to open %1.\n").arg(u)+
  2553 					tr("Please use Settings->")+tr("Set application to open an URL"));
  2554 				return;
  2555 			}
  2556 #if defined(Q_OS_WIN32)
  2557             // There's no sleep in VCEE, replace it with Qt's QThread::wait().
  2558             this->thread()->wait(3000);
  2559 #else
  2560 			sleep (3);
  2561 #endif
  2562 		}
  2563 		if (browser.contains("konqueror"))
  2564 		{
  2565 			for (int i=0; i<urls.size(); i++)
  2566 			{
  2567 				// Open new browser
  2568 				// Try to open new tab in existing konqueror started previously by vym
  2569 				p=new QProcess (this);
  2570 				args.clear();
  2571 #if defined(Q_OS_WIN32)
  2572                 // In Win32, pid is not a longlong, but a pointer to a _PROCESS_INFORMATION structure.
  2573                 // Redundant change in Win32, as there's no konqueror, but I wanted to follow the original logic.
  2574 				args<< QString("konqueror-%1").arg(procBrowser->pid()->dwProcessId)<<
  2575 					"konqueror-mainwindow#1"<<
  2576 					"newTab" <<
  2577 					urls.at(i);
  2578 #else
  2579 				args<< QString("konqueror-%1").arg(procBrowser->pid())<<
  2580 					"konqueror-mainwindow#1"<<
  2581 					"newTab" <<
  2582 					urls.at(i);
  2583 #endif
  2584 				p->start ("dcop",args);
  2585 				cout << qPrintable (args.join(" "))<<endl;
  2586 				if ( !p->waitForStarted() ) success=false;
  2587 			}
  2588 			if (!success)
  2589 				QMessageBox::warning(0, 
  2590 					tr("Warning"),
  2591 					tr("Couldn't start %1 to open a new tab in %2.").arg("dcop").arg("konqueror"));
  2592 			return;		
  2593 		} else if (browser.contains ("firefox") || browser.contains ("mozilla") )
  2594 		{
  2595 			for (int i=0; i<urls.size(); i++)
  2596 			{
  2597 				// Try to open new tab in firefox
  2598 				p=new QProcess (this);
  2599 				args<< "-remote"<< QString("openurl(%1,new-tab)").arg(urls.at(i));
  2600 				p->start (browser,args);
  2601 				if ( !p->waitForStarted() ) success=false;
  2602 			}			
  2603 			if (!success)
  2604 				QMessageBox::warning(0, 
  2605 					tr("Warning"),
  2606 					tr("Couldn't start %1 to open a new tab").arg(browser));
  2607 			return;		
  2608 		}			
  2609 		QMessageBox::warning(0, 
  2610 			tr("Warning"),
  2611 			tr("Sorry, currently only Konqueror and Mozilla support tabbed browsing."));
  2612 	}	
  2613 }
  2614 
  2615 void Main::editOpenURL()
  2616 {
  2617 	// Open new browser
  2618 	if (currentMapEditor())
  2619 	{	
  2620 	    QString url=currentMapEditor()->getURL();
  2621 		QStringList args;
  2622 		if (url=="") return;
  2623 		QString browser=settings.value("/mainwindow/readerURL" ).toString();
  2624 		procBrowser = new QProcess( this );
  2625 		args<<url;
  2626 		procBrowser->start(browser,args);
  2627 		if ( !procBrowser->waitForStarted())
  2628 		{
  2629 			// try to set path to browser
  2630 			QMessageBox::warning(0, 
  2631 				tr("Warning"),
  2632 				tr("Couldn't find a viewer to open %1.\n").arg(url)+
  2633 				tr("Please use Settings->")+tr("Set application to open an URL"));
  2634 			settingsURL() ; 
  2635 		}	
  2636 	}	
  2637 }
  2638 void Main::editOpenURLTab()
  2639 {
  2640 	if (currentMapEditor())
  2641 	{	
  2642 	    QStringList urls;
  2643 		urls.append(currentMapEditor()->getURL());
  2644 		openTabs (urls);
  2645 	}	
  2646 }
  2647 void Main::editOpenMultipleURLTabs()
  2648 {
  2649 	if (currentMapEditor())
  2650 	{	
  2651 	    QStringList urls;
  2652 		urls=currentMapEditor()->getURLs();
  2653 		openTabs (urls);
  2654 	}	
  2655 }
  2656 
  2657 
  2658 void Main::editURL()
  2659 {
  2660 	if (currentMapEditor())
  2661 	    currentMapEditor()->editURL();
  2662 }
  2663 
  2664 void Main::editLocalURL()
  2665 {
  2666 	if (currentMapEditor())
  2667 	    currentMapEditor()->editLocalURL();
  2668 }
  2669 
  2670 void Main::editHeading2URL()
  2671 {
  2672 	if (currentMapEditor())
  2673 	    currentMapEditor()->editHeading2URL();
  2674 }
  2675 
  2676 void Main::editBugzilla2URL()
  2677 {
  2678 	if (currentMapEditor())
  2679 	    currentMapEditor()->editBugzilla2URL();
  2680 }
  2681 
  2682 void Main::editFATE2URL()
  2683 {
  2684 	if (currentMapEditor())
  2685 	    currentMapEditor()->editFATE2URL();
  2686 }
  2687 
  2688 void Main::editHeadingFinished()
  2689 {
  2690 	// only called from editHeading(), so there is a currentME
  2691 	MapEditor *me=currentMapEditor();
  2692 	if (me)
  2693 	{
  2694 		me->setStateEditHeading (false);
  2695 		QPoint p;	//Not used here, only to find out pos of branch
  2696 		bool ok;
  2697 		QString s=me->getHeading(ok,p);
  2698 
  2699 #if defined(Q_OS_MACX) || defined(Q_OS_WIN32)
  2700 #else
  2701 		if (ok && s!=lineedit->text())
  2702 			me->setHeading(lineedit->text());
  2703 			
  2704 		lineedit->releaseKeyboard();
  2705 		lineedit->hide();
  2706 		setFocus();
  2707 #endif	
  2708 		if (!actionSettingsAutoSelectNewBranch->isOn() && 
  2709 			!prevSelection.isEmpty()) 
  2710 			me->select(prevSelection);
  2711 		prevSelection="";
  2712 	}
  2713 }
  2714 
  2715 void Main::editHeading()
  2716 {
  2717 	if (currentMapEditor())
  2718 	{
  2719 		MapEditor *me=currentMapEditor();
  2720 		QString oldSel=me->getSelectString();
  2721 
  2722 		if (lineedit->isVisible())
  2723 			editHeadingFinished();
  2724 		else
  2725 		{
  2726 			bool ok;
  2727 			QPoint p;
  2728 			QString s=me->getHeading(ok,p);
  2729 
  2730 			if (ok)
  2731 			{
  2732 				me->setStateEditHeading (true);
  2733 #if defined(Q_OS_MACX) || defined(Q_OS_WIN32)
  2734 				p=me->mapToGlobal (p);
  2735 				QDialog *d =new QDialog(NULL);
  2736 				QLineEdit *le=new QLineEdit (d);
  2737 				d->setWindowFlags (Qt::FramelessWindowHint);
  2738 				d->setGeometry(p.x(),p.y(),230,25);
  2739 				le->resize (d->width()-10,d->height());
  2740 				le->setText (s);
  2741 				le->selectAll();
  2742 				connect (le, SIGNAL (returnPressed()), d, SLOT (accept()));
  2743 				d->activateWindow();
  2744 				d->exec();
  2745 				me->setHeading (le->text());
  2746 				delete (le);
  2747 				delete (d);
  2748 				editHeadingFinished();
  2749 #else
  2750 				p=me->mapTo (this,p);
  2751 				lineedit->setGeometry(p.x(),p.y(),230,25);
  2752 				lineedit->setText(s);
  2753 				lineedit->setCursorPosition(1);
  2754 				lineedit->selectAll();
  2755 				lineedit->show();
  2756 				lineedit->grabKeyboard();
  2757 				lineedit->setFocus();
  2758 #endif
  2759 			}
  2760 		}
  2761 	} // currentMapEditor()	
  2762 }
  2763 
  2764 void Main::editAttributeFinished()
  2765 {
  2766 	// only called from editHeading(), so there is a currentME
  2767 
  2768 	/*
  2769 	MapEditor *me=currentMapEditor();
  2770 	if (me)
  2771 	{
  2772 		me->setStateEditHeading (false);
  2773 		QPoint p;	//Not used here, only to find out pos of branch
  2774 		bool ok;
  2775 		QString s=me->getHeading(ok,p);
  2776 
  2777 #if defined(Q_OS_MACX)
  2778 #else
  2779 		if (ok && s!=lineedit->text())
  2780 			me->setHeading(lineedit->text());
  2781 			
  2782 		lineedit->releaseKeyboard();
  2783 		lineedit->hide();
  2784 		setFocus();
  2785 #endif	
  2786 		if (!actionSettingsAutoSelectNewBranch->isOn() && 
  2787 			!prevSelection.isEmpty()) 
  2788 			me->select(prevSelection);
  2789 		prevSelection="";
  2790 	}
  2791 	*/
  2792 }
  2793 
  2794 #include "attribute.h"
  2795 #include "attributedialog.h"
  2796 void Main::editAttribute()
  2797 {
  2798 	MapEditor *me=currentMapEditor();
  2799 	if (me)
  2800 	{
  2801 		BranchObj *bo=me->getSelectedBranch();
  2802 		if (bo)
  2803 		{
  2804 			AttributeDialog dia(this);
  2805 			dia.setTable (me->attributeTable() );
  2806 			dia.setBranch (bo);
  2807 			dia.setMode (Definition);
  2808 			dia.updateTable();
  2809 			dia.exec();
  2810 		}
  2811 	}	
  2812 	/*
  2813 	if (currentMapEditor())
  2814 	{
  2815 		MapEditor *me=currentMapEditor();
  2816 		QString oldSel=me->getSelectString();
  2817 
  2818 		if (lineedit->isVisible())
  2819 			editAttributeFinished();
  2820 		else
  2821 		{
  2822 			bool ok;
  2823 			QPoint p;
  2824 			QString s=me->getHeading(ok,p);
  2825 
  2826 			if (ok)
  2827 			{
  2828 				me->setStateEditHeading (true);
  2829 #if defined(Q_OS_MACX)
  2830 				p=me->mapToGlobal (p);
  2831 				QDialog *d =new QDialog(NULL);
  2832 				QLineEdit *le=new QLineEdit (d);
  2833 				d->setWindowFlags (Qt::FramelessWindowHint);
  2834 				d->setGeometry(p.x(),p.y(),230,25);
  2835 				le->resize (d->width()-10,d->height());
  2836 				le->setText (s);
  2837 				le->selectAll();
  2838 				connect (le, SIGNAL (returnPressed()), d, SLOT (accept()));
  2839 				d->activateWindow();
  2840 				d->exec();
  2841 				me->setHeading (le->text());
  2842 				delete (le);
  2843 				delete (d);
  2844 				editHeadingFinished();
  2845 #else
  2846 				p=me->mapTo (this,p);
  2847 				lineedit->setGeometry(p.x(),p.y(),230,25);
  2848 				lineedit->setText(s);
  2849 				lineedit->setCursorPosition(1);
  2850 				lineedit->selectAll();
  2851 				lineedit->show();
  2852 				lineedit->grabKeyboard();
  2853 				lineedit->setFocus();
  2854 #endif
  2855 			}
  2856 		} 
  2857 	} // currentMapEditor()	
  2858 
  2859 	*/
  2860 }
  2861 
  2862 void Main::openVymLinks(const QStringList &vl)
  2863 {
  2864 	for (int j=0; j<vl.size(); j++)
  2865 	{
  2866 		// compare path with already loaded maps
  2867 		int index=-1;
  2868 		int i;
  2869 		MapEditor *me;
  2870 		for (i=0;i<=tabWidget->count() -1;i++)
  2871 		{
  2872 			me=(MapEditor*)tabWidget->page(i);
  2873 			if (vl.at(j)==me->getFilePath() )
  2874 			{
  2875 				index=i;
  2876 				break;
  2877 			}
  2878 		}	
  2879 		if (index<0)
  2880 		// Load map
  2881 		{
  2882 			if (!QFile(vl.at(j)).exists() )
  2883 				QMessageBox::critical( 0, tr( "Critical Error" ),
  2884 				   tr("Couldn't open map %1").arg(vl.at(j)));
  2885 			else
  2886 			{
  2887 				fileLoad (vl.at(j), NewMap);
  2888 				tabWidget->setCurrentPage (tabWidget->count()-1);	
  2889 			}
  2890 		} else
  2891 			// Go to tab containing the map
  2892 			tabWidget->setCurrentPage (index);	
  2893 	}
  2894 }
  2895 
  2896 void Main::editOpenVymLink()
  2897 {
  2898 	if (currentMapEditor())
  2899 	{
  2900 		QStringList vl;
  2901 		vl.append(currentMapEditor()->getVymLink());	
  2902 		openVymLinks (vl);
  2903 	}
  2904 }
  2905 
  2906 void Main::editOpenMultipleVymLinks()
  2907 {
  2908 	QString currentVymLink;
  2909 	if (currentMapEditor())
  2910 	{
  2911 		QStringList vl=currentMapEditor()->getVymLinks();
  2912 		openVymLinks (vl);
  2913 	}
  2914 }
  2915 
  2916 void Main::editVymLink()
  2917 {
  2918 	if (currentMapEditor())
  2919 		currentMapEditor()->editVymLink();	
  2920 }
  2921 
  2922 void Main::editDeleteVymLink()
  2923 {
  2924 	if (currentMapEditor())
  2925 		currentMapEditor()->deleteVymLink();	
  2926 }
  2927 
  2928 void Main::editToggleHideExport()
  2929 {
  2930 	if (currentMapEditor())
  2931 		currentMapEditor()->toggleHideExport();	
  2932 }
  2933 
  2934 void Main::editMapInfo()
  2935 {
  2936 	if (currentMapEditor())
  2937 		currentMapEditor()->editMapInfo();	
  2938 }
  2939 
  2940 void Main::editMoveUp()
  2941 {
  2942 	if (currentMapEditor())
  2943 	    currentMapEditor()->moveBranchUp();
  2944 }
  2945 
  2946 void Main::editMoveDown()
  2947 {
  2948 	if (currentMapEditor())
  2949 		currentMapEditor()->moveBranchDown();
  2950 }
  2951 
  2952 void Main::editSortChildren()
  2953 {
  2954 	if (currentMapEditor())
  2955 		currentMapEditor()->sortChildren();
  2956 }
  2957 
  2958 void Main::editToggleScroll()
  2959 {
  2960 	if (currentMapEditor())
  2961 	{
  2962 		currentMapEditor()->toggleScroll();	
  2963 	}	
  2964 }
  2965 
  2966 void Main::editUnscrollChilds()
  2967 {
  2968 	if (currentMapEditor())
  2969 		currentMapEditor()->unscrollChilds();	
  2970 }
  2971 
  2972 void Main::editNewBranch()
  2973 {
  2974 	MapEditor *me=currentMapEditor();
  2975 	if (!lineedit->isVisible() && me)
  2976 	{
  2977 		BranchObj *bo=(BranchObj*)me->getSelection();
  2978 		BranchObj *newbo=me->addNewBranch(0);
  2979 
  2980 		prevSelection=bo->getSelectString();
  2981 		if (newbo) 
  2982 			me->select (newbo->getSelectString());
  2983 		else
  2984 			return;
  2985 
  2986 		if (actionSettingsAutoEditNewBranch->isOn())
  2987 		{
  2988 			editHeading();
  2989 			return;
  2990 		}	
  2991 		if (!prevSelection.isEmpty()) 
  2992 		{
  2993 			me->select(prevSelection);
  2994 			prevSelection="";
  2995 		}
  2996 
  2997 	}	
  2998 }
  2999 
  3000 void Main::editNewBranchBefore()
  3001 {
  3002 	MapEditor *me=currentMapEditor();
  3003 	if (!lineedit->isVisible() && me)
  3004 	{
  3005 		BranchObj *bo=(BranchObj*)me->getSelection();
  3006 		BranchObj *newbo=me->addNewBranchBefore();
  3007 
  3008 		if (newbo) 
  3009 			me->select (newbo->getSelectString());
  3010 		else
  3011 			return;
  3012 
  3013 		if (actionSettingsAutoEditNewBranch->isOn())
  3014 		{
  3015 			if (!actionSettingsAutoSelectNewBranch->isOn())
  3016 				prevSelection=bo->getSelectString();
  3017 			editHeading();
  3018 		}
  3019 	}	
  3020 }
  3021 
  3022 void Main::editNewBranchAbove()
  3023 {
  3024 	MapEditor *me=currentMapEditor();
  3025 	if (!lineedit->isVisible() && me)
  3026 	{
  3027 		BranchObj *bo=(BranchObj*)me->getSelection();
  3028 		BranchObj *newbo=me->addNewBranch (-1);
  3029 
  3030 		if (newbo) 
  3031 			me->select (newbo->getSelectString());
  3032 		else
  3033 			return;
  3034 
  3035 		if (actionSettingsAutoEditNewBranch->isOn())
  3036 		{
  3037 			if (!actionSettingsAutoSelectNewBranch->isOn())
  3038 				prevSelection=bo->getSelectString();
  3039 			editHeading();
  3040 		}
  3041 	}	
  3042 }
  3043 
  3044 void Main::editNewBranchBelow()
  3045 {
  3046 	MapEditor *me=currentMapEditor();
  3047 	if (!lineedit->isVisible() && me)
  3048 	{
  3049 		BranchObj *bo=(BranchObj*)me->getSelection();
  3050 		BranchObj *newbo=me->addNewBranch (1);
  3051 
  3052 		if (newbo) 
  3053 			me->select (newbo->getSelectString());
  3054 		else
  3055 			return;
  3056 
  3057 		if (actionSettingsAutoEditNewBranch->isOn())
  3058 		{
  3059 			if (!actionSettingsAutoSelectNewBranch->isOn())
  3060 				prevSelection=bo->getSelectString();
  3061 			editHeading();
  3062 		}
  3063 	}	
  3064 }
  3065 
  3066 void Main::editImportAdd()
  3067 {
  3068 	fileLoad (ImportAdd);
  3069 }
  3070 
  3071 void Main::editImportReplace()
  3072 {
  3073 	fileLoad (ImportReplace);
  3074 }
  3075 
  3076 void Main::editSaveBranch()
  3077 {
  3078 	fileSaveAs (PartOfMap);
  3079 }
  3080 
  3081 void Main::editDeleteKeepChilds()
  3082 {
  3083 	if (currentMapEditor())
  3084 		currentMapEditor()->deleteKeepChilds();
  3085 }
  3086 
  3087 void Main::editDeleteChilds()
  3088 {
  3089 	if (currentMapEditor())
  3090 		currentMapEditor()->deleteChilds();
  3091 }
  3092 
  3093 void Main::editDeleteSelection()
  3094 {
  3095 	if (currentMapEditor() && actionSettingsUseDelKey->isOn())
  3096 		currentMapEditor()->deleteSelection();
  3097 }
  3098 
  3099 void Main::editUpperBranch()
  3100 {
  3101 	if (currentMapEditor())
  3102 		currentMapEditor()->selectUpperBranch();
  3103 }
  3104 
  3105 void Main::editLowerBranch()
  3106 {
  3107 	if (currentMapEditor())
  3108 		currentMapEditor()->selectLowerBranch();
  3109 }
  3110 
  3111 void Main::editLeftBranch()
  3112 {
  3113 	if (currentMapEditor())
  3114 		currentMapEditor()->selectLeftBranch();
  3115 }
  3116 
  3117 void Main::editRightBranch()
  3118 {
  3119 	if (currentMapEditor())
  3120 		currentMapEditor()->selectRightBranch();
  3121 }
  3122 
  3123 void Main::editFirstBranch()
  3124 {
  3125 	if (currentMapEditor())
  3126 		currentMapEditor()->selectFirstBranch();
  3127 }
  3128 
  3129 void Main::editLastBranch()
  3130 {
  3131 	if (currentMapEditor())
  3132 		currentMapEditor()->selectLastBranch();
  3133 }
  3134 
  3135 void Main::editLoadImage()
  3136 {
  3137 	if (currentMapEditor())
  3138 		currentMapEditor()->loadFloatImage();
  3139 }
  3140 
  3141 void Main::editSaveImage()
  3142 {
  3143 	if (currentMapEditor())
  3144 		currentMapEditor()->saveFloatImage();
  3145 }
  3146 
  3147 void Main::editFollowXLink(QAction *a)
  3148 {
  3149 
  3150 	if (currentMapEditor())
  3151 		currentMapEditor()->followXLink(branchXLinksContextMenuFollow->actions().indexOf(a));
  3152 }
  3153 
  3154 void Main::editEditXLink(QAction *a)
  3155 {
  3156 	if (currentMapEditor())
  3157 		currentMapEditor()->editXLink(branchXLinksContextMenuEdit->actions().indexOf(a));
  3158 }
  3159 
  3160 void Main::formatSelectColor()
  3161 {
  3162 	if (currentMapEditor())
  3163 	{
  3164 		QColor col = QColorDialog::getColor((currentColor ), this );
  3165 		if ( !col.isValid() ) return;
  3166 		colorChanged( col );
  3167 	}	
  3168 }
  3169 
  3170 void Main::formatPickColor()
  3171 {
  3172 	if (currentMapEditor())
  3173 		colorChanged( currentMapEditor()->getCurrentHeadingColor() );
  3174 }
  3175 
  3176 void Main::colorChanged(QColor c)
  3177 {
  3178     QPixmap pix( 16, 16 );
  3179     pix.fill( c );
  3180     actionFormatColor->setIconSet( pix );
  3181 	currentColor=c;
  3182 }
  3183 
  3184 void Main::formatColorBranch()
  3185 {
  3186 	if (currentMapEditor())
  3187 		currentMapEditor()->colorBranch(currentColor);
  3188 }
  3189 
  3190 void Main::formatColorSubtree()
  3191 {
  3192 	if (currentMapEditor())
  3193 		currentMapEditor()->colorSubtree (currentColor);
  3194 }
  3195 
  3196 void Main::formatLinkStyleLine()
  3197 {
  3198 	if (currentMapEditor())
  3199     {
  3200 		currentMapEditor()->setMapLinkStyle("StyleLine");
  3201         actionFormatLinkStyleLine->setOn(true);
  3202     }
  3203 }
  3204 
  3205 void Main::formatLinkStyleParabel()
  3206 {
  3207 	if (currentMapEditor())
  3208     {
  3209 		currentMapEditor()->setMapLinkStyle("StyleParabel");
  3210         actionFormatLinkStyleParabel->setOn(true);
  3211     }
  3212 }
  3213 
  3214 void Main::formatLinkStylePolyLine()
  3215 {
  3216 	if (currentMapEditor())
  3217     {
  3218 		currentMapEditor()->setMapLinkStyle("StylePolyLine");
  3219         actionFormatLinkStylePolyLine->setOn(true);
  3220     }
  3221 }
  3222 
  3223 void Main::formatLinkStylePolyParabel()
  3224 {
  3225 	if (currentMapEditor())
  3226     {
  3227 		currentMapEditor()->setMapLinkStyle("StylePolyParabel");
  3228         actionFormatLinkStylePolyParabel->setOn(true);
  3229     }
  3230 }
  3231 
  3232 void Main::formatSelectBackColor()
  3233 {
  3234 	if (currentMapEditor())
  3235 		currentMapEditor()->selectMapBackgroundColor();
  3236 }
  3237 
  3238 void Main::formatSelectBackImage()
  3239 {
  3240 	if (currentMapEditor())
  3241 		currentMapEditor()->selectMapBackgroundImage();
  3242 }
  3243 
  3244 void Main::formatSelectLinkColor()
  3245 {
  3246 	if (currentMapEditor())
  3247 		currentMapEditor()->selectMapLinkColor();
  3248 }
  3249 
  3250 void Main::formatSelectSelectionColor()
  3251 {
  3252 	if (currentMapEditor())
  3253 		currentMapEditor()->selectMapSelectionColor();
  3254 }
  3255 
  3256 void Main::formatToggleLinkColorHint()
  3257 {
  3258 	currentMapEditor()->toggleMapLinkColorHint();
  3259 }
  3260 
  3261 
  3262 void Main::formatHideLinkUnselected()	//FIXME get rid of this with imagepropertydialog
  3263 {
  3264 	if (currentMapEditor())
  3265 		currentMapEditor()->setHideLinkUnselected(actionFormatHideLinkUnselected->isOn());
  3266 }
  3267 
  3268 void Main::viewZoomReset()
  3269 {
  3270 	if (currentMapEditor())
  3271 	{
  3272 		QMatrix m;
  3273 		m.reset();
  3274 		currentMapEditor()->setMatrix( m );
  3275 	}	
  3276 }
  3277 
  3278 void Main::viewZoomIn()
  3279 {
  3280 	if (currentMapEditor())
  3281 	{
  3282 		QMatrix m = currentMapEditor()->matrix();
  3283 		m.scale( 1.25, 1.25 );
  3284 		currentMapEditor()->setMatrix( m );
  3285 	}	
  3286 }
  3287 
  3288 void Main::viewZoomOut()
  3289 {
  3290 	if (currentMapEditor())
  3291 	{
  3292 		QMatrix m = currentMapEditor()->matrix();
  3293 		m.scale( 0.8, 0.8 );
  3294 		currentMapEditor()->setMatrix( m );
  3295 	}	
  3296 }
  3297 
  3298 void Main::viewCenter()
  3299 {
  3300 	MapEditor *me=currentMapEditor();
  3301 	if (me)
  3302 	{
  3303 		me->ensureSelectionVisible();
  3304 	}	
  3305 }
  3306 
  3307 void Main::networkStartServer()
  3308 {
  3309 	MapEditor *me=currentMapEditor();
  3310 	if (me) me->newServer();
  3311 }
  3312 
  3313 void Main::networkConnect()
  3314 {
  3315 	MapEditor *me=currentMapEditor();
  3316 	if (me) me->connectToServer();
  3317 }
  3318 
  3319 bool Main::settingsPDF()
  3320 {
  3321 	// Default browser is set in constructor
  3322 	bool ok;
  3323 	QString text = QInputDialog::getText(
  3324 		"VYM", tr("Set application to open PDF files")+":", QLineEdit::Normal,
  3325 		settings.value("/mainwindow/readerPDF").toString(), &ok, this );
  3326 	if (ok)
  3327 		settings.setValue ("/mainwindow/readerPDF",text);
  3328 	return ok;
  3329 }
  3330 
  3331 
  3332 bool Main::settingsURL()
  3333 {
  3334 	// Default browser is set in constructor
  3335 	bool ok;
  3336 	QString text = QInputDialog::getText(
  3337 		"VYM", tr("Set application to open an URL")+":", QLineEdit::Normal,
  3338 		settings.value("/mainwindow/readerURL").toString()
  3339 		, &ok, this );
  3340 	if (ok)
  3341 		settings.setValue ("/mainwindow/readerURL",text);
  3342 	return ok;
  3343 }
  3344 
  3345 void Main::settingsMacroDir()
  3346 {
  3347 	QDir defdir(vymBaseDir.path() + "/macros");
  3348 	if (!defdir.exists())
  3349 		defdir=vymBaseDir;
  3350 	QDir dir=QFileDialog::getExistingDirectory (
  3351 		this,
  3352 		tr ("Directory with vym macros:"), 
  3353 		settings.value ("/macros/macroDir",defdir.path()).toString()
  3354 	);
  3355 	if (dir.exists())
  3356 		settings.setValue ("/macros/macroDir",dir.absolutePath());
  3357 }
  3358 
  3359 void Main::settingsUndoLevels()
  3360 {
  3361 	bool ok;
  3362 	int i = QInputDialog::getInteger(
  3363 		this, 
  3364 		tr("QInputDialog::getInteger()"),
  3365 	    tr("Number of undo/redo levels:"), settings.value("/mapeditor/stepsTotal").toInt(), 0, 1000, 1, &ok);
  3366 	if (ok)
  3367 	{
  3368 		settings.setValue ("/mapeditor/stepsTotal",i);
  3369 		QMessageBox::information( this, tr( "VYM -Information:" ),
  3370 		   tr("Settings have been changed. The next map opened will have \"%1\" undo/redo levels").arg(i)); 
  3371    }	
  3372 }
  3373 
  3374 void Main::settingsAutosaveToggle()
  3375 {
  3376 	settings.setValue ("/mapeditor/autosave/use",actionSettingsAutosaveToggle->isOn() );
  3377 }
  3378 
  3379 void Main::settingsAutosaveTime()
  3380 {
  3381 	bool ok;
  3382 	int i = QInputDialog::getInteger(
  3383 		this, 
  3384 		tr("QInputDialog::getInteger()"),
  3385 	    tr("Number of seconds before autosave:"), settings.value("/mapeditor/autosave/ms").toInt() / 1000, 10, 10000, 1, &ok);
  3386 	if (ok)
  3387 		settings.setValue ("/mapeditor/autosave/ms",i * 1000);
  3388 }
  3389 
  3390 void Main::settingsWriteBackupFileToggle()
  3391 {
  3392 	settings.setValue ("/mapeditor/writeBackupFile",actionSettingsWriteBackupFile->isOn() );
  3393 }
  3394 
  3395 void Main::settingsToggleDelKey()
  3396 {
  3397 	if (actionSettingsUseDelKey->isOn())
  3398 	{
  3399 		actionEditDelete->setAccel (QKeySequence (Qt::Key_Delete));
  3400 	} else
  3401 	{
  3402 		actionEditDelete->setAccel (QKeySequence (""));
  3403 	}
  3404 }
  3405 
  3406 void Main::windowToggleNoteEditor()
  3407 {
  3408 	if (textEditor->isVisible() )
  3409 		windowHideNoteEditor();
  3410 	else
  3411 		windowShowNoteEditor();
  3412 }
  3413 
  3414 void Main::windowToggleHistory()
  3415 {
  3416 	if (historyWindow->isVisible())
  3417 		historyWindow->hide();
  3418 	else	
  3419 		historyWindow->show();
  3420 
  3421 }
  3422 
  3423 void Main::windowToggleProperty()
  3424 {
  3425 	if (branchPropertyWindow->isVisible())
  3426 		branchPropertyWindow->hide();
  3427 	else	
  3428 		branchPropertyWindow->show();
  3429 
  3430 	if(currentMapEditor())
  3431 	{
  3432 		BranchObj *bo=currentMapEditor()->getSelectedBranch();
  3433 		if (bo) 
  3434 		{
  3435 			branchPropertyWindow->setMapEditor(currentMapEditor());
  3436 			branchPropertyWindow->setBranch(bo);
  3437 			return;
  3438 		}
  3439 		
  3440 	}	
  3441 	branchPropertyWindow->setBranch(NULL);
  3442 }
  3443 
  3444 void Main::windowToggleAntiAlias()
  3445 {
  3446 	bool b=actionViewToggleAntiAlias->isOn();
  3447 	MapEditor *me;
  3448 	for (int i=0;i<tabWidget->count();i++)
  3449 	{
  3450 		
  3451 		me=(MapEditor*)tabWidget->page(i);
  3452 		me->setAntiAlias(b);
  3453 	}	
  3454 
  3455 }
  3456 
  3457 void Main::windowToggleSmoothPixmap()
  3458 {
  3459 	bool b=actionViewToggleSmoothPixmapTransform->isOn();
  3460 	MapEditor *me;
  3461 	for (int i=0;i<tabWidget->count();i++)
  3462 	{
  3463 		
  3464 		me=(MapEditor*)tabWidget->page(i);
  3465 		me->setSmoothPixmap(b);
  3466 	}	
  3467 }
  3468 
  3469 void Main::updateHistory(SimpleSettings &undoSet)
  3470 {
  3471 	historyWindow->update (undoSet);
  3472 }
  3473 
  3474 void Main::updateNoteFlag()
  3475 {
  3476 	if (currentMapEditor())
  3477 		currentMapEditor()->updateNoteFlag();
  3478 }
  3479 
  3480 void Main::updateSatellites(MapEditor *me)
  3481 {
  3482 	branchPropertyWindow->setMapEditor (me);
  3483 }
  3484 
  3485 void Main::updateActions()
  3486 {
  3487 	MapEditor *me=currentMapEditor();
  3488 	if (!me) return;
  3489 
  3490 	historyWindow->setCaption (vymName + " - " +tr("History for %1","Window Caption").arg(currentMapEditor()->getFileName()));
  3491 
  3492 	// updateActions is also called when NoteEditor is closed
  3493 	actionViewToggleNoteEditor->setOn (textEditor->isVisible());
  3494 	actionViewToggleHistoryWindow->setOn (historyWindow->isVisible());
  3495 	actionViewTogglePropertyWindow->setOn (branchPropertyWindow->isVisible());
  3496 
  3497 	if (me->getMapLinkColorHint()==LinkableMapObj::HeadingColor) 
  3498 		actionFormatLinkColorHint->setOn(true);
  3499 	else	
  3500 		actionFormatLinkColorHint->setOn(false);
  3501 
  3502 	switch (me->getMapLinkStyle())
  3503 	{
  3504 		case LinkableMapObj::Line: 
  3505 			actionFormatLinkStyleLine->setOn(true);
  3506 			break;
  3507 		case LinkableMapObj::Parabel:
  3508 			actionFormatLinkStyleParabel->setOn(true);
  3509 			break;
  3510 		case LinkableMapObj::PolyLine:	
  3511 			actionFormatLinkStylePolyLine->setOn(true);
  3512 			break;
  3513 		case LinkableMapObj::PolyParabel:	
  3514 			actionFormatLinkStylePolyParabel->setOn(true);
  3515 			break;
  3516 		default:
  3517 			break;
  3518 	}	
  3519 
  3520 	// Update colors
  3521 	QPixmap pix( 16, 16 );
  3522     pix.fill( me->getMapBackgroundColor() );
  3523     actionFormatBackColor->setIconSet( pix );
  3524     pix.fill( me->getSelectionColor() );
  3525     actionFormatSelectionColor->setIconSet( pix );
  3526     pix.fill( me->getMapDefLinkColor() );
  3527     actionFormatLinkColor->setIconSet( pix );
  3528 
  3529 
  3530 	actionFileSave->setEnabled( me->hasChanged() );
  3531 	if (me->isUndoAvailable())
  3532 		actionEditUndo->setEnabled( true);
  3533 	else	
  3534 		actionEditUndo->setEnabled( false);
  3535 
  3536 	if (me->isRedoAvailable())
  3537 		actionEditRedo->setEnabled( true);
  3538 	else	
  3539 		actionEditRedo->setEnabled( false);
  3540 
  3541 	LinkableMapObj *selection=me->getSelection();
  3542 	if (selection)
  3543 	{
  3544 		if ( (typeid(*selection) == typeid(BranchObj)) || 
  3545 			(typeid(*selection) == typeid(MapCenterObj))  )
  3546 		{
  3547 			BranchObj *bo=(BranchObj*)selection;
  3548 			// Take care of links
  3549 			if (bo->countXLinks()==0)
  3550 			{
  3551 				branchXLinksContextMenuEdit->clear();
  3552 				branchXLinksContextMenuFollow->clear();
  3553 			} else
  3554 			{
  3555 				BranchObj *bot;
  3556 				QString s;
  3557 				branchXLinksContextMenuEdit->clear();
  3558 				branchXLinksContextMenuFollow->clear();
  3559 				for (int i=0; i<=bo->countXLinks();i++)
  3560 				{
  3561 					bot=bo->XLinkTargetAt(i);
  3562 					if (bot)
  3563 					{
  3564 						s=bot->getHeading();
  3565 						if (s.length()>xLinkMenuWidth)
  3566 							s=s.left(xLinkMenuWidth)+"...";
  3567 						branchXLinksContextMenuFollow->addAction (s);
  3568 						branchXLinksContextMenuEdit->addAction (s);
  3569 					}	
  3570 				}
  3571 			}
  3572 
  3573 			standardFlagsDefault->setEnabled (true);
  3574 
  3575 			actionEditToggleScroll->setEnabled (true);
  3576 			if ( bo->isScrolled() )
  3577 				actionEditToggleScroll->setOn(true);
  3578 			else	
  3579 				actionEditToggleScroll->setOn(false);
  3580 
  3581 			if ( bo->getURL().isEmpty() )
  3582 			{
  3583 				actionEditOpenURL->setEnabled (false);
  3584 				actionEditOpenURLTab->setEnabled (false);
  3585 			}	
  3586 			else	
  3587 			{
  3588 				actionEditOpenURL->setEnabled (true);
  3589 				actionEditOpenURLTab->setEnabled (true);
  3590 			}
  3591 			if ( bo->getVymLink().isEmpty() )
  3592 			{
  3593 				actionEditOpenVymLink->setEnabled (false);
  3594 				actionEditDeleteVymLink->setEnabled (false);
  3595 			} else	
  3596 			{
  3597 				actionEditOpenVymLink->setEnabled (true);
  3598 				actionEditDeleteVymLink->setEnabled (true);
  3599 			}	
  3600 
  3601 			if (bo->canMoveBranchUp()) 
  3602 				actionEditMoveUp->setEnabled (true);
  3603 			else	
  3604 				actionEditMoveUp->setEnabled (false);
  3605 			if (bo->canMoveBranchDown()) 
  3606 				actionEditMoveDown->setEnabled (true);
  3607 			else	
  3608 				actionEditMoveDown->setEnabled (false);
  3609 
  3610 
  3611 			actionEditToggleHideExport->setEnabled (true);	
  3612 			actionEditToggleHideExport->setOn (bo->hideInExport() );	
  3613 
  3614 			actionEditCopy->setEnabled (true);	
  3615 			actionEditCut->setEnabled (true);	
  3616 			if (!clipboardEmpty)
  3617 				actionEditPaste->setEnabled (true);	
  3618 			else	
  3619 				actionEditPaste->setEnabled (false);	
  3620 			for (int i=0; i<actionListBranches.size(); ++i)	
  3621 				actionListBranches.at(i)->setEnabled(true);
  3622 			actionEditDelete->setEnabled (true);
  3623 			actionFormatHideLinkUnselected->setOn
  3624 				(selection->getHideLinkUnselected());
  3625 		}
  3626 		if ( (typeid(*selection) == typeid(FloatImageObj)) )
  3627 		{
  3628 			FloatObj *fo=(FloatImageObj*)selection;
  3629 
  3630 			actionEditOpenURL->setEnabled (false);
  3631 			actionEditOpenVymLink->setEnabled (false);
  3632 			actionEditDeleteVymLink->setEnabled (false);	
  3633 			actionEditToggleHideExport->setEnabled (true);	
  3634 			actionEditToggleHideExport->setOn (fo->hideInExport() );	
  3635 
  3636 
  3637 			actionEditCopy->setEnabled (true);
  3638 			actionEditCut->setEnabled (true);	
  3639 			actionEditPaste->setEnabled (false);
  3640 			for (int i=0; i<actionListBranches.size(); ++i)	
  3641 				actionListBranches.at(i)->setEnabled(false);
  3642 			actionEditDelete->setEnabled (true);
  3643 			actionFormatHideLinkUnselected->setOn
  3644 				( selection->getHideLinkUnselected());
  3645 			actionEditMoveUp->setEnabled (false);
  3646 			actionEditMoveDown->setEnabled (false);
  3647 		}
  3648 
  3649 	} else
  3650 	{
  3651 		actionEditCopy->setEnabled (false);	
  3652 		actionEditCut->setEnabled (false);	
  3653 		actionEditPaste->setEnabled (false);	
  3654 		for (int i=0; i<actionListBranches.size(); ++i)	
  3655 			actionListBranches.at(i)->setEnabled(false);
  3656 
  3657 		actionEditToggleScroll->setEnabled (false);
  3658 		actionEditOpenURL->setEnabled (false);
  3659 		actionEditOpenVymLink->setEnabled (false);
  3660 		actionEditDeleteVymLink->setEnabled (false);	
  3661 		actionEditHeading2URL->setEnabled (false);	
  3662 		actionEditDelete->setEnabled (false);
  3663 		actionEditMoveUp->setEnabled (false);
  3664 		actionEditMoveDown->setEnabled (false);
  3665 		actionEditToggleHideExport->setEnabled (false);	
  3666 	}	
  3667 }
  3668 
  3669 Main::ModMode Main::getModMode()
  3670 {
  3671 	if (actionModModeColor->isOn()) return ModModeColor;
  3672 	if (actionModModeCopy->isOn()) return ModModeCopy;
  3673 	if (actionModModeXLink->isOn()) return ModModeXLink;
  3674 	return ModModeNone;
  3675 }
  3676 
  3677 bool Main::autoEditNewBranch()
  3678 {
  3679 	return actionSettingsAutoEditNewBranch->isOn();
  3680 }
  3681 
  3682 bool Main::autoSelectNewBranch()
  3683 {
  3684 	return actionSettingsAutoSelectNewBranch->isOn();
  3685 }
  3686 
  3687 bool Main::useFlagGroups()
  3688 {
  3689 	return actionSettingsUseFlagGroups->isOn();
  3690 }
  3691 
  3692 void Main::windowShowNoteEditor()
  3693 {
  3694 	textEditor->setShowWithMain(true);
  3695 	textEditor->show();
  3696 	actionViewToggleNoteEditor->setOn (true);
  3697 }
  3698 
  3699 void Main::windowHideNoteEditor()
  3700 {
  3701 	textEditor->setShowWithMain(false);
  3702 	textEditor->hide();
  3703 	actionViewToggleNoteEditor->setOn (false);
  3704 }
  3705 
  3706 void Main::setScript (const QString &script)
  3707 {
  3708 	scriptEditor->setScript (script);
  3709 }
  3710 
  3711 void Main::runScript (const QString &script)
  3712 {
  3713 	if (currentMapEditor())
  3714 		currentMapEditor()->runScript (script);
  3715 }
  3716 
  3717 void Main::runScriptEverywhere (const QString &script)
  3718 {
  3719 	MapEditor *me;
  3720 	for (int i=0;i<=tabWidget->count() -1;i++)
  3721 	{
  3722 		me=(MapEditor*)tabWidget->page(i);
  3723 		if (me) me->runScript (script);
  3724 	}	
  3725 }
  3726 
  3727 void Main::windowNextEditor()
  3728 {
  3729 	if (tabWidget->currentPageIndex() < tabWidget->count())
  3730 		tabWidget->setCurrentPage (tabWidget->currentPageIndex() +1);
  3731 }
  3732 
  3733 void Main::windowPreviousEditor()
  3734 {
  3735 	if (tabWidget->currentPageIndex() >0)
  3736 		tabWidget->setCurrentPage (tabWidget->currentPageIndex() -1);
  3737 }
  3738 
  3739 void Main::standardFlagChanged()
  3740 {
  3741 	if (currentMapEditor())
  3742 		currentMapEditor()->toggleStandardFlag(sender()->name());
  3743 }
  3744 
  3745 void Main::testFunction1()
  3746 {
  3747 	if (!currentMapEditor()) return;
  3748 	//currentMapEditor()->testFunction1();
  3749 	editAttribute();
  3750 }
  3751 
  3752 void Main::testFunction2()
  3753 {
  3754 	if (!currentMapEditor()) return;
  3755 	currentMapEditor()->testFunction2();
  3756 }
  3757 
  3758 void Main::testCommand()
  3759 {
  3760 	if (!currentMapEditor()) return;
  3761 	scriptEditor->show();
  3762 	/*
  3763 	bool ok;
  3764 	QString com = QInputDialog::getText(
  3765 			vymName, "Enter Command:", QLineEdit::Normal,"command", &ok, this );
  3766 	if (ok) currentMapEditor()->parseAtom(com);
  3767 	*/
  3768 }
  3769 
  3770 void Main::helpDoc()
  3771 {
  3772 	QString locale = QLocale::system().name();
  3773 	QString docname;
  3774 	if (locale.left(2)=="es")
  3775 		docname="vym_es.pdf";
  3776 	else	
  3777 		docname="vym.pdf";
  3778 
  3779 	QStringList searchList;
  3780 	QDir docdir;
  3781 	#if defined(Q_OS_MACX)
  3782 		searchList << "./vym.app/Contents/Resources/doc";
  3783     #elif defined(Q_OS_WIN32)
  3784         searchList << vymInstallDir.path() + "/share/doc/packages/vym";
  3785 	#else
  3786 		#if defined(VYM_DOCDIR)
  3787 			searchList << VYM_DOCDIR;
  3788 		#endif
  3789 		// default path in SUSE LINUX
  3790 		searchList << "/usr/share/doc/packages/vym";
  3791 	#endif
  3792 
  3793 	searchList << "doc";	// relative path for easy testing in tarball
  3794 	searchList << "doc/tex";	// Easy testing working on vym.tex
  3795 	searchList << "/usr/share/doc/vym";	// Debian
  3796 	searchList << "/usr/share/doc/packages";// Knoppix
  3797 
  3798 	bool found=false;
  3799 	QFile docfile;
  3800 	for (int i=0; i<searchList.count(); ++i)
  3801 	{
  3802 		docfile.setFileName(searchList.at(i)+"/"+docname);
  3803 		if (docfile.exists())
  3804 		{
  3805 			found=true;
  3806 			break;
  3807 		}	
  3808 	}
  3809 
  3810 	if (!found)
  3811 	{
  3812 		QMessageBox::critical(0, 
  3813 			tr("Critcal error"),
  3814 			tr("Couldn't find the documentation %1 in:\n%2").arg(searchList.join("\n")));
  3815 		return;
  3816 	}	
  3817 
  3818 	QStringList args;
  3819 	Process *pdfProc = new Process();
  3820     args << QDir::toNativeSeparators(docfile.fileName());
  3821 
  3822 	pdfProc->start( settings.value("/mainwindow/readerPDF").toString(),args);
  3823 	if ( !pdfProc->waitForStarted() ) 
  3824 	{
  3825 		// error handling
  3826 		QMessageBox::warning(0, 
  3827 			tr("Warning"),
  3828 			tr("Couldn't find a viewer to open %1.\n").arg(docfile.fileName())+
  3829 			tr("Please use Settings->")+tr("Set application to open PDF files"));
  3830 		settingsPDF();	
  3831 		return;
  3832 	}
  3833 }
  3834 
  3835 
  3836 void Main::helpDemo()
  3837 {
  3838 	QStringList filters;
  3839 	filters <<"VYM example map (*.vym)";
  3840 	QFileDialog *fd=new QFileDialog( this);
  3841 	#if defined(Q_OS_MACX)
  3842 		fd->setDir (QDir("./vym.app/Contents/Resources/demos"));
  3843 	#else
  3844 		// default path in SUSE LINUX
  3845 		fd->setDir (QDir(vymBaseDir.path()+"/demos"));
  3846 	#endif
  3847 
  3848 	fd->setFileMode (QFileDialog::ExistingFiles);
  3849 	fd->setFilters (filters);
  3850 	fd->setCaption(vymName+ " - " +tr("Load vym example map"));
  3851 	fd->show();
  3852 
  3853 	QString fn;
  3854 	if ( fd->exec() == QDialog::Accepted )
  3855 	{
  3856 		lastFileDir=fd->directory().path();
  3857 	    QStringList flist = fd->selectedFiles();
  3858 		QStringList::Iterator it = flist.begin();
  3859 		while( it != flist.end() ) 
  3860 		{
  3861 			fn = *it;
  3862 			fileLoad(*it, NewMap);				   
  3863 			++it;
  3864 		}
  3865 	}
  3866 	delete (fd);
  3867 }
  3868 
  3869 
  3870 void Main::helpAbout()
  3871 {
  3872 	AboutDialog ad;
  3873 	ad.setName ("aboutwindow");
  3874 	ad.setMinimumSize(500,500);
  3875 	ad.resize (QSize (500,500));
  3876 	ad.exec();
  3877 }
  3878 
  3879 void Main::helpAboutQT()
  3880 {
  3881 	QMessageBox::aboutQt( this, "Qt Application Example" );
  3882 }
  3883 
  3884 void Main::callMacro ()
  3885 {
  3886     QAction *action = qobject_cast<QAction *>(sender());
  3887 	int i=-1;
  3888     if (action)
  3889 	{
  3890         i=action->data().toInt();
  3891 		QString mDir (settings.value ("macros/macroDir").toString() );
  3892 
  3893 		QString fn=mDir + QString("/macro-%1.vys").arg(i+1);
  3894 		QFile f (fn);
  3895 		if ( !f.open( QIODevice::ReadOnly ) )
  3896 		{
  3897 			QMessageBox::warning(0, 
  3898 				tr("Warning"),
  3899 				tr("Couldn't find a macro at  %1.\n").arg(fn)+
  3900 				tr("Please use Settings->")+tr("Set directory for vym macros"));
  3901 			return;
  3902 		}	
  3903 
  3904 		QTextStream ts( &f );
  3905 		QString m= ts.read();
  3906 
  3907 		if (! m.isEmpty())
  3908 		{
  3909 			//cout <<"Main::callMacro  m="<<qPrintable (m)<<endl;
  3910 			currentMapEditor()->runScript (m);
  3911 		}	
  3912 	}	
  3913 }
  3914 
  3915 
  3916 
  3917 //////////////////////////////////
  3918 /*
  3919 @@ -2544,18 +2576,27 @@
  3920  				// Try to open new tab in existing konqueror started previously by vym
  3921  				p=new QProcess (this);
  3922  				args.clear();
  3923 -				args<< QString("konqueror-%1").arg(procBrowser->pid())<< 
  3924 -					"konqueror-mainwindow#1"<< 
  3925 -					"newTab" << 
  3926 +#if defined(Q_OS_WIN32)
  3927 +                // In Win32, pid is not a longlong, but a pointer to a _PROCESS_INFORMATION structure.
  3928 +                // Redundant change in Win32, as there's no konqueror, but I wanted to follow the original logic.
  3929 +				args<< QString("konqueror-%1").arg(procBrowser->pid()->dwProcessId)<<
  3930 +					"konqueror-mainwindow#1"<<
  3931 +					"newTab" <<
  3932  					urls.at(i);
  3933 +#else
  3934 +				args<< QString("konqueror-%1").arg(procBrowser->pid())<<
  3935 +					"konqueror-mainwindow#1"<<
  3936 +					"newTab" <<
  3937 +					urls.at(i);
  3938 +#endif
  3939  				p->start ("dcop",args);
  3940  				if ( !p->waitForStarted() ) success=false;
  3941  			}
  3942 */