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