-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialogabout.h
53 lines (42 loc) · 960 Bytes
/
dialogabout.h
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
51
52
53
#ifndef DIALOGABOUT_H
#define DIALOGABOUT_H
#include "headers.hpp"
class DialogAbout : public QDialog
{
Q_OBJECT
public:
explicit DialogAbout(QWidget *parent = 0);
signals:
public slots:
void do_close();
private slots:
//Init
void init_var();
void init_win();
void init_sig();
void init_css();
private:
//Grid
QGridLayout *grid;
//Label
QLabel *label_title;
QLabel *label_version;
QLabel *label_date;
QLabel *label_author;
QLabel *label_Qt_img;
QLabel *label_QCustomPlot_img;
QLabel *label_Fftw3_img;
QLabel *label_CrystalClear_Icons_img;
QLabel *label_Doxygen_img;
QLabel *label_Programmers_img;
//Text
QTextEdit *text_Qt;
QTextEdit *text_QCustomPlot;
QTextEdit *text_Fftw3;
QTextEdit *text_CrystalClear_Icons;
QTextEdit *text_Doxygen;
QTextEdit *text_Programmers;
//Button
QPushButton *button_close;
};
#endif // DIALOGABOUT_H