started doxygen documentation
authorinsilmaril
Wed, 25 Apr 2007 16:02:54 +0000
changeset 45884b37cc9e63e
parent 457 80529c03702b
child 459 9bc55005a0f1
started doxygen documentation
aboutdialog.cpp
exportxhtmldialog.h
     1.1 --- a/aboutdialog.cpp	Wed Apr 11 09:21:18 2007 +0000
     1.2 +++ b/aboutdialog.cpp	Wed Apr 25 16:02:54 2007 +0000
     1.3 @@ -10,6 +10,7 @@
     1.4  extern QString iconPath;
     1.5  extern QString vymVersion;
     1.6  extern QString vymBuildDate;
     1.7 +extern QString vymCodeName;
     1.8  
     1.9  AboutDialog::AboutDialog( QWidget *parent, const char *name)
    1.10      : QDialog( parent, name)
    1.11 @@ -26,6 +27,7 @@
    1.12  	"<p align=\"center\"> A tool to put the things you have got in your mind into a map.</p>"
    1.13  	"<p align=\"center\"> (c) by Uwe Drechsel (<a href=\"mailto:vym@InSilmaril.de\">vym@InSilmaril.de</a>)</p>"
    1.14  	"<p align=\"center\"> Version " +vymVersion+" - " +vymBuildDate+"</p>"
    1.15 +	"<p align=\"center\"> " +vymCodeName+"</p>"
    1.16  	"<ul>"
    1.17  	"<li> Contact</li>"
    1.18  		"<ul>"
     2.1 --- a/exportxhtmldialog.h	Wed Apr 11 09:21:18 2007 +0000
     2.2 +++ b/exportxhtmldialog.h	Wed Apr 25 16:02:54 2007 +0000
     2.3 @@ -3,6 +3,13 @@
     2.4  
     2.5  #include "ui_exportxhtmldialog.h"
     2.6  
     2.7 +/*! \brief Dialog to export a map as XHTML document
     2.8 +
     2.9 +This is an overloaded QDialog with various settings needed to call
    2.10 +convert the vym.xml to a XHTML document. 
    2.11 +The conversion itself is done by calling xsltproc.
    2.12 +*/
    2.13 +
    2.14  class ExportXHTMLDialog:public QDialog
    2.15  {
    2.16  	Q_OBJECT