summaryrefslogtreecommitdiff
path: root/HelpDialog.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
committerThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
commit8f9f382e1c97cab2e72e97495650c73ac4b97314 (patch)
tree78510a0d81368c09b56f444fb19bb132c8bc3009 /HelpDialog.h
Imported Upstream version 0.3.0.5
Diffstat (limited to 'HelpDialog.h')
-rw-r--r--HelpDialog.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/HelpDialog.h b/HelpDialog.h
new file mode 100644
index 0000000..43cbc7f
--- /dev/null
+++ b/HelpDialog.h
@@ -0,0 +1,50 @@
+/** \file HelpDialog.h
+\brief Define the help dialog
+\author alpha_one_x86
+\version 0.3
+\date 2010
+\licence GPL3, see the file COPYING */
+
+#ifndef DIALOG_H
+#define DIALOG_H
+
+#include <QDialog>
+#include <QString>
+#include <QTimer>
+#include <QColor>
+#include <QBrush>
+
+#include "ui_HelpDialog.h"
+#include "Environment.h"
+#include "GlobalClass.h"
+
+namespace Ui {
+ class HelpDialog;
+}
+
+/** \brief Help dialog, and some user oriented repport/debug function */
+class HelpDialog : public QDialog, public GlobalClass {
+ Q_OBJECT
+ public:
+ /// \brief Construct the object
+ HelpDialog();
+ /// \brief Destruct the object
+ ~HelpDialog();
+ protected:
+ /// \brief To re-translate the ui
+ void changeEvent(QEvent *e);
+ private:
+ Ui::HelpDialog *ui;
+ /// \brief To reload the text value
+ void reloadTextValue();
+ private slots:
+ #ifdef ULTRACOPIER_DEBUG
+ /// \brief Add debug text
+ void addDebugText();
+ void on_lineEditInsertDebug_returnPressed();
+ #endif // ULTRACOPIER_DEBUG
+ void on_pushButtonAboutQt_clicked();
+ void on_pushButtonCrash_clicked();
+};
+
+#endif // DIALOG_H