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 Please look at the INSTALL.TXT file
29 \section doc_sec Documentation
31 The complete documentation is available as a PDF file. Please look
32 into the doc subdirectory.
38 /*! \brief Dialog showing authors, version and license
42 class AboutDialog :public QDialog
47 AboutDialog(QWidget* parent = 0, const char* name = 0);
51 AboutTextBrowser *credits;
52 AboutTextBrowser *license;
56 QLayout *bottomLayout;
57 QPushButton *okbutton;
61 /*! \brief Overloaded QTextBrowser which is used in AboutDialog
63 class AboutTextBrowser : public QTextBrowser
67 AboutTextBrowser(QWidget *parent, const char *name = 0);
69 virtual void setSource(const QUrl &url);