Mercurial > mercurial > hgweb_searcher03.cgi
view include/about.h @ 22:92188f60323d default tip
Implement Masking function on Preview Dialog.
author | pyon@macmini |
---|---|
date | Sat, 04 Apr 2015 17:23:46 +0900 |
parents | a2ad87cad48b |
children |
line wrap: on
line source
// Filename : about.h // Last Change: 11-Dec-2014. // #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; wxStaticText* m_staticTextBuild; public: AboutDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); ~AboutDialog(); void LoadChangeLog( void ); }; #endif //__ABOUT_H__