fixed recent maps and xlinks qt4-port
authorinsilmaril
Tue, 04 Jul 2006 12:10:56 +0000
branchqt4-port
changeset 784f76a3876d7
parent 6 db50e4164311
child 8 21379539d952
fixed recent maps and xlinks
branchobj.cpp
demos/todo.vym
main.cpp
mainwindow.cpp
mainwindow.h
mapeditor.cpp
tex/vym.changelog
version.h
     1.1 --- a/branchobj.cpp	Wed Jun 14 14:43:18 2006 +0000
     1.2 +++ b/branchobj.cpp	Tue Jul 04 12:10:56 2006 +0000
     1.3 @@ -791,6 +791,11 @@
     1.4  	// save names of flags set
     1.5  	s+=standardFlags->saveToDir(tmpdir,prefix,0);
     1.6  	
     1.7 +	// Save FloatImages
     1.8 +	FloatImageObj *fio;
     1.9 +	for (fio=floatimage.first(); fio; fio=floatimage.next() )
    1.10 +		s+=fio->saveToDir (tmpdir,prefix,offset);
    1.11 +
    1.12  	// save note
    1.13  	if (!note.isEmpty() )
    1.14  		s+=note.saveToDir();
    1.15 @@ -800,11 +805,6 @@
    1.16      for (bo=branch.first(); bo; bo=branch.next() )
    1.17  		s+=bo->saveToDir(tmpdir,prefix,offset);
    1.18  
    1.19 -	// Save FloatImages
    1.20 -	FloatImageObj *fio;
    1.21 -	for (fio=floatimage.first(); fio; fio=floatimage.next() )
    1.22 -		s+=fio->saveToDir (tmpdir,prefix,offset);
    1.23 -
    1.24  	// Save XLinks
    1.25  	XLinkObj *xlo;
    1.26  	//FIXME exponential increase in xlinks...
     2.1 Binary file demos/todo.vym has changed
     3.1 --- a/main.cpp	Wed Jun 14 14:43:18 2006 +0000
     3.2 +++ b/main.cpp	Tue Jul 04 12:10:56 2006 +0000
     3.3 @@ -113,8 +113,8 @@
     3.4  QMenu* branchContextMenu;
     3.5  QMenu* branchAddContextMenu;
     3.6  QMenu* branchRemoveContextMenu;
     3.7 -QMenu* branchLinksContextMenu;
     3.8 -QMenu* branchLinksContextMenuDup;
     3.9 +QMenu* branchLinksContextMenuEdit;
    3.10 +QMenu* branchLinksContextMenuFollow;
    3.11  QMenu* floatimageContextMenu;
    3.12  QMenu* saveImageFormatMenu;
    3.13  QMenu* canvasContextMenu;
     4.1 --- a/mainwindow.cpp	Wed Jun 14 14:43:18 2006 +0000
     4.2 +++ b/mainwindow.cpp	Tue Jul 04 12:10:56 2006 +0000
     4.3 @@ -129,8 +129,8 @@
     4.4  extern QMenu* branchContextMenu;
     4.5  extern QMenu* branchAddContextMenu;
     4.6  extern QMenu* branchRemoveContextMenu;
     4.7 -extern QMenu* branchLinksContextMenu;
     4.8 -extern QMenu* branchLinksContextMenuDup;
     4.9 +extern QMenu* branchLinksContextMenuEdit;
    4.10 +extern QMenu* branchLinksContextMenuFollow;
    4.11  extern QMenu* floatimageContextMenu;
    4.12  extern QMenu* saveImageFormatMenu;
    4.13  extern QMenu* canvasContextMenu;
    4.14 @@ -505,23 +505,23 @@
    4.15      a = new QAction(tr( "Edit heading" ),this);
    4.16  	a->setStatusTip ( tr( "edit Heading" ));
    4.17  	a->setShortcut ( Qt::Key_Enter);
    4.18 -	a->setShortcutContext (Qt::ApplicationShortcut);
    4.19 +	a->setShortcutContext (Qt::WindowShortcut);
    4.20  	addAction (a);
    4.21      connect( a, SIGNAL( triggered() ), this, SLOT( editHeading() ) );
    4.22  	actionListBranches.append(a);
    4.23      a = new QAction( tr( "Edit heading" ), this);
    4.24  	a->setStatusTip (tr( "edit Heading" ));
    4.25  	a->setShortcut (Qt::Key_Return );
    4.26 +	a->setShortcutContext (Qt::WindowShortcut);
    4.27 +	addAction (a);
    4.28      connect( a, SIGNAL( activated() ), this, SLOT( editHeading() ) );
    4.29  	actionListBranches.append(a);
    4.30  	editMenu->addAction (a);
    4.31 -	a->setShortcutContext (Qt::ApplicationShortcut);
    4.32 -	addAction (a);
    4.33  	actionEditHeading=a;
    4.34      a = new QAction( tr( "Edit heading" ), this);
    4.35  	a->setStatusTip (tr( "edit Heading" ));
    4.36  	a->setShortcut ( Qt::Key_F2 );
    4.37 -	a->setShortcutContext (Qt::ApplicationShortcut);
    4.38 +	a->setShortcutContext (Qt::WindowShortcut);
    4.39  	addAction (a);
    4.40      connect( a, SIGNAL( activated() ), this, SLOT( editHeading() ) );
    4.41  	actionListBranches.append(a);
    4.42 @@ -530,19 +530,21 @@
    4.43      a = new QAction( tr( "Delete Selection" ),this);
    4.44  	a->setStatusTip (tr( "Delete Selection" ));
    4.45  	a->setShortcut ( Qt::Key_Delete);
    4.46 +	a->setShortcutContext (Qt::WindowShortcut);
    4.47 +	addAction (a);
    4.48      connect( a, SIGNAL( activated() ), this, SLOT( editDeleteSelection() ) );
    4.49 -	a->setEnabled (false);
    4.50  	actionEditDelete=a;
    4.51      
    4.52      // Shortcut to add branch
    4.53  	alt = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child" ), this);
    4.54  	alt->setStatusTip ( tr( "Add a branch as child of selection" ));
    4.55  	alt->setShortcut (Qt::Key_A);
    4.56 +	alt->setShortcutContext (Qt::WindowShortcut);
    4.57 +	addAction (alt);
    4.58  	connect( alt, SIGNAL( activated() ), this, SLOT( editNewBranch() ) );
    4.59  	a = new QAction(QPixmap(iconPath+"newbranch.png"), tr( "Add branch as child" ), this);
    4.60  	a->setStatusTip ( tr( "Add a branch as child of selection" ));
    4.61  	a->setShortcut (Qt::Key_Insert);	
    4.62 -//	a->setEnabled (false);
    4.63      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranch() ) );
    4.64  	actionListBranches.append(a);
    4.65  	#if defined (Q_OS_MACX)
    4.66 @@ -559,6 +561,8 @@
    4.67  	a = new QAction(tr( "Add branch (insert)" ), this);
    4.68  	a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
    4.69  	a->setShortcut (Qt::ALT + Qt::Key_Insert );
    4.70 +	a->setShortcutContext (Qt::WindowShortcut);
    4.71 +	addAction (a);
    4.72      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchHere() ) );
    4.73  	a->setEnabled (false);
    4.74  	actionListBranches.append(a);
    4.75 @@ -566,6 +570,8 @@
    4.76  	a = new QAction(tr( "Add branch (insert)" ),this);
    4.77  	a->setStatusTip ( tr( "Add a branch by inserting and making selection its child" ));
    4.78  	a->setShortcut ( Qt::ALT + Qt::Key_A );
    4.79 +	a->setShortcutContext (Qt::WindowShortcut);
    4.80 +	addAction (a);
    4.81      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchHere() ) );
    4.82  	actionListBranches.append(a);
    4.83  
    4.84 @@ -573,6 +579,8 @@
    4.85      a = new QAction(tr( "Add branch above" ), this);
    4.86  	a->setStatusTip ( tr( "Add a branch above selection" ));
    4.87  	a->setShortcut (Qt::SHIFT+Qt::Key_Insert );
    4.88 +	a->setShortcutContext (Qt::WindowShortcut);
    4.89 +	addAction (a);
    4.90      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchAbove() ) );
    4.91  	a->setEnabled (false);
    4.92  	actionListBranches.append(a);
    4.93 @@ -580,6 +588,8 @@
    4.94      a = new QAction(tr( "Add branch above" ), this);
    4.95  	a->setStatusTip ( tr( "Add a branch above selection" ));
    4.96  	a->setShortcut (Qt::SHIFT+Qt::Key_A );
    4.97 +	a->setShortcutContext (Qt::WindowShortcut);
    4.98 +	addAction (a);
    4.99      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchAbove() ) );
   4.100  	actionListBranches.append(a);
   4.101  
   4.102 @@ -587,6 +597,8 @@
   4.103      a = new QAction(tr( "Add branch below" ), this);
   4.104  	a->setStatusTip ( tr( "Add a branch below selection" ));
   4.105  	a->setShortcut (Qt::CTRL +Qt::Key_Insert );
   4.106 +	a->setShortcutContext (Qt::WindowShortcut);
   4.107 +	addAction (a);
   4.108      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchBelow() ) );
   4.109  	a->setEnabled (false);
   4.110  	actionListBranches.append(a);
   4.111 @@ -594,6 +606,8 @@
   4.112      a = new QAction(tr( "Add branch below" ), this);
   4.113  	a->setStatusTip ( tr( "Add a branch below selection" ));
   4.114  	a->setShortcut (Qt::CTRL +Qt::Key_A );
   4.115 +	a->setShortcutContext (Qt::WindowShortcut);
   4.116 +	addAction (a);
   4.117      connect( a, SIGNAL( activated() ), this, SLOT( editNewBranchBelow() ) );
   4.118  	actionListBranches.append(a);
   4.119  
   4.120 @@ -778,22 +792,32 @@
   4.121      a = new QAction(tr( "Select upper branch" ), this);
   4.122  	a->setStatusTip ( tr( "Select upper branch" ));
   4.123  	a->setShortcut (Qt::Key_Up );
   4.124 +	a->setShortcutContext (Qt::WindowShortcut);
   4.125 +	addAction (a);
   4.126      connect( a, SIGNAL( activated() ), this, SLOT( editUpperBranch() ) );
   4.127      a = new QAction( tr( "Select lower branch" ),this);
   4.128  	a->setStatusTip (tr( "Select lower branch" ));
   4.129  	a->setShortcut ( Qt::Key_Down );
   4.130 +	a->setShortcutContext (Qt::WindowShortcut);
   4.131 +	addAction (a);
   4.132      connect( a, SIGNAL( activated() ), this, SLOT( editLowerBranch() ) );
   4.133      a = new QAction(tr( "Select left branch" ), this);
   4.134  	a->setStatusTip ( tr( "Select left branch" ));
   4.135  	a->setShortcut (Qt::Key_Left );
   4.136 +	a->setShortcutContext (Qt::WindowShortcut);
   4.137 +	addAction (a);
   4.138      connect( a, SIGNAL( activated() ), this, SLOT( editLeftBranch() ) );
   4.139      a = new QAction( tr( "Select child branch" ), this);
   4.140  	a->setStatusTip (tr( "Select right branch" ));
   4.141  	a->setShortcut (Qt::Key_Right);
   4.142 +	a->setShortcutContext (Qt::WindowShortcut);
   4.143 +	addAction (a);
   4.144      connect( a, SIGNAL( activated() ), this, SLOT( editRightBranch() ) );
   4.145      a = new QAction( tr( "Select first branch" ), this);
   4.146  	a->setStatusTip (tr( "Select first branch" ));
   4.147  	a->setShortcut (Qt::Key_Home );
   4.148 +	a->setShortcutContext (Qt::WindowShortcut);
   4.149 +	addAction (a);
   4.150  	a->setEnabled (false);
   4.151  	editMenu->addAction (a);
   4.152  	actionListBranches.append(a);
   4.153 @@ -802,6 +826,8 @@
   4.154      a = new QAction( tr( "Select last branch" ),this);
   4.155  	a->setStatusTip (tr( "Select last branch" ));
   4.156  	a->setShortcut ( Qt::Key_End );
   4.157 +	a->setShortcutContext (Qt::WindowShortcut);
   4.158 +	addAction (a);
   4.159      connect( a, SIGNAL( activated() ), this, SLOT( editLastBranch() ) );
   4.160  	a->setEnabled (false);
   4.161  	editMenu->addAction (a);
   4.162 @@ -1519,15 +1545,10 @@
   4.163  	// Context Menu for links in a branch menu
   4.164  	// This will be populated "on demand" in MapEditor::updateActions
   4.165  	branchContextMenu->addSeparator();	
   4.166 -	/* FIXME not yet ported from QT3
   4.167 -	branchLinksContextMenu =new Q3PopupMenu (this);
   4.168 -	branchLinksContextMenuDup =new Q3PopupMenu (this);
   4.169 -	branchContextMenu->insertItem (tr("Edit XLink"),branchLinksContextMenuDup);
   4.170 -	connect( branchLinksContextMenuDup, SIGNAL( activated(int) ), this, SLOT( editEditXLink(int ) ) );
   4.171 -
   4.172 -	branchContextMenu->insertItem (tr("Goto XLink"),branchLinksContextMenu);
   4.173 -	connect( branchLinksContextMenu, SIGNAL( activated(int) ), this, SLOT( editFollowXLink(int ) ) );
   4.174 -	*/
   4.175 +	branchLinksContextMenuEdit =branchContextMenu->addMenu (tr ("Edit XLink"));
   4.176 +	branchLinksContextMenuFollow =branchContextMenu->addMenu (tr ("Follow XLink"));
   4.177 +	connect( branchLinksContextMenuFollow, SIGNAL( triggered(QAction *) ), this, SLOT( editFollowXLink(QAction * ) ) );
   4.178 +	connect( branchLinksContextMenuEdit, SIGNAL( triggered(QAction *) ), this, SLOT( editEditXLink(QAction * ) ) );
   4.179  	
   4.180  	// Context menu for floatimage
   4.181  	floatimageContextMenu =new QMenu (this);
   4.182 @@ -1580,7 +1601,7 @@
   4.183  			lastMaps.append(s);
   4.184  	}
   4.185  	setupLastMapsMenu();
   4.186 -//	connect( lastMapsMenu, SIGNAL( activated(int) ), this, SLOT( fileLoadLast(int ) ) );
   4.187 +	connect( fileLastMapsMenu, SIGNAL( triggered(QAction *) ), this, SLOT( fileLoadLast(QAction*) ) );
   4.188  }
   4.189  
   4.190  void Main::setupLastMapsMenu()
   4.191 @@ -1607,11 +1628,8 @@
   4.192  	
   4.193  	// build Menu from lastMaps string list
   4.194  	fileLastMapsMenu->clear();
   4.195 -	/* FIXME add actions instead of strings in QT4
   4.196  	for (it = lastMaps.begin(); it != lastMaps.end(); ++it ) 
   4.197  		fileLastMapsMenu->addAction (*it );
   4.198 -	*/	
   4.199 -		
   4.200  }
   4.201  
   4.202  void Main::hideEvent (QHideEvent * )
   4.203 @@ -1952,9 +1970,9 @@
   4.204  	fileLoad (NewMap);
   4.205  }
   4.206  
   4.207 -void Main::fileLoadLast(int i)
   4.208 +void Main::fileLoadLast(QAction *a)
   4.209  {
   4.210 -	fileLoad(QString(*lastMaps.at(fileLastMapsMenu->indexOf (i)) ),NewMap);			   
   4.211 +	fileLoad(lastMaps.at(fileLastMapsMenu->actions().indexOf(a)) ,NewMap);
   4.212  }
   4.213  
   4.214  void Main::fileSave(const SaveMode &savemode)
   4.215 @@ -2793,16 +2811,17 @@
   4.216  		currentMapEditor()->saveFloatImage(item);
   4.217  }
   4.218  
   4.219 -void Main::editFollowXLink(int item)
   4.220 +void Main::editFollowXLink(QAction *a)
   4.221 +{
   4.222 +
   4.223 +	if (currentMapEditor())
   4.224 +		currentMapEditor()->followXLink(branchLinksContextMenuFollow->actions().indexOf(a));
   4.225 +}
   4.226 +
   4.227 +void Main::editEditXLink(QAction *a)
   4.228  {
   4.229  	if (currentMapEditor())
   4.230 -		currentMapEditor()->followXLink(branchLinksContextMenu->indexOf(item));
   4.231 -}
   4.232 -
   4.233 -void Main::editEditXLink(int item)
   4.234 -{
   4.235 -	if (currentMapEditor())
   4.236 -		currentMapEditor()->editXLink(branchLinksContextMenuDup->indexOf(item));
   4.237 +		currentMapEditor()->editXLink(branchLinksContextMenuEdit->actions().indexOf(a));
   4.238  }
   4.239  
   4.240  void Main::formatSelectColor()
     5.1 --- a/mainwindow.h	Wed Jun 14 14:43:18 2006 +0000
     5.2 +++ b/mainwindow.h	Tue Jul 04 12:10:56 2006 +0000
     5.3 @@ -64,7 +64,7 @@
     5.4      ErrorCode fileLoad(QString ,const LoadMode &);
     5.5      void fileLoad(const LoadMode &);
     5.6      void fileLoad();
     5.7 -	void fileLoadLast(int);
     5.8 +	void fileLoadLast(QAction *);
     5.9      void fileSave(const SaveMode & );
    5.10      void fileSave();
    5.11      void fileSaveAs(const SaveMode &);
    5.12 @@ -131,8 +131,8 @@
    5.13      void editLastBranch();
    5.14      void editLoadImage();
    5.15      void editSaveImage(int);
    5.16 -    void editFollowXLink (int);
    5.17 -    void editEditXLink (int);
    5.18 +    void editFollowXLink (QAction *);
    5.19 +    void editEditXLink (QAction *);
    5.20  
    5.21      void formatSelectColor();
    5.22      void formatPickColor();
     6.1 --- a/mapeditor.cpp	Wed Jun 14 14:43:18 2006 +0000
     6.2 +++ b/mapeditor.cpp	Tue Jul 04 12:10:56 2006 +0000
     6.3 @@ -130,8 +130,8 @@
     6.4  extern QMenu* branchContextMenu;
     6.5  extern QMenu* branchAddContextMenu;
     6.6  extern QMenu* branchRemoveContextMenu;
     6.7 -extern QMenu* branchLinksContextMenu;
     6.8 -extern QMenu* branchLinksContextMenuDup;
     6.9 +extern QMenu* branchLinksContextMenuEdit;
    6.10 +extern QMenu* branchLinksContextMenuFollow;
    6.11  extern QMenu* floatimageContextMenu;
    6.12  extern QMenu* saveImageFormatMenu;
    6.13  extern QMenu* canvasContextMenu;
    6.14 @@ -2517,7 +2517,6 @@
    6.15  
    6.16  void MapEditor::updateActions()
    6.17  {
    6.18 -return;  //FIXME testing
    6.19  	QAction *a;
    6.20  	if (getLinkColorHint()==HeadingColor) 
    6.21  		actionFormatLinkColorHint->setOn(true);
    6.22 @@ -2560,17 +2559,14 @@
    6.23  			// Take care of links
    6.24  			if (bo->countXLinks()==0)
    6.25  			{
    6.26 -				branchLinksContextMenu->clear();
    6.27 -				branchLinksContextMenu->insertItem ("No xLink available");
    6.28 -				branchLinksContextMenuDup->clear();
    6.29 -				branchLinksContextMenuDup->insertItem ("No xLink available");
    6.30 -				
    6.31 +				branchLinksContextMenuEdit->clear();
    6.32 +				branchLinksContextMenuFollow->clear();
    6.33  			} else
    6.34  			{
    6.35  				BranchObj *bot;
    6.36  				QString s;
    6.37 -				branchLinksContextMenu->clear();
    6.38 -				branchLinksContextMenuDup->clear();
    6.39 +				branchLinksContextMenuEdit->clear();
    6.40 +				branchLinksContextMenuFollow->clear();
    6.41  				for (int i=0; i<=bo->countXLinks();i++)
    6.42  				{
    6.43  					bot=bo->XLinkTargetAt(i);
    6.44 @@ -2579,8 +2575,8 @@
    6.45  						s=bot->getHeading();
    6.46  						if (s.length()>25)
    6.47  							s=s.left(25)+"...";
    6.48 -						branchLinksContextMenu->insertItem (s);
    6.49 -						branchLinksContextMenuDup->insertItem (s);
    6.50 +						branchLinksContextMenuFollow->addAction (s);
    6.51 +						branchLinksContextMenuEdit->addAction (s);
    6.52  					}	
    6.53  				}
    6.54  			}
    6.55 @@ -3070,6 +3066,7 @@
    6.56  
    6.57  void MapEditor::editXLink(int i)
    6.58  {
    6.59 +	qDebug ("ko.");
    6.60  	if (selection && 
    6.61  		(typeid(*selection) == typeid(BranchObj)) || 
    6.62  		(typeid(*selection) == typeid(MapCenterObj))  )
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/tex/vym.changelog	Tue Jul 04 12:10:56 2006 +0000
     7.3 @@ -0,0 +1,759 @@
     7.4 +-------------------------------------------------------------------
     7.5 +Tue Jul  4 12:32:28 CEST 2006 - uwedr
     7.6 +
     7.7 +- Feature: Moved floats in XML Export, e.g. XHTML  shows floatimages at
     7.8 +  beginning of export now
     7.9 +
    7.10 +-------------------------------------------------------------------
    7.11 +Thu June 1i 16:53:29 CEST 2006 - uwedr
    7.12 +
    7.13 +- Version: 1.7.18
    7.14 +- Feature: Opening of tabs in Firefox or Mozilla
    7.15 +- Feature: Documentation is up to date now
    7.16 +- Bugfix: No more duplicate xLinks
    7.17 +- Bugfix: Saving original filename of floatimages finally works
    7.18 +- Bugfix: Positioning of floatimages while adjusting canvas size (also
    7.19 +          optimized code a bit)
    7.20 +
    7.21 +-------------------------------------------------------------------
    7.22 +Tue May  9 10:05:52 CEST 2006 - uwedr
    7.23 +
    7.24 +- Version: 1.7.17
    7.25 +- Bugfix: Right click e.g. on URL Flag opened URL _and_ context menu 
    7.26 +- Bugfix: Deleting selection works also if Delkey is disabled.
    7.27 +
    7.28 +-------------------------------------------------------------------
    7.29 +Mon May  8 10:29:25 CEST 2006 - uwedr
    7.30 +
    7.31 +- Bugfix: Exclusive flags did not work properly. 
    7.32 +- Bugfix: Wrong icon in texteditor for text underline
    7.33 +- Bugfix: Changed screenshots in docu to represent new look
    7.34 +- Bugfix: Fixed z-plane of floatimage. Images did hide flags.
    7.35 +
    7.36 +-------------------------------------------------------------------
    7.37 +Mon Apr 24 11:59:22 CEST 2006 - uwedr
    7.38 +
    7.39 +- Bugfix: wrong paths in XHTML export (#168033), caused by wrong
    7.40 +          vymBaseDir
    7.41 +
    7.42 +-------------------------------------------------------------------
    7.43 +Mon Apr 10 13:23:02 CEST 2006 - uwedr
    7.44 +
    7.45 +- Feature: More icons 
    7.46 +
    7.47 +-------------------------------------------------------------------
    7.48 +Fri Mar 31 14:18:38 CEST 2006 - uwe
    7.49 +
    7.50 +- Feature: New environment variable VYMHOME 
    7.51 +
    7.52 +-------------------------------------------------------------------
    7.53 +Thu Mar 30 11:00:21 CEST 2006 - uwedr
    7.54 +
    7.55 +- Version: 1.7.15
    7.56 +- Feature: New icons. Icons and flags are not longer linked statically.
    7.57 +
    7.58 +-------------------------------------------------------------------
    7.59 +Tue Mar 28 21:54:31 CEST 2006 - uwe
    7.60 +
    7.61 +- Version: 1.7.13
    7.62 +- Feature: Konqueror can open URLs in new tabs now.
    7.63 +
    7.64 +-------------------------------------------------------------------
    7.65 +Thu Mar 23 13:26:46 CET 2006 - uwedr
    7.66 +
    7.67 +- Version: 1.7.12
    7.68 +- Bugfix: Problem with vymlinks pointing to higher directories (#159770)
    7.69 +- Bugfix: All exports support hiding of objects now
    7.70 +- Bugfix: exportDir in XHTML export is correctly saved in map and
    7.71 +  defaults to current directory
    7.72 +
    7.73 +-------------------------------------------------------------------
    7.74 +Wed Mar 15 11:43:02 CET 2006 - uwedr
    7.75 +
    7.76 +- Version: 1.7.11
    7.77 +- Bugfix: Workaround QT problem, where QT writes invalid XML code by not
    7.78 +  escaping & in fontnames
    7.79 +- Feature: Hide Export Flag lets you hide objects in exports
    7.80 +- Feature: Floatimages now are basically ornamented objects. They could
    7.81 +  have e.g. an URL later
    7.82 +- Feature: On error the XML Parser shows the line which is causing the
    7.83 +           error
    7.84 +
    7.85 +-------------------------------------------------------------------
    7.86 +Wed Mar  8 13:58:40 CET 2006 - uwedr
    7.87 +
    7.88 +- Bugfix: Images preview in filedialog works again. Seemed to be a QT
    7.89 +  issue when multiple fileselections were allowed. 
    7.90 +
    7.91 +-------------------------------------------------------------------
    7.92 +Mon Mar  6 15:02:57 CET 2006 - uwedr
    7.93 +
    7.94 +- Feature: Added export to Taskjuggler. xslt by Matt. 
    7.95 +
    7.96 +-------------------------------------------------------------------
    7.97 +Wed Mar  1 22:29:47 CET 2006 - uwe
    7.98 +
    7.99 +- Bugfix: Canvas Size corrected when flag is toggled 
   7.100 +
   7.101 +-------------------------------------------------------------------
   7.102 +Wed Mar  1 15:38:11 CET 2006 - uwedr
   7.103 +
   7.104 +- Version: 1.7.10
   7.105 +- Feature: Include Images Horizontalls
   7.106 +
   7.107 +-------------------------------------------------------------------
   7.108 +Tue Feb 21 17:17:48 CET 2006 - uwedr
   7.109 +
   7.110 +- Feature: rudimentary import mmaps 
   7.111 +
   7.112 +-------------------------------------------------------------------
   7.113 +Tue Feb 14 21:10:26 CET 2006 - uwe
   7.114 +
   7.115 +- Version 1.7.9
   7.116 +- Feature: Import KDE bookmarks
   7.117 +- Feature: Own class xsltproc for doing xml transformations
   7.118 +
   7.119 +-------------------------------------------------------------------
   7.120 +Tue Jan 31 16:54:52 CET 2006 - uwedr
   7.121 +
   7.122 +- Version 1.7.8
   7.123 +- Bugfix: Hide Include Images Horizontally (not implemented yet) 
   7.124 +- Bugfix: Include Images Vertically was not read from saved file
   7.125 +
   7.126 +-------------------------------------------------------------------
   7.127 +Tue Jan 25 16:07:53 CET 2006 - uwedr
   7.128 +
   7.129 +- Version 1.7.7
   7.130 +- Feature: Export to Open Office 2.x (Open Document) basically works 
   7.131 +- Feature: Export to XHTML uses smaller icon for URLs now
   7.132 +
   7.133 +-------------------------------------------------------------------
   7.134 +Wed Jan 18 13:29:52 CET 2006 - uwedr
   7.135 +
   7.136 +- Feature: Multiple File selection while loading maps and images
   7.137 +
   7.138 +-------------------------------------------------------------------
   7.139 +Tue Jan  3 12:20:08 CET 2006 - uwe
   7.140 +
   7.141 +- Feature: Small optimization in zip/unzip functions
   7.142 +
   7.143 +-------------------------------------------------------------------
   7.144 +Mon Jan  2 21:03:05 CET 2006 - uwe
   7.145 +
   7.146 +- Feature: FATE support for URLs 
   7.147 +
   7.148 +-------------------------------------------------------------------
   7.149 +Wed Dec 28 12:09:59 CET 2005 - uwe
   7.150 +
   7.151 +- Version 1.7.6
   7.152 +- Feature: Added idAttr to BranchObj::saveToDir 
   7.153 +- Bugfix: FloatObjects now use hideLinkIfUnselected, no more drawing
   7.154 +  errors, if FO is selected (undefined link)
   7.155 +- Bugfix: FloatImages don't get lost during save after they have been
   7.156 +  relinked to new parent  
   7.157 +- Bugfix: Editing heading of mapcenter now also corrects position  
   7.158 +
   7.159 +-------------------------------------------------------------------
   7.160 +Mon Oct 10 13:18:29 CEST 2005 - uwedr
   7.161 +
   7.162 +- Bugfix: Copy/Paste was currently not possible for images. Now
   7.163 +  completly rewrote mechanism. Instead of invisible map now XML import
   7.164 +  is used (Multiple clipboards should be not difficult now) 
   7.165 +
   7.166 +-------------------------------------------------------------------
   7.167 +Mon Oct  3 10:33:09 CEST 2005 - uwe
   7.168 +
   7.169 +- Bugfix: Added small fix from Khaled Ahmed needed for display of 
   7.170 +  arabic languages 
   7.171 +
   7.172 +-------------------------------------------------------------------
   7.173 +Mon Sep 12 21:39:38 CEST 2005 - uwedr
   7.174 +
   7.175 +- Version 1.7.5
   7.176 +- Feature: Currently 15 levels of undo (GUI to set value still missing)
   7.177 +- Feature: Experimental LaTeX Export (without headers and opions so far)
   7.178 +
   7.179 +-------------------------------------------------------------------
   7.180 +Sun Sep  5 10:26:15 CEST 2005 - uwedr
   7.181 +
   7.182 +- Version 1.7.4
   7.183 +- Feature: Link of a branch can be hidden, if object is not selected
   7.184 +- Bugfix: Zoomed map no longer "jumps around" when branch is selected
   7.185 +  or moved.
   7.186 +- Bugfix: TextEditor now has grey background again, if it is empty
   7.187 +- Bugfix: BranchObj no longer need to connect to TextEditor, BranchObj
   7.188 +  is no longer a QOBJECT
   7.189 +
   7.190 +-------------------------------------------------------------------
   7.191 +Thu Sep  1 12:26:24 CEST 2005 - uwedr
   7.192 +
   7.193 +- Bugfix: Some minor changes so that translations use arguments now
   7.194 +  instead of several calls to tr()
   7.195 +
   7.196 +-------------------------------------------------------------------
   7.197 +Tue Aug 30 13:38:31 CEST 2005 - uwedr
   7.198 +
   7.199 +- Bugfix: Fixed pasting vymlinks: Pasting a branch to a target in
   7.200 +  another map caused vym to go into an endless loop, if the vymlink of the
   7.201 +  branch pointed to the new map.
   7.202 +- Bugfix: Invisible floatimages (which have a scrolled parent) no longer
   7.203 +  can be selected  
   7.204 +
   7.205 +-------------------------------------------------------------------
   7.206 +Fri Aug 19 09:12:49 CEST 2005 - uwedr
   7.207 +
   7.208 +- Feature: added debian subdirectory created by Steffen Joeris
   7.209 +- Feature: added license to new aboutwindow
   7.210 +
   7.211 +-------------------------------------------------------------------
   7.212 +Tue Aug 16 19:22:56 CEST 2005 - jhilmer
   7.213 +
   7.214 +- Bugfix: Fixed link handling in aboutdialog.
   7.215 +
   7.216 +-------------------------------------------------------------------
   7.217 +Tue Aug 16 12:25:09 CEST 2005 - uwedr
   7.218 +
   7.219 +- Feature: Added keyboard shortcut to reset zoom factor
   7.220 +- Bugfix: Added "..." to menu entries leading to another dialog
   7.221 +- Bugfix: The setting option "Delete Key" is working again
   7.222 +- Bugfix: A branch moved from left side to right had wrong orienation
   7.223 +
   7.224 +-------------------------------------------------------------------
   7.225 +Tue Aug  2 09:59:24 CEST 2005 - uwedr
   7.226 +
   7.227 +-  Bugfix: Heading sizes now correct after moving e.g. mainbranch to 
   7.228 +   a branch
   7.229 +
   7.230 +-------------------------------------------------------------------
   7.231 +Mon Aug  1 22:40:29 CEST 2005 - jhilmer
   7.232 +
   7.233 +- Bugfix: Problems with closing of note editor when text was modified.
   7.234 +- Feature: Added subscript and superscript to note editor
   7.235 +	
   7.236 +-------------------------------------------------------------------
   7.237 +Thu Jul 28 11:57:38 CEST 2005 
   7.238 +
   7.239 +- Version 1.7.3
   7.240 +- Bugfix: Frames didn't become invisible if scrolled
   7.241 +
   7.242 +-------------------------------------------------------------------
   7.243 +Thu Jul 28 11:57:38 CEST 2005 
   7.244 +
   7.245 +- Version 1.7.2
   7.246 +- Bugfix: if selection changed before undo, undo worked on wrong
   7.247 +  branch
   7.248 +- included math.h again to enable compiling with gcc4  
   7.249 +
   7.250 +-------------------------------------------------------------------
   7.251 +Mi Jul 27 17:27:14 CEST 2005
   7.252 +
   7.253 +- Bugfix: if selection changed before undo, undo worked on wrong branch
   7.254 +
   7.255 +-------------------------------------------------------------------
   7.256 +Mon Jul 25 22:22:21 CEST 2005
   7.257 +
   7.258 +- Bugfix: changed MapEditor::undo and ::saveState to also save selection
   7.259 +
   7.260 +-------------------------------------------------------------------
   7.261 +Di Jul 19 16:42:31 CEST 2005
   7.262 +
   7.263 +- Version: 1.7.1
   7.264 +- Feature: Drag and Drop also for .vym and files (Jakob Hilmer)
   7.265 +- Feature: More speedup on moving/relinking branches
   7.266 +
   7.267 +-------------------------------------------------------------------
   7.268 +
   7.269 +Mi Jul 13 11:44:10 CEST 2005 
   7.270 +
   7.271 +- Drag and Drop also for URLs
   7.272 +
   7.273 +-------------------------------------------------------------------
   7.274 +Di Jul 12 20:56:09 CEST 2005
   7.275 +
   7.276 +- Version: 1.7.0
   7.277 +
   7.278 +-------------------------------------------------------------------
   7.279 +Mon Jul  4 21:13:42 CEST 2005 
   7.280 +
   7.281 +- Version: 1.6.9
   7.282 +- Bugfix: TextEditor doesn't get minimized in KDE any longer (KDE-bug?)
   7.283 +
   7.284 +-------------------------------------------------------------------
   7.285 +Tue Jun 14 11:43:44 CEST 2005
   7.286 +
   7.287 +- Feature: printer name is saved in vymrc now
   7.288 +- Feature: added image drag/drop (by Jakob Hilmer)
   7.289 +- Bugfix: Importing map into new map now has correct (empty) filename 
   7.290 +
   7.291 +-------------------------------------------------------------------
   7.292 +2005-06-07 
   7.293 +
   7.294 +- Version: 1.6.8
   7.295 +- Feature: Dramatic speedup in some operations 
   7.296 +				(e.g. move branch up/down) due to extended 
   7.297 +				undo engine
   7.298 +-------------------------------------------------------------------
   7.299 + 2005-05-27 
   7.300 + 
   7.301 +- Version: 1.6.7	
   7.302 +- Feature:Changed default pdf-reader for Mac OSX 
   7.303 +- Bugfix: xLinks stopped working in 1.6.6
   7.304 +- Bugfix: drawing error when using modModeCopy
   7.305 +- Bugfix: replaced lrint by qRound for BSD port
   7.306 +		
   7.307 +-----------------------------------------------------------
   7.308 + 2005-05-23
   7.309 +
   7.310 +- Version 1.6.6	
   7.311 +- Feature: Exclusive standard flags		
   7.312 +
   7.313 +-----------------------------------------------------------
   7.314 +2005-05-19 
   7.315 +
   7.316 +- Version: 1.6.5
   7.317 +- Feature: removing a branch and keeping its childs
   7.318 +- Feature: removing childs of a branch
   7.319 +- Feature: insert branch and make selection its child
   7.320 +- Feature: restructured branch context menu	
   7.321 +           in a basic version (straight line)
   7.322 +- Feature: New shortcuts  for use on Mac OS X
   7.323 +- Feature: Importing directories generates vymlinks now 
   7.324 +- Bugfix: Changing linkstyle now automatically redraws all
   7.325 +	      links again
   7.326 +- Bugfix: Paste icon is disabled if clipboard is empty 
   7.327 +		
   7.328 +-----------------------------------------------------------
   7.329 +2005-04-15
   7.330 +
   7.331 +- Version: 1.6.4	
   7.332 +- Feature: xLinks (connection between 2 branches) works
   7.333 +           in a basic version (straight line)	
   7.334 +
   7.335 +-----------------------------------------------------------
   7.336 +2005-03-30
   7.337 +
   7.338 +- Version: 1.6.3
   7.339 +- Bugfix: Saving of selection to a vym part (.vyp)
   7.340 +- Bugfix: Closing the noteeditor by closing its window now
   7.341 +          also toggles the responding toolbar button. &
   7.342 +
   7.343 +-----------------------------------------------------------
   7.344 +2005-03-24
   7.345 +
   7.346 +- Version: 1.6.2	
   7.347 +- Feature: Introduced Modifier modes: color, link, copy 
   7.348 +- Feature: Linking branches is basically possible, though it can't be
   7.349 +           edited/saved yet 
   7.350 +
   7.351 +-----------------------------------------------------------
   7.352 +2005-01-30
   7.353 +
   7.354 +- Version: 1.6.1	 
   7.355 +- Feature: Optimized moving of branches: much faster especially 
   7.356 +           with huge subtrees					
   7.357 +- Bugfix: Segfault when loading vym part 
   7.358 +- Bugfix: ugly unitialized lines, when temporary drawn link 
   7.359 +          was moved from a temporary parent back to canvas		  
   7.360 +
   7.361 +-----------------------------------------------------------
   7.362 +2004-12-14  
   7.363 +
   7.364 +- Version: 1.6.0 	 
   7.365 +- Feature: Added saving of xhtml settings in map 
   7.366 +
   7.367 +-----------------------------------------------------------
   7.368 +2004-12-13  
   7.369 +
   7.370 +- Version: 1.5.2 	 
   7.371 +- Feature: Added Import of maps with two modes: 
   7.372 +           add/replace						
   7.373 +- Feature: Added export of part of maps		 
   7.374 +- Feature: Added joining of paragraphs in text editor		 
   7.375 +- Feature: Optimized undo: Only relevant parts are saved, which
   7.376 +           dramatically improves e.g. moving branches up/down in most maps  
   7.377 +- Bugfix: QTextEdit generates invalid XML code, which could lead to a
   7.378 +          parse error, if font name contains a \&  (#62283)   
   7.379 +- Bugfix: Wrong order of mainbranches in Export	   
   7.380 +- Bugfix: zip archive was not deleted before save, which could lead to
   7.381 +  much bigger files, e.g.  when working on older \vym maps or deleted
   7.382 +  images   
   7.383 +- Bugfix: Printing in Texteditor         
   7.384 +- Bugfix: Wrong URLs in xhtml output				  
   7.385 +- Bugfix: Segfault fixed at Cursor left/right in empty map  
   7.386 +
   7.387 +-----------------------------------------------------------
   7.388 +2004-10-01 
   7.389 +
   7.390 +- Version: 1.5.1
   7.391 +- Feature: More options in xhtml export: external scripts 	 
   7.392 +
   7.393 +-----------------------------------------------------------
   7.394 +2004-09-26 
   7.395 +
   7.396 +- Version: 1.5.0 	 
   7.397 +- Public release of all changes since 1.4.1      	 
   7.398 +- Feature: New function to replace paragraphs in note editor
   7.399 +   	by linebreaks, this makes pasted text much nicer 
   7.400 +- Feature: New option to toggle exporting of of floatimages 
   7.401 +- Feature: z-plane of floatimages can be set (manually only) 
   7.402 +- Bugfix: Wrong ordering of branches, if mainbranch is exactly left of
   7.403 +  center 
   7.404 +
   7.405 +-----------------------------------------------------------
   7.406 +2004-09-24 
   7.407 +
   7.408 +- Version: 1.4.7 	 
   7.409 +- Feature: New Export to XHTML (by Thomas Schraitle)	 
   7.410 +- Bugfix: vymLink	
   7.411 +- Bugfix: spaces and dots in filenames	 
   7.412 +- Bugfix: Error message if xsltproc is not installed 
   7.413 +
   7.414 +-----------------------------------------------------------
   7.415 +2004-09-15	
   7.416 +
   7.417 +- Version: 1.4.6 	 
   7.418 +- Feature: New file format: notes are saved as part of the .xml file
   7.419 +- Feature: Note Editor supports Rich Text now.
   7.420 +- Feature: Parser now also nows {\tt standardflag} (all letters lowercase)
   7.421 +
   7.422 +-----------------------------------------------------------
   7.423 +2004-08-23	
   7.424 +
   7.425 +- Version: 1.4.5 	 
   7.426 +- Feature: Correct handling of font size in Heading			 
   7.427 +
   7.428 +-----------------------------------------------------------
   7.429 +2004-07-29	
   7.430 +
   7.431 +- Version: 1.4.4 	 
   7.432 +- Selecting with cursor now works between subtrees	 
   7.433 +- Bugfix: vymLink was set to temporary dir in 1.4.3	 
   7.434 +
   7.435 +-----------------------------------------------------------
   7.436 +2004-07-19  
   7.437 +
   7.438 +- Version: 1.4.3 	 
   7.439 +- Optimisation: Reduced canvas objects by only creating objects for used
   7.440 +  flags		 
   7.441 +- Better visualization of moving branch above/below target		
   7.442 +- Find Window informs with dialog, if the search failed
   7.443 +- System Flags are clickable now		
   7.444 +- Reworked CSS and XST stylsheets (comments, indent, browser
   7.445 +  compatibility)						
   7.446 +- vymLinks are shown in statusbar		
   7.447 +- current directory is save			
   7.448 +- Rewritten load/save to improve multimap handling and unzipped files
   7.449 +- Bugfix: vymLinks don't get deleted when Cancel is pressed						
   7.450 +- Bugfix: Fixed a bunch of bugs in XSL for HTML export             
   7.451 +- Bugfix: More toolbar buttons disabled, if action not possible             
   7.452 +- Bugfix: Renaming .vymfile now works		
   7.453 +- Bugfix: mapChanged set when toggling flags		
   7.454 +- Bugfix: CTRL-N was used twice		
   7.455 +- Bugfix: Del didn't work on floatimage 
   7.456 +
   7.457 +-----------------------------------------------------------
   7.458 +- Version: 1.4.2 	 
   7.459 +- Bugfix: Float image could not be deleted  
   7.460 +
   7.461 +-----------------------------------------------------------
   7.462 +2004-05-25  
   7.463 +
   7.464 +- Version: 1.4.1 	 
   7.465 +- Bugfix: Color of branch not saved	 
   7.466 +- Bugfix: wrong path at HTML export	             
   7.467 +- Bugfix: map is not save with special characters in path   
   7.468 +
   7.469 +-----------------------------------------------------------
   7.470 +2004-05-17 
   7.471 +
   7.472 +- Version: 1.4.0 	 
   7.473 +- Ask for confirmation before opening 
   7.474 +				a map in multiple editors			 
   7.475 +- Save state of note editor (visible/minimized) 
   7.476 +- Export to HTML						 
   7.477 +- Author and Comment is saved in map	 
   7.478 +- Stats are shown in Edit MapInfo		 
   7.479 +- Changes for OS X port (QCursor, QContextMenuEvent)	 
   7.480 +- Bugfix: Fonts from note editor are save now			
   7.481 +- Bugfix: invisible image when parent is scrolled		
   7.482 +- Bugfix: Segfault pressing "enter" for floatimage	
   7.483 +- Bugfix: Images can't be outside of exported area
   7.484 +				anymore. 
   7.485 +- Bugfix: Filenames with blanks		 
   7.486 +- Bugfix: Old maplink is shown when editing maplink 
   7.487 +- Bugfix: always show cursor while editing heading  
   7.488 +
   7.489 +-----------------------------------------------------------
   7.490 +2004-04-16 
   7.491 +
   7.492 +- Version: 1.3.5 	 
   7.493 +- Export map to dir					 
   7.494 +- Export to any of QTs image formats	 
   7.495 +- Also right side of selection is always visible now. 
   7.496 +
   7.497 +-----------------------------------------------------------
   7.498 +2004-04-07 
   7.499 +
   7.500 +- Version: 1.3.4 	 
   7.501 +- Load last maps in file menu          
   7.502 +- save last image path for loading	 
   7.503 +- Also export standard flags to dir.	 
   7.504 +
   7.505 +-----------------------------------------------------------
   7.506 +2004-03-26 
   7.507 +
   7.508 +- Version: 1.3.3 	 
   7.509 +- Enabled <br> in headings as manual linebreak	 
   7.510 +- Heading can be copied to URL		
   7.511 +- Bugfix: GIFs are automatically converted to PNG now
   7.512 +
   7.513 +-----------------------------------------------------------
   7.514 +2004-03-26 
   7.515 +
   7.516 +- Version: 1.3.2 	 
   7.517 +- Add and move branches above/below selection, Texteditor copy all, 
   7.518 +
   7.519 +-----------------------------------------------------------
   7.520 +2004-03-25 
   7.521 +
   7.522 +- Version: 1.3.1 	 
   7.523 +- Export to directory, changed naming in .vym 
   7.524 +
   7.525 +-----------------------------------------------------------
   7.526 +2004-03-23 
   7.527 +
   7.528 +- Version: 1.3.0 	 
   7.529 +- Bugfix: Check if map can be saved at all 
   7.530 +
   7.531 +-----------------------------------------------------------
   7.532 +2004-03-22 
   7.533 +
   7.534 +- Version: 1.2.12	 
   7.535 +- Select image format before saving image	 
   7.536 +
   7.537 +-----------------------------------------------------------
   7.538 +2004-03-18 
   7.539 +
   7.540 +- Version: 1.2.11	
   7.541 +-		Selecting mainbranches by up/down	 
   7.542 +-		Export ASCII (experimental)						
   7.543 +-		Each map can be saved individually at quit		
   7.544 +-		Bugfix: Opening VymLink crashes QT				
   7.545 +-		Bugfix: 50\% less objects on canvas				
   7.546 +-		Bugfix: Ignoring LANG, now always written as UTF8
   7.547 +
   7.548 +-----------------------------------------------------------
   7.549 +2004-03-16 
   7.550 +
   7.551 +- Version: 1.2.10	
   7.552 +- Sort Mainbranches by angle to y-axis 
   7.553 +- Import directory structure						
   7.554 +- Bugfix: Set FrameType of MapCenter while loading map 
   7.555 +
   7.556 +-----------------------------------------------------------
   7.557 +2004-03-12 
   7.558 +
   7.559 +- Version: 1.2.9	
   7.560 +- Jump to another vym map		         
   7.561 +- Mainbranches are alwas ordered clockwise        
   7.562 +
   7.563 +-----------------------------------------------------------
   7.564 +2004-03-03 
   7.565 +
   7.566 +- Version: 1.2.8	 
   7.567 +- Change frame types in context menu   
   7.568 +
   7.569 +-----------------------------------------------------------
   7.570 +2004-02-25 
   7.571 +
   7.572 +- Version: 1.2.7	
   7.573 +- Copy / Paste and save Floatimages  
   7.574 +
   7.575 +-----------------------------------------------------------
   7.576 +2004-02-24 
   7.577 +
   7.578 +- Version: 1.2.6	 
   7.579 +- Closing vym in KDE now asks for save, too	 
   7.580 +- Context menu for branches					  
   7.581 +- Selection is saved in .vym file				  
   7.582 +
   7.583 +-----------------------------------------------------------
   7.584 +2004-02-18 
   7.585 +
   7.586 +- Version: 1.2.5	 
   7.587 +- URLs to external links can be added 
   7.588 +- All actions are deactived if not possible  
   7.589 +
   7.590 +-----------------------------------------------------------
   7.591 +2004-02-16 
   7.592 +
   7.593 +- Version: 1.2.4	 
   7.594 +- Images: Can be loaded, saved, relinked to other parents
   7.595 +
   7.596 +-----------------------------------------------------------
   7.597 +2004-01-27  
   7.598 +
   7.599 +- Version: 1.2.3	 
   7.600 +- Zoom: Reset and finer steps shrinking/enlarging	 
   7.601 +
   7.602 +-----------------------------------------------------------
   7.603 +2004-01-27 
   7.604 +
   7.605 +- Version: 1.2.2	 
   7.606 +- Editing of links (style and color)	 
   7.607 +
   7.608 +-----------------------------------------------------------
   7.609 +2004-01-27 
   7.610 +
   7.611 +- Version: 1.2.1	
   7.612 +- Bugfix: LineEdit when adding branch has correct position again.								 
   7.613 +
   7.614 +-----------------------------------------------------------
   7.615 +2004-01-23 
   7.616 +
   7.617 +- Version: 1.2.0	 
   7.618 +- Scrolled parts are automatically unscrolled when selected and scrolled
   7.619 +  again later.				 
   7.620 +- Bugfix: Save flag is updated when multiple maps are opened 
   7.621 +- Bugfix: Moving of branches is faster and more accurat when adding to
   7.622 +  mapcenter 
   7.623 +
   7.624 +-----------------------------------------------------------
   7.625 +2003-12-04 
   7.626 +
   7.627 +- Version: 1.1.7	 
   7.628 +- Bugfix: Remember filename of note in noteeditor	 
   7.629 +
   7.630 +-----------------------------------------------------------
   7.631 +2003-12-02 
   7.632 +
   7.633 +- Version: 1.1.6	 
   7.634 +- Find Text also in Notes.	 
   7.635 +
   7.636 +-----------------------------------------------------------
   7.637 +2003-11-07 
   7.638 +
   7.639 +- Version: 1.1.5	
   7.640 +- Bugfix: Correct setting and positioning when relinking branches	 
   7.641 +
   7.642 +-----------------------------------------------------------
   7.643 +2003-11-03 
   7.644 +
   7.645 +- Version: 1.1.4	 
   7.646 +- Scroll mode added (folding of subtrees).		 
   7.647 +- Bugfix: Wrong position of linedit in zoomed view 
   7.648 +
   7.649 +-----------------------------------------------------------
   7.650 +2003-10-09  
   7.651 +
   7.652 +- Version: 1.1.3	 
   7.653 +-		Added clear button in find window, bugfixes     
   7.654 +
   7.655 +-----------------------------------------------------------
   7.656 +2003-10-07  
   7.657 +
   7.658 +- Version: 1.1.2	 
   7.659 +- Links can be colored with color of heading      
   7.660 +
   7.661 +-----------------------------------------------------------
   7.662 +2003-09-26  
   7.663 +
   7.664 +- Version: 1.1.1	 
   7.665 +- Improved visualization of linking to new branch 
   7.666 +
   7.667 +-----------------------------------------------------------
   7.668 +2003-09-25  
   7.669 +
   7.670 +- Version: 1.1.0	 
   7.671 +- Find Function							
   7.672 +- Selection always stays in view		  
   7.673 +
   7.674 +-----------------------------------------------------------
   7.675 +2003-09-18
   7.676 +
   7.677 +- Version: 1.0.1	 
   7.678 +- Find function scrolls to result now	 
   7.679 +- Bugfix: Adding branch with midmouse	  
   7.680 +- Bugfix: multiple repositioning of map, when noteeditor was changed
   7.681 +  (speedup)	 
   7.682 +- New Linestyles (still hardcoded)			 
   7.683 +
   7.684 +-----------------------------------------------------------
   7.685 +2003-09-16 	 	
   7.686 +
   7.687 +- Version: 1.0.0	 
   7.688 +- First public stable release			 
   7.689 +
   7.690 +-----------------------------------------------------------
   7.691 +- Version: 0.9.0	 
   7.692 +- added quick color picker (CTRL + Left Mouse)  ?	 
   7.693 +
   7.694 +-----------------------------------------------------------
   7.695 +- Version: 0.8.0	 
   7.696 +- added automatic canvas resizer, removed manual resizing of canvas  
   7.697 +- added settings option to paste text into new branch	 
   7.698 +- simplified code	 
   7.699 +- Added heart flag	 
   7.700 +- Choose and switch between fixed and variable width fonts 
   7.701 +- note editor		 
   7.702 +- Fixed segfault caused by undo and a call of updateNoteFlag of note
   7.703 +  editor	 
   7.704 +- Added settings menu to configure autoselect and autoedit mode	 
   7.705 +- autoedit and autoselect mode	 
   7.706 +- Fixed ugly display problem with QT Palette (Klaas Freitag) 
   7.707 +- Reduced temporary directories from 4 to 1	 
   7.708 +- Added wordwrap in printing of notes	 
   7.709 +- New toolbar buttons in texteditor	 
   7.710 +- Set background color	 
   7.711 +- Fixed bug: Flags in toolbar not updated when selecting map center	  
   7.712 +
   7.713 +-----------------------------------------------------------
   7.714 +- Version: 0.7.0	 
   7.715 +- No more segfault, when an object is deleted while being edited  
   7.716 +- Keep focus constant when zooming in/out  
   7.717 +- Export as png graphic  
   7.718 +- Keep Center of map where it is while zooming  
   7.719 +- Added Standard Flags (Smiley, Hook, Stopsign, ...)  
   7.720 +- MDI: Multi Document Interface enables working on several maps
   7.721 +  simultanously  
   7.722 +- Enabled creating a new map via argument on commandline  
   7.723 +- Changed file extension from .mmap to .vym  
   7.724 +- noteeditor changes color, if empty or nothing is selected  
   7.725 +- Changes in NoteEditor window are recognized by main window, too, thus
   7.726 +  preventing loosing data when quitting the program.   
   7.727 +
   7.728 +-----------------------------------------------------------
   7.729 +- Version: 0.6.0	
   7.730 +- New rendering engine: Faster, no flickering   
   7.731 +
   7.732 +-----------------------------------------------------------
   7.733 +- Version: 0.5.0	 
   7.734 +-  Changed printing to use maximum space on paper  
   7.735 +-  Note editor is hidden, too, when mapeditor is minimized  
   7.736 +-  New (compressed) file format  
   7.737 +
   7.738 +-----------------------------------------------------------
   7.739 +- Version: 0.4.0     
   7.740 +- Size of map is saved  
   7.741 +- Multi Line Headings   
   7.742 +- Reworked Rendering Engine: Much faster now.  
   7.743 +- Reworked Undo: Much faster now.  
   7.744 +- Enabled moving of map center  
   7.745 +- Multi-line headings   
   7.746 +
   7.747 +-----------------------------------------------------------
   7.748 +- Version: 0.3.0
   7.749 +- Introduced Undo  
   7.750 +- Fixed some bugs    
   7.751 +
   7.752 +-----------------------------------------------------------
   7.753 +- Version: 0.2.0     
   7.754 +- Moving view of map improved:  
   7.755 +- New handling (acrobat reader style)  
   7.756 +- New mousepointer  
   7.757 +- Several tools to color a map  
   7.758 +
   7.759 +-----------------------------------------------------------
   7.760 +- Version: 0.1.0  
   7.761 +- Inital version, basic map layout   
   7.762 +- Data is stored in XML 
     8.1 --- a/version.h	Wed Jun 14 14:43:18 2006 +0000
     8.2 +++ b/version.h	Tue Jul 04 12:10:56 2006 +0000
     8.3 @@ -2,7 +2,7 @@
     8.4  #define VERSION_H
     8.5  
     8.6  #define __VYM "VYM"
     8.7 -#define __VYM_VERSION "1.7.50"
     8.8 -#define __BUILD_DATE "June 12, 2006"
     8.9 +#define __VYM_VERSION "1.8.50"
    8.10 +#define __BUILD_DATE "June 16, 2006"
    8.11  
    8.12  #endif