OSDN Git Service

bf713a09b3d76af9843ae79f30dc6b9d4c7d5b8c
[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 DLL_PREFIX Dlg_AboutCSP : public QWidget
23 {
24         Q_OBJECT
25 protected:
26         USING_FLAGS *using_flags;
27         QWidget *parent_widget;
28
29         QTextBrowser *TextBox;
30         QLabel *iconarea;
31         QLabel *titlearea;
32         QHBoxLayout *HBox1;
33         QLabel *revarea;
34         QWidget *BoxTitle;
35         QVBoxLayout *VBox;
36 public:
37         Dlg_AboutCSP(USING_FLAGS *p, QWidget *parent = 0);
38         ~Dlg_AboutCSP();
39         
40 };
41 QT_END_NAMESPACE
42
43 #endif //_CSP_QT_DISPLAY_ABOUT_H