Added HTML About box and changed player dialog label

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-06-12 13:19:08 +00:00
parent d04d32c4ec
commit 5cdeff757d
4 changed files with 252 additions and 13 deletions

View File

@@ -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