summaryrefslogtreecommitdiff
path: root/HelpDialog.h
blob: 43cbc7fce642b5b778bd87a89b9c7f42c668ef9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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