diff include/about.h @ 0:0c0701a935f8

Start Development.
author pyon@macmini
date Sun, 21 Jul 2013 16:07:19 +0900
parents
children a2ad87cad48b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/about.h	Sun Jul 21 16:07:19 2013 +0900
@@ -0,0 +1,26 @@
+// Filename   : about.h
+// Last Change: 21-Jul-2013.
+//
+#ifndef __ABOUT_H__
+#define __ABOUT_H__
+
+#include "common.h"
+
+class AboutDialog : public wxDialog 
+{
+	private:
+	
+	protected:
+		wxStaticBitmap* m_bitmap;
+		wxStaticText*   m_staticTextDesc;
+		wxButton*       m_buttonOK;
+		wxRichTextCtrl* m_richText;
+	
+	public:
+		AboutDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); 
+		~AboutDialog();
+        void LoadChangeLog( void );
+};
+
+#endif //__ABOUT_H__
+