Mercurial > mercurial > hgweb_dw.cgi
view include/about.h @ 2:deaf3f2d54b2
more parameters.
author | pyon@macmini |
---|---|
date | Thu, 08 Nov 2012 20:17:12 +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__