comparison include/about.h @ 0:0c0701a935f8

Start Development.
author pyon@macmini
date Sun, 21 Jul 2013 16:07:19 +0900
parents
children a2ad87cad48b
comparison
equal deleted inserted replaced
-1:000000000000 0:0c0701a935f8
1 // Filename : about.h
2 // Last Change: 21-Jul-2013.
3 //
4 #ifndef __ABOUT_H__
5 #define __ABOUT_H__
6
7 #include "common.h"
8
9 class AboutDialog : public wxDialog
10 {
11 private:
12
13 protected:
14 wxStaticBitmap* m_bitmap;
15 wxStaticText* m_staticTextDesc;
16 wxButton* m_buttonOK;
17 wxRichTextCtrl* m_richText;
18
19 public:
20 AboutDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
21 ~AboutDialog();
22 void LoadChangeLog( void );
23 };
24
25 #endif //__ABOUT_H__
26