OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / qt / gui / display_about.h
1 /*
2  * Common Source Project/ Qt
3  * (C) 2015 K.Ohta <whatisthis.sowhat _at_ gmail.com>
4  *  Qt: Menu->Help->About Dialog
5  *  History: Oct 28, 2015 : Initial
6  */
7 #ifndef _CSP_QT_DISPLAY_ABOUT_H
8 #define _CSP_QT_DISPLAY_ABOUT_H
9
10 #include <QTextBrowser>
11 #include <QLabel>
12 #include <QGroupBox>
13 #include <QVBoxLayout>
14 #include <QHBoxLayout>
15 #include <QGroupBox>
16
17 #include "common.h"
18
19 QT_BEGIN_NAMESPACE
20 class USING_FLAGS;
21 class EMU;
22 class Ui_MainWindowBase;
23 class DLL_PREFIX Dlg_AboutCSP : public QWidget
24 {
25         Q_OBJECT
26 protected:
27         USING_FLAGS *using_flags;
28         QWidget *parent_widget;
29
30         QTextBrowser *TextBox;
31         QLabel *iconarea;
32         QLabel *titlearea;
33         QHBoxLayout *HBox1;
34         QLabel *revarea;
35         QWidget *BoxTitle;
36         QVBoxLayout *VBox;
37 public:
38         Dlg_AboutCSP(USING_FLAGS *p, QWidget *parent = 0);
39         ~Dlg_AboutCSP();
40         
41 };
42 QT_END_NAMESPACE
43
44 #endif //_CSP_QT_DISPLAY_ABOUT_H