started doxygen documentation
authorinsilmaril
Wed Apr 25 16:02:54 2007 +0000 (2007-04-25)
changeset 46012e763c3e486
parent 459 9bc55005a0f1
child 461 b0d72eb511c9
started doxygen documentation
aboutdialog.h
selection.cpp
toolbars.h
xml.cpp
     1.1 --- a/aboutdialog.h	Wed Apr 25 16:02:54 2007 +0000
     1.2 +++ b/aboutdialog.h	Wed Apr 25 16:02:54 2007 +0000
     1.3 @@ -10,7 +10,31 @@
     1.4  #include <QMessageBox>
     1.5  
     1.6  class AboutTextBrowser;
     1.7 -/////////////////////////////////////////////////////////////////////////////
     1.8 +
     1.9 +/*! \mainpage View Your Mind - Development documentation
    1.10 + 
    1.11 +  \section intro_sec Introduction
    1.12 + 
    1.13 +VYM  (View Your Mind) is a tool to generate and manipulate maps which
    1.14 +show your thoughts. Such maps can help you to improve your creativity
    1.15 +and effectivity. You can use them for time management, to organize
    1.16 +tasks, to get an overview over complex contexts, to sort your ideas
    1.17 +etc. Some people even think it is fun to work with such maps...
    1.18 +
    1.19 + 
    1.20 +  \section install_sec Installation
    1.21 + 
    1.22 +  \subsection step1 Step 1: Opening the box
    1.23 +   
    1.24 +  etc...
    1.25 +*/
    1.26 +
    1.27 +
    1.28 +
    1.29 +/*! \brief Dialog showing authors, version and license
    1.30 +*/
    1.31 +
    1.32 +
    1.33  class AboutDialog :public QDialog
    1.34  {
    1.35  	Q_OBJECT
    1.36 @@ -30,6 +54,8 @@
    1.37  	
    1.38  };
    1.39  
    1.40 +/*! \brief Overloaded QTextBrowser which is used in AboutDialog
    1.41 +*/
    1.42  class AboutTextBrowser : public QTextBrowser
    1.43  {
    1.44    Q_OBJECT;
     2.1 --- a/selection.cpp	Wed Apr 25 16:02:54 2007 +0000
     2.2 +++ b/selection.cpp	Wed Apr 25 16:02:54 2007 +0000
     2.3 @@ -71,8 +71,10 @@
     2.4  		QPen(color),
     2.5  		color);
     2.6  	sb->setZValue(Z_SELBOX);
     2.7 +	sb->show();
     2.8  	selboxList.append (sb);
     2.9  	lmo->select();
    2.10 +	update();
    2.11  	mainWindow->updateSatellites (mapEditor);	// update branchPropWindow...
    2.12  	return true;
    2.13  }
     3.1 --- a/toolbars.h	Wed Apr 25 16:02:54 2007 +0000
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,31 +0,0 @@
     3.4 -#ifndef TOOLBARS_H
     3.5 -#define TOOLBARS_H
     3.6 -
     3.7 -#include <QToolBar>
     3.8 -
     3.9 -#include "settings.h"
    3.10 -
    3.11 -class ToolBar:public QToolBar
    3.12 -{
    3.13 -	Q_OBJECT
    3.14 -
    3.15 -public:
    3.16 -	void loadSettings (const Settings &);
    3.17 -	void saveSettings (const Settings &);
    3.18 -
    3.19 -private:
    3.20 -};
    3.21 -
    3.22 -/////////////////////////////////////////////////////////////////////////////
    3.23 -class ToolBarSet
    3.24 -{
    3.25 -public:
    3.26 -	ToolBarSet();
    3.27 -	void loadSettings(const Settings &);	
    3.28 -	void saveSettings(const Settings &);	
    3.29 -	void add (QToolBar *);
    3.30 -private:
    3.31 -	QList <ToolBar*> list;
    3.32 -};
    3.33 -
    3.34 -#endif
     4.1 --- a/xml.cpp	Wed Apr 25 16:02:54 2007 +0000
     4.2 +++ b/xml.cpp	Wed Apr 25 16:02:54 2007 +0000
     4.3 @@ -102,9 +102,9 @@
     4.4  			if (!atts.value( "linkColorHint").isEmpty() ) 
     4.5  			{
     4.6  				if (atts.value("linkColorHint")=="HeadingColor")
     4.7 -					me->setMapLinkColorHint(HeadingColor);
     4.8 +					me->setMapLinkColorHint(LinkableMapObj::HeadingColor);
     4.9  				else
    4.10 -					me->setMapLinkColorHint(DefaultColor);
    4.11 +					me->setMapLinkColorHint(LinkableMapObj::DefaultColor);
    4.12  			}
    4.13  			if (!atts.value( "linkStyle").isEmpty() ) 
    4.14  			{