Mercurial > mercurial > hgweb_dw.cgi
view include/about.h @ 1:20018a6f69a9
implement copy.
author | pyon@macmini |
---|---|
date | Wed, 31 Oct 2012 18:08:52 +0900 |
parents | 7c3921bf511e |
children |
line wrap: on
line source
// 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__