OSDN Git Service

[UI][Qt] Fix not display label texts.
[csp-qt/common_source_project-fm7.git] / source / src / qt / gui / display_about.h
diff --git a/source/src/qt/gui/display_about.h b/source/src/qt/gui/display_about.h
new file mode 100644 (file)
index 0000000..e41fd29
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Common Source Project/ Qt
+ * (C) 2015 K.Ohta <whatisthis.sowhat _at_ gmail.com>
+ *  Qt: Menu->Help->About Dialog
+ *  History: Oct 28, 2015 : Initial
+ */
+#ifndef _CSP_QT_DISPLAY_ABOUT_H
+#define _CSP_QT_DISPLAY_ABOUT_H
+
+#include <QTextBrowser>
+#include <QLabel>
+#include <QGroupBox>
+#include <QVBoxLayout>
+#include <QHBoxLayout>
+#include <QGroupBox>
+
+//#include "emu.h"
+
+QT_BEGIN_NAMESPACE
+
+class EMU;
+class Dlg_AboutCSP : public QWidget
+{
+       Q_OBJECT
+protected:
+       EMU *p_emu;
+       QWidget *parent_widget;
+
+       QTextBrowser *TextBox;
+       QLabel *iconarea;
+       QLabel *titlearea;
+       QHBoxLayout *HBox1;
+       QLabel *revarea;
+       QWidget *BoxTitle;
+       QVBoxLayout *VBox;
+public:
+       Dlg_AboutCSP(QWidget *parent = 0);
+       ~Dlg_AboutCSP();
+       
+};
+QT_END_NAMESPACE
+
+#endif //_CSP_QT_DISPLAY_ABOUT_H