# HG changeset patch # User insilmaril # Date 1177516974 0 # Node ID 12e763c3e4869f54f5ff833d97369879eb1897ca # Parent 9bc55005a0f1d70c03a2c7342cbfce0e354bc17d started doxygen documentation diff -r 9bc55005a0f1 -r 12e763c3e486 aboutdialog.h --- a/aboutdialog.h Wed Apr 25 16:02:54 2007 +0000 +++ b/aboutdialog.h Wed Apr 25 16:02:54 2007 +0000 @@ -10,7 +10,31 @@ #include class AboutTextBrowser; -///////////////////////////////////////////////////////////////////////////// + +/*! \mainpage View Your Mind - Development documentation + + \section intro_sec Introduction + +VYM (View Your Mind) is a tool to generate and manipulate maps which +show your thoughts. Such maps can help you to improve your creativity +and effectivity. You can use them for time management, to organize +tasks, to get an overview over complex contexts, to sort your ideas +etc. Some people even think it is fun to work with such maps... + + + \section install_sec Installation + + \subsection step1 Step 1: Opening the box + + etc... +*/ + + + +/*! \brief Dialog showing authors, version and license +*/ + + class AboutDialog :public QDialog { Q_OBJECT @@ -30,6 +54,8 @@ }; +/*! \brief Overloaded QTextBrowser which is used in AboutDialog +*/ class AboutTextBrowser : public QTextBrowser { Q_OBJECT; diff -r 9bc55005a0f1 -r 12e763c3e486 selection.cpp --- a/selection.cpp Wed Apr 25 16:02:54 2007 +0000 +++ b/selection.cpp Wed Apr 25 16:02:54 2007 +0000 @@ -71,8 +71,10 @@ QPen(color), color); sb->setZValue(Z_SELBOX); + sb->show(); selboxList.append (sb); lmo->select(); + update(); mainWindow->updateSatellites (mapEditor); // update branchPropWindow... return true; } diff -r 9bc55005a0f1 -r 12e763c3e486 toolbars.h --- a/toolbars.h Wed Apr 25 16:02:54 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -#ifndef TOOLBARS_H -#define TOOLBARS_H - -#include - -#include "settings.h" - -class ToolBar:public QToolBar -{ - Q_OBJECT - -public: - void loadSettings (const Settings &); - void saveSettings (const Settings &); - -private: -}; - -///////////////////////////////////////////////////////////////////////////// -class ToolBarSet -{ -public: - ToolBarSet(); - void loadSettings(const Settings &); - void saveSettings(const Settings &); - void add (QToolBar *); -private: - QList list; -}; - -#endif diff -r 9bc55005a0f1 -r 12e763c3e486 xml.cpp --- a/xml.cpp Wed Apr 25 16:02:54 2007 +0000 +++ b/xml.cpp Wed Apr 25 16:02:54 2007 +0000 @@ -102,9 +102,9 @@ if (!atts.value( "linkColorHint").isEmpty() ) { if (atts.value("linkColorHint")=="HeadingColor") - me->setMapLinkColorHint(HeadingColor); + me->setMapLinkColorHint(LinkableMapObj::HeadingColor); else - me->setMapLinkColorHint(DefaultColor); + me->setMapLinkColorHint(LinkableMapObj::DefaultColor); } if (!atts.value( "linkStyle").isEmpty() ) {