Mercurial > mercurial > hgweb_dw.cgi
diff include/about.h @ 0:7c3921bf511e
Beta2
author | pyon@macmini |
---|---|
date | Sat, 20 Oct 2012 16:07:42 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/about.h Sat Oct 20 16:07:42 2012 +0900 @@ -0,0 +1,26 @@ +// Filename : about.h +// Last Change: 23-Jun-2012. +// +#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 = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxSTAY_ON_TOP ); + ~AboutDialog(); + void LoadChangeLog( void ); +}; + +#endif //__ABOUT_H__ +