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