X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/15bee36fdf12ec78f61e1372a460a7606f7ccb7e..564098605facb4c5fa710255915324bfe83e100e:/demos/forty/forty.h?ds=sidebyside diff --git a/demos/forty/forty.h b/demos/forty/forty.h index d6d9e3f752..0ad38bae0a 100644 --- a/demos/forty/forty.h +++ b/demos/forty/forty.h @@ -64,4 +64,25 @@ private: FortyCanvas* m_canvas; }; +//---------------------------------------------------------------------------- +// stAboutDialog +//---------------------------------------------------------------------------- + +class FortyAboutDialog: public wxDialog +{ +public: + // constructors and destructors + FortyAboutDialog( wxWindow *parent, wxWindowID id, const wxString &title, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_DIALOG_STYLE ); + + bool AddControls(wxWindow* parent); + +private: + DECLARE_EVENT_TABLE() +}; + +#define ID_ABOUT_HTML_WINDOW 1000 + #endif