# HG changeset patch
# User insilmaril
# Date 1269272243 0
# Node ID 46553c106c522923db17d107c2070f52b1be686b
# Parent  c13937960f1d6c66ffeec794367dd228b14fb0bb
Fixes for QLineEdit and moving vym.changelog up one level

diff -r c13937960f1d -r 46553c106c52 findresultmodel.cpp
--- a/findresultmodel.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/findresultmodel.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -49,15 +49,6 @@
     return Qt::ItemIsEditable | Qt::ItemIsEnabled | Qt::ItemIsSelectable;
 }
 
-FindResultItem *FindResultModel::getItem(const QModelIndex &index) const
-{
-    if (index.isValid()) {
-        FindResultItem *item = static_cast<FindResultItem*>(index.internalPointer());
-        if (item) return item;
-    }
-    return rootItem;
-}
-
 QVariant FindResultModel::headerData(int section, Qt::Orientation orientation,
                                int role) const
 {
@@ -189,17 +180,30 @@
     return result;
 }
 
+FindResultItem *FindResultModel::getItem(const QModelIndex &index) const
+{
+    if (index.isValid()) {
+        FindResultItem *item = static_cast<FindResultItem*>(index.internalPointer());
+        if (item) return item;
+    }
+    return rootItem;
+}
+
+FindResultItem *FindResultModel::findTreeItem(TreeItem *ti)
+{
+}
+
 void FindResultModel::addItem (TreeItem *ti)
 {
 	if (ti)
 	{
 		QModelIndex ix (index (rootItem));
-		//QAbstractItemModel *resultsModel = view->model();
 		
 		if (!insertRow(ix.row()+1, ix.parent()))
 			return;
 
-		for (int column = 0; column < columnCount(ix.parent()); ++column) {
+		for (int column = 0; column < columnCount(ix.parent()); ++column) 
+		{
 			QModelIndex child = index(ix.row()+1, column, ix.parent());
 			setData(child, QVariant(ti->getHeading()), Qt::EditRole);
 			getItem(child)->setOriginal (ti);
@@ -223,7 +227,20 @@
 	}
 }
 
-void FindResultModel::addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int index)
+void FindResultModel::addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int i)
 {
+	if (ti)
+	{
+		QModelIndex ix ( index (rootItem));
+		
+		if (!insertRow(ix.row()+1, ix.parent()))
+			return;
+
+		for (int column = 0; column < columnCount(ix.parent()); ++column) {
+			QModelIndex child = index(ix.row()+1, column, ix.parent());
+			setData(child, QVariant("Note: "+ti->getHeading()), Qt::EditRole);
+			getItem(child)->setOriginal (ti);
+		}
+	}
 }
 
diff -r c13937960f1d -r 46553c106c52 findresultmodel.h
--- a/findresultmodel.h	Thu Mar 18 11:55:59 2010 +0000
+++ b/findresultmodel.h	Mon Mar 22 15:37:23 2010 +0000
@@ -45,10 +45,11 @@
                     const QModelIndex &parent = QModelIndex());
 
     FindResultItem *getItem(const QModelIndex &index) const;
+	FindResultItem *findTreeItem (TreeItem *ti);
 
 	void addItem (TreeItem *ti);
 	void addItem (const QString &s);
-	void addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int index);
+	void addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int i);
 
 private:
 
diff -r c13937960f1d -r 46553c106c52 mainwindow.cpp
--- a/mainwindow.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/mainwindow.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -1182,7 +1182,7 @@
 	QAction *a;
 	a = new QAction(QPixmap(iconPath+"viewmag-reset.png"), tr( "reset Zoom","View action" ), this);
 	a->setStatusTip ( tr( "Zoom reset" ) );
-	a->setShortcut (Qt::CTRL + Qt::Key_0);	// Reset zoom
+	a->setShortcut (Qt::Key_Comma);	// Reset zoom
 	switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
 	a->addTo( tb );
 	viewMenu->addAction (a);
@@ -1190,7 +1190,7 @@
 
 	a = new QAction( QPixmap(iconPath+"viewmag+.png"), tr( "Zoom in","View action" ), this);
 	a->setStatusTip (tr( "Zoom in" ));
-	a->setShortcut(Qt::CTRL + Qt::Key_Plus);
+	a->setShortcut(Qt::Key_Plus);
 	switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
 	a->addTo( tb );
 	viewMenu->addAction (a);
@@ -1198,7 +1198,7 @@
 
 	a = new QAction( QPixmap(iconPath+"viewmag-.png"), tr( "Zoom out","View action" ), this);
 	a->setStatusTip (tr( "Zoom out" ));
-	a->setShortcut(Qt::CTRL + Qt::Key_Minus);
+	a->setShortcut(Qt::Key_Minus);
 	switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
 	a->addTo( tb );
 	viewMenu->addAction (a);
@@ -3963,9 +3963,10 @@
 }
 
 
-#include "attributeitem.h"
 void Main::testFunction1()
 {
+/*
+#include "attributeitem.h"
 	VymModel *m=currentModel();
 	if (!m) return;
 
@@ -3981,11 +3982,9 @@
 		m->addAttribute (ai);
 	}
 	return;
-
-/*
+*/
 	if (!currentMapEditor()) return;
 	currentMapEditor()->testFunction1();
-*/
 }
 
 void Main::testFunction2()
diff -r c13937960f1d -r 46553c106c52 mapeditor.cpp
--- a/mapeditor.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/mapeditor.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -461,42 +461,6 @@
 	setRenderHint(QPainter::SmoothPixmapTransform,b);
 }
 
-void MapEditor::setHideTmp (bool b)	// FIXME-4 better use signals
-{
-/*
-	if (b)
-	{
-		setHideTmpMode (HideExport);
-		mapCenter->calcBBoxSizeWithChilds();
-		QRectF totalBBox=mapCenter->getTotalBBox();
-		//QRectF mapRect=totalBBox;
-		qDebug() << "  map has =("<<totalBBox.x()<<","<<totalBBox.y()<<","<<totalBBox.width()<<","<<totalBBox.height()<<")\n";
-	
-		mapRect.setRect (totalBBox.x(), totalBBox.y(), 
-			totalBBox.width(), totalBBox.height());
-			
-		QCanvasRectangle *frame=new QCanvasRectangle (mapRect,mapScene);
-		frame->setBrush (QColor(white));
-		frame->setPen (QColor(black));
-		frame->setZValue(0);
-		frame->show();    
-		
-	}	
-	else	
-	{
-		setHideTmpMode (HideNone);
-	}	
-	qDebug() <<"  hidemode="<<hidemode;
-*/
-/*
-	// Toggle hidemode
-	if (hidemode==HideExport)
-		setHideTmpMode (HideNone);
-	else	
-		setHideTmpMode (HideExport);
-*/		
-}
-
 #include <iostream>
 void MapEditor::autoLayout()
 {
@@ -649,8 +613,22 @@
 
 void MapEditor::testFunction1()
 {
+/*
 	qDebug()<< "ME::test1  selected TI="<<model->getSelectedItem();
 	model->setExportMode (true);
+*/
+	QLineEdit *le3=new QLineEdit;
+	mapScene->addWidget (le3);
+	le3->setGeometry (10,10,100,30);
+	le3->setText("LineEdit 3");
+
+	QLineEdit *le4=new QLineEdit;
+	mapScene->addWidget (le4);
+	le4->setGeometry (10,50,100,30);
+	le4->setText("LineEdit 4");
+	//le4->setFocus();
+
+
 
 	/*
 	// Code copied from Qt sources
@@ -932,17 +910,17 @@
 		model->setSelectionBlocked(true);
 
 		lineEdit=new QLineEdit;
-		QGraphicsProxyWidget *pw=scene()->addWidget (lineEdit);
+		QGraphicsProxyWidget *pw=mapScene->addWidget (lineEdit);
 		pw->setZValue (Z_LINEEDIT);
-
-		lineEdit->setText (bi->getHeading());
+		lineEdit->setCursor(Qt::IBeamCursor);
+		lineEdit->setCursorPosition(1);
 		QPoint p = mapTo (this,bo->getAbsPos().toPoint() );
 		lineEdit->setGeometry(p.x(),p.y(),230,25);
-		//lineEdit->selectAll();
-		//lineEdit->setCursorPosition (1);
-		lineEdit->show();
+		lineEdit->setText (bi->getHeading());
 		lineEdit->setFocus();
-		lineEdit->grabKeyboard();
+		lineEdit->selectAll();	// Hack to enable cursor in lineEdit
+		lineEdit->deselect();	// probably a Qt bug...
+		//lineEdit->grabKeyboard();
 		editingHeading=true;
 	}
 
@@ -950,8 +928,8 @@
 void MapEditor::editHeadingFinished()
 {
 	editingHeading=false;
-	lineEdit->releaseKeyboard();
-	lineEdit->clearFocus();
+	//lineEdit->releaseKeyboard();
+	//lineEdit->clearFocus();
 	QString s=lineEdit->text();
 	s.replace (QRegExp ("\\n")," ");	// Don't paste newline chars
 	model->setHeading (s);
@@ -1007,6 +985,8 @@
 
 void MapEditor::keyPressEvent(QKeyEvent* e)
 {
+	//qDebug()<<"ME::keyPressed";
+	//return;
 	if (e->modifiers() & Qt::ControlModifier)
 	{
 		switch (mainWindow->getModMode())
@@ -1025,6 +1005,7 @@
 				break;
 		} 
 	}	
+	QGraphicsView::keyPressEvent(e);
 }
 
 void MapEditor::keyReleaseEvent(QKeyEvent* e)
@@ -1035,20 +1016,12 @@
 
 void MapEditor::mousePressEvent(QMouseEvent* e)
 {
-//qDebug() << "ME::mousePressed\n"; //FIXME-3
-	// Ignore right clicks, these will go to context menus
-	if (e->button() == Qt::RightButton )
+	// Ignore right clicks or wile editing heading
+	if (e->button() == Qt::RightButton or model->isSelectionBlocked() )
 	{
 		//qDebug() << "  ME::ignoring right mouse event...\n";
 		e->ignore();
-		return;
-	}
-
-	//Ignore clicks while editing heading
-	if (model->isSelectionBlocked() ) 
-	{
-		//qDebug() << "  ME::ignoring other mouse event...\n";
-		e->ignore();
+		QGraphicsView::mousePressEvent(e);
 		return;
 	}
 
@@ -1209,10 +1182,12 @@
 			setCursor(HandOpenCursor);
 		} 
     } 
+	QGraphicsView::mousePressEvent(e);
 }
 
 void MapEditor::mouseMoveEvent(QMouseEvent* e)
 {
+
     QPointF p = mapToScene(e->pos());
 	TreeItem *seli=model->getSelectedItem();
 	LinkableMapObj* lmosel=NULL;	
@@ -1362,6 +1337,7 @@
 		horizontalScrollBar()->setSliderPosition((int)( movingCont_start.x()+movingVec.x() ));
 		verticalScrollBar()->setSliderPosition((int)( movingCont_start.y()+movingVec.y() ) );
     }
+	QGraphicsView::mouseMoveEvent (e);	
 }
 
 
@@ -1566,7 +1542,8 @@
 	} else 
 		// maybe we moved View: set old cursor
 		setCursor (Qt::ArrowCursor);
-    
+
+	QGraphicsView::mouseReleaseEvent(e);
 }
 
 void MapEditor::mouseDoubleClickEvent(QMouseEvent* e)
@@ -1578,12 +1555,13 @@
 	}
 
 
+/*
 	if (model->isSelectionBlocked() ) 
 	{
 		e->ignore();
 		return;
 	}
-
+*/
 	if (e->button() == Qt::LeftButton )
 	{
 		QPointF p = mapToScene(e->pos());
diff -r c13937960f1d -r 46553c106c52 mapeditor.h
--- a/mapeditor.h	Thu Mar 18 11:55:59 2010 +0000
+++ b/mapeditor.h	Mon Mar 22 15:37:23 2010 +0000
@@ -55,7 +55,6 @@
 	QImage getImage ();			//!< Get a pixmap of the map
 	void setAntiAlias (bool);	//!< Set or unset antialiasing
 	void setSmoothPixmap(bool); //!< Set or unset smoothing of pixmaps
-	void setHideTmp (bool);		//!< Hide parts temporary
 public slots:	
 	void autoLayout();			//!< Auto layout of map by using collision detection
 public:
diff -r c13937960f1d -r 46553c106c52 tex/vym.changelog
--- a/tex/vym.changelog	Thu Mar 18 11:55:59 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1514 +0,0 @@
--------------------------------------------------------------------
-Thu Mar 18 12:45:45 CET 2010 - vym@insilmaril.de
-
-- Version: 1.13.1   First pre-release of 1.13.0 to buildservice
-
--------------------------------------------------------------------
-Wed Mar 17 22:24:51 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Enabled Qt 4.6: Removed QtAnimation Framework and fixed flags
-
--------------------------------------------------------------------
-Tue Mar 16 16:45:23 CET 2010 - vym@insilmaril.de
-
-- Feature: zoomFactor is saved and restored on load
-
--------------------------------------------------------------------
-Mon Mar 15 12:48:45 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Several fixes for later autoLayout
-
--------------------------------------------------------------------
-Wed Mar 10 16:35:23 CET 2010 - vym@insilmaril.de
-
-- Bugfix: MainWindow::getModel() returns correct model now
-- Bugfix: Better focus handling in FindWidget
-
--------------------------------------------------------------------
-Tue Mar  9 14:04:10 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Regression in scrolling branches
-
--------------------------------------------------------------------
-Mon Mar  8 07:45:34 CET 2010 - vym@insilmaril.de
-
-- Feature: New widget to display all results of Find action.
-           Also opened with CTRL-F once FindWidget is open
-- Feature: loadNote and saveNote commands to allow changing of note 
-           from external
-
--------------------------------------------------------------------
-Fri Feb 19 08:05:02 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Fixed regression of flags
-
--------------------------------------------------------------------
-Wed Feb 17 16:31:34 CET 2010 - vym@insilmaril.de
-
-- Bugfix: When pasting a heading into the LineEdit, newlines are removed
-          to avoid broken rendering
-
--------------------------------------------------------------------
-Wed Feb 17 11:49:09 CET 2010 - vym@insilmaril.de
-
-- Feature: Novell Bugzilla now has extra flag
-
--------------------------------------------------------------------
-Wed Feb 10 14:47:49 CET 2010 - vym@insilmaril.de
-
-- Feature: Sort lexically backwards
-
--------------------------------------------------------------------
-Tue Feb  9 10:26:23 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Relinking now keeps frametype 
-
--------------------------------------------------------------------
-Thu Jan 21 09:22:08 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Changes in NoteEditor update the Save flag visually
-
--------------------------------------------------------------------
-Wed Jan 20 14:28:20 CET 2010 - vym@insilmaril.de
-
-- Bugfix: New Progressbar while loading maps: One bar to count them,
-          one bar to into colors grind them 
-
--------------------------------------------------------------------
-Thu Jan 14 12:03:43 CET 2010 - vym@insilmaril.de
-
-- Feature: Very basic support to find duplicate URLs
-
--------------------------------------------------------------------
-Wed Jan 13 08:28:18 CET 2010 - vym@insilmaril.de
-
-- Feature: Added action to open all URLs in subtree, default
-           is now to only open those, which don't have scrolled parent
-
--------------------------------------------------------------------
-Tue Jan 12 09:14:49 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Restart a konqueror ofr opening of URLs, if needed 
-
--------------------------------------------------------------------
-Tue Jan  5 12:22:27 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Dropping URLs
-
--------------------------------------------------------------------
-Mon Jan  4 09:36:24 CET 2010 - vym@insilmaril.de
-
-- Bugfix: Branch didn't unscroll when deleting last child
-- Feature: URL icons in image map of HTML export work now
-
--------------------------------------------------------------------
-Tue Dec 15 10:14:11 CET 2009 - vym@insilmaril.de
-
-- Bugfix: A&O report didn't show subitems
-
--------------------------------------------------------------------
-Mon Dec 14 11:16:57 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Wrong tmp position when relinking a mainbranch
-- Bugfix: Image export, also used in HTML export
-
--------------------------------------------------------------------
-Thu Dec  7 23:17:57 CET 2009 - vym@insilmaril.de
-
-- Feature: Following xLinks is now possible by clicking in the 
-           part of a branch near to beginning of branch (20 pixels)
-- Feature: Added new flag for status "work in progress" 
-           (between green hook and red cross)
-- Bugfix: Animation of branches (default off in MapEditor)
-- Bugfix: Segfault when closing map (due clearing selection in
-          VymModel::clear()  )
-
--------------------------------------------------------------------
-Thu Dec  3 17:26:59 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Clicking the note flag opens the note editor again
-
--------------------------------------------------------------------
-Tue Dec  1 12:03:42 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Undo of detach
-
--------------------------------------------------------------------
-Thu Nov 26 22:32:34 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Regression in Undo
-- Bugfix: Find didn't find stuff in previous part of tree
-
--------------------------------------------------------------------
-Tue Nov 24 22:34:42 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Automatic scrolling to new selected items didn't work 
-          reliable when item had scrolled parents
-
--------------------------------------------------------------------
-Wed Nov 11 10:32:29 CET 2009 - vym@insilmaril.de
-
-- Bugfix: New map has mapcenter again
-
--------------------------------------------------------------------
-Tue Nov 10 13:53:37 CET 2009 - vym@insilmaril.de
-
-- Bugfix: Autodetection of textformat (ASCII vs. HTML)
-- Bugfix: nextBranch failed with xLinks
-
--------------------------------------------------------------------
-Fri Oct 30 18:58:22 CET 2009 - uwedr@suse.de
-
-- Bugfix: Selection doesn't get lost when switching maps
-
--------------------------------------------------------------------
-Wed Oct 28 08:43:34 CET 2009 - uwedr@suse.de
-
-- Feature: Adding timestamp to branch
-
--------------------------------------------------------------------
-Wed Oct 21 17:23:13 CEST 2009 - uwedr@suse.de
-
-- Feature: expand/collapse by one level in TreeEditor 
-- Bugfix: Process like webbrowser started by vym survive vym now
-
--------------------------------------------------------------------
-Tue Oct  6 16:29:07 CEST 2009 - uwedr@suse.de
-
-- Bugfix: Export to OpenOffice.org
-- Bugfix: BranchProp window
-
--------------------------------------------------------------------
-Sat Aug  8 23:54:38 CEST 2009 - uwedr@suse.de
-
-- Feature: Selecting with cursor now remembers left & right of
-  mapcenters. Also improved selections in deeper trees
-- Bugfix: Selecting with cursor in MapEditor
-
--------------------------------------------------------------------
-Thu Aug  6 19:33:01 CEST 2009 - uwedr@suse.de
-
-- Bugfix: Removed the "new" in new branches to allow easier copy & paste
-
--------------------------------------------------------------------
-Wed Jul 22 21:51:04 CEST 2009 - uwedr@suse.de
-
-- Bugfix: relinking a branch to a scrolled branch doesn't unscroll
-          anymore
-- Bugfix: Importing KDE bookmarks with empty folders doesn't
-          scroll these folders anymore
--------------------------------------------------------------------
-Thu Apr  2 11:56:17 CEST 2009 - uwedr@suse.de
-
-- Feature: Added sverige translation 
-
--------------------------------------------------------------------
-Tue Mar 17 15:32:17 CET 2009 - uwedr@suse.de
-
-- Bugfix: Import/Export bookmarks works now also on KDE 4
-- Feature: Added traditional chinese translation
-
--------------------------------------------------------------------
-Mon Dec  8 20:26:41 CET 2008 - uwedr@suse.de
-
-- Bugfix: Images linked to a scrolled branch were not hidden, if parent
-           branch was scrolled
-		   
--------------------------------------------------------------------
-Mon Dec  1 17:43:30 CET 2008 - uwedr@suse.de
-
-- Bugfix: After inserting XML, still write as zipped vym again 
-
--------------------------------------------------------------------
-Mon Oct  6 11:16:48 CEST 2008 - uwedr@suse.de
-
-- Bugfix: Updated chinese translation from Moligaloo
-
--------------------------------------------------------------------
-Sun Oct  5 16:58:32 CEST 2008 - uwedr@suse.de
-
-- Bugfix: No more segfault for "delete & keep childs" on MapCenter
-
--------------------------------------------------------------------
-Sun Jul 27 16:37:24 CEST 2008 - uwedr@suse.de
-
-- Bugfix: Animation timer didn't stop after animation was done, which
-          caused high load
-
--------------------------------------------------------------------
-Wed Jul 16 13:47:01 CEST 2008 - uwedr@suse.de
-
-- Version: 1.13.0 
-- Bugfix: Deleting an animated part no longer segfaults 
-
--------------------------------------------------------------------
-Fri Jul 11 14:01:31 CEST 2008 - uwedr@suse.de
-
-- Bugfix: bnc#407600 vym fails with non-ASCI characters in path names 
-
--------------------------------------------------------------------
-Tue Jun  8 10:34:12 CEST 2008 - uwedr@suse.de
-
-- Bugfix: bnc#396365 vym cannot load maps saved with Qt 4.4 
-
--------------------------------------------------------------------
-Wed May 14 17:00:36 CEST 2008 - uwedr@suse.de
-
-- Version: 1.12.0 RC 2
-- Feature: Russian translation
-
--------------------------------------------------------------------
-Wed May  7 10:30:21 CEST 2008 - uwedr@suse.de
-
-- Bugfix: bnc#327078
-
--------------------------------------------------------------------
-Tue May  6 11:45:46 CEST 2008 - uwedr@suse.de
-
-- Version: 1.12.0 
-
--------------------------------------------------------------------
-Wed Apr 30 18:13:43 CEST 2008 - uwedr@suse.de
-
-- Version: 1.11.9
-- Bugfix: Some minor code cleanup 
-
--------------------------------------------------------------------
-Thu Apr 10 22:45:55 CEST 2008 - uwedr@suse.de
-
-- Version: 1.11.8
-- Feature: Copy to new map now also in branch context menu
-
--------------------------------------------------------------------
-Thu Apr 10 17:11:14 CEST 2008 - uwedr@suse.de
-
-- Bugfix: New map is not autosaved, if no filename is known yet
-
--------------------------------------------------------------------
-Tue Apr  8 09:59:11 CEST 2008 - uwedr@suse.de
-
-- Version: 1.11.7
-- Bugfix: Hangup when find function did not find anything 
-
--------------------------------------------------------------------
-Thu Mar 13 02:06:59 CET 2008 - uwedr@suse.de
-
-- Bugfix: vym no longer forgets that a map is zipped
-
--------------------------------------------------------------------
-Sun Mar  9 13:36:20 CET 2008 - uwedr@suse.de
-
-- Bugfix: Segfault when pressing Home or End on MapCenter 
-
--------------------------------------------------------------------
-Wed Mar  5 17:54:12 CET 2008 - uwedr@suse.de
-
-- Bugfix: Broken paths to floatimages 
-
--------------------------------------------------------------------
-Wed Feb 27 17:07:57 CET 2008 - uwedr@suse.de
-
-- Bugfix: Fixed some issues with autosave and regulard file checks 
-
--------------------------------------------------------------------
-Mon Feb 11 12:22:58 CET 2008 - uwedr@suse.de
-
-- Version: 1.11.6
-- Feature: vym now checks regulary if map has changed on disk and 
-           asks for reload if necessary
-
--------------------------------------------------------------------
-Mon Jan 21 22:52:18 CET 2008 - uwedr@suse.de
-
-- Bugfix: No more warning dialog for overwriting note, when note is
-          empty 
-
--------------------------------------------------------------------
-Tue Jan  8 22:20:29 CET 2008 - uwedr@suse.de
-
-- Version: 1.11.5
-- Feature: Started to implement multiple MapCenters in one map 
-
--------------------------------------------------------------------
-Mon Jan  7 14:59:56 CET 2008 - uwedr@suse.de
-
-- Bugfix: vym.pro includes french translation now
-
--------------------------------------------------------------------
-Mon Dec 17 16:32:48 CET 2007 - uwedr@suse.de
-
-- Bugfix: bnc#341952 corrupted positions of mainbranches after updating to
-          newer vym
--------------------------------------------------------------------
-Wed Dec 12 17:12:50 CET 2007 - uwedr@suse.de
-
-- Bugfix: Overloaded key shortcut for Alt-N (Network and Next window) 
-
--------------------------------------------------------------------
-Tue Dec  4 11:46:02 CET 2007 - uwedr@suse.de
-
-- Bugfix: Temporary hide stuff during export 
-- Bugfix: Save parts of map
-
--------------------------------------------------------------------
-Mon Dec  3 20:57:15 CET 2007 - uwedr@suse.de
-
-- Bugfix: (Maint.) Exchanged pre- and postscript in XHTML Export dialog
-
--------------------------------------------------------------------
-Fri Nov  9 10:44:59 CET 2007 - uwedr@suse.de
-
-- Version: 1.11.3
-- Feature: Added patches for better windows support by Andrew Ng
-
--------------------------------------------------------------------
-Tue Nov  6 22:36:38 CET 2007 - uwedr@suse.de
-
-- Version: 1.11.2
-- Feature: Split up helper functions, started to write attributes
-
--------------------------------------------------------------------
-Tue Nov  6 14:36:38 CET 2007 - uwedr@suse.de
-
-- Version: 1.11.1
-- Bugfix: sort branches has undo/redo now 
-
--------------------------------------------------------------------
-Fri Oct 26 11:22:20 CEST 2007 - uwedr@suse.de
-
-- Bugfix: zip state is changed now, when a .xml is save as .vym 
-
--------------------------------------------------------------------
-Wed Oct 24 14:11:36 CEST 2007 - uwedr@suse.de
-
-- Feature: Improved ascii export 
-- Bugfix: Present flag now does not set down arrows any longer 
-
--------------------------------------------------------------------
-Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
-
-- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
-
--------------------------------------------------------------------
-Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
-
-- Version: 1.11.0
-- Feature: Added patches from Till Maas for better path handling to ease
-           integration into various operating systems
-- Feature: Added patch from Till Maas to use xdg-open as default browser
-- Feature: Added patch from ????? to sort branches lexically
-- Feature: Added patches from Juha Ruotsalainen for compiling on win32
-
--------------------------------------------------------------------
-Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
-
-- Bugfix: included <typeinfo> for compiling in beta
-
--------------------------------------------------------------------
-Wed Oct 04 12:43:48 CEST 2007 - uwedr@suse.de
-
-- Version: 1.10.1
-- Bugfix: Missing action for editing URL in context menu
-- Bugfix: "Hide in Export" didn't work
-
--------------------------------------------------------------------
-Mon Sep 04 15:52:22 CEST 2007 - uwedr@suse.de
-
-- Bugfix: xLinks were not loaded from previously saved maps
-- Bugfix: Find manual in /usr/share/doc/packages/vym
-- Bugfix: Updated README.txt
-
--------------------------------------------------------------------
-Mon Aug 20 17:09:28 CEST 2007 - uwedr@suse.de
-
-- Version: 1.10.0 Release Candidate
-- Bugfix: Added missing standard flag (one of the smileys got lost)
-- Bugfix: Wrong parsing of relative positions after load of 
-          previously zoomed map
-
--------------------------------------------------------------------
-Tue Jul 31 22:09:01 CEST 2007 - uwedr@suse.de
-
-- Bugfix: Smother parabel links (Alexander Rettig) 
-
--------------------------------------------------------------------
-Fri Jul 27 13:31:41 CEST 2007 - uwedr@suse.de
-
-- Version: 1.9.4
-- Feature: Restructured internal handling of XML based maps
-- Feature: Switched from QSimpleTextItem to QTextItem for Freemind support
-
--------------------------------------------------------------------
-Mon Jul 23 14:40:38 CEST 2007 - uwedr
-
-- Version: 1.9.3
-- Feature: Import of Freemind maps
-
--------------------------------------------------------------------
-Tue Jul 17 13:16:25 CEST 2007 - uwedr
-
-- Version: 1.9.2
-- Bugfix: Workaround for wrong XML generated by QT with in QRichText
-          list items 
-- Bugfix: No output from <span> tags in ASCII export any longer		  
-
--------------------------------------------------------------------
-Wed Jul 11 15:49:10 CEST 2007 - uwedr
-
-- Version: 1.9.1
-- Bugfix: Don't ask for directory in XML-based exports like
-          KDE-bookmarks
-
--------------------------------------------------------------------
-Tue Jul  4 10:57:04 CEST 2007 - uwedr
-
-- Version: 1.9.0
-- Bugfix: auto-select/auto-edit new branches
-
--------------------------------------------------------------------
-Fri Jun 29 11:12:55 CEST 2007 - uwedr
-
-- Version: 1.8.76
-- Feature: Extended fileformat with object IDs to ease export from
-           tomboy to vym
-- Bugfix: Visibility of BranchProperty window is saved now 
-
--------------------------------------------------------------------
-Mon Jun 25 14:53:10 CEST 2007 - uwedr
-
-- Version: 1.8.75
-- Feature: Completed german translation
-
--------------------------------------------------------------------
-Wed Jun 20 13:52:37 CEST 2007 - uwedr
-
-- Version: 1.8.74
-- Feature: Center on selection with "."
-- Feature: Most important exports can be scripted now
-
--------------------------------------------------------------------
-Mon Jun 18 17:08:46 CEST 2007 - uwedr
-
-- Version: 1.8.73 - entering beta testing 
-
--------------------------------------------------------------------
-Mon June 18 17:01:16 CEST 2007 - uwe
-
-- Feature: Creating new map with selection as MapCenter
-- Feature: Simple export to CSV spreadsheet
-- Feature: Copy from past steps in history to current one
-- Bugfix: Undo/Redo dropping images into map
-- Bugfix: Undo/Redo of copy/paste steps
-- Bugfix: NoteEditor now appears on first click (not 2nd)
-- Bugfix: Disable autosave while there are redos available
-- Bugfix: After changing link color, that color is applied to all links
-          now
-- Bugfix: Pasting of FIOs
-- Bugfix: No selection of branches while editing heading
-- Bugfix: geometry of selection box gets updated while setting scroll or
-          hide flag
-- Bugfix: Possible segfault when redoing deleteChilds()		  
-
--------------------------------------------------------------------
-Mon May  7 09:37:29 CEST 2007 - uwedr
-
-- Version: 1.8.72
-- Bugfix: autosave timeout now read from settings file
-- Bugfix: Settings for historywindow correclty read now
-- Bugfix: Closing property window toggle corresponding button
-
--------------------------------------------------------------------
-Thu Apr 26 10:34:48 CEST 2007 - uwe
-
-- Feature: Editing of frame attributes in branch property window
-- Feature: autosave
-- Feature: number of undo/redo levels can be changed in settings 
-- Feature: branch property window settings are saved
-- Bugfix: Unscroll all childs has saveState now
-- Bugfix: Invisible selection after switching mapeditor
-
--------------------------------------------------------------------
-Tue Apr 10 15:18:39 CEST 2007 - uwedr
-
-- Version: 1.8.71
-- Feature: Added basic macros and documentation
-
--------------------------------------------------------------------
-Sat Mar 31 10:59:55 CEST 2007 - uwe
-
-- Version: 1.8.70
-- Feature: Color of selection can be changed now
-- Feature: Pen and brush for frames can be set
-- Bugfix: For frames the links always were drawn at bottom of heading 
-- Bugfix: BranchPropertyWindow updates when selection is changed
-
--------------------------------------------------------------------
-Mon Mar  6 22:10:26 CET 2007 - uwe
-
-- Version: 1.8.69
-- Feature: Simple Editor for scripts
-- Feature: Added syntax highlighting for editor
-
--------------------------------------------------------------------
-Tue Feb 20 22:16:09 CET 2007 - uwe
-
-- Version: 1.8.68
-- Bugfix: Crash when trying to temporary link to floatimage 
-
--------------------------------------------------------------------
-Mon Feb 17 16:32:53 CET 2007 - uwedr
-
-- Version: 1.8.67
-- Feature: Unscroll all now only affects selected subtree 
-- Bugfix: Drawing error when temporary linking subtrees
-- Bugfix: Import of KDE Bookmarks
-- Bugfix: Export to KDE Bookmarks
-- Bugfix: Export to XHTML
-- Bugfix: Drag and Drop of URLs now only creates one branch
-
--------------------------------------------------------------------
-Wed Feb 07 17:27:31 CET 2007 - uwedr
-
-- Version: 1.8.66
-- Feature: Using a new class to select objects
-- Bugfix: Remember last directory before  ASCII/LaTeX export
-- Bugfix: Editing in NoteEditor now updates actions (save) again
-- Bugfix: Deleting last branch automatically unscrolls parent now
-- Bugfix: Scroll/Unscroll has undo/redo now
-
--------------------------------------------------------------------
-Fri Jan 19 22:53:27 CET 2007 - uwe
-
-- Version: 1.8.65
-- Feature: New Frame format
-- Feature: New vym file format to support new frames
-- Bugfix: xml-parsing code simplified
-- Bugfix: Fixed pretty annoying repositioning of view after editing a
-          heading. (don't call show() before positioning in heading...)
-- Bugfix: Wrong Cursors after pressing CTRL and inserting/relinking
-- Bugfix: Save PNG images with quality 100 to workaround image problems
-- Bugfix: Remember last directory before XML export
-
--------------------------------------------------------------------
-Thu Jan 11 16:05:49 CET 2007 - uwedr
-
-- Version: 1.8.65
-- Feature: Properties dialog for branches instead of context menu entries
-
--------------------------------------------------------------------
-Wed Jan 10 19:48:32 CET 2007 - uwe
-
-- Version: 1.8.64
-- Bugfix: move branch up/down calls scene()->update() now => much faster
-- Bugfix: Relinking of floatimages undo/redo
-
--------------------------------------------------------------------
-Tue Jan  2 19:30:50 CET 2007 - uwedr
-
-- Version: 1.8.64
-- Bugfix: printing scales correctly again
-- Bugfix: Drag & Drop (basically) works again
-- Bugfix: Crash caused by BranchObj::getLastSelected
-- Bugfix: Signal handling by changes in TextEditor: Much faster now
-
--------------------------------------------------------------------
-Thu Dec 21 14:13:13 CET 2006 - uwedr
-
-- Version: 1.8.63
-- Bugfix: printing is working again
-
--------------------------------------------------------------------
-Mon Dec 11 12:31:46 CET 2006 - uwedr
-
-- Version: 1.8.61
-- Bugfix: move up/down to next subtree is working again
-
--------------------------------------------------------------------
-Mon Dec  6 22:48:07 CET 2006 - uwe
-
-- Version: 1.8.61
-- Bugfix: Flags are working again
-- Bugfix: Floatimages have correct select box again
-
--------------------------------------------------------------------
-Wed Nov 29 13:48:35 CET 2006 - uwedr
-
-- Version: 1.8.60
-- Bugfix: Image format is saved with floatimage
-- Feature: Only one history window for all editors. State is saved.
-- Feature: Canvas ported to QT 4.2 GraphicsView
-- Feature: Options to use AntiaAliasing and smooth pixmap
-           transformations
-- Feature: Thick links use polygons now, less objects in scene  
-
--------------------------------------------------------------------
-Thu Nov 16 14:41:44 CET 2006 - uwedr
-
-- Bugfix: New recent file handling, fixes crash on Mac OS X 
-
--------------------------------------------------------------------
-Tue Nov 14 10:00:12 CET 2006 - uwedr
-
-- Feature: Modifier Modes now change cursor when CTRL is pressed 
-
--------------------------------------------------------------------
-Fri Nov 10 10:28:55 CEST 2006 - uwe
-
-- Feature: vym opens spanish documentation, if locale is es*
-- Bugfix: Position of floatimages is saved again 
-- Bugfix: Position of floatimages survives adjustCanvasSize()
-- Bugfix: Adding branch to scrolled branch unscroll the former 
-- Bugfix: More undo commands (removed saveStateComplete)
-
--------------------------------------------------------------------
-Tue Oct 24 17:24:22 CEST 2006 - uwedr
-
-- Version: 1.8.58
-- Feature: More undo commands (and fixes there)
-
--------------------------------------------------------------------
-Mon Oct 16 14:41:03 CEST 2006 - uwedr
-
-- Feature: Code simplification
-
--------------------------------------------------------------------
-Thu Sep 14 12:01:28 CEST 2006 - uwedr
-
-- Version: 1.8.57
-- Feature: Note Editor completly based on QT4 now.
-
--------------------------------------------------------------------
-Wed Sep  13 16:43:09 CEST 2006 - uwedr
-
-- Version: 1.8.56
-- Feature: New History window, All designer elements ported to QT4
-- Bugfix: No more hopping around of floats, when canvas is resized 
-          (by using relative positions for mainbranches. This might 
-		  confuse parsing 1.8.56 documents with vym <= 1.8.1
-
--------------------------------------------------------------------
-Wed Sep  6 09:48:12 CEST 2006 - uwedr
-
-- Bugfix: Mac - XSL stylesheets are found 
-- Bugfix: Mac - fonts are scaling
-- Bugfix: Mac - hand cursor is shown correctly
-
--------------------------------------------------------------------
-Tue Sep  5 15:38:20 CEST 2006 - uwedr
-
-- Version: 1.8.55
-- Bugfix: Undo/Redo moving floatimages
-- Bugfix: Shortcuts for scrolling branches/removing branch
-- Bugfix: update-bookmarks script is not only executed, but
-          also found now...
-- Feature: Findwindow ported to QT4
-
--------------------------------------------------------------------
-Tue Sep  5 09:55:55 CEST 2006 - uwedr
-
-- Bugfix: More undo/redo (move of floatimages, relinking of branches) 
-
--------------------------------------------------------------------
-Thu Aug 31 13:54:30 CEST 2006 - uwedr
-
-- Bugfix: More undo/redo commands
-- Bugfix: Actions updated after moving a branch now
-- Bugfix: vym refuses to start if vymTmpDir can't be created
-
--------------------------------------------------------------------
-Wed Aug 30 14:14:56 CEST 2006 - uwedr
-
-- Version: 1.8.54
-- Bugfix: Editing headings now works both on Mac and Linux
-
--------------------------------------------------------------------
-Mon Aug 28 13:15:35 CEST 2006 - uwe
-
-- Version: 1.8.53
-- Feature: Opening of all URLs in a subtree
-- Feature: Opening of all vymLinks in a subtree
-
--------------------------------------------------------------------
-Tue Aug 15 13:39:42 CEST 2006 - uwedr
-
-- Version: 1.8.52
-- Feature: Changed format of configuration file a bit (new file anyway
-  with introduction of QT4)
-- Feature: Toolbar Layout is saved now
-
--------------------------------------------------------------------
-Thu Jul 27 14:28:54 CEST 2006 - uwedr
-
-- Bugfix: Floatimages internally are saved as png, preserving the alpha 
-          channel
-
--------------------------------------------------------------------
-Thu Jul 13 10:39:26 CEST 2006 - uwedr
-
-- Bugfix: Fixed broken check for non-existent OO-export configuration 
-
--------------------------------------------------------------------
-Tue Jul  4 12:32:28 CEST 2006 - uwedr
-
-- Feature: Moved floats in XML Export, e.g. XHTML  shows floatimages at
-  beginning of export now
-
--------------------------------------------------------------------
-Mon July 10 16:53:29 CEST 2006 - uwedr
-
-- Version: 1.8.50
-- Feature: Beginning of QT4 port
-
--------------------------------------------------------------------
-Thu June 1 16:53:29 CEST 2006 - uwedr
-
-- Version: 1.7.18
-- Feature: Opening of tabs in Firefox or Mozilla
-- Feature: Documentation is up to date now
-- Bugfix: No more duplicate xLinks
-- Bugfix: Saving original filename of floatimages finally works
-- Bugfix: Positioning of floatimages while adjusting canvas size (also
-          optimized code a bit)
-
--------------------------------------------------------------------
-Tue May  9 10:05:52 CEST 2006 - uwedr
-
-- Version: 1.7.17
-- Bugfix: Right click e.g. on URL Flag opened URL _and_ context menu 
-- Bugfix: Deleting selection works also if Delkey is disabled.
-
--------------------------------------------------------------------
-Mon May  8 10:29:25 CEST 2006 - uwedr
-
-- Bugfix: Exclusive flags did not work properly. 
-- Bugfix: Wrong icon in texteditor for text underline
-- Bugfix: Changed screenshots in docu to represent new look
-- Bugfix: Fixed z-plane of floatimage. Images did hide flags.
-
--------------------------------------------------------------------
-Mon Apr 24 11:59:22 CEST 2006 - uwedr
-
-- Bugfix: wrong paths in XHTML export (bnc#168033), caused by wrong
-          vymBaseDir
-
--------------------------------------------------------------------
-Mon Apr 10 13:23:02 CEST 2006 - uwedr
-
-- Feature: More icons 
-
--------------------------------------------------------------------
-Fri Mar 31 14:18:38 CEST 2006 - uwe
-
-- Feature: New environment variable VYMHOME 
-
--------------------------------------------------------------------
-Thu Mar 30 11:00:21 CEST 2006 - uwedr
-
-- Version: 1.7.15
-- Feature: New icons. Icons and flags are not longer linked statically.
-
--------------------------------------------------------------------
-Tue Mar 28 21:54:31 CEST 2006 - uwe
-
-- Version: 1.7.13
-- Feature: Konqueror can open URLs in new tabs now.
-
--------------------------------------------------------------------
-Thu Mar 23 13:26:46 CET 2006 - uwedr
-
-- Version: 1.7.12
-- Bugfix: Problem with vymlinks pointing to higher directories (bnc#159770)
-- Bugfix: All exports support hiding of objects now
-- Bugfix: exportDir in XHTML export is correctly saved in map and
-  defaults to current directory
-
--------------------------------------------------------------------
-Wed Mar 15 11:43:02 CET 2006 - uwedr
-
-- Version: 1.7.11
-- Bugfix: Workaround QT problem, where QT writes invalid XML code by not
-  escaping & in fontnames
-- Feature: Hide Export Flag lets you hide objects in exports
-- Feature: Floatimages now are basically ornamented objects. They could
-  have e.g. an URL later
-- Feature: On error the XML Parser shows the line which is causing the
-           error
-
--------------------------------------------------------------------
-Wed Mar  8 13:58:40 CET 2006 - uwedr
-
-- Bugfix: Images preview in filedialog works again. Seemed to be a QT
-  issue when multiple fileselections were allowed. 
-
--------------------------------------------------------------------
-Mon Mar  6 15:02:57 CET 2006 - uwedr
-
-- Feature: Added export to Taskjuggler. xslt by Matt. 
-
--------------------------------------------------------------------
-Wed Mar  1 22:29:47 CET 2006 - uwe
-
-- Bugfix: Canvas Size corrected when flag is toggled 
-
--------------------------------------------------------------------
-Wed Mar  1 15:38:11 CET 2006 - uwedr
-
-- Version: 1.7.10
-- Feature: Include Images Horizontalls
-
--------------------------------------------------------------------
-Tue Feb 21 17:17:48 CET 2006 - uwedr
-
-- Feature: rudimentary import mmaps 
-
--------------------------------------------------------------------
-Tue Feb 14 21:10:26 CET 2006 - uwe
-
-- Version 1.7.9
-- Feature: Import KDE bookmarks
-- Feature: Own class xsltproc for doing xml transformations
-
--------------------------------------------------------------------
-Tue Jan 31 16:54:52 CET 2006 - uwedr
-
-- Version 1.7.8
-- Bugfix: Hide Include Images Horizontally (not implemented yet) 
-- Bugfix: Include Images Vertically was not read from saved file
-
--------------------------------------------------------------------
-Tue Jan 25 16:07:53 CET 2006 - uwedr
-
-- Version 1.7.7
-- Feature: Export to Open Office 2.x (Open Document) basically works 
-- Feature: Export to XHTML uses smaller icon for URLs now
-
--------------------------------------------------------------------
-Wed Jan 18 13:29:52 CET 2006 - uwedr
-
-- Feature: Multiple File selection while loading maps and images
-
--------------------------------------------------------------------
-Tue Jan  3 12:20:08 CET 2006 - uwe
-
-- Feature: Small optimization in zip/unzip functions
-
--------------------------------------------------------------------
-Mon Jan  2 21:03:05 CET 2006 - uwe
-
-- Feature: FATE support for URLs 
-
--------------------------------------------------------------------
-Wed Dec 28 12:09:59 CET 2005 - uwe
-
-- Version 1.7.6
-- Feature: Added idAttr to BranchObj::saveToDir 
-- Bugfix: FloatObjects now use hideLinkIfUnselected, no more drawing
-  errors, if FO is selected (undefined link)
-- Bugfix: FloatImages don't get lost during save after they have been
-  relinked to new parent  
-- Bugfix: Editing heading of mapcenter now also corrects position  
-
--------------------------------------------------------------------
-Mon Oct 10 13:18:29 CEST 2005 - uwedr
-
-- Bugfix: Copy/Paste was currently not possible for images. Now
-  completly rewrote mechanism. Instead of invisible map now XML import
-  is used (Multiple clipboards should be not difficult now) 
-
--------------------------------------------------------------------
-Mon Oct  3 10:33:09 CEST 2005 - uwe
-
-- Bugfix: Added small fix from Khaled Ahmed needed for display of 
-  arabic languages 
-
--------------------------------------------------------------------
-Mon Sep 12 21:39:38 CEST 2005 - uwedr
-
-- Version 1.7.5
-- Feature: Currently 15 levels of undo (GUI to set value still missing)
-- Feature: Experimental LaTeX Export (without headers and opions so far)
-
--------------------------------------------------------------------
-Sun Sep  5 10:26:15 CEST 2005 - uwedr
-
-- Version 1.7.4
-- Feature: Link of a branch can be hidden, if object is not selected
-- Bugfix: Zoomed map no longer "jumps around" when branch is selected
-  or moved.
-- Bugfix: TextEditor now has grey background again, if it is empty
-- Bugfix: BranchObj no longer need to connect to TextEditor, BranchObj
-  is no longer a QOBJECT
-
--------------------------------------------------------------------
-Thu Sep  1 12:26:24 CEST 2005 - uwedr
-
-- Bugfix: Some minor changes so that translations use arguments now
-  instead of several calls to tr()
-
--------------------------------------------------------------------
-Tue Aug 30 13:38:31 CEST 2005 - uwedr
-
-- Bugfix: Fixed pasting vymlinks: Pasting a branch to a target in
-  another map caused vym to go into an endless loop, if the vymlink of the
-  branch pointed to the new map.
-- Bugfix: Invisible floatimages (which have a scrolled parent) no longer
-  can be selected  
-
--------------------------------------------------------------------
-Fri Aug 19 09:12:49 CEST 2005 - uwedr
-
-- Feature: added debian subdirectory created by Steffen Joeris
-- Feature: added license to new aboutwindow
-
--------------------------------------------------------------------
-Tue Aug 16 19:22:56 CEST 2005 - jhilmer
-
-- Bugfix: Fixed link handling in aboutdialog.
-
--------------------------------------------------------------------
-Tue Aug 16 12:25:09 CEST 2005 - uwedr
-
-- Feature: Added keyboard shortcut to reset zoom factor
-- Bugfix: Added "..." to menu entries leading to another dialog
-- Bugfix: The setting option "Delete Key" is working again
-- Bugfix: A branch moved from left side to right had wrong orienation
-
--------------------------------------------------------------------
-Tue Aug  2 09:59:24 CEST 2005 - uwedr
-
--  Bugfix: Heading sizes now correct after moving e.g. mainbranch to 
-   a branch
-
--------------------------------------------------------------------
-Mon Aug  1 22:40:29 CEST 2005 - jhilmer
-
-- Bugfix: Problems with closing of note editor when text was modified.
-- Feature: Added subscript and superscript to note editor
-	
--------------------------------------------------------------------
-Thu Jul 28 11:57:38 CEST 2005 
-
-- Version 1.7.3
-- Bugfix: Frames didn't become invisible if scrolled
-
--------------------------------------------------------------------
-Thu Jul 28 11:57:38 CEST 2005 
-
-- Version 1.7.2
-- Bugfix: if selection changed before undo, undo worked on wrong
-  branch
-- included math.h again to enable compiling with gcc4  
-
--------------------------------------------------------------------
-Mi Jul 27 17:27:14 CEST 2005
-
-- Bugfix: if selection changed before undo, undo worked on wrong branch
-
--------------------------------------------------------------------
-Mon Jul 25 22:22:21 CEST 2005
-
-- Bugfix: changed MapEditor::undo and ::saveState to also save selection
-
--------------------------------------------------------------------
-Di Jul 19 16:42:31 CEST 2005
-
-- Version: 1.7.1
-- Feature: Drag and Drop also for .vym and files (Jakob Hilmer)
-- Feature: More speedup on moving/relinking branches
-
--------------------------------------------------------------------
-
-Mi Jul 13 11:44:10 CEST 2005 
-
-- Drag and Drop also for URLs
-
--------------------------------------------------------------------
-Di Jul 12 20:56:09 CEST 2005
-
-- Version: 1.7.0
-
--------------------------------------------------------------------
-Mon Jul  4 21:13:42 CEST 2005 
-
-- Version: 1.6.9
-- Bugfix: TextEditor doesn't get minimized in KDE any longer (KDE-bug?)
-
--------------------------------------------------------------------
-Tue Jun 14 11:43:44 CEST 2005
-
-- Feature: printer name is saved in vymrc now
-- Feature: added image drag/drop (by Jakob Hilmer)
-- Bugfix: Importing map into new map now has correct (empty) filename 
-
--------------------------------------------------------------------
-2005-06-07 
-
-- Version: 1.6.8
-- Feature: Dramatic speedup in some operations 
-				(e.g. move branch up/down) due to extended 
-				undo engine
--------------------------------------------------------------------
- 2005-05-27 
- 
-- Version: 1.6.7	
-- Feature:Changed default pdf-reader for Mac OSX 
-- Bugfix: xLinks stopped working in 1.6.6
-- Bugfix: drawing error when using modModeCopy
-- Bugfix: replaced lrint by qRound for BSD port
-		
------------------------------------------------------------
- 2005-05-23
-
-- Version 1.6.6	
-- Feature: Exclusive standard flags		
-
------------------------------------------------------------
-2005-05-19 
-
-- Version: 1.6.5
-- Feature: removing a branch and keeping its childs
-- Feature: removing childs of a branch
-- Feature: insert branch and make selection its child
-- Feature: restructured branch context menu	
-           in a basic version (straight line)
-- Feature: New shortcuts  for use on Mac OS X
-- Feature: Importing directories generates vymlinks now 
-- Bugfix: Changing linkstyle now automatically redraws all
-	      links again
-- Bugfix: Paste icon is disabled if clipboard is empty 
-		
------------------------------------------------------------
-2005-04-15
-
-- Version: 1.6.4	
-- Feature: xLinks (connection between 2 branches) works
-           in a basic version (straight line)	
-
------------------------------------------------------------
-2005-03-30
-
-- Version: 1.6.3
-- Bugfix: Saving of selection to a vym part (.vyp)
-- Bugfix: Closing the noteeditor by closing its window now
-          also toggles the responding toolbar button. &
-
------------------------------------------------------------
-2005-03-24
-
-- Version: 1.6.2	
-- Feature: Introduced Modifier modes: color, link, copy 
-- Feature: Linking branches is basically possible, though it can't be
-           edited/saved yet 
-
------------------------------------------------------------
-2005-01-30
-
-- Version: 1.6.1	 
-- Feature: Optimized moving of branches: much faster especially 
-           with huge subtrees					
-- Bugfix: Segfault when loading vym part 
-- Bugfix: ugly unitialized lines, when temporary drawn link 
-          was moved from a temporary parent back to canvas		  
-
------------------------------------------------------------
-2004-12-14  
-
-- Version: 1.6.0 	 
-- Feature: Added saving of xhtml settings in map 
-
------------------------------------------------------------
-2004-12-13  
-
-- Version: 1.5.2 	 
-- Feature: Added Import of maps with two modes: 
-           add/replace						
-- Feature: Added export of part of maps		 
-- Feature: Added joining of paragraphs in text editor		 
-- Feature: Optimized undo: Only relevant parts are saved, which
-           dramatically improves e.g. moving branches up/down in most maps  
-- Bugfix: QTextEdit generates invalid XML code, which could lead to a
-          parse error, if font name contains a \&  (bnc#62283)   
-- Bugfix: Wrong order of mainbranches in Export	   
-- Bugfix: zip archive was not deleted before save, which could lead to
-  much bigger files, e.g.  when working on older \vym maps or deleted
-  images   
-- Bugfix: Printing in Texteditor         
-- Bugfix: Wrong URLs in xhtml output				  
-- Bugfix: Segfault fixed at Cursor left/right in empty map  
-
------------------------------------------------------------
-2004-10-01 
-
-- Version: 1.5.1
-- Feature: More options in xhtml export: external scripts 	 
-
------------------------------------------------------------
-2004-09-26 
-
-- Version: 1.5.0 	 
-- Public release of all changes since 1.4.1      	 
-- Feature: New function to replace paragraphs in note editor
-   	by linebreaks, this makes pasted text much nicer 
-- Feature: New option to toggle exporting of of floatimages 
-- Feature: z-plane of floatimages can be set (manually only) 
-- Bugfix: Wrong ordering of branches, if mainbranch is exactly left of
-  center 
-
------------------------------------------------------------
-2004-09-24 
-
-- Version: 1.4.7 	 
-- Feature: New Export to XHTML (by Thomas Schraitle)	 
-- Bugfix: vymLink	
-- Bugfix: spaces and dots in filenames	 
-- Bugfix: Error message if xsltproc is not installed 
-
------------------------------------------------------------
-2004-09-15	
-
-- Version: 1.4.6 	 
-- Feature: New file format: notes are saved as part of the .xml file
-- Feature: Note Editor supports Rich Text now.
-- Feature: Parser now also nows {\tt standardflag} (all letters lowercase)
-
------------------------------------------------------------
-2004-08-23	
-
-- Version: 1.4.5 	 
-- Feature: Correct handling of font size in Heading			 
-
------------------------------------------------------------
-2004-07-29	
-
-- Version: 1.4.4 	 
-- Selecting with cursor now works between subtrees	 
-- Bugfix: vymLink was set to temporary dir in 1.4.3	 
-
------------------------------------------------------------
-2004-07-19  
-
-- Version: 1.4.3 	 
-- Optimisation: Reduced canvas objects by only creating objects for used
-  flags		 
-- Better visualization of moving branch above/below target		
-- Find Window informs with dialog, if the search failed
-- System Flags are clickable now		
-- Reworked CSS and XST stylsheets (comments, indent, browser
-  compatibility)						
-- vymLinks are shown in statusbar		
-- current directory is save			
-- Rewritten load/save to improve multimap handling and unzipped files
-- Bugfix: vymLinks don't get deleted when Cancel is pressed						
-- Bugfix: Fixed a bunch of bugs in XSL for HTML export             
-- Bugfix: More toolbar buttons disabled, if action not possible             
-- Bugfix: Renaming .vymfile now works		
-- Bugfix: mapChanged set when toggling flags		
-- Bugfix: CTRL-N was used twice		
-- Bugfix: Del didn't work on floatimage 
-
------------------------------------------------------------
-- Version: 1.4.2 	 
-- Bugfix: Float image could not be deleted  
-
------------------------------------------------------------
-2004-05-25  
-
-- Version: 1.4.1 	 
-- Bugfix: Color of branch not saved	 
-- Bugfix: wrong path at HTML export	             
-- Bugfix: map is not save with special characters in path   
-
------------------------------------------------------------
-2004-05-17 
-
-- Version: 1.4.0 	 
-- Ask for confirmation before opening 
-				a map in multiple editors			 
-- Save state of note editor (visible/minimized) 
-- Export to HTML						 
-- Author and Comment is saved in map	 
-- Stats are shown in Edit MapInfo		 
-- Changes for OS X port (QCursor, QContextMenuEvent)	 
-- Bugfix: Fonts from note editor are save now			
-- Bugfix: invisible image when parent is scrolled		
-- Bugfix: Segfault pressing "enter" for floatimage	
-- Bugfix: Images can't be outside of exported area
-				anymore. 
-- Bugfix: Filenames with blanks		 
-- Bugfix: Old maplink is shown when editing maplink 
-- Bugfix: always show cursor while editing heading  
-
------------------------------------------------------------
-2004-04-16 
-
-- Version: 1.3.5 	 
-- Export map to dir					 
-- Export to any of QTs image formats	 
-- Also right side of selection is always visible now. 
-
------------------------------------------------------------
-2004-04-07 
-
-- Version: 1.3.4 	 
-- Load last maps in file menu          
-- save last image path for loading	 
-- Also export standard flags to dir.	 
-
------------------------------------------------------------
-2004-03-26 
-
-- Version: 1.3.3 	 
-- Enabled <br> in headings as manual linebreak	 
-- Heading can be copied to URL		
-- Bugfix: GIFs are automatically converted to PNG now
-
------------------------------------------------------------
-2004-03-26 
-
-- Version: 1.3.2 	 
-- Add and move branches above/below selection, Texteditor copy all, 
-
------------------------------------------------------------
-2004-03-25 
-
-- Version: 1.3.1 	 
-- Export to directory, changed naming in .vym 
-
------------------------------------------------------------
-2004-03-23 
-
-- Version: 1.3.0 	 
-- Bugfix: Check if map can be saved at all 
-
------------------------------------------------------------
-2004-03-22 
-
-- Version: 1.2.12	 
-- Select image format before saving image	 
-
------------------------------------------------------------
-2004-03-18 
-
-- Version: 1.2.11	
--		Selecting mainbranches by up/down	 
--		Export ASCII (experimental)						
--		Each map can be saved individually at quit		
--		Bugfix: Opening VymLink crashes QT				
--		Bugfix: 50\% less objects on canvas				
--		Bugfix: Ignoring LANG, now always written as UTF8
-
------------------------------------------------------------
-2004-03-16 
-
-- Version: 1.2.10	
-- Sort Mainbranches by angle to y-axis 
-- Import directory structure						
-- Bugfix: Set FrameType of MapCenter while loading map 
-
------------------------------------------------------------
-2004-03-12 
-
-- Version: 1.2.9	
-- Jump to another vym map		         
-- Mainbranches are alwas ordered clockwise        
-
------------------------------------------------------------
-2004-03-03 
-
-- Version: 1.2.8	 
-- Change frame types in context menu   
-
------------------------------------------------------------
-2004-02-25 
-
-- Version: 1.2.7	
-- Copy / Paste and save Floatimages  
-
------------------------------------------------------------
-2004-02-24 
-
-- Version: 1.2.6	 
-- Closing vym in KDE now asks for save, too	 
-- Context menu for branches					  
-- Selection is saved in .vym file				  
-
------------------------------------------------------------
-2004-02-18 
-
-- Version: 1.2.5	 
-- URLs to external links can be added 
-- All actions are deactived if not possible  
-
------------------------------------------------------------
-2004-02-16 
-
-- Version: 1.2.4	 
-- Images: Can be loaded, saved, relinked to other parents
-
------------------------------------------------------------
-2004-01-27  
-
-- Version: 1.2.3	 
-- Zoom: Reset and finer steps shrinking/enlarging	 
-
------------------------------------------------------------
-2004-01-27 
-
-- Version: 1.2.2	 
-- Editing of links (style and color)	 
-
------------------------------------------------------------
-2004-01-27 
-
-- Version: 1.2.1	
-- Bugfix: LineEdit when adding branch has correct position again.								 
-
------------------------------------------------------------
-2004-01-23 
-
-- Version: 1.2.0	 
-- Scrolled parts are automatically unscrolled when selected and scrolled
-  again later.				 
-- Bugfix: Save flag is updated when multiple maps are opened 
-- Bugfix: Moving of branches is faster and more accurat when adding to
-  mapcenter 
-
------------------------------------------------------------
-2003-12-04 
-
-- Version: 1.1.7	 
-- Bugfix: Remember filename of note in noteeditor	 
-
------------------------------------------------------------
-2003-12-02 
-
-- Version: 1.1.6	 
-- Find Text also in Notes.	 
-
------------------------------------------------------------
-2003-11-07 
-
-- Version: 1.1.5	
-- Bugfix: Correct setting and positioning when relinking branches	 
-
------------------------------------------------------------
-2003-11-03 
-
-- Version: 1.1.4	 
-- Scroll mode added (folding of subtrees).		 
-- Bugfix: Wrong position of linedit in zoomed view 
-
------------------------------------------------------------
-2003-10-09  
-
-- Version: 1.1.3	 
--		Added clear button in find window, bugfixes     
-
------------------------------------------------------------
-2003-10-07  
-
-- Version: 1.1.2	 
-- Links can be colored with color of heading      
-
------------------------------------------------------------
-2003-09-26  
-
-- Version: 1.1.1	 
-- Improved visualization of linking to new branch 
-
------------------------------------------------------------
-2003-09-25  
-
-- Version: 1.1.0	 
-- Find Function							
-- Selection always stays in view		  
-
------------------------------------------------------------
-2003-09-18
-
-- Version: 1.0.1	 
-- Find function scrolls to result now	 
-- Bugfix: Adding branch with midmouse	  
-- Bugfix: multiple repositioning of map, when noteeditor was changed
-  (speedup)	 
-- New Linestyles (still hardcoded)			 
-
------------------------------------------------------------
-2003-09-16 	 	
-
-- Version: 1.0.0	 
-- First public stable release			 
-
------------------------------------------------------------
-- Version: 0.9.0	 
-- added quick color picker (CTRL + Left Mouse)  ?	 
-
------------------------------------------------------------
-- Version: 0.8.0	 
-- added automatic canvas resizer, removed manual resizing of canvas  
-- added settings option to paste text into new branch	 
-- simplified code	 
-- Added heart flag	 
-- Choose and switch between fixed and variable width fonts 
-- note editor		 
-- Fixed segfault caused by undo and a call of updateNoteFlag of note
-  editor	 
-- Added settings menu to configure autoselect and autoedit mode	 
-- autoedit and autoselect mode	 
-- Fixed ugly display problem with QT Palette (Klaas Freitag) 
-- Reduced temporary directories from 4 to 1	 
-- Added wordwrap in printing of notes	 
-- New toolbar buttons in texteditor	 
-- Set background color	 
-- Fixed bug: Flags in toolbar not updated when selecting map center	  
-
------------------------------------------------------------
-- Version: 0.7.0	 
-- No more segfault, when an object is deleted while being edited  
-- Keep focus constant when zooming in/out  
-- Export as png graphic  
-- Keep Center of map where it is while zooming  
-- Added Standard Flags (Smiley, Hook, Stopsign, ...)  
-- MDI: Multi Document Interface enables working on several maps
-  simultanously  
-- Enabled creating a new map via argument on commandline  
-- Changed file extension from .mmap to .vym  
-- noteeditor changes color, if empty or nothing is selected  
-- Changes in NoteEditor window are recognized by main window, too, thus
-  preventing loosing data when quitting the program.   
-
------------------------------------------------------------
-- Version: 0.6.0	
-- New rendering engine: Faster, no flickering   
-
------------------------------------------------------------
-- Version: 0.5.0	 
--  Changed printing to use maximum space on paper  
--  Note editor is hidden, too, when mapeditor is minimized  
--  New (compressed) file format  
-
------------------------------------------------------------
-- Version: 0.4.0     
-- Size of map is saved  
-- Multi Line Headings   
-- Reworked Rendering Engine: Much faster now.  
-- Reworked Undo: Much faster now.  
-- Enabled moving of map center  
-- Multi-line headings   
-
------------------------------------------------------------
-- Version: 0.3.0
-- Introduced Undo  
-- Fixed some bugs    
-
------------------------------------------------------------
-- Version: 0.2.0     
-- Moving view of map improved:  
-- New handling (acrobat reader style)  
-- New mousepointer  
-- Several tools to color a map  
-
------------------------------------------------------------
-- Version: 0.1.0  
-- Inital version, basic map layout   
-- Data is stored in XML 
diff -r c13937960f1d -r 46553c106c52 treeitem.cpp
--- a/treeitem.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/treeitem.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -653,7 +653,7 @@
 	if (type==Image || type==Branch || type==MapCenter)
 //		((ImageItem*)this)->updateVisibility();
 	{
-		LinkableMapObj* lmo=((MapItem*)this)->getLMO();
+		//LinkableMapObj* lmo=((MapItem*)this)->getLMO();
 
 		if (mode==HideExport && (hideExport || hasHiddenExportParent() ) ) // FIXME-3  try to avoid calling hasScrolledParent repeatedly
 
diff -r c13937960f1d -r 46553c106c52 vym.changelog
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vym.changelog	Mon Mar 22 15:37:23 2010 +0000
@@ -0,0 +1,1521 @@
+-------------------------------------------------------------------
+Mon Mar 22 08:37:42 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Segfault when undoing deleting of MapCenter
+- Bugfix: Workaround for Qt bug, where cursor of embedded QLineEdits
+          in 2nd tab was not shown
+
+-------------------------------------------------------------------
+Thu Mar 18 12:45:45 CET 2010 - vym@insilmaril.de
+
+- Version: 1.13.1   First pre-release of 1.13.0 to buildservice
+
+-------------------------------------------------------------------
+Wed Mar 17 22:24:51 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Enabled Qt 4.6: Removed QtAnimation Framework and fixed flags
+
+-------------------------------------------------------------------
+Tue Mar 16 16:45:23 CET 2010 - vym@insilmaril.de
+
+- Feature: zoomFactor is saved and restored on load
+
+-------------------------------------------------------------------
+Mon Mar 15 12:48:45 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Several fixes for later autoLayout
+
+-------------------------------------------------------------------
+Wed Mar 10 16:35:23 CET 2010 - vym@insilmaril.de
+
+- Bugfix: MainWindow::getModel() returns correct model now
+- Bugfix: Better focus handling in FindWidget
+
+-------------------------------------------------------------------
+Tue Mar  9 14:04:10 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Regression in scrolling branches
+
+-------------------------------------------------------------------
+Mon Mar  8 07:45:34 CET 2010 - vym@insilmaril.de
+
+- Feature: New widget to display all results of Find action.
+           Also opened with CTRL-F once FindWidget is open
+- Feature: loadNote and saveNote commands to allow changing of note 
+           from external
+
+-------------------------------------------------------------------
+Fri Feb 19 08:05:02 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Fixed regression of flags
+
+-------------------------------------------------------------------
+Wed Feb 17 16:31:34 CET 2010 - vym@insilmaril.de
+
+- Bugfix: When pasting a heading into the LineEdit, newlines are removed
+          to avoid broken rendering
+
+-------------------------------------------------------------------
+Wed Feb 17 11:49:09 CET 2010 - vym@insilmaril.de
+
+- Feature: Novell Bugzilla now has extra flag
+
+-------------------------------------------------------------------
+Wed Feb 10 14:47:49 CET 2010 - vym@insilmaril.de
+
+- Feature: Sort lexically backwards
+
+-------------------------------------------------------------------
+Tue Feb  9 10:26:23 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Relinking now keeps frametype 
+
+-------------------------------------------------------------------
+Thu Jan 21 09:22:08 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Changes in NoteEditor update the Save flag visually
+
+-------------------------------------------------------------------
+Wed Jan 20 14:28:20 CET 2010 - vym@insilmaril.de
+
+- Bugfix: New Progressbar while loading maps: One bar to count them,
+          one bar to into colors grind them 
+
+-------------------------------------------------------------------
+Thu Jan 14 12:03:43 CET 2010 - vym@insilmaril.de
+
+- Feature: Very basic support to find duplicate URLs
+
+-------------------------------------------------------------------
+Wed Jan 13 08:28:18 CET 2010 - vym@insilmaril.de
+
+- Feature: Added action to open all URLs in subtree, default
+           is now to only open those, which don't have scrolled parent
+
+-------------------------------------------------------------------
+Tue Jan 12 09:14:49 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Restart a konqueror ofr opening of URLs, if needed 
+
+-------------------------------------------------------------------
+Tue Jan  5 12:22:27 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Dropping URLs
+
+-------------------------------------------------------------------
+Mon Jan  4 09:36:24 CET 2010 - vym@insilmaril.de
+
+- Bugfix: Branch didn't unscroll when deleting last child
+- Feature: URL icons in image map of HTML export work now
+
+-------------------------------------------------------------------
+Tue Dec 15 10:14:11 CET 2009 - vym@insilmaril.de
+
+- Bugfix: A&O report didn't show subitems
+
+-------------------------------------------------------------------
+Mon Dec 14 11:16:57 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Wrong tmp position when relinking a mainbranch
+- Bugfix: Image export, also used in HTML export
+
+-------------------------------------------------------------------
+Thu Dec  7 23:17:57 CET 2009 - vym@insilmaril.de
+
+- Feature: Following xLinks is now possible by clicking in the 
+           part of a branch near to beginning of branch (20 pixels)
+- Feature: Added new flag for status "work in progress" 
+           (between green hook and red cross)
+- Bugfix: Animation of branches (default off in MapEditor)
+- Bugfix: Segfault when closing map (due clearing selection in
+          VymModel::clear()  )
+
+-------------------------------------------------------------------
+Thu Dec  3 17:26:59 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Clicking the note flag opens the note editor again
+
+-------------------------------------------------------------------
+Tue Dec  1 12:03:42 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Undo of detach
+
+-------------------------------------------------------------------
+Thu Nov 26 22:32:34 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Regression in Undo
+- Bugfix: Find didn't find stuff in previous part of tree
+
+-------------------------------------------------------------------
+Tue Nov 24 22:34:42 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Automatic scrolling to new selected items didn't work 
+          reliable when item had scrolled parents
+
+-------------------------------------------------------------------
+Wed Nov 11 10:32:29 CET 2009 - vym@insilmaril.de
+
+- Bugfix: New map has mapcenter again
+
+-------------------------------------------------------------------
+Tue Nov 10 13:53:37 CET 2009 - vym@insilmaril.de
+
+- Bugfix: Autodetection of textformat (ASCII vs. HTML)
+- Bugfix: nextBranch failed with xLinks
+
+-------------------------------------------------------------------
+Fri Oct 30 18:58:22 CET 2009 - uwedr@suse.de
+
+- Bugfix: Selection doesn't get lost when switching maps
+
+-------------------------------------------------------------------
+Wed Oct 28 08:43:34 CET 2009 - uwedr@suse.de
+
+- Feature: Adding timestamp to branch
+
+-------------------------------------------------------------------
+Wed Oct 21 17:23:13 CEST 2009 - uwedr@suse.de
+
+- Feature: expand/collapse by one level in TreeEditor 
+- Bugfix: Process like webbrowser started by vym survive vym now
+
+-------------------------------------------------------------------
+Tue Oct  6 16:29:07 CEST 2009 - uwedr@suse.de
+
+- Bugfix: Export to OpenOffice.org
+- Bugfix: BranchProp window
+
+-------------------------------------------------------------------
+Sat Aug  8 23:54:38 CEST 2009 - uwedr@suse.de
+
+- Feature: Selecting with cursor now remembers left & right of
+  mapcenters. Also improved selections in deeper trees
+- Bugfix: Selecting with cursor in MapEditor
+
+-------------------------------------------------------------------
+Thu Aug  6 19:33:01 CEST 2009 - uwedr@suse.de
+
+- Bugfix: Removed the "new" in new branches to allow easier copy & paste
+
+-------------------------------------------------------------------
+Wed Jul 22 21:51:04 CEST 2009 - uwedr@suse.de
+
+- Bugfix: relinking a branch to a scrolled branch doesn't unscroll
+          anymore
+- Bugfix: Importing KDE bookmarks with empty folders doesn't
+          scroll these folders anymore
+-------------------------------------------------------------------
+Thu Apr  2 11:56:17 CEST 2009 - uwedr@suse.de
+
+- Feature: Added sverige translation 
+
+-------------------------------------------------------------------
+Tue Mar 17 15:32:17 CET 2009 - uwedr@suse.de
+
+- Bugfix: Import/Export bookmarks works now also on KDE 4
+- Feature: Added traditional chinese translation
+
+-------------------------------------------------------------------
+Mon Dec  8 20:26:41 CET 2008 - uwedr@suse.de
+
+- Bugfix: Images linked to a scrolled branch were not hidden, if parent
+           branch was scrolled
+		   
+-------------------------------------------------------------------
+Mon Dec  1 17:43:30 CET 2008 - uwedr@suse.de
+
+- Bugfix: After inserting XML, still write as zipped vym again 
+
+-------------------------------------------------------------------
+Mon Oct  6 11:16:48 CEST 2008 - uwedr@suse.de
+
+- Bugfix: Updated chinese translation from Moligaloo
+
+-------------------------------------------------------------------
+Sun Oct  5 16:58:32 CEST 2008 - uwedr@suse.de
+
+- Bugfix: No more segfault for "delete & keep childs" on MapCenter
+
+-------------------------------------------------------------------
+Sun Jul 27 16:37:24 CEST 2008 - uwedr@suse.de
+
+- Bugfix: Animation timer didn't stop after animation was done, which
+          caused high load
+
+-------------------------------------------------------------------
+Wed Jul 16 13:47:01 CEST 2008 - uwedr@suse.de
+
+- Version: 1.13.0 
+- Bugfix: Deleting an animated part no longer segfaults 
+
+-------------------------------------------------------------------
+Fri Jul 11 14:01:31 CEST 2008 - uwedr@suse.de
+
+- Bugfix: bnc#407600 vym fails with non-ASCI characters in path names 
+
+-------------------------------------------------------------------
+Tue Jun  8 10:34:12 CEST 2008 - uwedr@suse.de
+
+- Bugfix: bnc#396365 vym cannot load maps saved with Qt 4.4 
+
+-------------------------------------------------------------------
+Wed May 14 17:00:36 CEST 2008 - uwedr@suse.de
+
+- Version: 1.12.0 RC 2
+- Feature: Russian translation
+
+-------------------------------------------------------------------
+Wed May  7 10:30:21 CEST 2008 - uwedr@suse.de
+
+- Bugfix: bnc#327078
+
+-------------------------------------------------------------------
+Tue May  6 11:45:46 CEST 2008 - uwedr@suse.de
+
+- Version: 1.12.0 
+
+-------------------------------------------------------------------
+Wed Apr 30 18:13:43 CEST 2008 - uwedr@suse.de
+
+- Version: 1.11.9
+- Bugfix: Some minor code cleanup 
+
+-------------------------------------------------------------------
+Thu Apr 10 22:45:55 CEST 2008 - uwedr@suse.de
+
+- Version: 1.11.8
+- Feature: Copy to new map now also in branch context menu
+
+-------------------------------------------------------------------
+Thu Apr 10 17:11:14 CEST 2008 - uwedr@suse.de
+
+- Bugfix: New map is not autosaved, if no filename is known yet
+
+-------------------------------------------------------------------
+Tue Apr  8 09:59:11 CEST 2008 - uwedr@suse.de
+
+- Version: 1.11.7
+- Bugfix: Hangup when find function did not find anything 
+
+-------------------------------------------------------------------
+Thu Mar 13 02:06:59 CET 2008 - uwedr@suse.de
+
+- Bugfix: vym no longer forgets that a map is zipped
+
+-------------------------------------------------------------------
+Sun Mar  9 13:36:20 CET 2008 - uwedr@suse.de
+
+- Bugfix: Segfault when pressing Home or End on MapCenter 
+
+-------------------------------------------------------------------
+Wed Mar  5 17:54:12 CET 2008 - uwedr@suse.de
+
+- Bugfix: Broken paths to floatimages 
+
+-------------------------------------------------------------------
+Wed Feb 27 17:07:57 CET 2008 - uwedr@suse.de
+
+- Bugfix: Fixed some issues with autosave and regulard file checks 
+
+-------------------------------------------------------------------
+Mon Feb 11 12:22:58 CET 2008 - uwedr@suse.de
+
+- Version: 1.11.6
+- Feature: vym now checks regulary if map has changed on disk and 
+           asks for reload if necessary
+
+-------------------------------------------------------------------
+Mon Jan 21 22:52:18 CET 2008 - uwedr@suse.de
+
+- Bugfix: No more warning dialog for overwriting note, when note is
+          empty 
+
+-------------------------------------------------------------------
+Tue Jan  8 22:20:29 CET 2008 - uwedr@suse.de
+
+- Version: 1.11.5
+- Feature: Started to implement multiple MapCenters in one map 
+
+-------------------------------------------------------------------
+Mon Jan  7 14:59:56 CET 2008 - uwedr@suse.de
+
+- Bugfix: vym.pro includes french translation now
+
+-------------------------------------------------------------------
+Mon Dec 17 16:32:48 CET 2007 - uwedr@suse.de
+
+- Bugfix: bnc#341952 corrupted positions of mainbranches after updating to
+          newer vym
+-------------------------------------------------------------------
+Wed Dec 12 17:12:50 CET 2007 - uwedr@suse.de
+
+- Bugfix: Overloaded key shortcut for Alt-N (Network and Next window) 
+
+-------------------------------------------------------------------
+Tue Dec  4 11:46:02 CET 2007 - uwedr@suse.de
+
+- Bugfix: Temporary hide stuff during export 
+- Bugfix: Save parts of map
+
+-------------------------------------------------------------------
+Mon Dec  3 20:57:15 CET 2007 - uwedr@suse.de
+
+- Bugfix: (Maint.) Exchanged pre- and postscript in XHTML Export dialog
+
+-------------------------------------------------------------------
+Fri Nov  9 10:44:59 CET 2007 - uwedr@suse.de
+
+- Version: 1.11.3
+- Feature: Added patches for better windows support by Andrew Ng
+
+-------------------------------------------------------------------
+Tue Nov  6 22:36:38 CET 2007 - uwedr@suse.de
+
+- Version: 1.11.2
+- Feature: Split up helper functions, started to write attributes
+
+-------------------------------------------------------------------
+Tue Nov  6 14:36:38 CET 2007 - uwedr@suse.de
+
+- Version: 1.11.1
+- Bugfix: sort branches has undo/redo now 
+
+-------------------------------------------------------------------
+Fri Oct 26 11:22:20 CEST 2007 - uwedr@suse.de
+
+- Bugfix: zip state is changed now, when a .xml is save as .vym 
+
+-------------------------------------------------------------------
+Wed Oct 24 14:11:36 CEST 2007 - uwedr@suse.de
+
+- Feature: Improved ascii export 
+- Bugfix: Present flag now does not set down arrows any longer 
+
+-------------------------------------------------------------------
+Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
+
+- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
+
+-------------------------------------------------------------------
+Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
+
+- Version: 1.11.0
+- Feature: Added patches from Till Maas for better path handling to ease
+           integration into various operating systems
+- Feature: Added patch from Till Maas to use xdg-open as default browser
+- Feature: Added patch from ????? to sort branches lexically
+- Feature: Added patches from Juha Ruotsalainen for compiling on win32
+
+-------------------------------------------------------------------
+Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
+
+- Bugfix: included <typeinfo> for compiling in beta
+
+-------------------------------------------------------------------
+Wed Oct 04 12:43:48 CEST 2007 - uwedr@suse.de
+
+- Version: 1.10.1
+- Bugfix: Missing action for editing URL in context menu
+- Bugfix: "Hide in Export" didn't work
+
+-------------------------------------------------------------------
+Mon Sep 04 15:52:22 CEST 2007 - uwedr@suse.de
+
+- Bugfix: xLinks were not loaded from previously saved maps
+- Bugfix: Find manual in /usr/share/doc/packages/vym
+- Bugfix: Updated README.txt
+
+-------------------------------------------------------------------
+Mon Aug 20 17:09:28 CEST 2007 - uwedr@suse.de
+
+- Version: 1.10.0 Release Candidate
+- Bugfix: Added missing standard flag (one of the smileys got lost)
+- Bugfix: Wrong parsing of relative positions after load of 
+          previously zoomed map
+
+-------------------------------------------------------------------
+Tue Jul 31 22:09:01 CEST 2007 - uwedr@suse.de
+
+- Bugfix: Smother parabel links (Alexander Rettig) 
+
+-------------------------------------------------------------------
+Fri Jul 27 13:31:41 CEST 2007 - uwedr@suse.de
+
+- Version: 1.9.4
+- Feature: Restructured internal handling of XML based maps
+- Feature: Switched from QSimpleTextItem to QTextItem for Freemind support
+
+-------------------------------------------------------------------
+Mon Jul 23 14:40:38 CEST 2007 - uwedr
+
+- Version: 1.9.3
+- Feature: Import of Freemind maps
+
+-------------------------------------------------------------------
+Tue Jul 17 13:16:25 CEST 2007 - uwedr
+
+- Version: 1.9.2
+- Bugfix: Workaround for wrong XML generated by QT with in QRichText
+          list items 
+- Bugfix: No output from <span> tags in ASCII export any longer		  
+
+-------------------------------------------------------------------
+Wed Jul 11 15:49:10 CEST 2007 - uwedr
+
+- Version: 1.9.1
+- Bugfix: Don't ask for directory in XML-based exports like
+          KDE-bookmarks
+
+-------------------------------------------------------------------
+Tue Jul  4 10:57:04 CEST 2007 - uwedr
+
+- Version: 1.9.0
+- Bugfix: auto-select/auto-edit new branches
+
+-------------------------------------------------------------------
+Fri Jun 29 11:12:55 CEST 2007 - uwedr
+
+- Version: 1.8.76
+- Feature: Extended fileformat with object IDs to ease export from
+           tomboy to vym
+- Bugfix: Visibility of BranchProperty window is saved now 
+
+-------------------------------------------------------------------
+Mon Jun 25 14:53:10 CEST 2007 - uwedr
+
+- Version: 1.8.75
+- Feature: Completed german translation
+
+-------------------------------------------------------------------
+Wed Jun 20 13:52:37 CEST 2007 - uwedr
+
+- Version: 1.8.74
+- Feature: Center on selection with "."
+- Feature: Most important exports can be scripted now
+
+-------------------------------------------------------------------
+Mon Jun 18 17:08:46 CEST 2007 - uwedr
+
+- Version: 1.8.73 - entering beta testing 
+
+-------------------------------------------------------------------
+Mon June 18 17:01:16 CEST 2007 - uwe
+
+- Feature: Creating new map with selection as MapCenter
+- Feature: Simple export to CSV spreadsheet
+- Feature: Copy from past steps in history to current one
+- Bugfix: Undo/Redo dropping images into map
+- Bugfix: Undo/Redo of copy/paste steps
+- Bugfix: NoteEditor now appears on first click (not 2nd)
+- Bugfix: Disable autosave while there are redos available
+- Bugfix: After changing link color, that color is applied to all links
+          now
+- Bugfix: Pasting of FIOs
+- Bugfix: No selection of branches while editing heading
+- Bugfix: geometry of selection box gets updated while setting scroll or
+          hide flag
+- Bugfix: Possible segfault when redoing deleteChilds()		  
+
+-------------------------------------------------------------------
+Mon May  7 09:37:29 CEST 2007 - uwedr
+
+- Version: 1.8.72
+- Bugfix: autosave timeout now read from settings file
+- Bugfix: Settings for historywindow correclty read now
+- Bugfix: Closing property window toggle corresponding button
+
+-------------------------------------------------------------------
+Thu Apr 26 10:34:48 CEST 2007 - uwe
+
+- Feature: Editing of frame attributes in branch property window
+- Feature: autosave
+- Feature: number of undo/redo levels can be changed in settings 
+- Feature: branch property window settings are saved
+- Bugfix: Unscroll all childs has saveState now
+- Bugfix: Invisible selection after switching mapeditor
+
+-------------------------------------------------------------------
+Tue Apr 10 15:18:39 CEST 2007 - uwedr
+
+- Version: 1.8.71
+- Feature: Added basic macros and documentation
+
+-------------------------------------------------------------------
+Sat Mar 31 10:59:55 CEST 2007 - uwe
+
+- Version: 1.8.70
+- Feature: Color of selection can be changed now
+- Feature: Pen and brush for frames can be set
+- Bugfix: For frames the links always were drawn at bottom of heading 
+- Bugfix: BranchPropertyWindow updates when selection is changed
+
+-------------------------------------------------------------------
+Mon Mar  6 22:10:26 CET 2007 - uwe
+
+- Version: 1.8.69
+- Feature: Simple Editor for scripts
+- Feature: Added syntax highlighting for editor
+
+-------------------------------------------------------------------
+Tue Feb 20 22:16:09 CET 2007 - uwe
+
+- Version: 1.8.68
+- Bugfix: Crash when trying to temporary link to floatimage 
+
+-------------------------------------------------------------------
+Mon Feb 17 16:32:53 CET 2007 - uwedr
+
+- Version: 1.8.67
+- Feature: Unscroll all now only affects selected subtree 
+- Bugfix: Drawing error when temporary linking subtrees
+- Bugfix: Import of KDE Bookmarks
+- Bugfix: Export to KDE Bookmarks
+- Bugfix: Export to XHTML
+- Bugfix: Drag and Drop of URLs now only creates one branch
+
+-------------------------------------------------------------------
+Wed Feb 07 17:27:31 CET 2007 - uwedr
+
+- Version: 1.8.66
+- Feature: Using a new class to select objects
+- Bugfix: Remember last directory before  ASCII/LaTeX export
+- Bugfix: Editing in NoteEditor now updates actions (save) again
+- Bugfix: Deleting last branch automatically unscrolls parent now
+- Bugfix: Scroll/Unscroll has undo/redo now
+
+-------------------------------------------------------------------
+Fri Jan 19 22:53:27 CET 2007 - uwe
+
+- Version: 1.8.65
+- Feature: New Frame format
+- Feature: New vym file format to support new frames
+- Bugfix: xml-parsing code simplified
+- Bugfix: Fixed pretty annoying repositioning of view after editing a
+          heading. (don't call show() before positioning in heading...)
+- Bugfix: Wrong Cursors after pressing CTRL and inserting/relinking
+- Bugfix: Save PNG images with quality 100 to workaround image problems
+- Bugfix: Remember last directory before XML export
+
+-------------------------------------------------------------------
+Thu Jan 11 16:05:49 CET 2007 - uwedr
+
+- Version: 1.8.65
+- Feature: Properties dialog for branches instead of context menu entries
+
+-------------------------------------------------------------------
+Wed Jan 10 19:48:32 CET 2007 - uwe
+
+- Version: 1.8.64
+- Bugfix: move branch up/down calls scene()->update() now => much faster
+- Bugfix: Relinking of floatimages undo/redo
+
+-------------------------------------------------------------------
+Tue Jan  2 19:30:50 CET 2007 - uwedr
+
+- Version: 1.8.64
+- Bugfix: printing scales correctly again
+- Bugfix: Drag & Drop (basically) works again
+- Bugfix: Crash caused by BranchObj::getLastSelected
+- Bugfix: Signal handling by changes in TextEditor: Much faster now
+
+-------------------------------------------------------------------
+Thu Dec 21 14:13:13 CET 2006 - uwedr
+
+- Version: 1.8.63
+- Bugfix: printing is working again
+
+-------------------------------------------------------------------
+Mon Dec 11 12:31:46 CET 2006 - uwedr
+
+- Version: 1.8.61
+- Bugfix: move up/down to next subtree is working again
+
+-------------------------------------------------------------------
+Mon Dec  6 22:48:07 CET 2006 - uwe
+
+- Version: 1.8.61
+- Bugfix: Flags are working again
+- Bugfix: Floatimages have correct select box again
+
+-------------------------------------------------------------------
+Wed Nov 29 13:48:35 CET 2006 - uwedr
+
+- Version: 1.8.60
+- Bugfix: Image format is saved with floatimage
+- Feature: Only one history window for all editors. State is saved.
+- Feature: Canvas ported to QT 4.2 GraphicsView
+- Feature: Options to use AntiaAliasing and smooth pixmap
+           transformations
+- Feature: Thick links use polygons now, less objects in scene  
+
+-------------------------------------------------------------------
+Thu Nov 16 14:41:44 CET 2006 - uwedr
+
+- Bugfix: New recent file handling, fixes crash on Mac OS X 
+
+-------------------------------------------------------------------
+Tue Nov 14 10:00:12 CET 2006 - uwedr
+
+- Feature: Modifier Modes now change cursor when CTRL is pressed 
+
+-------------------------------------------------------------------
+Fri Nov 10 10:28:55 CEST 2006 - uwe
+
+- Feature: vym opens spanish documentation, if locale is es*
+- Bugfix: Position of floatimages is saved again 
+- Bugfix: Position of floatimages survives adjustCanvasSize()
+- Bugfix: Adding branch to scrolled branch unscroll the former 
+- Bugfix: More undo commands (removed saveStateComplete)
+
+-------------------------------------------------------------------
+Tue Oct 24 17:24:22 CEST 2006 - uwedr
+
+- Version: 1.8.58
+- Feature: More undo commands (and fixes there)
+
+-------------------------------------------------------------------
+Mon Oct 16 14:41:03 CEST 2006 - uwedr
+
+- Feature: Code simplification
+
+-------------------------------------------------------------------
+Thu Sep 14 12:01:28 CEST 2006 - uwedr
+
+- Version: 1.8.57
+- Feature: Note Editor completly based on QT4 now.
+
+-------------------------------------------------------------------
+Wed Sep  13 16:43:09 CEST 2006 - uwedr
+
+- Version: 1.8.56
+- Feature: New History window, All designer elements ported to QT4
+- Bugfix: No more hopping around of floats, when canvas is resized 
+          (by using relative positions for mainbranches. This might 
+		  confuse parsing 1.8.56 documents with vym <= 1.8.1
+
+-------------------------------------------------------------------
+Wed Sep  6 09:48:12 CEST 2006 - uwedr
+
+- Bugfix: Mac - XSL stylesheets are found 
+- Bugfix: Mac - fonts are scaling
+- Bugfix: Mac - hand cursor is shown correctly
+
+-------------------------------------------------------------------
+Tue Sep  5 15:38:20 CEST 2006 - uwedr
+
+- Version: 1.8.55
+- Bugfix: Undo/Redo moving floatimages
+- Bugfix: Shortcuts for scrolling branches/removing branch
+- Bugfix: update-bookmarks script is not only executed, but
+          also found now...
+- Feature: Findwindow ported to QT4
+
+-------------------------------------------------------------------
+Tue Sep  5 09:55:55 CEST 2006 - uwedr
+
+- Bugfix: More undo/redo (move of floatimages, relinking of branches) 
+
+-------------------------------------------------------------------
+Thu Aug 31 13:54:30 CEST 2006 - uwedr
+
+- Bugfix: More undo/redo commands
+- Bugfix: Actions updated after moving a branch now
+- Bugfix: vym refuses to start if vymTmpDir can't be created
+
+-------------------------------------------------------------------
+Wed Aug 30 14:14:56 CEST 2006 - uwedr
+
+- Version: 1.8.54
+- Bugfix: Editing headings now works both on Mac and Linux
+
+-------------------------------------------------------------------
+Mon Aug 28 13:15:35 CEST 2006 - uwe
+
+- Version: 1.8.53
+- Feature: Opening of all URLs in a subtree
+- Feature: Opening of all vymLinks in a subtree
+
+-------------------------------------------------------------------
+Tue Aug 15 13:39:42 CEST 2006 - uwedr
+
+- Version: 1.8.52
+- Feature: Changed format of configuration file a bit (new file anyway
+  with introduction of QT4)
+- Feature: Toolbar Layout is saved now
+
+-------------------------------------------------------------------
+Thu Jul 27 14:28:54 CEST 2006 - uwedr
+
+- Bugfix: Floatimages internally are saved as png, preserving the alpha 
+          channel
+
+-------------------------------------------------------------------
+Thu Jul 13 10:39:26 CEST 2006 - uwedr
+
+- Bugfix: Fixed broken check for non-existent OO-export configuration 
+
+-------------------------------------------------------------------
+Tue Jul  4 12:32:28 CEST 2006 - uwedr
+
+- Feature: Moved floats in XML Export, e.g. XHTML  shows floatimages at
+  beginning of export now
+
+-------------------------------------------------------------------
+Mon July 10 16:53:29 CEST 2006 - uwedr
+
+- Version: 1.8.50
+- Feature: Beginning of QT4 port
+
+-------------------------------------------------------------------
+Thu June 1 16:53:29 CEST 2006 - uwedr
+
+- Version: 1.7.18
+- Feature: Opening of tabs in Firefox or Mozilla
+- Feature: Documentation is up to date now
+- Bugfix: No more duplicate xLinks
+- Bugfix: Saving original filename of floatimages finally works
+- Bugfix: Positioning of floatimages while adjusting canvas size (also
+          optimized code a bit)
+
+-------------------------------------------------------------------
+Tue May  9 10:05:52 CEST 2006 - uwedr
+
+- Version: 1.7.17
+- Bugfix: Right click e.g. on URL Flag opened URL _and_ context menu 
+- Bugfix: Deleting selection works also if Delkey is disabled.
+
+-------------------------------------------------------------------
+Mon May  8 10:29:25 CEST 2006 - uwedr
+
+- Bugfix: Exclusive flags did not work properly. 
+- Bugfix: Wrong icon in texteditor for text underline
+- Bugfix: Changed screenshots in docu to represent new look
+- Bugfix: Fixed z-plane of floatimage. Images did hide flags.
+
+-------------------------------------------------------------------
+Mon Apr 24 11:59:22 CEST 2006 - uwedr
+
+- Bugfix: wrong paths in XHTML export (bnc#168033), caused by wrong
+          vymBaseDir
+
+-------------------------------------------------------------------
+Mon Apr 10 13:23:02 CEST 2006 - uwedr
+
+- Feature: More icons 
+
+-------------------------------------------------------------------
+Fri Mar 31 14:18:38 CEST 2006 - uwe
+
+- Feature: New environment variable VYMHOME 
+
+-------------------------------------------------------------------
+Thu Mar 30 11:00:21 CEST 2006 - uwedr
+
+- Version: 1.7.15
+- Feature: New icons. Icons and flags are not longer linked statically.
+
+-------------------------------------------------------------------
+Tue Mar 28 21:54:31 CEST 2006 - uwe
+
+- Version: 1.7.13
+- Feature: Konqueror can open URLs in new tabs now.
+
+-------------------------------------------------------------------
+Thu Mar 23 13:26:46 CET 2006 - uwedr
+
+- Version: 1.7.12
+- Bugfix: Problem with vymlinks pointing to higher directories (bnc#159770)
+- Bugfix: All exports support hiding of objects now
+- Bugfix: exportDir in XHTML export is correctly saved in map and
+  defaults to current directory
+
+-------------------------------------------------------------------
+Wed Mar 15 11:43:02 CET 2006 - uwedr
+
+- Version: 1.7.11
+- Bugfix: Workaround QT problem, where QT writes invalid XML code by not
+  escaping & in fontnames
+- Feature: Hide Export Flag lets you hide objects in exports
+- Feature: Floatimages now are basically ornamented objects. They could
+  have e.g. an URL later
+- Feature: On error the XML Parser shows the line which is causing the
+           error
+
+-------------------------------------------------------------------
+Wed Mar  8 13:58:40 CET 2006 - uwedr
+
+- Bugfix: Images preview in filedialog works again. Seemed to be a QT
+  issue when multiple fileselections were allowed. 
+
+-------------------------------------------------------------------
+Mon Mar  6 15:02:57 CET 2006 - uwedr
+
+- Feature: Added export to Taskjuggler. xslt by Matt. 
+
+-------------------------------------------------------------------
+Wed Mar  1 22:29:47 CET 2006 - uwe
+
+- Bugfix: Canvas Size corrected when flag is toggled 
+
+-------------------------------------------------------------------
+Wed Mar  1 15:38:11 CET 2006 - uwedr
+
+- Version: 1.7.10
+- Feature: Include Images Horizontalls
+
+-------------------------------------------------------------------
+Tue Feb 21 17:17:48 CET 2006 - uwedr
+
+- Feature: rudimentary import mmaps 
+
+-------------------------------------------------------------------
+Tue Feb 14 21:10:26 CET 2006 - uwe
+
+- Version 1.7.9
+- Feature: Import KDE bookmarks
+- Feature: Own class xsltproc for doing xml transformations
+
+-------------------------------------------------------------------
+Tue Jan 31 16:54:52 CET 2006 - uwedr
+
+- Version 1.7.8
+- Bugfix: Hide Include Images Horizontally (not implemented yet) 
+- Bugfix: Include Images Vertically was not read from saved file
+
+-------------------------------------------------------------------
+Tue Jan 25 16:07:53 CET 2006 - uwedr
+
+- Version 1.7.7
+- Feature: Export to Open Office 2.x (Open Document) basically works 
+- Feature: Export to XHTML uses smaller icon for URLs now
+
+-------------------------------------------------------------------
+Wed Jan 18 13:29:52 CET 2006 - uwedr
+
+- Feature: Multiple File selection while loading maps and images
+
+-------------------------------------------------------------------
+Tue Jan  3 12:20:08 CET 2006 - uwe
+
+- Feature: Small optimization in zip/unzip functions
+
+-------------------------------------------------------------------
+Mon Jan  2 21:03:05 CET 2006 - uwe
+
+- Feature: FATE support for URLs 
+
+-------------------------------------------------------------------
+Wed Dec 28 12:09:59 CET 2005 - uwe
+
+- Version 1.7.6
+- Feature: Added idAttr to BranchObj::saveToDir 
+- Bugfix: FloatObjects now use hideLinkIfUnselected, no more drawing
+  errors, if FO is selected (undefined link)
+- Bugfix: FloatImages don't get lost during save after they have been
+  relinked to new parent  
+- Bugfix: Editing heading of mapcenter now also corrects position  
+
+-------------------------------------------------------------------
+Mon Oct 10 13:18:29 CEST 2005 - uwedr
+
+- Bugfix: Copy/Paste was currently not possible for images. Now
+  completly rewrote mechanism. Instead of invisible map now XML import
+  is used (Multiple clipboards should be not difficult now) 
+
+-------------------------------------------------------------------
+Mon Oct  3 10:33:09 CEST 2005 - uwe
+
+- Bugfix: Added small fix from Khaled Ahmed needed for display of 
+  arabic languages 
+
+-------------------------------------------------------------------
+Mon Sep 12 21:39:38 CEST 2005 - uwedr
+
+- Version 1.7.5
+- Feature: Currently 15 levels of undo (GUI to set value still missing)
+- Feature: Experimental LaTeX Export (without headers and opions so far)
+
+-------------------------------------------------------------------
+Sun Sep  5 10:26:15 CEST 2005 - uwedr
+
+- Version 1.7.4
+- Feature: Link of a branch can be hidden, if object is not selected
+- Bugfix: Zoomed map no longer "jumps around" when branch is selected
+  or moved.
+- Bugfix: TextEditor now has grey background again, if it is empty
+- Bugfix: BranchObj no longer need to connect to TextEditor, BranchObj
+  is no longer a QOBJECT
+
+-------------------------------------------------------------------
+Thu Sep  1 12:26:24 CEST 2005 - uwedr
+
+- Bugfix: Some minor changes so that translations use arguments now
+  instead of several calls to tr()
+
+-------------------------------------------------------------------
+Tue Aug 30 13:38:31 CEST 2005 - uwedr
+
+- Bugfix: Fixed pasting vymlinks: Pasting a branch to a target in
+  another map caused vym to go into an endless loop, if the vymlink of the
+  branch pointed to the new map.
+- Bugfix: Invisible floatimages (which have a scrolled parent) no longer
+  can be selected  
+
+-------------------------------------------------------------------
+Fri Aug 19 09:12:49 CEST 2005 - uwedr
+
+- Feature: added debian subdirectory created by Steffen Joeris
+- Feature: added license to new aboutwindow
+
+-------------------------------------------------------------------
+Tue Aug 16 19:22:56 CEST 2005 - jhilmer
+
+- Bugfix: Fixed link handling in aboutdialog.
+
+-------------------------------------------------------------------
+Tue Aug 16 12:25:09 CEST 2005 - uwedr
+
+- Feature: Added keyboard shortcut to reset zoom factor
+- Bugfix: Added "..." to menu entries leading to another dialog
+- Bugfix: The setting option "Delete Key" is working again
+- Bugfix: A branch moved from left side to right had wrong orienation
+
+-------------------------------------------------------------------
+Tue Aug  2 09:59:24 CEST 2005 - uwedr
+
+-  Bugfix: Heading sizes now correct after moving e.g. mainbranch to 
+   a branch
+
+-------------------------------------------------------------------
+Mon Aug  1 22:40:29 CEST 2005 - jhilmer
+
+- Bugfix: Problems with closing of note editor when text was modified.
+- Feature: Added subscript and superscript to note editor
+	
+-------------------------------------------------------------------
+Thu Jul 28 11:57:38 CEST 2005 
+
+- Version 1.7.3
+- Bugfix: Frames didn't become invisible if scrolled
+
+-------------------------------------------------------------------
+Thu Jul 28 11:57:38 CEST 2005 
+
+- Version 1.7.2
+- Bugfix: if selection changed before undo, undo worked on wrong
+  branch
+- included math.h again to enable compiling with gcc4  
+
+-------------------------------------------------------------------
+Mi Jul 27 17:27:14 CEST 2005
+
+- Bugfix: if selection changed before undo, undo worked on wrong branch
+
+-------------------------------------------------------------------
+Mon Jul 25 22:22:21 CEST 2005
+
+- Bugfix: changed MapEditor::undo and ::saveState to also save selection
+
+-------------------------------------------------------------------
+Di Jul 19 16:42:31 CEST 2005
+
+- Version: 1.7.1
+- Feature: Drag and Drop also for .vym and files (Jakob Hilmer)
+- Feature: More speedup on moving/relinking branches
+
+-------------------------------------------------------------------
+
+Mi Jul 13 11:44:10 CEST 2005 
+
+- Drag and Drop also for URLs
+
+-------------------------------------------------------------------
+Di Jul 12 20:56:09 CEST 2005
+
+- Version: 1.7.0
+
+-------------------------------------------------------------------
+Mon Jul  4 21:13:42 CEST 2005 
+
+- Version: 1.6.9
+- Bugfix: TextEditor doesn't get minimized in KDE any longer (KDE-bug?)
+
+-------------------------------------------------------------------
+Tue Jun 14 11:43:44 CEST 2005
+
+- Feature: printer name is saved in vymrc now
+- Feature: added image drag/drop (by Jakob Hilmer)
+- Bugfix: Importing map into new map now has correct (empty) filename 
+
+-------------------------------------------------------------------
+2005-06-07 
+
+- Version: 1.6.8
+- Feature: Dramatic speedup in some operations 
+				(e.g. move branch up/down) due to extended 
+				undo engine
+-------------------------------------------------------------------
+ 2005-05-27 
+ 
+- Version: 1.6.7	
+- Feature:Changed default pdf-reader for Mac OSX 
+- Bugfix: xLinks stopped working in 1.6.6
+- Bugfix: drawing error when using modModeCopy
+- Bugfix: replaced lrint by qRound for BSD port
+		
+-----------------------------------------------------------
+ 2005-05-23
+
+- Version 1.6.6	
+- Feature: Exclusive standard flags		
+
+-----------------------------------------------------------
+2005-05-19 
+
+- Version: 1.6.5
+- Feature: removing a branch and keeping its childs
+- Feature: removing childs of a branch
+- Feature: insert branch and make selection its child
+- Feature: restructured branch context menu	
+           in a basic version (straight line)
+- Feature: New shortcuts  for use on Mac OS X
+- Feature: Importing directories generates vymlinks now 
+- Bugfix: Changing linkstyle now automatically redraws all
+	      links again
+- Bugfix: Paste icon is disabled if clipboard is empty 
+		
+-----------------------------------------------------------
+2005-04-15
+
+- Version: 1.6.4	
+- Feature: xLinks (connection between 2 branches) works
+           in a basic version (straight line)	
+
+-----------------------------------------------------------
+2005-03-30
+
+- Version: 1.6.3
+- Bugfix: Saving of selection to a vym part (.vyp)
+- Bugfix: Closing the noteeditor by closing its window now
+          also toggles the responding toolbar button. &
+
+-----------------------------------------------------------
+2005-03-24
+
+- Version: 1.6.2	
+- Feature: Introduced Modifier modes: color, link, copy 
+- Feature: Linking branches is basically possible, though it can't be
+           edited/saved yet 
+
+-----------------------------------------------------------
+2005-01-30
+
+- Version: 1.6.1	 
+- Feature: Optimized moving of branches: much faster especially 
+           with huge subtrees					
+- Bugfix: Segfault when loading vym part 
+- Bugfix: ugly unitialized lines, when temporary drawn link 
+          was moved from a temporary parent back to canvas		  
+
+-----------------------------------------------------------
+2004-12-14  
+
+- Version: 1.6.0 	 
+- Feature: Added saving of xhtml settings in map 
+
+-----------------------------------------------------------
+2004-12-13  
+
+- Version: 1.5.2 	 
+- Feature: Added Import of maps with two modes: 
+           add/replace						
+- Feature: Added export of part of maps		 
+- Feature: Added joining of paragraphs in text editor		 
+- Feature: Optimized undo: Only relevant parts are saved, which
+           dramatically improves e.g. moving branches up/down in most maps  
+- Bugfix: QTextEdit generates invalid XML code, which could lead to a
+          parse error, if font name contains a \&  (bnc#62283)   
+- Bugfix: Wrong order of mainbranches in Export	   
+- Bugfix: zip archive was not deleted before save, which could lead to
+  much bigger files, e.g.  when working on older \vym maps or deleted
+  images   
+- Bugfix: Printing in Texteditor         
+- Bugfix: Wrong URLs in xhtml output				  
+- Bugfix: Segfault fixed at Cursor left/right in empty map  
+
+-----------------------------------------------------------
+2004-10-01 
+
+- Version: 1.5.1
+- Feature: More options in xhtml export: external scripts 	 
+
+-----------------------------------------------------------
+2004-09-26 
+
+- Version: 1.5.0 	 
+- Public release of all changes since 1.4.1      	 
+- Feature: New function to replace paragraphs in note editor
+   	by linebreaks, this makes pasted text much nicer 
+- Feature: New option to toggle exporting of of floatimages 
+- Feature: z-plane of floatimages can be set (manually only) 
+- Bugfix: Wrong ordering of branches, if mainbranch is exactly left of
+  center 
+
+-----------------------------------------------------------
+2004-09-24 
+
+- Version: 1.4.7 	 
+- Feature: New Export to XHTML (by Thomas Schraitle)	 
+- Bugfix: vymLink	
+- Bugfix: spaces and dots in filenames	 
+- Bugfix: Error message if xsltproc is not installed 
+
+-----------------------------------------------------------
+2004-09-15	
+
+- Version: 1.4.6 	 
+- Feature: New file format: notes are saved as part of the .xml file
+- Feature: Note Editor supports Rich Text now.
+- Feature: Parser now also nows {\tt standardflag} (all letters lowercase)
+
+-----------------------------------------------------------
+2004-08-23	
+
+- Version: 1.4.5 	 
+- Feature: Correct handling of font size in Heading			 
+
+-----------------------------------------------------------
+2004-07-29	
+
+- Version: 1.4.4 	 
+- Selecting with cursor now works between subtrees	 
+- Bugfix: vymLink was set to temporary dir in 1.4.3	 
+
+-----------------------------------------------------------
+2004-07-19  
+
+- Version: 1.4.3 	 
+- Optimisation: Reduced canvas objects by only creating objects for used
+  flags		 
+- Better visualization of moving branch above/below target		
+- Find Window informs with dialog, if the search failed
+- System Flags are clickable now		
+- Reworked CSS and XST stylsheets (comments, indent, browser
+  compatibility)						
+- vymLinks are shown in statusbar		
+- current directory is save			
+- Rewritten load/save to improve multimap handling and unzipped files
+- Bugfix: vymLinks don't get deleted when Cancel is pressed						
+- Bugfix: Fixed a bunch of bugs in XSL for HTML export             
+- Bugfix: More toolbar buttons disabled, if action not possible             
+- Bugfix: Renaming .vymfile now works		
+- Bugfix: mapChanged set when toggling flags		
+- Bugfix: CTRL-N was used twice		
+- Bugfix: Del didn't work on floatimage 
+
+-----------------------------------------------------------
+- Version: 1.4.2 	 
+- Bugfix: Float image could not be deleted  
+
+-----------------------------------------------------------
+2004-05-25  
+
+- Version: 1.4.1 	 
+- Bugfix: Color of branch not saved	 
+- Bugfix: wrong path at HTML export	             
+- Bugfix: map is not save with special characters in path   
+
+-----------------------------------------------------------
+2004-05-17 
+
+- Version: 1.4.0 	 
+- Ask for confirmation before opening 
+				a map in multiple editors			 
+- Save state of note editor (visible/minimized) 
+- Export to HTML						 
+- Author and Comment is saved in map	 
+- Stats are shown in Edit MapInfo		 
+- Changes for OS X port (QCursor, QContextMenuEvent)	 
+- Bugfix: Fonts from note editor are save now			
+- Bugfix: invisible image when parent is scrolled		
+- Bugfix: Segfault pressing "enter" for floatimage	
+- Bugfix: Images can't be outside of exported area
+				anymore. 
+- Bugfix: Filenames with blanks		 
+- Bugfix: Old maplink is shown when editing maplink 
+- Bugfix: always show cursor while editing heading  
+
+-----------------------------------------------------------
+2004-04-16 
+
+- Version: 1.3.5 	 
+- Export map to dir					 
+- Export to any of QTs image formats	 
+- Also right side of selection is always visible now. 
+
+-----------------------------------------------------------
+2004-04-07 
+
+- Version: 1.3.4 	 
+- Load last maps in file menu          
+- save last image path for loading	 
+- Also export standard flags to dir.	 
+
+-----------------------------------------------------------
+2004-03-26 
+
+- Version: 1.3.3 	 
+- Enabled <br> in headings as manual linebreak	 
+- Heading can be copied to URL		
+- Bugfix: GIFs are automatically converted to PNG now
+
+-----------------------------------------------------------
+2004-03-26 
+
+- Version: 1.3.2 	 
+- Add and move branches above/below selection, Texteditor copy all, 
+
+-----------------------------------------------------------
+2004-03-25 
+
+- Version: 1.3.1 	 
+- Export to directory, changed naming in .vym 
+
+-----------------------------------------------------------
+2004-03-23 
+
+- Version: 1.3.0 	 
+- Bugfix: Check if map can be saved at all 
+
+-----------------------------------------------------------
+2004-03-22 
+
+- Version: 1.2.12	 
+- Select image format before saving image	 
+
+-----------------------------------------------------------
+2004-03-18 
+
+- Version: 1.2.11	
+-		Selecting mainbranches by up/down	 
+-		Export ASCII (experimental)						
+-		Each map can be saved individually at quit		
+-		Bugfix: Opening VymLink crashes QT				
+-		Bugfix: 50\% less objects on canvas				
+-		Bugfix: Ignoring LANG, now always written as UTF8
+
+-----------------------------------------------------------
+2004-03-16 
+
+- Version: 1.2.10	
+- Sort Mainbranches by angle to y-axis 
+- Import directory structure						
+- Bugfix: Set FrameType of MapCenter while loading map 
+
+-----------------------------------------------------------
+2004-03-12 
+
+- Version: 1.2.9	
+- Jump to another vym map		         
+- Mainbranches are alwas ordered clockwise        
+
+-----------------------------------------------------------
+2004-03-03 
+
+- Version: 1.2.8	 
+- Change frame types in context menu   
+
+-----------------------------------------------------------
+2004-02-25 
+
+- Version: 1.2.7	
+- Copy / Paste and save Floatimages  
+
+-----------------------------------------------------------
+2004-02-24 
+
+- Version: 1.2.6	 
+- Closing vym in KDE now asks for save, too	 
+- Context menu for branches					  
+- Selection is saved in .vym file				  
+
+-----------------------------------------------------------
+2004-02-18 
+
+- Version: 1.2.5	 
+- URLs to external links can be added 
+- All actions are deactived if not possible  
+
+-----------------------------------------------------------
+2004-02-16 
+
+- Version: 1.2.4	 
+- Images: Can be loaded, saved, relinked to other parents
+
+-----------------------------------------------------------
+2004-01-27  
+
+- Version: 1.2.3	 
+- Zoom: Reset and finer steps shrinking/enlarging	 
+
+-----------------------------------------------------------
+2004-01-27 
+
+- Version: 1.2.2	 
+- Editing of links (style and color)	 
+
+-----------------------------------------------------------
+2004-01-27 
+
+- Version: 1.2.1	
+- Bugfix: LineEdit when adding branch has correct position again.								 
+
+-----------------------------------------------------------
+2004-01-23 
+
+- Version: 1.2.0	 
+- Scrolled parts are automatically unscrolled when selected and scrolled
+  again later.				 
+- Bugfix: Save flag is updated when multiple maps are opened 
+- Bugfix: Moving of branches is faster and more accurat when adding to
+  mapcenter 
+
+-----------------------------------------------------------
+2003-12-04 
+
+- Version: 1.1.7	 
+- Bugfix: Remember filename of note in noteeditor	 
+
+-----------------------------------------------------------
+2003-12-02 
+
+- Version: 1.1.6	 
+- Find Text also in Notes.	 
+
+-----------------------------------------------------------
+2003-11-07 
+
+- Version: 1.1.5	
+- Bugfix: Correct setting and positioning when relinking branches	 
+
+-----------------------------------------------------------
+2003-11-03 
+
+- Version: 1.1.4	 
+- Scroll mode added (folding of subtrees).		 
+- Bugfix: Wrong position of linedit in zoomed view 
+
+-----------------------------------------------------------
+2003-10-09  
+
+- Version: 1.1.3	 
+-		Added clear button in find window, bugfixes     
+
+-----------------------------------------------------------
+2003-10-07  
+
+- Version: 1.1.2	 
+- Links can be colored with color of heading      
+
+-----------------------------------------------------------
+2003-09-26  
+
+- Version: 1.1.1	 
+- Improved visualization of linking to new branch 
+
+-----------------------------------------------------------
+2003-09-25  
+
+- Version: 1.1.0	 
+- Find Function							
+- Selection always stays in view		  
+
+-----------------------------------------------------------
+2003-09-18
+
+- Version: 1.0.1	 
+- Find function scrolls to result now	 
+- Bugfix: Adding branch with midmouse	  
+- Bugfix: multiple repositioning of map, when noteeditor was changed
+  (speedup)	 
+- New Linestyles (still hardcoded)			 
+
+-----------------------------------------------------------
+2003-09-16 	 	
+
+- Version: 1.0.0	 
+- First public stable release			 
+
+-----------------------------------------------------------
+- Version: 0.9.0	 
+- added quick color picker (CTRL + Left Mouse)  ?	 
+
+-----------------------------------------------------------
+- Version: 0.8.0	 
+- added automatic canvas resizer, removed manual resizing of canvas  
+- added settings option to paste text into new branch	 
+- simplified code	 
+- Added heart flag	 
+- Choose and switch between fixed and variable width fonts 
+- note editor		 
+- Fixed segfault caused by undo and a call of updateNoteFlag of note
+  editor	 
+- Added settings menu to configure autoselect and autoedit mode	 
+- autoedit and autoselect mode	 
+- Fixed ugly display problem with QT Palette (Klaas Freitag) 
+- Reduced temporary directories from 4 to 1	 
+- Added wordwrap in printing of notes	 
+- New toolbar buttons in texteditor	 
+- Set background color	 
+- Fixed bug: Flags in toolbar not updated when selecting map center	  
+
+-----------------------------------------------------------
+- Version: 0.7.0	 
+- No more segfault, when an object is deleted while being edited  
+- Keep focus constant when zooming in/out  
+- Export as png graphic  
+- Keep Center of map where it is while zooming  
+- Added Standard Flags (Smiley, Hook, Stopsign, ...)  
+- MDI: Multi Document Interface enables working on several maps
+  simultanously  
+- Enabled creating a new map via argument on commandline  
+- Changed file extension from .mmap to .vym  
+- noteeditor changes color, if empty or nothing is selected  
+- Changes in NoteEditor window are recognized by main window, too, thus
+  preventing loosing data when quitting the program.   
+
+-----------------------------------------------------------
+- Version: 0.6.0	
+- New rendering engine: Faster, no flickering   
+
+-----------------------------------------------------------
+- Version: 0.5.0	 
+-  Changed printing to use maximum space on paper  
+-  Note editor is hidden, too, when mapeditor is minimized  
+-  New (compressed) file format  
+
+-----------------------------------------------------------
+- Version: 0.4.0     
+- Size of map is saved  
+- Multi Line Headings   
+- Reworked Rendering Engine: Much faster now.  
+- Reworked Undo: Much faster now.  
+- Enabled moving of map center  
+- Multi-line headings   
+
+-----------------------------------------------------------
+- Version: 0.3.0
+- Introduced Undo  
+- Fixed some bugs    
+
+-----------------------------------------------------------
+- Version: 0.2.0     
+- Moving view of map improved:  
+- New handling (acrobat reader style)  
+- New mousepointer  
+- Several tools to color a map  
+
+-----------------------------------------------------------
+- Version: 0.1.0  
+- Inital version, basic map layout   
+- Data is stored in XML 
diff -r c13937960f1d -r 46553c106c52 vymmodel.cpp
--- a/vymmodel.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/vymmodel.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -2542,7 +2542,6 @@
 }
 
 void VymModel::deleteSelection()	//FIXME-2 xLinks in a deleted subtree are not restored on undo	
-//FIXME-1 delete MCO, UNDO, => crash  (see 1.12.4  from 29.7.2009) 
 {
 	BranchItem *selbi=getSelectedBranch();
 
diff -r c13937960f1d -r 46553c106c52 xml-vym.cpp
--- a/xml-vym.cpp	Thu Mar 18 11:55:59 2010 +0000
+++ b/xml-vym.cpp	Mon Mar 22 15:37:23 2010 +0000
@@ -141,7 +141,6 @@
 			// Treat the found mapcenter as a branch 
 			// in an existing map
 			BranchItem *bi=model->getSelectedBranch();	
-			cout << "xml-vym  bi="<<bi->getHeadingStd()<<"  loadMode="<<loadMode<<endl;
 			if (bi)
 			{
 				lastBranch=bi;