summaryrefslogtreecommitdiff
path: root/HelpDialog.h
blob: 91e5dbcd580ae51a0ce3521821f35aea60b7b740 (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
/** \file HelpDialog.h
\brief Define the help dialog
\author alpha_one_x86
\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"

namespace Ui {
    class HelpDialog;
}

/** \brief Help dialog, and some user oriented repport/debug function */
class HelpDialog : public QDialog {
    Q_OBJECT
    public:
        /// \brief Construct the object
        HelpDialog();
        /// \brief Destruct the object
        ~HelpDialog();
        static std::string getWebSite();
        static std::string getUpdateUrl();
    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 on_lineEditInsertDebug_returnPressed();
        #endif // ULTRACOPIER_DEBUG
        void on_pushButtonAboutQt_clicked();
        void on_pushButtonCrash_clicked();
};

#endif // DIALOG_H