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