0
|
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
|