mainwindow.cpp
author jhilmer
Mon, 01 Aug 2005 20:45:55 +0000
changeset 145 0683c8e87fac
parent 143 56c57552f1d2
child 148 401f76b830d1
permissions -rw-r--r--
Adding of subscript and superscript + bugfix problems with closing of note editor when text was modified.
     1 #include "mainwindow.h"
     2 
     3 #include <qstatusbar.h>
     4 #include <qmessagebox.h>
     5 #include <qmenubar.h>
     6 #include <qapplication.h>
     7 #include <qpainter.h>
     8 #include <qprinter.h>
     9 #include <qfile.h>
    10 #include <qfiledialog.h>
    11 #include <qcolor.h>
    12 #include <qcolordialog.h>
    13 #include <qbitmap.h>
    14 #include <qinputdialog.h>
    15 #include <qdatetime.h>			// for random seed
    16 
    17 
    18 #include <iostream>
    19 #include <cstdlib>
    20 #include <typeinfo>
    21 
    22 #include "version.h"
    23 
    24 #include "icons/filenew.xpm"
    25 #include "icons/fileopen.xpm"
    26 #include "icons/filesave.xpm"
    27 #include "icons/fileprint.xpm"
    28 #include "icons/editundo.xpm"
    29 //#include "icons/editredo.xpm"	// TODO
    30 #include "icons/editcopy.xpm"
    31 #include "icons/editcut.xpm"
    32 #include "icons/editpaste.xpm"
    33 #include "icons/editmoveup.xpm"
    34 #include "icons/editmovedown.xpm"
    35 #include "icons/formatcoloritem.xpm"
    36 #include "icons/formatcolorbranch.xpm"
    37 #include "icons/formatcolorpicker.xpm"
    38 #include "icons/viewzoomreset.xpm"
    39 #include "icons/viewzoomin.xpm"
    40 #include "icons/viewzoomout.xpm"
    41 #include "icons/modecolor.xpm"
    42 #include "icons/modelink.xpm"
    43 #include "icons/modecopy.xpm"
    44 #include "icons/vym-48x48.xpm"
    45 #include "icons/flag-note.xpm"
    46 #include "icons/flag-url.xpm"
    47 #include "icons/flag-vymlink.xpm"	
    48 #include "icons/flag-scrolled-right.xpm"
    49 
    50 #include "flagrowobj.h"
    51 #include "texteditor.h"
    52 #include "mapeditor.h"
    53 #include "exporthtmldialog.h"
    54 #include "exportxhtmldialog.h"
    55 #include "showtextdialog.h"
    56 #include "process.h"
    57 #include "settings.h"
    58 #include "options.h"
    59 
    60 extern TextEditor *textEditor;
    61 extern Main *mainWindow;
    62 extern int statusbarTime;
    63 extern MapEditor *clipboardME;
    64 extern FlagRowObj* standardFlagsDefault;
    65 
    66 extern QPtrList <QAction> actionListBranches;
    67 
    68 extern QAction* actionFileSave;
    69 extern QAction* actionFilePrint;
    70 extern QAction* actionEditUndo;
    71 extern QAction *actionEditCopy;
    72 extern QAction *actionEditCut;
    73 extern QAction *actionEditPaste;
    74 extern QAction *actionEditMoveUp;
    75 extern QAction *actionEditMoveDown;
    76 extern QAction *actionEditToggleScroll;
    77 extern QAction* actionEditOpenURL;
    78 extern QAction* actionEditURL;
    79 extern QAction* actionEditHeading2URL;
    80 extern QAction* actionEditBugzilla2URL;
    81 extern QAction *actionEditOpenVymLink;
    82 extern QAction *actionEditVymLink;
    83 extern QAction *actionEditDeleteVymLink;
    84 extern QAction *actionEditMapInfo;
    85 extern QAction *actionEditHeading;
    86 extern QAction *actionEditDelete;
    87 extern QAction *actionEditAddBranch;
    88 extern QAction *actionEditAddBranchHere;
    89 extern QAction *actionEditAddBranchAbove;
    90 extern QAction *actionEditAddBranchBelow;
    91 extern QAction *actionEditRemoveBranchHere;
    92 extern QAction *actionEditRemoveChilds;
    93 extern QAction *actionEditImportAdd;
    94 extern QAction *actionEditImportReplace;
    95 extern QAction *actionEditSaveBranch;
    96 extern QAction *actionEditSelectFirst;
    97 extern QAction *actionEditSelectLast;
    98 extern QAction *actionEditLoadImage;
    99 extern QAction *actionEditToggleFloatExport;
   100 
   101 extern QAction* actionFormatColor;
   102 extern QAction* actionFormatPickColor;
   103 extern QAction* actionFormatColorBranch;
   104 extern QAction* actionFormatColorSubtree;
   105 extern QAction* actionFormatLinkColorHint;
   106 extern QAction* actionFormatBackColor;
   107 extern QAction* actionFormatLinkColor;
   108 
   109 extern QActionGroup* actionGroupModModes;
   110 extern QAction* actionModModeColor;
   111 extern QAction* actionModModeLink;
   112 extern QAction* actionModModeCopy;
   113 
   114 extern QActionGroup *actionGroupFormatFrameTypes;
   115 extern QAction *actionFormatFrameNone;
   116 extern QAction *actionFormatFrameRectangle;
   117 
   118 extern QActionGroup *actionGroupFormatLinkStyles;
   119 extern QAction *actionFormatLinkStyleLine;
   120 extern QAction *actionFormatLinkStyleParabel;
   121 extern QAction *actionFormatLinkStylePolyLine;
   122 extern QAction *actionFormatLinkStylePolyParabel;
   123 
   124 extern QAction *actionViewToggleNoteEditor;
   125 
   126 extern QAction* actionSettingsAutoedit;
   127 extern QAction* actionSettingsAutoselectHeading;
   128 extern QAction* actionSettingsAutoselectHeading;
   129 extern QAction* actionSettingsAutoselectText;
   130 extern QAction* actionSettingsPasteNewHeading;
   131 extern QAction* actionSettingsUseDelKey;
   132 extern QAction* actionSettingsUseFlagGroups;
   133 
   134 extern QPopupMenu* branchContextMenu;
   135 extern QPopupMenu* branchAddContextMenu;
   136 extern QPopupMenu* branchRemoveContextMenu;
   137 extern QPopupMenu* branchLinksContextMenu;
   138 extern QPopupMenu* branchLinksContextMenuDup;
   139 extern QPopupMenu* floatimageContextMenu;
   140 extern QPopupMenu* saveImageFormatMenu;
   141 extern QPopupMenu* canvasContextMenu;
   142 extern QPopupMenu* lastMapsMenu;
   143 extern QPopupMenu* exportMenu;
   144 extern QPopupMenu* exportImageFormatMenu;
   145 
   146 
   147 extern Settings settings;
   148 extern Options options;
   149 
   150 #if defined(Q_OS_LINUX)
   151 extern void qt_wait_for_window_manager( QWidget* w );
   152 #endif
   153 
   154 Main::Main(QWidget* parent, const char* name, WFlags f) :
   155     QMainWindow(parent,name,f)
   156 {
   157 	mainWindow=this;
   158 
   159 	setCaption ("VYM - View Your Mind");
   160 
   161 	// Load window settings
   162 	resize (settings.readNumEntry( "/vym/mainwindow/geometry/width", 800),
   163 	        settings.readNumEntry( "/vym/mainwindow/geometry/height",600));
   164 	move   (settings.readNumEntry( "/vym/mainwindow/geometry/posX", 100),
   165 	        settings.readNumEntry( "/vym/mainwindow/geometry/posY", 100));
   166 
   167 
   168 	// Set random seed (random used for object IDs)
   169     QTime t = QTime::currentTime();		// set random seed
   170     srand( t.hour()*12+t.minute()*60+t.second()*60 );
   171 
   172 
   173 	// Initialize some settings, which are platform dependant
   174 	QString p,s;
   175 
   176 		// application to open URLs
   177 		p="/vym/mainwindow/readerURL";
   178 		#if defined(Q_OS_LINUX)
   179 			s=settings.readEntry (p,"konqueror");
   180 		#else
   181 			#if defined(Q_OS_MACX)
   182 				s=settings.readEntry (p,"/usr/bin/open");
   183 			#else
   184 				s=settings.readEntry (p,"mozilla");
   185 			#endif
   186 		#endif
   187 		settings.writeEntry( p,s);
   188 
   189 		// application to open PDFs
   190 		p="/vym/mainwindow/readerPDF";
   191 		#if defined(Q_OS_LINUX)
   192 			s=settings.readEntry (p,"acroread");
   193 		#else
   194 			#if defined(Q_OS_MACX)
   195 				s=settings.readEntry (p,"/usr/bin/open");
   196 			#else
   197 				s=settings.readEntry (p,"acroread");
   198 			#endif
   199 		#endif
   200 		settings.writeEntry( p,s);
   201 
   202 	
   203 	maxLastMaps=9;
   204 
   205 	// Create tab widget which holds the maps
   206 	tabWidget= new QTabWidget (this);
   207 	connect( tabWidget, SIGNAL( currentChanged( QWidget * ) ), 
   208 		this, SLOT( editorChanged( QWidget * ) ) );
   209 
   210 	setCentralWidget(tabWidget);	
   211 
   212     setupFileActions();
   213     setupEditActions();
   214     setupFormatActions();
   215     setupViewActions();
   216     setupModeActions();
   217 	setupFlagActions();
   218     setupSettingsActions();
   219 	setupContextMenus();
   220     if (settings.readBoolEntry( "/vym/mainwindow/showTestMenu",false)) setupTestActions();
   221     setupHelpActions();
   222     
   223 	// After menu is created, we can enable some actions
   224 	actionFilePrint->setEnabled (true);
   225 
   226     statusBar();
   227 
   228 
   229 	// Initialize Find window
   230 	findWindow=new FindWindow(NULL,"findwindow");
   231 	connect (findWindow, SIGNAL( findButton(QString) ), 
   232 		this, SLOT(editFind(QString) ) );	
   233 	connect (findWindow, SIGNAL( somethingChanged() ), 
   234 		this, SLOT(editFindChanged() ) );	
   235 
   236 	updateGeometry();
   237 
   238 	// Creating  the default map into first tab is done in main.cpp now...
   239 }
   240 
   241 Main::~Main()
   242 {
   243 	// Save Settings
   244 	settings.writeEntry( "/vym/mainwindow/geometry/width", width() );
   245 	settings.writeEntry( "/vym/mainwindow/geometry/height", height() );
   246 	settings.writeEntry( "/vym/mainwindow/geometry/posX", pos().x() );
   247 	settings.writeEntry( "/vym/mainwindow/geometry/posY", pos().y() );
   248 
   249 	settings.writeEntry( "/vym/version/version", __VYM_VERSION__ );
   250 	settings.writeEntry( "/vym/version/builddate", __BUILD_DATE__ );
   251 
   252 	settings.writeEntry( "/vym/mapeditor/editmode/autoselectheading",actionSettingsAutoselectHeading->isOn() );
   253 	settings.writeEntry( "/vym/mapeditor/editmode/autoselecttext",actionSettingsAutoselectText->isOn() );
   254 	settings.writeEntry( "/vym/mapeditor/editmode/pastenewheading",actionSettingsPasteNewHeading->isOn() );
   255 	settings.writeEntry( "/vym/mapeditor/editmode/autoedit",actionSettingsAutoedit->isOn() );
   256 	settings.writeEntry( "/vym/mapeditor/editmode/useDelKey",actionSettingsUseDelKey->isOn() );
   257 	settings.writeEntry( "/vym/mapeditor/editmode/useFlagGroups",actionSettingsUseFlagGroups->isOn() );
   258 
   259 	QString s;
   260 	int maps=lastMaps.count();
   261 	settings.writeEntry( "/vym/lastMaps/number",maps );
   262 	for (int i=1;i<=maps;i++)
   263 	{
   264 		QStringList::Iterator it = lastMaps.at(i-1);
   265 		s=QString("/vym/lastMaps/map-%1").arg(i);
   266 		if (!s.isEmpty() && i<=maxLastMaps) 
   267 			settings.writeEntry (s, *it);
   268 	}
   269 
   270 
   271 	// To make the texteditor save its settings, call the destructor
   272 	delete (textEditor);
   273 }
   274 
   275 void Main::loadCmdLine()
   276 {
   277 	/* TODO draw some kind of splashscreen while loading...
   278 	if (qApp->argc()>1)
   279 	{
   280 	}
   281 	*/
   282 	
   283 	QStringList flist=options.getFileList();
   284 	QStringList::Iterator it=flist.begin();
   285 
   286 	while (it !=flist.end() )
   287 	{
   288 		fileLoad (*it, NewMap);
   289 		*it++;
   290 	}	
   291 }
   292 
   293 
   294 void Main::statusMessage(const QString &s)
   295 {
   296 	statusBar()->message (s);
   297 }
   298 
   299 void Main::closeEvent (QCloseEvent* )
   300 {
   301 	fileExitVYM();
   302 }
   303 
   304 // File Actions
   305 void Main::setupFileActions()
   306 {
   307     QToolBar *tb = new QToolBar( this );
   308     tb->setLabel( "File Actions" );
   309     QPopupMenu *menu = new QPopupMenu( this );
   310     menuBar()->insertItem( tr( "&File" ), menu );
   311 
   312 	// Keycodes:  /usr/lib64/qt3/include/qnamespace.h
   313 
   314     QAction *a;
   315     a = new QAction( tr( "New map","File menu" ), QPixmap( filenew_xpm ), tr( "&New..." ), CTRL + Key_N, this, "fileNew" );
   316     connect( a, SIGNAL( activated() ), this, SLOT( fileNew() ) );
   317     a->addTo( tb );
   318     a->addTo( menu );
   319 	
   320     a = new QAction( tr( "Open","File menu" ), QPixmap( fileopen_xpm), tr( "&Open..." ), CTRL + Key_O, this, "fileOpen" );
   321     connect( a, SIGNAL( activated() ), this, SLOT( fileLoad() ) );
   322     a->addTo( tb );
   323     a->addTo( menu );
   324 	
   325 	lastMapsMenu = new QPopupMenu (this);
   326 
   327     menu->insertItem (tr("Open Recent"),lastMapsMenu );
   328     menu->insertSeparator();
   329 	
   330     a = new QAction( tr( "Save" ), QPixmap( filesave_xpm ), tr( "&Save..." ), CTRL + Key_S, this, "fileSave" );
   331     connect( a, SIGNAL( activated() ), this, SLOT( fileSave() ) );
   332     a->addTo( tb );
   333     a->addTo( menu );
   334 	actionFileSave=a;
   335 	
   336     a = new QAction( tr( "Save &As" ), QPixmap(), tr( "Save &As..." ), 0, this, "fileSaveAs" );
   337     connect( a, SIGNAL( activated() ), this, SLOT( fileSaveAs() ) );
   338     a->addTo( menu );
   339 
   340     menu->insertSeparator();
   341 
   342     a = new QAction( tr( "Import directory structure (experimental)" ), QPixmap(), tr( "Import Dir" ), 0, this, "export" );
   343     connect( a, SIGNAL( activated() ), this, SLOT( fileImportDir() ) );
   344     a->addTo( menu );
   345 
   346 	exportMenu = new QPopupMenu (this);
   347     menu->insertItem (tr("Export"),exportMenu );
   348 
   349     menu->insertSeparator();
   350 
   351 
   352     a = new QAction( tr( "Print" ), QPixmap( fileprint_xpm ), tr( "&Print..." ), CTRL + Key_P, this, "filePrint" );
   353     connect( a, SIGNAL( activated() ), this, SLOT( filePrint() ) );
   354     a->addTo( tb );
   355     a->addTo( menu );
   356 	actionFilePrint=a;
   357 
   358     a = new QAction( tr( "Close Map" ), QPixmap(), tr( "&Close Map" ), ALT + Key_C, this, "fileCloseMap" );
   359     connect( a, SIGNAL( activated() ), this, SLOT( fileCloseMap() ) );
   360     a->addTo( menu );
   361 
   362     a = new QAction( tr( "Exit VYM" ), QPixmap(), tr( "E&xit VYM" ), CTRL + Key_Q, this, "fileExitVYM" );
   363     connect( a, SIGNAL( activated() ), this, SLOT( fileExitVYM() ) );
   364     a->addTo( menu );
   365 }
   366 
   367 
   368 //Edit Actions
   369 void Main::setupEditActions()
   370 {
   371     QToolBar *tb = new QToolBar( this );
   372     tb->setLabel( "Edit Actions" );
   373     QPopupMenu *menu = new QPopupMenu( this );
   374     menuBar()->insertItem( tr( "&Edit" ), menu );
   375 
   376     QAction *a;
   377 	QAction *alt;
   378     a = new QAction( tr( "Undo" ), QPixmap( editundo_xpm ), tr( "&Undo" ), CTRL + Key_Z, this, "editUndo" );
   379     connect( a, SIGNAL( activated() ), this, SLOT( editUndo() ) );
   380 	a->setEnabled (false);
   381     a->addTo( tb );
   382     a->addTo( menu );
   383 	actionEditUndo=a;
   384     /*
   385     a = new QAction( tr( "Redo" ), QPixmap( editredo_xpm ), tr( "&Redo" ), CTRL + Key_Y, this, "editRedo" ); 
   386     connect( a, SIGNAL( activated() ), this, SLOT( editRedo() ) );
   387     a->addTo( tb );
   388     a->addTo( menu );
   389     */
   390     menu->insertSeparator();
   391     a = new QAction( tr( "Copy" ), QPixmap( editcopy_xpm ), tr( "&Copy" ), CTRL + Key_C, this, "editCopy" );
   392     connect( a, SIGNAL( activated() ), this, SLOT( editCopy() ) );
   393 	a->setEnabled (false);
   394     a->addTo( tb );
   395     a->addTo( menu );
   396 	actionEditCopy=a;
   397     a = new QAction( tr( "Cut" ), QPixmap( editcut_xpm ), tr( "Cu&t" ), CTRL + Key_X, this, "editCut" );
   398     connect( a, SIGNAL( activated() ), this, SLOT( editCut() ) );
   399 	a->setEnabled (false);
   400     a->addTo( tb );
   401     a->addTo( menu );
   402 	actionEditCut=a;
   403     a = new QAction( tr( "Paste" ), QPixmap( editpaste_xpm ), tr( "&Paste" ), CTRL + Key_V, this, "editPaste" );
   404     connect( a, SIGNAL( activated() ), this, SLOT( editPaste() ) );
   405 	a->setEnabled (false);
   406     a->addTo( tb );
   407     a->addTo( menu );
   408 	actionEditPaste=a;
   409 
   410     a = new QAction( tr( "Move branch up" ), QPixmap( editmoveup_xpm ), tr( "Move up" ), Key_PageUp, this, "editMoveUp" );
   411     connect( a, SIGNAL( activated() ), this, SLOT( editMoveUp() ) );
   412 	a->setEnabled (false);
   413     a->addTo( tb );
   414     a->addTo( menu );
   415 	actionListBranches.append(a);
   416 	actionEditMoveUp=a;
   417 
   418     a = new QAction( tr( "Move branch down" ), QPixmap( editmovedown_xpm ), tr( "Move down" ), Key_PageDown, this, "editMoveDown" );
   419     connect( a, SIGNAL( activated() ), this, SLOT( editMoveDown() ) );
   420 	a->setEnabled (false);
   421     a->addTo( tb );
   422     a->addTo( menu );
   423 	actionListBranches.append(a);
   424 	actionEditMoveDown=a;
   425 	
   426 
   427 	a = new QAction( tr( "Scroll branch" ), QPixmap(flag_scrolled_right_xpm), tr( "Scroll branch" ), Key_ScrollLock, this, "scroll" );
   428     connect( a, SIGNAL( activated() ), this, SLOT( editToggleScroll() ) );
   429 	alt = new QAction( tr( "Scroll branch" ), QPixmap(flag_scrolled_right_xpm), tr( "Scroll branch" ), Key_S, this, "scroll" );
   430     connect( alt, SIGNAL( activated() ), this, SLOT( editToggleScroll() ) );
   431 	#if defined(Q_OS_MACX)
   432 		actionEditToggleScroll=alt;
   433 	#else	
   434 		actionEditToggleScroll=a;
   435 	#endif	
   436 	actionEditToggleScroll->setEnabled (false);
   437     actionEditToggleScroll->addTo( tb );
   438     actionEditToggleScroll->addTo( menu );
   439 	actionListBranches.append(actionEditToggleScroll);
   440 	
   441     a = new QAction( tr( "Unscroll all" ), QPixmap(), tr( "Unscroll all scrolled branches" ), 0, this, "scroll" );
   442     connect( a, SIGNAL( activated() ), this, SLOT( editUnScrollAll() ) );
   443     a->addTo( menu );
   444 	
   445     menu->insertSeparator();
   446 
   447 	a = new QAction( tr( "Find" ), QPixmap(), tr( "Find" ), CTRL + Key_F, this, "find" );
   448     connect( a, SIGNAL( activated() ), this, SLOT( editOpenFindWindow() ) );
   449     a->addTo( menu );
   450     
   451 	menu->insertSeparator();
   452 
   453 	a = new QAction( tr( "Open URL" ), QPixmap(flag_url_xpm), tr( "Open URL" ), CTRL + Key_U, this, "url" );
   454     connect( a, SIGNAL( activated() ), this, SLOT( editOpenURL() ) );
   455     a->addTo( menu );
   456     a->addTo( tb );
   457 	a->setEnabled (false);
   458 	actionEditOpenURL=a;
   459 
   460 	a = new QAction( tr( "Edit URL" ), QPixmap(), tr( "Edit URL" ), SHIFT + CTRL + Key_U, this, "url" );
   461     connect( a, SIGNAL( activated() ), this, SLOT( editURL() ) );
   462     a->addTo( menu );
   463 	a->setEnabled (false);
   464 	actionListBranches.append(a);
   465 	actionEditURL=a;
   466 	
   467 	a = new QAction( tr( "Use heading of selected branch as URL" ), QPixmap(), tr( "Use heading for URL" ), 0, this, "heading2url" );
   468     connect( a, SIGNAL( activated() ), this, SLOT( editHeading2URL() ) );
   469     a->addTo( menu );
   470 	a->setEnabled (false);
   471 	actionListBranches.append(a);
   472 	actionEditHeading2URL=a;
   473     
   474 	a = new QAction( tr( "Create URL to Bugzilla" ), QPixmap(), tr( "Create URL to Bugzilla" ), 0, this, "bugzilla2url" );
   475     connect( a, SIGNAL( activated() ), this, SLOT( editBugzilla2URL() ) );
   476 	a->setEnabled (false);
   477 	actionListBranches.append(a);
   478 	actionEditBugzilla2URL=a;
   479     
   480 	menu->insertSeparator();
   481 	
   482     a = new QAction( tr( "Jump to another vym map, if needed load it first" ), QPixmap(flag_vymlink_xpm), tr( "Jump to map" ), 0, this, "jumpMap" );
   483     connect( a, SIGNAL( activated() ), this, SLOT( editOpenVymLink() ) );
   484     a->addTo( menu );
   485     a->addTo( tb );
   486 	a->setEnabled (false);
   487 	actionEditOpenVymLink=a;
   488 	
   489     a = new QAction( tr( "Edit link to another vym map" ), QPixmap(), tr( "Edit vym link" ), 0, this, "editLinkMap" );
   490     connect( a, SIGNAL( activated() ), this, SLOT( editVymLink() ) );
   491     a->addTo( menu );
   492 	a->setEnabled (false);
   493 	actionListBranches.append(a);
   494 	actionEditVymLink=a;
   495 
   496     a = new QAction( tr( "Delete link to another vym map" ), QPixmap(), tr( "Delete vym link" ), 0, this, "deleteLinkMap" );
   497     connect( a, SIGNAL( activated() ), this, SLOT( editDeleteVymLink() ) );
   498     a->addTo( menu );
   499 	a->setEnabled (false);
   500 	actionEditDeleteVymLink=a;
   501 
   502 	menu->insertSeparator();
   503 
   504     a = new QAction( tr( "Edit Map Info" ), QPixmap(), tr( "Edit Map Info" ), 0, this, "editMapInfo" );
   505     connect( a, SIGNAL( activated() ), this, SLOT( editMapInfo() ) );
   506     a->addTo( menu );
   507 	a->setEnabled (true);
   508 	actionEditMapInfo=a;
   509 
   510 	menu->insertSeparator();
   511 
   512     // Shortcuts to modify heading:
   513     a = new QAction( tr( "edit Heading" ),tr( "Edit heading" ), Key_Enter, this, "editHeading" );
   514     connect( a, SIGNAL( activated() ), this, SLOT( editHeading() ) );
   515 	actionListBranches.append(a);
   516     a = new QAction( tr( "edit Heading" ),tr( "Edit heading" ), Key_Return, this, "editHeading" );
   517     connect( a, SIGNAL( activated() ), this, SLOT( editHeading() ) );
   518 	actionListBranches.append(a);
   519 	actionEditHeading=a;
   520     a = new QAction( tr( "edit Heading" ),tr( "Edit heading" ), Key_F2, this, "editHeading" );
   521     connect( a, SIGNAL( activated() ), this, SLOT( editHeading() ) );
   522 	a->setEnabled (false);
   523     a->addTo ( menu );
   524 	actionEditHeading=a;
   525 	actionListBranches.append(a);
   526     
   527     // Shortcut to delete selection
   528     a = new QAction( tr( "Delete Selection" ),tr( "Delete Selection" ), Key_Delete, this, "deleteBranch" );
   529     connect( a, SIGNAL( activated() ), this, SLOT( editDeleteSelection() ) );
   530 	a->setEnabled (false);
   531     a->addTo ( menu );
   532 	actionEditDelete=a;
   533     
   534     // Shortcut to add branch
   535 	alt = new QAction( tr( "Add a branch as child of selection" ),tr( "Add branch as child" ), Key_A, this, "newBranch" );
   536     connect( alt, SIGNAL( activated() ), this, SLOT( editNewBranch() ) );
   537 		a = new QAction( tr( "Add a branch as child of selection" ),tr( "Add branch as child" ), Key_Insert, this, "newBranch" );
   538     connect( a, SIGNAL( activated() ), this, SLOT( editNewBranch() ) );
   539 	a->setEnabled (false);
   540 	actionListBranches.append(a);
   541 	#if defined (Q_OS_MACX)
   542 		actionEditAddBranch=alt;
   543 	#else	
   544 		actionEditAddBranch=a;
   545 	#endif	
   546 
   547     // Add branch by inserting it at selection
   548 	a = new QAction( tr( "Add a branch by inserting and making selection its child" ),tr( "Add branch (insert)" ), ALT + Key_Insert, this, "newBranchHere" );
   549     connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchHere() ) );
   550 	a->setEnabled (false);
   551 	actionListBranches.append(a);
   552 	actionEditAddBranchHere=a;
   553 
   554 	// Add branch above
   555     a = new QAction( tr( "Add a branch above selection" ),tr( "Add branch above" ), SHIFT+Key_Insert, this, "newBranch" );
   556     connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchAbove() ) );
   557 	a->setEnabled (false);
   558 	actionListBranches.append(a);
   559 	actionEditAddBranchAbove=a;
   560 
   561 	// Add branch below 
   562     a = new QAction( tr( "Add a branch below selection" ),tr( "Add branch below" ), CTRL +Key_Insert, this, "newBranch" );
   563     connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchBelow() ) );
   564 	a->setEnabled (false);
   565 	actionListBranches.append(a);
   566 	actionEditAddBranchBelow=a;
   567 
   568 	// Import at selection (adding to selection)
   569     a = new QAction( tr( "Add map at selection" ),tr( "Import (add)" ), 0, this, "importAdd" );
   570     connect( a, SIGNAL( activated() ), this, SLOT( editImportAdd() ) );
   571 	a->setEnabled (false);
   572 	actionListBranches.append(a);
   573 	actionEditImportAdd=a;
   574 
   575 	// Import at selection (replacing selection)
   576     a = new QAction( tr( "Replace selection with map" ),tr( "Import (replace)" ), 0, this, "importReplace" );
   577     connect( a, SIGNAL( activated() ), this, SLOT( editImportReplace() ) );
   578 	a->setEnabled (false);
   579 	actionListBranches.append(a);
   580 	actionEditImportReplace=a;
   581 
   582 	// Save selection 
   583     a = new QAction( tr( "Save selection" ),tr( "Save selection" ), 0, this, "saveSelection" );
   584     connect( a, SIGNAL( activated() ), this, SLOT( editSaveBranch() ) );
   585 	a->setEnabled (false);
   586 	actionListBranches.append(a);
   587 	actionEditSaveBranch=a;
   588 
   589 	// Only remove branch, not its childs
   590     a = new QAction( tr( "Remove only branch and keep its childs" ),tr( "Remove only branch " ), ALT + Key_Delete, this, "removeBranchHere" );
   591     connect( a, SIGNAL( activated() ), this, SLOT( editRemoveBranchHere() ) );
   592 	a->setEnabled (false);
   593 	actionListBranches.append(a);
   594 	actionEditRemoveBranchHere=a;
   595 
   596 	// Only remove childs of a branch
   597     a = new QAction( tr( "Remove childs of branch" ),tr( "Remove childs" ), SHIFT + Key_Delete, this, "removeBranchChilds" );
   598     connect( a, SIGNAL( activated() ), this, SLOT( editRemoveChilds() ) );
   599 	a->setEnabled (false);
   600 	actionListBranches.append(a);
   601 	actionEditRemoveChilds=a;
   602 
   603     // Shortcuts for navigating with cursor:
   604     a = new QAction( tr( "Select upper branch" ),tr( "Select upper branch" ), Key_Up, this, "upperBranch" );
   605     connect( a, SIGNAL( activated() ), this, SLOT( editUpperBranch() ) );
   606     a = new QAction( tr( "Select lower branch" ),tr( "Select lower branch" ), Key_Down, this, "lowerBranch" );
   607     connect( a, SIGNAL( activated() ), this, SLOT( editLowerBranch() ) );
   608     a = new QAction( tr( "Select left branch" ),tr( "Select left branch" ), Key_Left, this, "upperBranch" );
   609     connect( a, SIGNAL( activated() ), this, SLOT( editLeftBranch() ) );
   610     a = new QAction( tr( "Select right branch" ),tr( "Select child branch" ), Key_Right, this, "rightBranch" );
   611     connect( a, SIGNAL( activated() ), this, SLOT( editRightBranch() ) );
   612     a = new QAction( tr( "Select first branch" ),tr( "Select first branch" ), Key_Home, this, "firstBranch" );
   613 	a->setEnabled (false);
   614     a->addTo ( menu );
   615 	actionListBranches.append(a);
   616 	actionEditSelectFirst=a;
   617     connect( a, SIGNAL( activated() ), this, SLOT( editFirstBranch() ) );
   618     a = new QAction( tr( "Select last branch" ),tr( "Select last branch" ), Key_End, this, "lastBranch" );
   619     connect( a, SIGNAL( activated() ), this, SLOT( editLastBranch() ) );
   620 	a->setEnabled (false);
   621     a->addTo ( menu );
   622 	actionListBranches.append(a);
   623 	actionEditSelectLast=a;
   624 
   625     a = new QAction( tr( "Add Image" ),tr( "Add Image" ), 0, this, "loadImage" );
   626     connect( a, SIGNAL( activated() ), this, SLOT( editLoadImage() ) );
   627 	actionEditLoadImage=a;
   628 
   629 }
   630 
   631 // Format Actions
   632 void Main::setupFormatActions()
   633 {
   634     QPopupMenu *menu = new QPopupMenu( this );
   635     menuBar()->insertItem( tr( "&Format" ), menu );
   636 
   637     QToolBar *tb = new QToolBar( this );
   638     QAction *a;
   639     QPixmap pix( 16,16);
   640     pix.fill (black);
   641     actionFormatColor= new QAction( tr( "Set Color" ), pix, tr( "Set &Color" ), 0, this, "formatColor" );
   642     connect( actionFormatColor, SIGNAL( activated() ), this, SLOT( formatSelectColor() ) );
   643     actionFormatColor->addTo( tb );
   644     actionFormatColor->addTo( menu );
   645     a= new QAction( tr( "Pick color\nHint: You can pick a color from another branch and color using CTRL+Left Button" ), QPixmap(formatcolorpicker_xpm), tr( "Pic&k color" ), CTRL + Key_K, this, "pickColor" );
   646     connect( a, SIGNAL( activated() ), this, SLOT( formatPickColor() ) );
   647 	a->setEnabled (false);
   648     a->addTo( tb );
   649     a->addTo( menu );
   650 	actionListBranches.append(a);
   651 	actionFormatPickColor=a;
   652     a= new QAction( tr( "Color branch" ), QPixmap(formatcoloritem_xpm), tr( "Color &branch" ), CTRL + Key_I, this, "colorItem" );
   653     connect( a, SIGNAL( activated() ), this, SLOT( formatColorItem() ) );
   654 	a->setEnabled (false);
   655     a->addTo( tb );
   656     a->addTo( menu );
   657 	actionListBranches.append(a);
   658 	actionFormatColorBranch=a;
   659     a= new QAction( tr( "Color Subtree" ), QPixmap(formatcolorbranch_xpm), tr( "Color sub&tree" ), CTRL + Key_T, this, "colorBranch" );
   660     connect( a, SIGNAL( activated() ), this, SLOT( formatColorBranch() ) );
   661 	a->setEnabled (false);
   662     a->addTo( menu );
   663     a->addTo( tb );
   664 	actionListBranches.append(a);
   665 	actionFormatColorSubtree=a;
   666 
   667     menu->insertSeparator();
   668 	actionGroupFormatLinkStyles=new QActionGroup ( this, "formatLinkStyles");
   669 	actionGroupFormatLinkStyles->setExclusive (true);
   670     a= new QAction( tr( "Line" ), QPixmap(), tr( "Linkstyle Line" ), 0, actionGroupFormatLinkStyles, "formatLinkStyleLine" );
   671 	a->setToggleAction(true);
   672     connect( a, SIGNAL( activated() ), this, SLOT( formatLinkStyleLine() ) );
   673 	actionFormatLinkStyleLine=a;
   674     a= new QAction( tr( "Line" ), QPixmap(), tr( "Linkstyle Parabel" ), 0, actionGroupFormatLinkStyles, "formatLinkStyleLine" );
   675 	a->setToggleAction(true);
   676     connect( a, SIGNAL( activated() ), this, SLOT( formatLinkStyleParabel() ) );
   677 	actionFormatLinkStyleParabel=a;
   678     a= new QAction( tr( "PolyLine" ), QPixmap(), tr( "Linkstyle Thick Line" ), 0, actionGroupFormatLinkStyles, "formatLinkStyleLine" );
   679 	a->setToggleAction(true);
   680     connect( a, SIGNAL( activated() ), this, SLOT( formatLinkStylePolyLine() ) );
   681 	actionFormatLinkStylePolyLine=a;
   682     a= new QAction( tr( "PolyParabel" ), QPixmap(), tr( "Linkstyle Thick Parabel" ), 0, actionGroupFormatLinkStyles, "formatLinkStylePolyParabel" );
   683 	a->setToggleAction(true);
   684     connect( a, SIGNAL( activated() ), this, SLOT( formatLinkStylePolyParabel() ) );
   685 	actionFormatLinkStylePolyParabel=a;
   686 	actionGroupFormatLinkStyles->addTo (menu);
   687 	
   688 	actionGroupFormatFrameTypes=new QActionGroup ( this, "formatFrameTypes");
   689 	actionGroupFormatFrameTypes->setExclusive (true);
   690     a = new QAction( tr( "No Frame" ),tr( "No Frame" ), 0, actionGroupFormatFrameTypes, "frameNone" );
   691 	a->setToggleAction(true);
   692     connect( a, SIGNAL( activated() ), this, SLOT( formatFrameNone() ) );
   693 	actionFormatFrameNone=a;
   694     a = new QAction( tr( "Rectangle" ),tr( "Rectangle" ), 0, actionGroupFormatFrameTypes, "frameRectangle" );
   695 	a->setToggleAction(true);
   696     connect( a, SIGNAL( activated() ), this, SLOT( formatFrameRectangle() ) );
   697 	actionFormatFrameRectangle=a;
   698 
   699     menu->insertSeparator();
   700     a= new QAction( tr( "Use same color for links and headings" ), QPixmap(), tr( "&Use color of heading for link" ), 0, this, "formatLinkColorHint" );
   701 	a->setToggleAction(true);
   702     connect( a, SIGNAL( activated() ), this, SLOT( formatToggleLinkColorHint() ) );
   703 	a->addTo( menu );
   704 	actionFormatLinkColorHint=a;
   705     pix.fill (white);
   706     actionFormatLinkColor= new QAction( tr( "Set Link Color" ), pix, tr( "Set &Link Color" ), 0, this, "formatLinkColor" );
   707     connect( actionFormatLinkColor, SIGNAL( activated() ), this, SLOT( formatSelectLinkColor() ) );
   708     actionFormatLinkColor->addTo( menu );
   709     actionFormatBackColor= new QAction( tr( "Set Background Color" ), pix, tr( "Set &Background Color" ), 0, this, "formatBackColor" );
   710     connect( actionFormatBackColor, SIGNAL( activated() ), this, SLOT( formatSelectBackColor() ) );
   711     actionFormatBackColor->addTo( menu );
   712 }
   713 
   714 // View Actions
   715 void Main::setupViewActions()
   716 {
   717     QToolBar *tb = new QToolBar( this );
   718     tb->setLabel( "View Actions" );
   719     QPopupMenu *menu = new QPopupMenu( this );
   720     menuBar()->insertItem( tr( "&View" ), menu );
   721 
   722     QAction *a;
   723     a = new QAction( tr( "Zoom reset" ), QPixmap(viewzoomreset_xpm), tr( "reset Zoom" ), 0, this, "zoomReset" );
   724     connect( a, SIGNAL( activated() ), this, SLOT(viewZoomReset() ) );
   725     a->addTo( tb );
   726     a->addTo( menu );
   727     a = new QAction( tr( "Zoom in" ), QPixmap(viewzoomin_xpm), tr( "Zoom in" ), CTRL + Key_Plus, this, "zoomIn" );
   728     connect( a, SIGNAL( activated() ), this, SLOT(viewZoomIn() ) );
   729     a->addTo( tb );
   730     a->addTo( menu );
   731     a = new QAction( tr( "Zoom out" ), QPixmap(viewzoomout_xpm), tr( "Zoom out" ), CTRL + Key_Minus, this, "zoomOut" );
   732     connect( a, SIGNAL( activated() ), this, SLOT( viewZoomOut() ) );
   733     a->addTo( tb );
   734     a->addTo( menu );
   735     a = new QAction( tr( "Toggle Note Editor" ), QPixmap(flag_note_xpm), tr( "Toggle Note Editor" ), CTRL + Key_E , this, "noteEditor" );
   736     connect( a, SIGNAL( activated() ), this, SLOT(windowToggleNoteEditor() ) );
   737 	a->setToggleAction(true);
   738 	if (textEditor->showWithMain())
   739 		a->setOn(true);
   740 	else	
   741 		a->setOn(false);
   742     a->addTo( tb );
   743     a->addTo( menu );
   744 	actionViewToggleNoteEditor=a;
   745     a = new QAction( tr( "&Next Window" ), QPixmap(), tr( "Next Window" ), ALT + Key_N , this, "nextWindow" );
   746     connect( a, SIGNAL( activated() ), this, SLOT(windowNextEditor() ) );
   747     a->addTo( menu );
   748     a = new QAction( tr( "&Previous Window" ), QPixmap(), tr( "Previous Window" ), ALT + Key_P , this, "previousWindow" );
   749     connect( a, SIGNAL( activated() ), this, SLOT(windowPreviousEditor() ) );
   750     a->addTo( menu );
   751 }
   752 
   753 // Mode Actions
   754 void Main::setupModeActions()
   755 {
   756     //QPopupMenu *menu = new QPopupMenu( this );
   757     //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
   758 
   759     QToolBar *tb = new QToolBar( this );
   760     tb->setLabel( tr ("Modes when using modifiers") );
   761     QAction *a;
   762 	actionGroupModModes=new QActionGroup ( this, "formatLinkStyles");
   763 	actionGroupModModes->setExclusive (true);
   764     a= new QAction( tr( "Use modifier to color branches" ), QPixmap(modecolor_xpm), 0, Key_J, actionGroupModModes, "modModeColor" );
   765 	a->setToggleAction(true);
   766 	a->addTo (tb);
   767 	a->setOn(true);
   768 	actionModModeColor=a;
   769 	
   770     a= new QAction( tr( "Use modifier to copy" ), QPixmap(modecopy_xpm), 0, Key_K, actionGroupModModes, "modModeCopy" );
   771 	a->setToggleAction(true);
   772 	a->addTo (tb);
   773 	actionModModeCopy=a;
   774 
   775     a= new QAction( tr( "Use modifier to draw xLinks" ), QPixmap(modelink_xpm), 0, Key_L, actionGroupModModes, "modModeLink" );
   776 	a->setToggleAction(true);
   777 	a->addTo (tb);
   778 	actionModModeLink=a;
   779 }
   780 
   781 // Flag Actions
   782 void Main::setupFlagActions()
   783 {
   784 	standardFlagsDefault->makeToolbar(this, "Standard Flags");
   785 }
   786 
   787 // Settings Actions
   788 void Main::setupSettingsActions()
   789 {
   790     QPopupMenu *menu = new QPopupMenu( this );
   791     menuBar()->insertItem( tr( "&Settings" ), menu );
   792 
   793 	QAction *a;
   794 
   795 
   796     a = new QAction( tr( "Set application to open pdf files" ), QPixmap(), tr( "Set application to open pdf files" ), 0, this, "setPDF" );
   797     connect( a, SIGNAL( activated() ), this, SLOT( settingsPDF() ) );
   798     a->addTo( menu );
   799 
   800     a = new QAction( tr( "Set application to open an URL" ), QPixmap(), tr( "Set application to open an URL" ), 0, this, "setURL" );
   801     connect( a, SIGNAL( activated() ), this, SLOT( settingsURL() ) );
   802     a->addTo( menu );
   803 
   804     menu->insertSeparator();
   805     a = new QAction( tr( "Edit branch after adding it" ), QPixmap(), tr( "Edit branch after adding it" ), 0, this, "autoedit" );
   806 	a->setToggleAction(true);
   807 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/autoedit",true) );
   808     a->addTo( menu );
   809 	actionSettingsAutoedit=a;
   810 
   811     a= new QAction( tr( "Select branch after adding it" ), QPixmap(), tr( "Select branch after adding it" ), 0, this, "autoselectheading" );
   812 	a->setToggleAction(true);
   813 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/autoselect",false) );
   814     a->addTo( menu );
   815 	actionSettingsAutoselectHeading=a;
   816 	
   817     a= new QAction( tr( "Select heading before editing" ), QPixmap(), tr( "Select existing heading" ), 0, this, "autoselectexistingtext" );
   818 	a->setToggleAction(true);
   819 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/autoselectexistingtext",true) );
   820     a->addTo( menu );
   821 	actionSettingsAutoselectText=a;
   822 	
   823     a= new QAction( tr( "Enable pasting into new branch" ), QPixmap(), tr( "Enable pasting into new branch" ), 0, this, "pastenewheading" );
   824 	a->setToggleAction(true);
   825 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/newheadingisempty",true) );
   826     a->addTo( menu );
   827 	actionSettingsPasteNewHeading=a;
   828 	
   829     a= new QAction( tr( "Enable Delete key for deleting branches" ), QPixmap(), tr( "Enable Delete key" ), 0, this, "delkey" );
   830 	a->setToggleAction(true);
   831 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/useDelKey",false) );
   832     a->addTo( menu );
   833 	actionSettingsUseDelKey=a;
   834 
   835     a= new QAction( tr( "Use exclusive flags in flag toolbars" ), QPixmap(), tr( "Enable exclusive flags" ), 0, this, "flaggroups" );
   836 	a->setToggleAction(true);
   837 	a->setOn ( settings.readBoolEntry ("/vym/mapeditor/editmode/useFlagGroups",true) );
   838     a->addTo( menu );
   839 	actionSettingsUseFlagGroups=a;
   840 }
   841 
   842 // Test Actions
   843 void Main::setupTestActions()
   844 {
   845     QPopupMenu *menu = new QPopupMenu( this );
   846     menuBar()->insertItem( tr( "&Test" ), menu );
   847 
   848     QAction *a;
   849     a = new QAction( tr( "Test Flag" ), QPixmap(), tr( "test flag" ), 0, this, "flag" );
   850     connect( a, SIGNAL( activated() ), this, SLOT( testFunction() ) );
   851     a->addTo( menu );
   852 
   853 	a = new QAction( tr( "Show Clipboard" ), QPixmap(), tr( "Show clipboard" ), 0, this, "clipboard" );
   854     connect( a, SIGNAL( activated() ), this, SLOT( testShowClipboard() ) );
   855     a->addTo( menu );
   856 }
   857 
   858 // Help Actions
   859 void Main::setupHelpActions()
   860 {
   861     QPopupMenu *menu = new QPopupMenu( this );
   862     menuBar()->insertItem( tr( "&Help" ), menu );
   863 
   864     QAction *a;
   865     a = new QAction( tr( "Open VYM Documentation (pdf)" ), QPixmap(), tr( "Open VYM Documentation (pdf) " ), 0, this, "about" );
   866     connect( a, SIGNAL( activated() ), this, SLOT( helpDoc() ) );
   867     a->addTo( menu );
   868 
   869     a = new QAction( tr( "Information about VYM" ), QPixmap(), tr( "About VYM" ), 0, this, "about" );
   870     connect( a, SIGNAL( activated() ), this, SLOT( helpAbout() ) );
   871     a->addTo( menu );
   872 
   873     a = new QAction( tr( "Information about QT toolkit" ), QPixmap(), tr( "About QT" ), 0, this, "about" );
   874     connect( a, SIGNAL( activated() ), this, SLOT( helpAboutQT() ) );
   875     a->addTo( menu );
   876 }
   877 
   878 // Context Menus
   879 void Main::setupContextMenus()
   880 {
   881 	QAction*a;
   882 
   883 	// Context Menu for branch or mapcenter
   884 	branchContextMenu =new QPopupMenu (this);
   885 
   886 		// Submenu "Add"
   887 		branchAddContextMenu =new QPopupMenu (this);
   888 		actionEditPaste->addTo ( branchAddContextMenu );
   889 		actionEditAddBranch->addTo ( branchAddContextMenu );
   890 		actionEditAddBranchHere->addTo ( branchAddContextMenu );
   891 		actionEditAddBranchAbove->addTo ( branchAddContextMenu );
   892 		actionEditAddBranchBelow->addTo ( branchAddContextMenu );
   893 		branchAddContextMenu->insertSeparator();	
   894 		actionEditLoadImage->addTo( branchAddContextMenu );
   895 		branchAddContextMenu->insertSeparator();	
   896 		actionEditImportAdd->addTo ( branchAddContextMenu );
   897 		actionEditImportReplace->addTo ( branchAddContextMenu );
   898 
   899 		// Submenu "Remove"
   900 		branchRemoveContextMenu =new QPopupMenu (this);
   901 		actionEditCut->addTo ( branchRemoveContextMenu );
   902 		actionEditDelete->addTo ( branchRemoveContextMenu );
   903 		actionEditRemoveBranchHere->addTo( branchRemoveContextMenu );
   904 		actionEditRemoveChilds->addTo( branchRemoveContextMenu );
   905 		
   906 	branchContextMenu->insertItem (tr("Add"),branchAddContextMenu);	
   907 	branchContextMenu->insertItem (tr("Remove"),branchRemoveContextMenu);	
   908 
   909 	actionEditSaveBranch->addTo( branchContextMenu );
   910 
   911 	branchContextMenu->insertSeparator();	
   912 	actionEditOpenURL->addTo ( branchContextMenu );
   913 	actionEditURL->addTo ( branchContextMenu );
   914 	actionEditHeading2URL->addTo ( branchContextMenu );
   915     if (settings.readBoolEntry( "/vym/mainwindow/showTestMenu",false)) 
   916 		actionEditBugzilla2URL->addTo( branchContextMenu );
   917 		
   918 	branchContextMenu->insertSeparator();	
   919 	actionEditOpenVymLink->addTo ( branchContextMenu );
   920 	actionEditVymLink->addTo ( branchContextMenu );
   921 	actionEditDeleteVymLink->addTo ( branchContextMenu );
   922 	
   923 	branchContextMenu->insertSeparator();	
   924 	actionGroupFormatFrameTypes->addTo( branchContextMenu );
   925 
   926 	// Context Menu for links in a branch menu
   927 	// This will be populated "on demand" in MapEditor::updateActions
   928 	branchContextMenu->insertSeparator();	
   929 	branchLinksContextMenu =new QPopupMenu (this);
   930 	branchLinksContextMenuDup =new QPopupMenu (this);
   931 	branchContextMenu->insertItem (tr("Edit XLink"),branchLinksContextMenuDup);
   932 	connect( branchLinksContextMenuDup, SIGNAL( activated(int) ), this, SLOT( editEditXLink(int ) ) );
   933 
   934 	branchContextMenu->insertItem (tr("Goto XLink"),branchLinksContextMenu);
   935 	connect( branchLinksContextMenu, SIGNAL( activated(int) ), this, SLOT( editFollowXLink(int ) ) );
   936 	
   937 	// Context menu for floatimage
   938 	floatimageContextMenu =new QPopupMenu (this);
   939 	saveImageFormatMenu=new QPopupMenu (this);
   940 	exportImageFormatMenu=new QPopupMenu (this);
   941 
   942 	QStrList fmt = QImage::outputFormats();
   943 	for (const char* f = fmt.first(); f; f = fmt.next()) 
   944 	{
   945 		saveImageFormatMenu->insertItem( f );
   946 		exportImageFormatMenu->insertItem( f );
   947 	}	
   948 	connect( saveImageFormatMenu, SIGNAL( activated(int) ), this, SLOT( editSaveImage(int ) ) );
   949 	connect( exportImageFormatMenu, SIGNAL( activated(int) ), this, SLOT( fileExportImage(int ) ) );
   950 	floatimageContextMenu->insertItem( tr("Save image"),saveImageFormatMenu );
   951 	
   952 	floatimageContextMenu->insertSeparator();	
   953 	actionEditCopy->addTo( floatimageContextMenu );
   954 	actionEditCut->addTo( floatimageContextMenu );
   955 
   956 	floatimageContextMenu->insertSeparator();	
   957     a = new QAction( tr( "Use for Export" ), QPixmap(), tr( "Use for Export"), 0, this, "useForExport" );
   958 	a->setToggleAction(true);
   959     connect( a, SIGNAL( activated() ), this, SLOT( editToggleFloatExport() ) );
   960     a->addTo( floatimageContextMenu);
   961 	actionEditToggleFloatExport=a;
   962 
   963 
   964 
   965 	// Context menu for exports
   966 	exportMenu->insertItem ( tr("Export map as image"),exportImageFormatMenu);
   967 
   968     a = new QAction( tr( "Export as ASCII (still experimental)" ), QPixmap(), tr( "Export (ASCII)" ), 0, this, "exportASCII" );
   969     connect( a, SIGNAL( activated() ), this, SLOT( fileExportASCII() ) );
   970 	a->addTo( exportMenu );
   971 
   972 	a = new QAction( tr( "Export XML" ), QPixmap(), tr( "Export XML" ),  0, this, "exportXML" );
   973     connect( a, SIGNAL( activated() ), this, SLOT( fileExportXML() ) );
   974     a->addTo( exportMenu );
   975 	
   976     if (settings.readBoolEntry( "/vym/mainwindow/showTestMenu",false)) 
   977 	{
   978 		a = new QAction( tr( "Export HTML" ), QPixmap(), tr( "Export HTML" ), 0, this, "exportHTML" );
   979 		connect( a, SIGNAL( activated() ), this, SLOT( fileExportHTML() ) );
   980 		a->addTo( exportMenu );
   981 	}
   982 
   983 	a = new QAction( tr( "Export XHTML" ), QPixmap(), tr( "Export XHTML" ), ALT + Key_X, this, "exportXHTML" );
   984     connect( a, SIGNAL( activated() ), this, SLOT( fileExportXHTML() ) );
   985     a->addTo( exportMenu );
   986 
   987 	
   988 	// Context menu for canvas
   989 	canvasContextMenu =new QPopupMenu (this);
   990 	actionEditMapInfo->addTo( canvasContextMenu );
   991 	canvasContextMenu->insertSeparator();	
   992 	actionGroupFormatLinkStyles->addTo( canvasContextMenu );
   993 	canvasContextMenu->insertSeparator();	
   994 	actionFormatLinkColorHint->addTo( canvasContextMenu );
   995 	actionFormatLinkColor->addTo( canvasContextMenu );
   996 	actionFormatBackColor->addTo( canvasContextMenu );
   997 
   998 	// Menu for last opened files
   999 	// Read settings initially
  1000 	QString s;
  1001 	int j=settings.readNumEntry( "/vym/lastMaps/number",0);
  1002 	for (int i=1;i<=j;i++)
  1003 	{
  1004 		s=settings.readEntry(QString("/vym/lastMaps/map-%1").arg(i),"");
  1005 		if (!s.isEmpty() && j<=maxLastMaps) 
  1006 			lastMaps.append(s);
  1007 	}
  1008 	setupLastMapsMenu();
  1009 	connect( lastMapsMenu, SIGNAL( activated(int) ), this, SLOT( fileLoadLast(int ) ) );
  1010 }
  1011 
  1012 void Main::setupLastMapsMenu()
  1013 {
  1014 	// Remove double entries
  1015 	QStringList::Iterator it=lastMaps.begin();
  1016 	QStringList::Iterator jt;
  1017 	while (it!=lastMaps.end() )
  1018 	{
  1019 		jt=it;
  1020 		++jt;
  1021 		while (jt!=lastMaps.end() )
  1022 		{
  1023 			if (*it == *jt)		
  1024 				jt=lastMaps.remove(jt);
  1025 			else	
  1026 				jt++;
  1027 		}
  1028 		it++;
  1029 	}	
  1030 
  1031 	// Limit length of list to maxLastMaps
  1032 	while ((int)(lastMaps.count()) > maxLastMaps) lastMaps.pop_back();
  1033 	
  1034 	// build Menu from lastMaps string list
  1035 	lastMapsMenu->clear();
  1036 	for (it = lastMaps.begin(); it != lastMaps.end(); ++it ) 
  1037 		lastMapsMenu->insertItem (*it );
  1038 		
  1039 }
  1040 
  1041 void Main::hideEvent (QHideEvent * )
  1042 {
  1043 	if (!textEditor->isMinimized() ) textEditor->hide();
  1044 }
  1045 
  1046 void Main::showEvent (QShowEvent * )
  1047 {
  1048 	if (textEditor->showWithMain()) textEditor->showNormal();
  1049 }
  1050 
  1051 bool Main::reallyWriteDirectory(const QString &dir)
  1052 {
  1053 	QStringList eList = QDir(dir).entryList();
  1054 	if (eList.first() ==".")  eList.pop_front();	// remove "."
  1055 	if (eList.first() =="..") eList.pop_front();	// remove "."
  1056 	if (!eList.isEmpty())
  1057 	{
  1058 		QMessageBox mb( "VYM",
  1059 			tr("The directory ") + dir + 
  1060 			tr(" is not empty. Do you risk to overwrite its contents?"),
  1061 		QMessageBox::Warning,
  1062 		QMessageBox::Yes ,
  1063 		QMessageBox::Cancel | QMessageBox::Default,
  1064 		QMessageBox::QMessageBox::NoButton );
  1065 
  1066 		mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
  1067 		mb.setButtonText( QMessageBox::No, tr("Cancel"));
  1068 		switch( mb.exec() ) 
  1069 		{
  1070 			case QMessageBox::Yes:
  1071 				// save 
  1072 				return true;
  1073 			case QMessageBox::Cancel:
  1074 				// do nothing
  1075 				return false;
  1076 		}
  1077 	}
  1078 	return true;
  1079 }
  1080 
  1081 QString Main::browseDirectory (const QString &caption)
  1082 {
  1083 	QFileDialog fd(this,caption);
  1084 	fd.setMode (QFileDialog::DirectoryOnly);
  1085 	fd.setCaption("VYM - "+caption);
  1086 	fd.show();
  1087 	
  1088 	if ( fd.exec() == QDialog::Accepted )
  1089 		return fd.selectedFile();
  1090 	else
  1091 		return "";
  1092 }
  1093 
  1094 MapEditor* Main::currentMapEditor() const
  1095 {
  1096     if ( tabWidget->currentPage() &&
  1097 	 tabWidget->currentPage()->inherits( "MapEditor" ) )
  1098 		return (MapEditor*)tabWidget->currentPage();
  1099     return NULL;	
  1100 }
  1101 
  1102 //TODO not used now, maybe use this for overview window later
  1103 void Main::newView() 
  1104 {
  1105     // Open a new view... have it delete when closed.
  1106     Main *m = new Main(0, 0, WDestructiveClose);
  1107     qApp->setMainWidget(m);
  1108     m->show();
  1109     qApp->setMainWidget(0);
  1110 }
  1111 
  1112 void Main::editorChanged(QWidget *)
  1113 {
  1114 	// Unselect all possibly selected objects
  1115 	// (Important to update note editor)
  1116 	int i;
  1117 	MapEditor *me;
  1118 	for (i=0;i<=tabWidget->count() -1;i++)
  1119 	{
  1120 		
  1121 		me=(MapEditor*)tabWidget->page(i);
  1122 		me->unselect();
  1123 	}	
  1124 	currentMapEditor()->reselect();
  1125 
  1126 	// Update actions to in menus and toolbars according to editor
  1127 	currentMapEditor()->updateActions();
  1128 }
  1129 
  1130 void Main::fileNew()
  1131 {
  1132 	QString fn="unnamed";
  1133 	MapEditor* medit = new MapEditor (tabWidget, true);
  1134 	tabWidget->addTab (medit,fn);
  1135 	tabWidget->showPage(medit);
  1136 	medit->viewport()->setFocus();
  1137 	medit->select("mc:");
  1138 }
  1139 
  1140 void Main::fileLoad(QString fn, const LoadMode &lmode)
  1141 {
  1142 	// Error codes
  1143 	enum errorCode {success,aborted};
  1144 	errorCode err=success;
  1145 	
  1146 	// fn is usually the archive, mapfile the file after uncompressing
  1147 	QString mapfile;
  1148 
  1149 	// Make fn absolute (needed for unzip)
  1150 	fn=QDir (fn).absPath();
  1151 
  1152 	MapEditor *me;
  1153 
  1154 	if (lmode==NewMap)
  1155 	{
  1156 		// Check, if map is already loaded
  1157 		int i=0;
  1158 		while (i<=tabWidget->count() -1)
  1159 		{
  1160 			me=(MapEditor*)tabWidget->page(i);
  1161 			if (me->getFilePath() == fn)
  1162 			{
  1163 				// Already there, ask for confirmation
  1164 				QMessageBox mb( "VYM",
  1165 					tr("The map ") + fn + tr ("\n is already opened."
  1166 					"Opening the same map in multiple editors may lead \n"
  1167 					"to confusion when finishing working with vym."
  1168 					"Do you want to"),
  1169 					QMessageBox::Warning,
  1170 					QMessageBox::Yes | QMessageBox::Default,
  1171 					QMessageBox::Cancel | QMessageBox::Escape,
  1172 					QMessageBox::QMessageBox::NoButton);
  1173 				mb.setButtonText( QMessageBox::Yes, tr("Open anyway") );
  1174 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1175 				switch( mb.exec() ) 
  1176 				{
  1177 					case QMessageBox::Yes:
  1178 						// load anyway
  1179 						i=tabWidget->count();
  1180 						break;
  1181 					case QMessageBox::Cancel:
  1182 						// do nothing
  1183 						return;
  1184 						break;
  1185 				}
  1186 			}
  1187 			i++;
  1188 		}
  1189 	}
  1190 
  1191 
  1192 	// Try to load map
  1193     if ( !fn.isEmpty() )
  1194 	{
  1195 		me = currentMapEditor();
  1196 		int tabIndex=tabWidget->currentPageIndex();
  1197 		// Check first, if mapeditor exists
  1198 		// If it is not default AND we want a new map, 
  1199 		// create a new mapeditor in a new tab
  1200 		if ( lmode==NewMap && (!me || !me->isDefault() ) )
  1201 		{
  1202 			me = new MapEditor (tabWidget,true);
  1203 			tabWidget->addTab (me,fn);
  1204 			tabIndex=tabWidget->indexOf (me);
  1205 			tabWidget->setCurrentPage (tabIndex);
  1206 		}
  1207 		
  1208 		// Check, if file exists (important for creating new files
  1209 		// from command line
  1210 		if (!QFile(fn).exists() )
  1211 		{
  1212 			QMessageBox mb( "VYM",
  1213 				tr("This map does not exist:\n  ")+fn+tr("\nDo you want to create a new one?"),
  1214 				QMessageBox::Question,
  1215 				QMessageBox::Yes ,
  1216 				QMessageBox::Cancel | QMessageBox::Default,
  1217 				QMessageBox::QMessageBox::NoButton );
  1218 
  1219 			mb.setButtonText( QMessageBox::Yes, tr("Create"));
  1220 			mb.setButtonText( QMessageBox::No, tr("Cancel"));
  1221 			switch( mb.exec() ) 
  1222 			{
  1223 				case QMessageBox::Yes:
  1224 					// Create new map
  1225 					currentMapEditor()->setFilePath(fn);
  1226 					tabWidget->setTabLabel (currentMapEditor(),
  1227 						currentMapEditor()->getFileName() );
  1228 					statusBar()->message( "Created " + fn , statusbarTime );
  1229 					return;
  1230 						
  1231 				case QMessageBox::Cancel:
  1232 					// don't create new map
  1233 					statusBar()->message( "Loading " + fn + " failed!", statusbarTime );
  1234 					fileCloseMap();
  1235 					return;
  1236 			}
  1237 		}	
  1238 
  1239 
  1240 		//tabWidget->currentPage() won't be NULL here, because of above...
  1241 		tabWidget->showPage(me);
  1242 		me->viewport()->setFocus();
  1243 
  1244 		// Create temporary directory for packing
  1245 		char tmpdir1[]="/tmp/vym-XXXXXX";	
  1246 		QString tmpMapDir=mkdtemp(tmpdir1);
  1247 
  1248 		// Try to unzip file
  1249 		Process *zipProc=new Process ();
  1250 		zipProc->clearArguments();
  1251 		zipProc->setWorkingDirectory (QDir(tmpMapDir));
  1252 		zipProc->addArgument ("unzip");
  1253 		zipProc->addArgument (fn );
  1254 		zipProc->addArgument ("-d");
  1255 		zipProc->addArgument (tmpMapDir);
  1256 
  1257 		if (!zipProc->start() )
  1258 		{
  1259 			QMessageBox::critical( 0, tr( "Critical Load Error" ),
  1260 						   tr("Couldn't start unzip to decompress data."));
  1261 			err=aborted;
  1262 			
  1263 		} else
  1264 		{
  1265 			zipProc->waitFinished();
  1266 			if (!zipProc->normalExit() )
  1267 			{
  1268 				QMessageBox::critical( 0, tr( "Critical Load Error" ),
  1269 							   tr("unzip didn't exit normally") +
  1270 							   zipProc->getErrout() );
  1271 				err=aborted;
  1272 			} else
  1273 			{
  1274 				if (zipProc->exitStatus()>0)
  1275 				{
  1276 					if (zipProc->exitStatus()==9)
  1277 					{
  1278 						// no zipped file, but maybe .xml or old version? Try again.
  1279 						mapfile=fn;
  1280 						me->setZipped(false);
  1281 					}	
  1282 					else	
  1283 					{
  1284 						QMessageBox::critical( 0, tr( "Critical Load Error" ),
  1285 									   QString("unzip exit code:  %1").arg(zipProc->exitStatus() ) +
  1286 									   zipProc->getErrout() );
  1287 						err=aborted;
  1288 					}
  1289 				} else
  1290 				{	// Uncompressing was successfull,
  1291 					// load from uncompressed temporary directory
  1292 
  1293 					me->setZipped(true);
  1294 
  1295 					
  1296 					// Look for mapname.xml
  1297 					mapfile= fn.left(fn.findRev(".",-1,true));
  1298 					mapfile=mapfile.section( '/', -1 );
  1299 					QFile file( tmpMapDir + "/" + mapfile + ".xml");
  1300 					if (!file.exists() )
  1301 					{
  1302 						// mapname.xml does not exist, well, 
  1303 						// maybe some renamed the mapname.vym file...
  1304 						// Try to find any .xml in the toplevel 
  1305 						// directory of the .vym file
  1306 						QStringList flist=QDir (tmpMapDir).entryList("*.xml");
  1307 						if (flist.count()==1) 
  1308 						{
  1309 							// Only one entry, take this one
  1310 							mapfile=tmpMapDir + "/"+flist.first();
  1311 						} else
  1312 						{
  1313 							for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it ) 
  1314 								*it=tmpMapDir + "/" + *it;
  1315 							// FIXME Multiple entries, load all (but only the first one into this ME)
  1316 							//mainWindow->fileLoadFromTmp (flist);
  1317 							//returnCode=1;	// Silently forget this attempt to load
  1318 							qWarning ("MainWindow::load (fn)  multimap found...");
  1319 						}	
  1320 							
  1321 						if (flist.isEmpty() )
  1322 						{
  1323 							QMessageBox::critical( 0, tr( "Critical Load Error" ),
  1324 									   tr("Couldn't find a map (*.xml) in .vym archive.\n"));
  1325 							err=aborted;				   
  1326 						}	
  1327 					} //file doesn't exist	
  1328 					else
  1329 						mapfile=file.name();
  1330 				} // Uncompressing successfull
  1331 			}
  1332 		}
  1333 
  1334 
  1335 		// Save existing filename
  1336 		QString fn_org=me->getFilePath();
  1337 
  1338 		// Finally load map into mapEditor
  1339 		me->setFilePath (mapfile,fn);
  1340 		if (me->load(mapfile,lmode))
  1341 			err=aborted;
  1342 
  1343 		// Restore old (maybe empty) filepath, if this is an import
  1344 		if (lmode!=NewMap)
  1345 			me->setFilePath (fn_org);
  1346 			
  1347 		// Delete tmpDir
  1348 		system ( "rm -rf "+tmpMapDir);
  1349 
  1350 		// Check for errors
  1351 		if (err==success) 
  1352 		{
  1353 			if (lmode==NewMap)
  1354 			{
  1355 				me->setFilePath (fn);
  1356 				tabWidget->changeTab(tabWidget->page(tabIndex), me->getFileName());
  1357 				lastMaps.prepend(me->getFilePath() );
  1358 				setupLastMapsMenu();
  1359 				actionFilePrint->setEnabled (true);
  1360 			}	
  1361 			statusBar()->message( "Loaded " + fn, statusbarTime );
  1362 			return;
  1363 		} else 
  1364 		{
  1365 			if (lmode==NewMap)
  1366 				fileCloseMap();
  1367 		}	
  1368 
  1369 
  1370 	}
  1371 	statusBar()->message( "Could not load " + fn, statusbarTime );
  1372 }
  1373 
  1374 
  1375 void Main::fileLoad(const LoadMode &lmode)
  1376 {
  1377 	QFileDialog *fd=new QFileDialog( this);
  1378 	if (!lastFileDir.isEmpty()) 
  1379 		fd->setDir (lastFileDir);
  1380 	fd->addFilter ("XML (*.xml)");
  1381 	fd->addFilter ("VYM map (*.vym *.vyp)");
  1382 	switch (lmode)
  1383 	{
  1384 		case NewMap:
  1385 			fd->setCaption(tr("Load vym map"));
  1386 			break;
  1387 		case ImportAdd:
  1388 			fd->setCaption(tr("Import: Add vym map to selection"));
  1389 			break;
  1390 		case ImportReplace:
  1391 			fd->setCaption(tr("Import: Replace selection with vym map"));
  1392 			break;
  1393 	}
  1394 	fd->show();
  1395 
  1396 	QString fn;
  1397 	if ( fd->exec() == QDialog::Accepted )
  1398 	{
  1399 		lastFileDir=fd->dirPath();
  1400         fn = fd->selectedFile();
  1401 		fileLoad(fn, lmode);				   
  1402 	}
  1403 }
  1404 
  1405 void Main::fileLoad()
  1406 {
  1407 	fileLoad (NewMap);
  1408 }
  1409 
  1410 void Main::fileLoadLast(int i)
  1411 {
  1412 	fileLoad(*lastMaps.at(lastMapsMenu->indexOf (i) ),NewMap);			   
  1413 }
  1414 
  1415 void Main::fileSave(const SaveMode &savemode)
  1416 {
  1417 	// tmp dir for zipping 
  1418 	QString tmpMapDir;
  1419 	
  1420 	// Error codes
  1421 	enum errorCode {success,aborted};
  1422 	errorCode err=success;
  1423 	
  1424 	QString safeFilePath;
  1425 
  1426 	bool saveZipped=currentMapEditor()->saveZipped();
  1427 
  1428 	if (currentMapEditor())
  1429 	{
  1430 		QString fn=currentMapEditor()->getFilePath();
  1431 		// filename=unnamed, filepath="" in constructor...
  1432 		if ( !fn.isEmpty() ) 
  1433 		{	
  1434 			// We have a filepath, go on saving			
  1435 			// First remove existing file, we 
  1436 			// don't want to add to old zip archives
  1437 			QFile f(fn);
  1438 			if (f.exists() ) 
  1439 				if (!f.remove())
  1440 					QMessageBox::warning( 0, tr( "Save Error" ),
  1441 						fn+   tr("\ncould not be removed before saving"));
  1442 
  1443 			// Look, if we should zip the data:
  1444 			if (!saveZipped)
  1445 			{
  1446 				QMessageBox mb( "VYM",
  1447 					tr("The map ") + fn + 
  1448 					tr ("\ndid not use the compressed "
  1449 					"vym file format.\nWriting it uncompressed will also write images \n"
  1450 					"and flags and thus may overwrite files in the "
  1451 					"given directory\n\nDo you want to write the map"),
  1452 					QMessageBox::Warning,
  1453 					QMessageBox::Yes | QMessageBox::Default,
  1454 					QMessageBox::No ,
  1455 					QMessageBox::Cancel | QMessageBox::Escape);
  1456 				mb.setButtonText( QMessageBox::Yes, tr("compressed (vym default)") );
  1457 				mb.setButtonText( QMessageBox::No, tr("uncompressed") );
  1458 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1459 				switch( mb.exec() ) 
  1460 				{
  1461 					case QMessageBox::Yes:
  1462 						// save compressed (default file format)
  1463 						saveZipped=true;
  1464 						break;
  1465 					case QMessageBox::No:
  1466 						// save uncompressed
  1467 						saveZipped=false;
  1468 						break;
  1469 					case QMessageBox::Cancel:
  1470 						// do nothing
  1471 						return;
  1472 						break;
  1473 				}
  1474 			}
  1475 
  1476 			if (saveZipped)
  1477 			{
  1478 				char tmpdir1[]="/tmp/vym-XXXXXX";	
  1479 				tmpMapDir=mkdtemp(tmpdir1);
  1480 			
  1481 				safeFilePath=currentMapEditor()->getFilePath();
  1482 				currentMapEditor()->setFilePath (tmpMapDir+"/"+
  1483 					currentMapEditor()->getMapName()+ ".xml",
  1484 					safeFilePath);
  1485 				currentMapEditor()->save (savemode);
  1486 				currentMapEditor()->setFilePath (safeFilePath);
  1487 				
  1488 				// zip the temporary directory
  1489 				Process *zipProc=new Process ();
  1490 				zipProc->clearArguments();
  1491 				zipProc->setWorkingDirectory (QDir(tmpMapDir));
  1492 				zipProc->addArgument ("zip");
  1493 				zipProc->addArgument ("-r");
  1494 				zipProc->addArgument (fn);
  1495 				zipProc->addArgument (".");
  1496 
  1497 				if (!zipProc->start() )
  1498 				{	
  1499 					// zip could not be started
  1500 					QMessageBox::critical( 0, tr( "Critical Save Error" ),
  1501 								   tr("Couldn't start zip to compress data."));
  1502 					err=aborted;
  1503 				} else
  1504 				{
  1505 					// zip could be started
  1506 					zipProc->waitFinished();
  1507 					if (!zipProc->normalExit() )
  1508 					{
  1509 						QMessageBox::critical( 0, tr( "Critical Save Error" ),
  1510 									   tr("zip didn't exit normally")+
  1511 									   "\n" + zipProc->getErrout());
  1512 						err=aborted;
  1513 					} else
  1514 					{
  1515 						if (zipProc->exitStatus()>0)
  1516 						{
  1517 							QMessageBox::critical( 0, tr( "Critical Save Error" ),
  1518 									   QString("zip exit code:  %1").arg(zipProc->exitStatus() )+
  1519 									   "\n" + zipProc->getErrout() );
  1520 							err=aborted;
  1521 						}
  1522 					}
  1523 				}	// zip could be started
  1524 			} // save zipped
  1525 			else
  1526 			{
  1527 				// Save unzipped. 
  1528 				safeFilePath=currentMapEditor()->getFilePath();
  1529 				currentMapEditor()->setFilePath (fn, safeFilePath);
  1530 				currentMapEditor()->save (savemode);
  1531 				currentMapEditor()->setFilePath (safeFilePath);
  1532 			} // save zipped 	
  1533 		} // filepath available
  1534 		else
  1535 		{
  1536 			// We have  no filepath yet,
  1537 			// call fileSaveAs() now, this will call fileSave() 
  1538 			// again.
  1539 			fileSaveAs(savemode);
  1540 		}
  1541     }
  1542 
  1543 	if (currentMapEditor()->saveZipped())
  1544 	{
  1545 		// Delete tmpDir
  1546 		system ( "rm -rf "+ tmpMapDir );
  1547 	} 
  1548 
  1549 	if (err==success)
  1550 		statusBar()->message( 
  1551 			tr("Saved")+" " + currentMapEditor()->getFilePath(), 
  1552 			statusbarTime );
  1553 	else		
  1554 		statusBar()->message( 
  1555 			tr("Couldn't save")+" " + currentMapEditor()->getFilePath(), 
  1556 			statusbarTime );
  1557 }
  1558 
  1559 void Main::fileSave()
  1560 {
  1561 	fileSave (CompleteMap);
  1562 }
  1563 
  1564 void Main::fileSaveAs(const SaveMode& savemode)
  1565 {
  1566 	QString tmpMapDir;
  1567 	QString fn;
  1568 
  1569 	if (currentMapEditor())
  1570 	{
  1571 		if (savemode==CompleteMap)
  1572 			fn = QFileDialog::getSaveFileName( QString::null, "VYM map (*.vym)", this );
  1573 		else		
  1574 			fn = QFileDialog::getSaveFileName( QString::null, "VYM part of map (*.vyp)", this );
  1575 		if ( !fn.isEmpty() ) 
  1576 		{
  1577 			// Check for existing file
  1578 			if (QFile (fn).exists())
  1579 			{
  1580 				QMessageBox mb( "VYM",
  1581 					tr("The file ") + fn + tr ("\nexists already. Do you want to"),
  1582 					QMessageBox::Warning,
  1583 					QMessageBox::Yes | QMessageBox::Default,
  1584 					QMessageBox::Cancel | QMessageBox::Escape,
  1585 					QMessageBox::QMessageBox::NoButton);
  1586 				mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
  1587 				mb.setButtonText( QMessageBox::Cancel, tr("Cancel"));
  1588 				switch( mb.exec() ) 
  1589 				{
  1590 					case QMessageBox::Yes:
  1591 						// save 
  1592 						break;
  1593 					case QMessageBox::Cancel:
  1594 						// do nothing
  1595 						return;
  1596 						break;
  1597 				}
  1598 			} else
  1599 			{
  1600 				// New file, add extension to filename, if missing
  1601 				// This is always .vym or .vyp, depending on savemode
  1602 				if (savemode==CompleteMap)
  1603 				{
  1604 					if (!fn.contains (".vym") && !fn.contains (".xml"))
  1605 						fn +=".vym";
  1606 				} else		
  1607 				{
  1608 					if (!fn.contains (".vyp") && !fn.contains (".xml"))
  1609 						fn +=".vyp";
  1610 				}
  1611 			}
  1612 	
  1613 
  1614 
  1615 
  1616 			// Save now
  1617 			currentMapEditor()->setFilePath(fn);
  1618 			fileSave(savemode);
  1619 
  1620 			// Set name of tab
  1621 			if (savemode==CompleteMap)
  1622 				tabWidget->setTabLabel (currentMapEditor(),
  1623 					currentMapEditor()->getFileName() );
  1624 			return;
  1625 		} 
  1626 	}
  1627 }
  1628 
  1629 void Main::fileSaveAs()
  1630 {
  1631 	fileSaveAs (CompleteMap);
  1632 }
  1633 
  1634 void Main::fileImportDir()
  1635 {
  1636 	if (currentMapEditor())
  1637 		currentMapEditor()->importDir();	
  1638 }
  1639 
  1640 void Main::fileExportXML()
  1641 {
  1642 	if (currentMapEditor())
  1643 	{
  1644 		QString dir=browseDirectory(tr("Export XML to directory"));
  1645 		if (dir !="" && reallyWriteDirectory(dir) )
  1646 			currentMapEditor()->exportXML(dir);
  1647 	}	
  1648 }
  1649 
  1650 void Main::fileExportHTML()
  1651 {
  1652 	if (currentMapEditor())
  1653 	{
  1654 		ExportHTMLDialog dia(this);
  1655 		
  1656 		if (dia.exec()==QDialog::Accepted)
  1657 		{
  1658 			QString dir=dia.getDir();
  1659 			if (reallyWriteDirectory(dir) )
  1660 			{
  1661 				currentMapEditor()->exportXML (dia.getDir() );
  1662 				dia.doExport(currentMapEditor()->getMapName() );
  1663 			}	
  1664 		}
  1665 	}	
  1666 }
  1667 
  1668 void Main::fileExportXHTML()
  1669 {
  1670 	QString dir;
  1671 	if (currentMapEditor())
  1672 	{
  1673 		ExportXHTMLDialog dia(this);
  1674 		dia.setFilePath (currentMapEditor()->getFilePath() );
  1675 		dia.setMapName (currentMapEditor()->getMapName() );
  1676 		dia.readSettings();
  1677 		
  1678 		if (dia.exec()==QDialog::Accepted)
  1679 		{
  1680 			QString dir=dia.getDir();
  1681 			// Check, if warnings should be used before overwriting
  1682 			// the output directory
  1683 			bool ok;
  1684 			if (dia.warnings()) 
  1685 				ok=reallyWriteDirectory(dir);
  1686 			else
  1687 				ok=true;
  1688 
  1689 			if (ok)
  1690 			{
  1691 				currentMapEditor()->exportXML (dia.getDir() );
  1692 				dia.doExport(currentMapEditor()->getMapName() );
  1693 				if (dia.hasChanged())
  1694 					currentMapEditor()->setChanged();
  1695 			}	
  1696 		}
  1697 	}	
  1698 }
  1699 
  1700 void Main::fileExportImage(int item)
  1701 {
  1702 	if (currentMapEditor())
  1703 	{
  1704 		QString fn = QFileDialog::getSaveFileName( QString::null, "Image  (*.bmp *.jpg *.pbm *.pgm *.png *.ppm *xbm *.xpm)",
  1705 							   this );
  1706 		if ( !fn.isEmpty() ) 
  1707 		{
  1708 			currentMapEditor()->exportImage(fn,item);
  1709 		} else {
  1710 			statusBar()->message( tr("Couldn't save") + fn, statusbarTime );
  1711 		}
  1712 	}
  1713 }
  1714 
  1715 void Main::fileExportASCII()
  1716 {
  1717 	if (currentMapEditor())
  1718 		currentMapEditor()->exportASCII();	
  1719 }
  1720 
  1721 void Main::fileCloseMap()
  1722 {
  1723 	if (currentMapEditor())
  1724 	{
  1725 		if (currentMapEditor()->hasChanged())
  1726 		{
  1727 			QMessageBox mb( "VYM",
  1728 				tr("The map ") + currentMapEditor()->getFileName() +
  1729 				tr(" has been modified but not saved yet. Do you want to"),
  1730 				QMessageBox::Warning,
  1731 				QMessageBox::Yes | QMessageBox::Default,
  1732 				QMessageBox::No,
  1733 				QMessageBox::Cancel | QMessageBox::Escape );
  1734 			mb.setButtonText( QMessageBox::Yes, tr("Save modified map before closing it") );
  1735 			mb.setButtonText( QMessageBox::No, tr("Discard changes"));
  1736 			switch( mb.exec() ) 
  1737 			{
  1738 				case QMessageBox::Yes:
  1739 					// save and close
  1740 					fileSave(CompleteMap);
  1741 					break;
  1742 				case QMessageBox::No:
  1743 				// close  without saving
  1744 					break;
  1745 				case QMessageBox::Cancel:
  1746 					// do nothing
  1747 				return;
  1748 			}
  1749 		} 
  1750 		currentMapEditor()->closeMap();
  1751 		tabWidget->removePage(currentMapEditor());
  1752 		if (tabWidget->count()==0)
  1753 			actionFilePrint->setEnabled (false);
  1754 	}	
  1755 }
  1756 
  1757 void Main::filePrint()
  1758 {
  1759 	if (currentMapEditor())
  1760 		currentMapEditor()->print();
  1761 }
  1762 
  1763 void Main::fileExitVYM()
  1764 {
  1765 	// Check if one or more editors have changed
  1766 	MapEditor *me;
  1767 	int i;
  1768 	for (i=0;i<=tabWidget->count() -1;i++)
  1769 	{
  1770 		
  1771 		me=(MapEditor*)tabWidget->page(i);
  1772 
  1773 		// If something changed, ask what to do
  1774 		if (me->isUnsaved())
  1775 		{
  1776 			tabWidget->setCurrentPage(i);
  1777 			QMessageBox mb( "VYM",
  1778 				tr("This map is not saved yet. Do you want to"),
  1779 				QMessageBox::Warning,
  1780 				QMessageBox::Yes | QMessageBox::Default,
  1781 				QMessageBox::No,
  1782 				QMessageBox::Cancel | QMessageBox::Escape );
  1783 			mb.setButtonText( QMessageBox::Yes, tr("Save map") );
  1784 			mb.setButtonText( QMessageBox::No, tr("Discard changes") );
  1785 			mb.show();
  1786 			// Call undocumented function: setActiveWindow is only
  1787 			// possible, if widget is visible. This depends on
  1788 			// windowmanager...
  1789 #if defined(Q_OS_LINUX)
  1790 			qt_wait_for_window_manager( this);
  1791 #endif			
  1792 			mb.setActiveWindow();
  1793 			switch( mb.exec() ) {
  1794 				case QMessageBox::Yes:
  1795 					// save (the changed editors) and exit
  1796 					fileSave(CompleteMap);
  1797 					break;
  1798 				case QMessageBox::No:
  1799 					// exit without saving
  1800 					break;
  1801 				case QMessageBox::Cancel:
  1802 					// don't save and don't exit
  1803 				return;
  1804 			}
  1805 		}
  1806 	} // loop over all MEs	
  1807     qApp->quit();
  1808 }
  1809 
  1810 void Main::editUndo()
  1811 {
  1812 	if (currentMapEditor())
  1813 		currentMapEditor()->undo();
  1814 }
  1815 
  1816 void Main::editRedo()	    // TODO
  1817 {
  1818 }
  1819 
  1820 void Main::editCopy()
  1821 {
  1822 	if (currentMapEditor())
  1823 		currentMapEditor()->copy();
  1824 }
  1825 
  1826 void Main::editPaste()
  1827 {
  1828 	if (currentMapEditor())
  1829 		currentMapEditor()->paste();
  1830 }
  1831 
  1832 void Main::editCut()
  1833 {
  1834 	if (currentMapEditor())
  1835 		currentMapEditor()->cut();
  1836 }
  1837 
  1838 void Main::editOpenFindWindow()
  1839 {
  1840 	findWindow->popup();
  1841 	findWindow->raise();
  1842 
  1843 	// Call undocumented function: setActiveWindow is only
  1844 	// possible, if widget is visible. This depends on
  1845 	// windowmanager...
  1846 #if defined(Q_OS_LINUX)
  1847 	qt_wait_for_window_manager( this);
  1848 #endif	
  1849 	findWindow->setActiveWindow();
  1850 }
  1851 
  1852 void Main::editFind(QString s)
  1853 {
  1854 	bool cs=false;
  1855 	BranchObj *bo=currentMapEditor()->findText(s, cs);
  1856 	if (bo)
  1857 	{	
  1858 		statusBar()->message( "Found: " + bo->getHeading(), statusbarTime );
  1859 	} else
  1860 	{
  1861 		QMessageBox::information( findWindow, tr( "VYM -Information:" ),
  1862 							   tr("No matches found for ")+
  1863 							   "<b>"+s+"</b>");
  1864 	}	
  1865 }
  1866 
  1867 void Main::editFindChanged()
  1868 {	// Notify editor, to abort the current find process
  1869 	currentMapEditor()->findReset();
  1870 }
  1871 
  1872 void Main::editOpenURL()
  1873 {
  1874 	if (currentMapEditor())
  1875 	    currentMapEditor()->openURL();
  1876 }
  1877 
  1878 void Main::editURL()
  1879 {
  1880 	if (currentMapEditor())
  1881 	    currentMapEditor()->editURL();
  1882 }
  1883 
  1884 void Main::editHeading2URL()
  1885 {
  1886 	if (currentMapEditor())
  1887 	    currentMapEditor()->editHeading2URL();
  1888 }
  1889 
  1890 void Main::editBugzilla2URL()
  1891 {
  1892 	if (currentMapEditor())
  1893 	    currentMapEditor()->editBugzilla2URL();
  1894 }
  1895 
  1896 void Main::editOpenVymLink()
  1897 {
  1898 	// Get current path to map
  1899 	QString currentVymLink;
  1900 	if (currentMapEditor())
  1901 	{
  1902 		currentVymLink=currentMapEditor()->getVymLink();	
  1903 		// compare path with already loaded maps
  1904 		int index=-1;
  1905 		int i;
  1906 		MapEditor *me;
  1907 		for (i=0;i<=tabWidget->count() -1;i++)
  1908 		{
  1909 			me=(MapEditor*)tabWidget->page(i);
  1910 			if (currentVymLink==me->getFilePath() )
  1911 			{
  1912 				index=i;
  1913 				break;
  1914 			}
  1915 		}	
  1916 		if (index<0)
  1917 		// Load map
  1918 		{
  1919 			if (!QFile(currentVymLink).exists() )
  1920 				QMessageBox::critical( 0, tr( "Critical Error" ),
  1921 				   tr("Couldn't open map " +currentVymLink)+".");
  1922 			else
  1923 			{
  1924 				fileLoad (currentVymLink, NewMap);
  1925 				tabWidget->setCurrentPage (tabWidget->count()-1);	
  1926 			}
  1927 		} else
  1928 			// Go to tab containing the map
  1929 			tabWidget->setCurrentPage (index);	
  1930 	}
  1931 }
  1932 
  1933 void Main::editVymLink()
  1934 {
  1935 	if (currentMapEditor())
  1936 		currentMapEditor()->editVymLink();	
  1937 }
  1938 
  1939 void Main::editDeleteVymLink()
  1940 {
  1941 	if (currentMapEditor())
  1942 		currentMapEditor()->deleteVymLink();	
  1943 }
  1944 
  1945 void Main::editMapInfo()
  1946 {
  1947 	if (currentMapEditor())
  1948 		currentMapEditor()->editMapInfo();	
  1949 }
  1950 
  1951 void Main::editMoveUp()
  1952 {
  1953 	if (currentMapEditor())
  1954 	    currentMapEditor()->moveBranchUp();
  1955 }
  1956 
  1957 void Main::editMoveDown()
  1958 {
  1959 	if (currentMapEditor())
  1960 		currentMapEditor()->moveBranchDown();
  1961 }
  1962 
  1963 void Main::editToggleScroll()
  1964 {
  1965 	if (currentMapEditor())
  1966 	{
  1967 		currentMapEditor()->toggleScroll();	
  1968 	}	
  1969 }
  1970 
  1971 void Main::editUnScrollAll()
  1972 {
  1973 	if (currentMapEditor())
  1974 	{
  1975 		currentMapEditor()->unScrollAll();	
  1976 	}	
  1977 }
  1978 
  1979 void Main::editHeading()
  1980 {
  1981 	if (currentMapEditor())
  1982 		currentMapEditor()->editHeading();
  1983 }
  1984 
  1985 void Main::editNewBranch()
  1986 {
  1987 	if (currentMapEditor())
  1988 		currentMapEditor()->addNewBranch(0);
  1989 }
  1990 
  1991 void Main::editNewBranchHere()
  1992 {
  1993 	if (currentMapEditor())
  1994 		currentMapEditor()->addNewBranchHere();
  1995 }
  1996 
  1997 void Main::editNewBranchAbove()
  1998 {
  1999 	if (currentMapEditor())
  2000 		currentMapEditor()->addNewBranch(-1);
  2001 }
  2002 
  2003 void Main::editNewBranchBelow()
  2004 {
  2005 	if (currentMapEditor())
  2006 		currentMapEditor()->addNewBranch(1);
  2007 }
  2008 
  2009 void Main::editImportAdd()
  2010 {
  2011 	fileLoad (ImportAdd);
  2012 }
  2013 
  2014 void Main::editImportReplace()
  2015 {
  2016 	fileLoad (ImportReplace);
  2017 }
  2018 
  2019 void Main::editSaveBranch()
  2020 {
  2021 	fileSaveAs (PartOfMap);
  2022 }
  2023 
  2024 void Main::editRemoveBranchHere()
  2025 {
  2026 	if (currentMapEditor())
  2027 		currentMapEditor()->removeBranchHere();
  2028 }
  2029 
  2030 void Main::editRemoveChilds()
  2031 {
  2032 	if (currentMapEditor())
  2033 		currentMapEditor()->removeChilds();
  2034 }
  2035 
  2036 void Main::editDeleteSelection()
  2037 {
  2038 	if (currentMapEditor())
  2039 		currentMapEditor()->deleteSelection();
  2040 }
  2041 
  2042 void Main::editUpperBranch()
  2043 {
  2044 	if (currentMapEditor())
  2045 		currentMapEditor()->selectUpperBranch();
  2046 }
  2047 
  2048 void Main::editLowerBranch()
  2049 {
  2050 	if (currentMapEditor())
  2051 		currentMapEditor()->selectLowerBranch();
  2052 }
  2053 
  2054 void Main::editLeftBranch()
  2055 {
  2056 	if (currentMapEditor())
  2057 		currentMapEditor()->selectLeftBranch();
  2058 }
  2059 
  2060 void Main::editRightBranch()
  2061 {
  2062 	if (currentMapEditor())
  2063 		currentMapEditor()->selectRightBranch();
  2064 }
  2065 
  2066 void Main::editFirstBranch()
  2067 {
  2068 	if (currentMapEditor())
  2069 		currentMapEditor()->selectFirstBranch();
  2070 }
  2071 
  2072 void Main::editLastBranch()
  2073 {
  2074 	if (currentMapEditor())
  2075 		currentMapEditor()->selectLastBranch();
  2076 }
  2077 
  2078 void Main::editLoadImage()
  2079 {
  2080 	if (currentMapEditor())
  2081 		currentMapEditor()->loadFloatImage();
  2082 }
  2083 
  2084 void Main::editSaveImage(int item)
  2085 {
  2086 	if (currentMapEditor())
  2087 		currentMapEditor()->saveFloatImage(item);
  2088 }
  2089 
  2090 void Main::editToggleFloatExport()
  2091 {
  2092 	if (currentMapEditor())
  2093 		currentMapEditor()->toggleFloatExport();
  2094 }
  2095 
  2096 void Main::editFollowXLink(int item)
  2097 {
  2098 	if (currentMapEditor())
  2099 		currentMapEditor()->followXLink(branchLinksContextMenu->indexOf(item));
  2100 }
  2101 
  2102 void Main::editEditXLink(int item)
  2103 {
  2104 	if (currentMapEditor())
  2105 		currentMapEditor()->editXLink(branchLinksContextMenuDup->indexOf(item));
  2106 }
  2107 
  2108 void Main::formatSelectColor()
  2109 {
  2110 	if (currentMapEditor())
  2111 	{
  2112 		QColor col = QColorDialog::getColor( currentMapEditor()->color(), this );
  2113 		if ( !col.isValid() ) return;
  2114 		currentMapEditor()->setColor( col );
  2115 		colorChanged( col );
  2116 	}	
  2117 }
  2118 
  2119 void Main::formatPickColor()
  2120 {
  2121 	if (currentMapEditor())
  2122 		colorChanged( currentMapEditor()->pickColor() );
  2123 }
  2124 
  2125 void Main::colorChanged(QColor c)
  2126 {
  2127     QPixmap pix( 16, 16 );
  2128     pix.fill( c );
  2129     actionFormatColor->setIconSet( pix );
  2130 }
  2131 
  2132 void Main::formatColorItem()
  2133 {
  2134 	if (currentMapEditor())
  2135 		currentMapEditor()->colorItem();
  2136 }
  2137 
  2138 void Main::formatColorBranch()
  2139 {
  2140 	if (currentMapEditor())
  2141 		currentMapEditor()->colorBranch();
  2142 }
  2143 
  2144 void Main::formatLinkStyleLine()
  2145 {
  2146 	if (currentMapEditor())
  2147 		currentMapEditor()->setLinkStyle(StyleLine);
  2148 }
  2149 
  2150 void Main::formatLinkStyleParabel()
  2151 {
  2152 	if (currentMapEditor())
  2153 		currentMapEditor()->setLinkStyle(StyleParabel);
  2154 }
  2155 
  2156 void Main::formatLinkStylePolyLine()
  2157 {
  2158 	if (currentMapEditor())
  2159 		currentMapEditor()->setLinkStyle(StylePolyLine);
  2160 }
  2161 
  2162 void Main::formatLinkStylePolyParabel()
  2163 {
  2164 	if (currentMapEditor())
  2165 		currentMapEditor()->setLinkStyle(StylePolyParabel);
  2166 }
  2167 
  2168 void Main::formatSelectBackColor()
  2169 {
  2170 	if (currentMapEditor())
  2171 		currentMapEditor()->selectBackgroundColor();
  2172 }
  2173 
  2174 void Main::formatSelectLinkColor()
  2175 {
  2176 	if (currentMapEditor())
  2177 		currentMapEditor()->selectLinkColor();
  2178 }
  2179 
  2180 void Main::formatToggleLinkColorHint()
  2181 {
  2182 	currentMapEditor()->toggleLinkColorHint();
  2183 }
  2184 
  2185 void Main::formatFrameNone()
  2186 {
  2187 	if (currentMapEditor())
  2188 		currentMapEditor()->setFrame(NoFrame);
  2189 }
  2190 
  2191 void Main::formatFrameRectangle()
  2192 {
  2193 	if (currentMapEditor())
  2194 		currentMapEditor()->setFrame(Rectangle);
  2195 }
  2196 
  2197 void Main::viewZoomReset()
  2198 {
  2199 	if (currentMapEditor())
  2200 	{
  2201 		QWMatrix m;
  2202 		m.reset();
  2203 		currentMapEditor()->setWorldMatrix( m );
  2204 		currentMapEditor()->setViewCenter();
  2205 		currentMapEditor()->adjustCanvasSize();
  2206 	}	
  2207 }
  2208 
  2209 void Main::viewZoomIn()
  2210 {
  2211 	if (currentMapEditor())
  2212 	{
  2213 		QWMatrix m = currentMapEditor()->worldMatrix();
  2214 		m.scale( 1.25, 1.25 );
  2215 		currentMapEditor()->setWorldMatrix( m );
  2216 		currentMapEditor()->setViewCenter();
  2217 		currentMapEditor()->adjustCanvasSize();
  2218 	}	
  2219 }
  2220 
  2221 void Main::viewZoomOut()
  2222 {
  2223 	if (currentMapEditor())
  2224 	{
  2225 		QWMatrix m = currentMapEditor()->worldMatrix();
  2226 		m.scale( 0.8, 0.8 );
  2227 		currentMapEditor()->setWorldMatrix( m );
  2228 		currentMapEditor()->setViewCenter();
  2229 		currentMapEditor()->adjustCanvasSize();
  2230 	}	
  2231 }
  2232 
  2233 void Main::modModeColor()
  2234 {
  2235 }
  2236 
  2237 void Main::modModeLink()
  2238 {
  2239 }
  2240 
  2241 bool Main::settingsPDF()
  2242 {
  2243 	// Default browser is set in constructor
  2244 	bool ok;
  2245 	QString text = QInputDialog::getText(
  2246 		"VYM", tr("Enter path for pdf reader:"), QLineEdit::Normal,
  2247 		settings.readEntry("/vym/mainwindow/readerPDF"), &ok, this );
  2248 	if (ok)
  2249 		settings.writeEntry ("/vym/mainwindow/readerPDF",text);
  2250 	return ok;
  2251 }
  2252 
  2253 
  2254 bool Main::settingsURL()
  2255 {
  2256 	// Default browser is set in constructor
  2257 	bool ok;
  2258 	QString text = QInputDialog::getText(
  2259 		"VYM", tr("Enter path for application to open an URL:"), QLineEdit::Normal,
  2260 		settings.readEntry("/vym/mainwindow/readerURL")
  2261 		, &ok, this );
  2262 	if (ok)
  2263 		settings.writeEntry ("/vym/mainwindow/readerURL",text);
  2264 	return ok;
  2265 }
  2266 
  2267 void Main::windowToggleNoteEditor()
  2268 {
  2269 	if (textEditor->showWithMain() )
  2270 		windowHideNoteEditor();
  2271 	else	
  2272 		windowShowNoteEditor();
  2273 }
  2274 
  2275 void Main::windowShowNoteEditor()
  2276 {
  2277 	textEditor->setShowWithMain(true);
  2278 	textEditor->show();
  2279 	actionViewToggleNoteEditor->setOn (true);
  2280 }
  2281 
  2282 void Main::windowHideNoteEditor()
  2283 {
  2284 	textEditor->setShowWithMain(false);
  2285 	textEditor->hide();
  2286 	actionViewToggleNoteEditor->setOn (false);
  2287 }
  2288 
  2289 void Main::windowNextEditor()
  2290 {
  2291 	if (tabWidget->currentPageIndex() < tabWidget->count())
  2292 		tabWidget->setCurrentPage (tabWidget->currentPageIndex() +1);
  2293 }
  2294 
  2295 void Main::windowPreviousEditor()
  2296 {
  2297 	if (tabWidget->currentPageIndex() >0)
  2298 		tabWidget->setCurrentPage (tabWidget->currentPageIndex() -1);
  2299 }
  2300 
  2301 void Main::standardFlagChanged()
  2302 {
  2303 	currentMapEditor()->toggleStandardFlag(sender()->name());
  2304 }
  2305 
  2306 void Main::testFunction()
  2307 {
  2308 	//textEditor->stackUnder(this);
  2309 	currentMapEditor()->testFunction();
  2310 }
  2311 
  2312 void Main::testShowClipboard()
  2313 {
  2314 	clipboardME->show();
  2315 }
  2316 
  2317 void Main::helpDoc()
  2318 {
  2319 	QString docpath;
  2320 	#if defined(Q_OS_MACX)
  2321 		docpath="./vym.app/Contents/vym.pdf";
  2322 	#else
  2323 		// default path in SUSE LINUX
  2324 		docpath="/usr/share/doc/packages/vym/doc/vym.pdf";
  2325 	#endif
  2326 
  2327 	if (!QFile (docpath).exists() )
  2328 	{
  2329 		// relative path for easy testing in tarball
  2330 		docpath="doc/vym.pdf";
  2331 		if (!QFile (docpath).exists() )
  2332 		{
  2333 			// relative path for testing while still writing vym.tex
  2334 			docpath="doc/tex/vym.pdf";
  2335 			if (!QFile (docpath).exists() )
  2336 			{
  2337 				QMessageBox::critical(0, 
  2338 				tr("Critcal error"),
  2339 				tr("Couldn't find the documentation\n"
  2340 				"vym.pdf in various places."));
  2341 				return;
  2342 			}	
  2343 		}
  2344 	}
  2345 	
  2346 	Process *pdfProc = new Process();
  2347 	pdfProc->clearArguments();
  2348 	pdfProc->addArgument( settings.readEntry("/vym/mainwindow/readerPDF"));
  2349 	pdfProc->addArgument( docpath);
  2350 
  2351 	if ( !pdfProc->start() ) 
  2352 	{
  2353 		// error handling
  2354 		QMessageBox::critical(0, 
  2355 		tr("Critcal error"),
  2356 		tr("Couldn't find a viewer to read vym.pdf.\n"
  2357 		"Please use Settings->")+tr("Set application to open pdf files"));
  2358 		return;
  2359 	}
  2360 }
  2361 
  2362 
  2363 void Main::helpAbout()
  2364 {
  2365     static QMessageBox* about = new QMessageBox( "VYM",
  2366 			"<h3>VYM - View Your Mind </h3>"
  2367 			"<p> A tool to put the things you have got in your mind into a map.</p>"
  2368 			"<ul>"
  2369 				"<li> (c) by Uwe Drechsel (vym@InSilmaril.de)</li>"
  2370 				"<li> vym is released under the GPL (Gnu General Public License)"
  2371 				", with one exception (see the file \"LICENSE\"which "
  2372 				"comes with vym). This exception is needed to build vym with QT libraries for proprietary operating systems.</li>"
  2373 				"<li> Project homepage <a href=\"http:/www.InSilmaril.de/vym\">"
  2374     					"http:/www.InSilmaril.de/vym</a></li>"
  2375 			"<li> Credits " 
  2376 				"<ul>"
  2377 					"<li>Jakob Hilmer for image drag and drop patch </li>"
  2378 					"<li>Thomas Schraitle for the stylesheet  used for XHTML-export </li>"
  2379 					"<li>Clemens Kraus for stylesheets and script used for HTML-export "
  2380 					"<a href=\"http://www.clemens-kraus.de\">(www.clemens-kraus.de)</a></li>"
  2381 					"<li>Alexander Johannesen for providing stylesheets from his xsiteable project " 
  2382 					"<a href=\"http://www.shelter.nu/xsiteable/xsiteable.html\">(www.shelter.nu/xsiteable/xsiteable.html)</a>. </li>"
  2383 					"<li>Ken Wimer and Olaf Hering for Mac support</li>"
  2384 				"</ul>"
  2385 			"</li>"
  2386 			"<li> Version "  __VYM_VERSION__  "</li>"
  2387 				"<li> Build date "  __BUILD_DATE__"</li>"
  2388 			"</ul>", QMessageBox::Information, 1, 0, 0, this, 0, FALSE );
  2389     about->setButtonText( 1, "Dismiss" );
  2390     about->setMinimumSize(QSize(300,300));
  2391 	about->setIconPixmap (QPixmap(vym_logo_xpm));
  2392     about->show();
  2393 }
  2394 
  2395 void Main::helpAboutQT()
  2396 {
  2397 	QMessageBox::aboutQt( this, "Qt Application Example" );
  2398 }
  2399