comparison include/about.h @ 0:7c3921bf511e

Beta2
author pyon@macmini
date Sat, 20 Oct 2012 16:07:42 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7c3921bf511e
1 // Filename : about.h
2 // Last Change: 23-Jun-2012.
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 = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxSTAY_ON_TOP );
21 ~AboutDialog();
22 void LoadChangeLog( void );
23 };
24
25 #endif //__ABOUT_H__
26