Index: trunk/FACT++/gui/CheckBoxDelegate.cc
===================================================================
--- trunk/FACT++/gui/CheckBoxDelegate.cc	(revision 10650)
+++ trunk/FACT++/gui/CheckBoxDelegate.cc	(revision 10657)
@@ -1,6 +1,13 @@
+// **************************************************************************
+/** @class CheckBoxDelegate
+
+@brief A delegate which displays an arrow if there are sub items and raises an event if the checkbox is checked
+
+*/
+// **************************************************************************
 #include "CheckBoxDelegate.h"
 
-#include <QtGui/QPainter>
-#include <QtGui/QApplication>
+#include <QPainter>
+#include <QApplication>
 
 void CheckBoxDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
@@ -69,2 +76,10 @@
     return rc;
 }
+
+// **************************************************************************
+/** @class CheckBoxEvent
+
+@brief An event posted by the CheckBoxDelegate if the CheckBox is used
+
+*/
+// **************************************************************************
Index: trunk/FACT++/gui/CheckBoxDelegate.h
===================================================================
--- trunk/FACT++/gui/CheckBoxDelegate.h	(revision 10650)
+++ trunk/FACT++/gui/CheckBoxDelegate.h	(revision 10657)
@@ -2,6 +2,6 @@
 #define FACT_CheckBoxDelegate
 
-#include <QtCore/QEvent>
-#include <QtGui/QStandardItem>
+#include <QEvent>
+#include <QStandardItem>
 
 using namespace std;
@@ -18,10 +18,8 @@
 
 
-#include <QtGui/QStyledItemDelegate>
+#include <QStyledItemDelegate>
 
 class CheckBoxDelegate : public QStyledItemDelegate
 {
-    Q_OBJECT;
-
 public:
     CheckBoxDelegate(QObject *p=0) : QStyledItemDelegate(p)
Index: trunk/FACT++/gui/DockWindow.cc
===================================================================
--- trunk/FACT++/gui/DockWindow.cc	(revision 10650)
+++ trunk/FACT++/gui/DockWindow.cc	(revision 10657)
@@ -1,2 +1,9 @@
+// **************************************************************************
+/** @class DockWindow
+
+@brief A main window which can be used to display a QDockWidget from a tab
+
+*/
+// **************************************************************************
 #include "DockWindow.h"
 
@@ -7,6 +14,4 @@
 
 using namespace std;
-
-#include <iostream>
 
 DockWindow::DockWindow(QDockWidget *d, const QString &name)
@@ -42,5 +47,5 @@
     QWidget *w = new QWidget;
 
-    QGridLayout *l =  new QGridLayout(w);
+    QGridLayout *l = new QGridLayout(w);
     //layout->setObjectName(QString::fromUtf8("gridLayout_")+windowTitle());
     l->addWidget(fDockWidget, 0, 0, 1, 1);
@@ -50,4 +55,3 @@
 
     fDockWidget->setParent(w);
-
 }
Index: trunk/FACT++/gui/HtmlDelegate.cc
===================================================================
--- trunk/FACT++/gui/HtmlDelegate.cc	(revision 10650)
+++ trunk/FACT++/gui/HtmlDelegate.cc	(revision 10657)
@@ -1,6 +1,13 @@
+// **************************************************************************
+/** @class HtmlDelegate
+
+@brief A Qt-Delegate to display HTML text (QTextDocument) in a list
+
+*/
+// **************************************************************************
 #include "HtmlDelegate.h"
 
-#include <QtGui/QPainter>
-#include <QtGui/QTextDocument>
+#include <QPainter>
+#include <QTextDocument>
 
 void HtmlDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
Index: trunk/FACT++/gui/HtmlDelegate.h
===================================================================
--- trunk/FACT++/gui/HtmlDelegate.h	(revision 10650)
+++ trunk/FACT++/gui/HtmlDelegate.h	(revision 10657)
@@ -2,12 +2,8 @@
 #define FACT_HtmlDelegate
 
-#include <QtGui/QStyledItemDelegate>
-
-using namespace std;
+#include <QStyledItemDelegate>
 
 class HtmlDelegate : public QStyledItemDelegate
 {
-    Q_OBJECT;
-
 public:
     HtmlDelegate(QObject *p=0) : QStyledItemDelegate(p)
Index: trunk/FACT++/gui/MainWindow.cc
===================================================================
--- trunk/FACT++/gui/MainWindow.cc	(revision 10650)
+++ trunk/FACT++/gui/MainWindow.cc	(revision 10657)
@@ -31,6 +31,8 @@
     fDimSvcDescription->setItemDelegate(new HtmlDelegate);
 
+    // Set a default string to be displayed in a the status bar at startup
     fStatusBar->showMessage(PACKAGE_STRING"   |   "PACKAGE_URL"   |   report bugs to <"PACKAGE_BUGREPORT">");
 
+    // Initialize the 40 FTU Leds as a copy of the prototype LED
     fFtuLED[0] = fFtuLEDPrototype;
 
@@ -58,4 +60,5 @@
     }
 
+    // Initialize a timer to update the displayed UTC time
     QTimer *timer = new QTimer(this);
     connect(timer, SIGNAL(timeout()), this, SLOT(slot_TimeUpdate()));
Index: trunk/FACT++/gui/SpinBoxHex.h
===================================================================
--- trunk/FACT++/gui/SpinBoxHex.h	(revision 10650)
+++ trunk/FACT++/gui/SpinBoxHex.h	(revision 10657)
@@ -2,5 +2,5 @@
 #define FACT_SpinBoxHex
 
-#include <QtGui/QSpinBox>
+#include <QSpinBox>
 
 
@@ -37,2 +37,9 @@
 #endif
 
+// **************************************************************************
+/** @class SpinBoxHex
+
+@brief A QSpinBox which displays the value as hex-value
+
+*/
+// **************************************************************************
