GPL V2. Added settings to documentation
5 #include <QTextBrowser>
10 #include <QMessageBox>
12 class AboutTextBrowser;
14 /*! \mainpage View Your Mind - Development documentation
16 \section intro_sec Introduction
18 VYM (View Your Mind) is a tool to generate and manipulate maps which
19 show your thoughts. Such maps can help you to improve your creativity
20 and effectivity. You can use them for time management, to organize
21 tasks, to get an overview over complex contexts, to sort your ideas
22 etc. Some people even think it is fun to work with such maps...
25 \section install_sec Installation
27 \subsection step1 Step 1: Opening the box
34 /*! \brief Dialog showing authors, version and license
38 class AboutDialog :public QDialog
43 AboutDialog(QWidget* parent = 0, const char* name = 0);
47 AboutTextBrowser *credits;
48 AboutTextBrowser *license;
52 QLayout *bottomLayout;
53 QPushButton *okbutton;
57 /*! \brief Overloaded QTextBrowser which is used in AboutDialog
59 class AboutTextBrowser : public QTextBrowser
63 AboutTextBrowser(QWidget *parent, const char *name = 0);
65 virtual void setSource(const QUrl &url);