wxWizard added

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3418 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-08-18 18:06:10 +00:00
parent a8d9809fc0
commit b87654f3fd
7 changed files with 690 additions and 11 deletions

View File

@@ -37,6 +37,10 @@
#include "wx/wizard.h"
#ifndef __WXMSW__
#include "wiztest.xpm"
#endif
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
@@ -72,7 +76,7 @@ public:
if ( m_checkbox->GetValue() )
{
wxMessageBox("Clear the checkbox first", "No way",
wxICON_WARNING, this);
wxICON_WARNING | wxOK, this);
return FALSE;
}
@@ -95,7 +99,11 @@ private:
// `Main program' equivalent: the program execution "starts" here
bool MyApp::OnInit()
{
#ifdef __WXMSW__
wxBitmap bmpWizard("wiztest.bmp", wxBITMAP_TYPE_BMP);
#else
wxBitmap bmpWizard(wizimage);
#endif
wxWizard *wizard = wxWizard::Create(NULL, -1,
"Absolutely Useless Wizard",
@@ -115,7 +123,7 @@ bool MyApp::OnInit()
if ( wizard->RunWizard() )
{
wxMessageBox("The wizard successfully completed", "That's all",
wxICON_INFORMATION);
wxICON_INFORMATION | wxOK);
}
wizard->Destroy();