00001 #ifndef _AboutDialog_h 00002 #define _AboutDialog_h 00003 00004 #include <wx/html/htmlwin.h> 00005 00006 class AboutDialog 00007 : public wxDialog { 00008 public: 00009 00010 AboutDialog( 00011 wxWindow* parent, 00012 int id, 00013 const wxString& title = wxT(""), 00014 const wxPoint& pos=wxDefaultPosition, 00015 const wxSize& size=wxDefaultSize, 00016 long style=wxDEFAULT_DIALOG_STYLE); 00017 00018 void OnOk(wxCommandEvent& event); 00019 00020 protected: 00021 private: 00022 wxHtmlWindow* mpHtmlWindow; 00023 wxButton* mpOkButton; 00024 }; 00025 00026 #endif // _AboutDialog_h