1999-08-15 16:59:50 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2000-03-14 13:50:24 -05:00
|
|
|
// Name: wizard.cpp
|
2004-05-25 07:20:37 -04:00
|
|
|
// Purpose: wxWidgets sample demonstrating wxWizard control
|
1999-08-15 16:59:50 -04:00
|
|
|
// Author: Vadim Zeitlin
|
2003-07-20 16:48:52 -04:00
|
|
|
// Modified by: Robert Vazan (sizers)
|
1999-08-15 16:59:50 -04:00
|
|
|
// Created: 15.08.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vadim Zeitlin
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
// for all others, include the necessary headers
|
1999-08-15 16:59:50 -04:00
|
|
|
#ifndef WX_PRECOMP
|
2003-07-20 16:48:52 -04:00
|
|
|
#include "wx/stattext.h"
|
|
|
|
#include "wx/log.h"
|
|
|
|
#include "wx/app.h"
|
|
|
|
#include "wx/checkbox.h"
|
2005-02-03 10:28:14 -05:00
|
|
|
#include "wx/checklst.h"
|
2003-07-20 16:48:52 -04:00
|
|
|
#include "wx/msgdlg.h"
|
|
|
|
#include "wx/radiobox.h"
|
|
|
|
#include "wx/menu.h"
|
|
|
|
#include "wx/sizer.h"
|
1999-08-15 16:59:50 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/wizard.h"
|
|
|
|
|
2005-05-18 10:37:05 -04:00
|
|
|
#include "wiztest.xpm"
|
|
|
|
#include "wiztest2.xpm"
|
1999-08-18 14:06:10 -04:00
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// ids for menu items
|
|
|
|
enum
|
|
|
|
{
|
2005-07-15 12:26:11 -04:00
|
|
|
Wizard_Quit = wxID_EXIT,
|
|
|
|
Wizard_RunModal = wxID_HIGHEST,
|
|
|
|
Wizard_RunModeless,
|
|
|
|
Wizard_About = wxID_ABOUT
|
2000-01-20 21:31:49 -05:00
|
|
|
};
|
|
|
|
|
1999-08-15 16:59:50 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// private classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Define a new application type, each program should derive a class from wxApp
|
|
|
|
class MyApp : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// override base class virtuals
|
|
|
|
virtual bool OnInit();
|
|
|
|
};
|
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
class MyFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctor(s)
|
|
|
|
MyFrame(const wxString& title);
|
|
|
|
|
|
|
|
// event handlers (these functions should _not_ be virtual)
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnRunWizard(wxCommandEvent& event);
|
|
|
|
void OnWizardCancel(wxWizardEvent& event);
|
2003-10-16 03:23:58 -04:00
|
|
|
void OnWizardFinished(wxWizardEvent& event);
|
2000-01-20 21:31:49 -05:00
|
|
|
|
|
|
|
private:
|
2004-05-25 07:20:37 -04:00
|
|
|
// any class wishing to process wxWidgets events must use this macro
|
2000-01-20 21:31:49 -05:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
1999-08-15 16:59:50 -04:00
|
|
|
|
2005-07-15 12:26:11 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// our wizard
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class MyWizard : public wxWizard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyWizard(wxFrame *frame);
|
|
|
|
void RunIt(bool modal);
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxWizardPageSimple *m_page1;
|
|
|
|
};
|
|
|
|
|
1999-08-15 16:59:50 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// some pages for our wizard
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2005-04-06 15:43:55 -04:00
|
|
|
// This shows how to simply control the validity of the user input by just
|
1999-08-15 16:59:50 -04:00
|
|
|
// overriding TransferDataFromWindow() - of course, in a real program, the
|
|
|
|
// check wouldn't be so trivial and the data will be probably saved somewhere
|
2005-04-06 15:43:55 -04:00
|
|
|
// too.
|
2000-01-20 21:31:49 -05:00
|
|
|
//
|
2005-04-06 15:43:55 -04:00
|
|
|
// It also shows how to use a different bitmap for one of the pages.
|
1999-09-29 18:47:56 -04:00
|
|
|
class wxValidationPage : public wxWizardPageSimple
|
1999-08-15 16:59:50 -04:00
|
|
|
{
|
|
|
|
public:
|
1999-09-29 18:47:56 -04:00
|
|
|
wxValidationPage(wxWizard *parent) : wxWizardPageSimple(parent)
|
1999-08-15 16:59:50 -04:00
|
|
|
{
|
2005-05-18 10:37:05 -04:00
|
|
|
m_bitmap = wxBitmap(wiztest2_xpm);
|
2000-01-20 21:31:49 -05:00
|
|
|
|
2004-05-21 03:32:13 -04:00
|
|
|
m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Check me"));
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
mainSizer->Add(
|
2004-05-21 03:32:13 -04:00
|
|
|
new wxStaticText(this, wxID_ANY,
|
2003-07-20 16:48:52 -04:00
|
|
|
_T("You need to check the checkbox\n")
|
|
|
|
_T("below before going to the next page\n")),
|
|
|
|
0,
|
|
|
|
wxALL,
|
|
|
|
5
|
|
|
|
);
|
|
|
|
|
|
|
|
mainSizer->Add(
|
|
|
|
m_checkbox,
|
|
|
|
0, // No stretching
|
|
|
|
wxALL,
|
|
|
|
5 // Border
|
|
|
|
);
|
|
|
|
SetSizer(mainSizer);
|
|
|
|
mainSizer->Fit(this);
|
1999-08-15 16:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool TransferDataFromWindow()
|
|
|
|
{
|
1999-09-29 18:47:56 -04:00
|
|
|
if ( !m_checkbox->GetValue() )
|
1999-08-15 16:59:50 -04:00
|
|
|
{
|
2002-12-13 16:33:14 -05:00
|
|
|
wxMessageBox(_T("Check the checkbox first!"), _T("No way"),
|
1999-08-18 14:06:10 -04:00
|
|
|
wxICON_WARNING | wxOK, this);
|
1999-08-15 16:59:50 -04:00
|
|
|
|
2004-05-21 03:32:13 -04:00
|
|
|
return false;
|
1999-08-15 16:59:50 -04:00
|
|
|
}
|
|
|
|
|
2004-05-21 03:32:13 -04:00
|
|
|
return true;
|
1999-08-15 16:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxCheckBox *m_checkbox;
|
|
|
|
};
|
|
|
|
|
1999-09-29 18:47:56 -04:00
|
|
|
// This is a more complicated example of validity checking: using events we may
|
|
|
|
// allow to return to the previous page, but not to proceed. It also
|
|
|
|
// demonstrates how to intercept [Cancel] button press.
|
|
|
|
class wxRadioboxPage : public wxWizardPageSimple
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// directions in which we allow the user to proceed from this page
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Forward, Backward, Both, Neither
|
|
|
|
};
|
|
|
|
|
|
|
|
wxRadioboxPage(wxWizard *parent) : wxWizardPageSimple(parent)
|
|
|
|
{
|
|
|
|
// should correspond to the enum above
|
2000-02-24 10:04:24 -05:00
|
|
|
// static wxString choices[] = { "forward", "backward", "both", "neither" };
|
|
|
|
// The above syntax can cause an internal compiler error with gcc.
|
|
|
|
wxString choices[4];
|
2002-12-13 16:33:14 -05:00
|
|
|
choices[0] = _T("forward");
|
|
|
|
choices[1] = _T("backward");
|
|
|
|
choices[2] = _T("both");
|
|
|
|
choices[3] = _T("neither");
|
1999-09-29 18:47:56 -04:00
|
|
|
|
2004-05-21 03:32:13 -04:00
|
|
|
m_radio = new wxRadioBox(this, wxID_ANY, _T("Allow to proceed:"),
|
2003-07-20 16:48:52 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize,
|
1999-09-29 18:47:56 -04:00
|
|
|
WXSIZEOF(choices), choices,
|
|
|
|
1, wxRA_SPECIFY_COLS);
|
|
|
|
m_radio->SetSelection(Both);
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
mainSizer->Add(
|
|
|
|
m_radio,
|
|
|
|
0, // No stretching
|
|
|
|
wxALL,
|
|
|
|
5 // Border
|
|
|
|
);
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
SetSizer(mainSizer);
|
|
|
|
mainSizer->Fit(this);
|
1999-09-29 18:47:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// wizard event handlers
|
|
|
|
void OnWizardCancel(wxWizardEvent& event)
|
|
|
|
{
|
2002-12-13 16:33:14 -05:00
|
|
|
if ( wxMessageBox(_T("Do you really want to cancel?"), _T("Question"),
|
1999-09-29 18:47:56 -04:00
|
|
|
wxICON_QUESTION | wxYES_NO, this) != wxYES )
|
|
|
|
{
|
|
|
|
// not confirmed
|
|
|
|
event.Veto();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnWizardPageChanging(wxWizardEvent& event)
|
|
|
|
{
|
|
|
|
int sel = m_radio->GetSelection();
|
|
|
|
|
|
|
|
if ( sel == Both )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( event.GetDirection() && sel == Forward )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( !event.GetDirection() && sel == Backward )
|
|
|
|
return;
|
|
|
|
|
2002-12-13 16:33:14 -05:00
|
|
|
wxMessageBox(_T("You can't go there"), _T("Not allowed"),
|
1999-09-29 18:47:56 -04:00
|
|
|
wxICON_WARNING | wxOK, this);
|
|
|
|
|
|
|
|
event.Veto();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxRadioBox *m_radio;
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
2005-04-06 15:43:55 -04:00
|
|
|
// This shows how to dynamically (i.e. during run-time) arrange the page order.
|
1999-09-29 18:47:56 -04:00
|
|
|
class wxCheckboxPage : public wxWizardPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxCheckboxPage(wxWizard *parent,
|
|
|
|
wxWizardPage *prev,
|
|
|
|
wxWizardPage *next)
|
|
|
|
: wxWizardPage(parent)
|
|
|
|
{
|
|
|
|
m_prev = prev;
|
|
|
|
m_next = next;
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
|
|
|
|
mainSizer->Add(
|
2004-05-21 03:32:13 -04:00
|
|
|
new wxStaticText(this, wxID_ANY, _T("Try checking the box below and\n")
|
2003-07-20 16:48:52 -04:00
|
|
|
_T("then going back and clearing it")),
|
|
|
|
0, // No vertical stretching
|
|
|
|
wxALL,
|
|
|
|
5 // Border width
|
|
|
|
);
|
1999-09-29 18:47:56 -04:00
|
|
|
|
2004-05-21 03:32:13 -04:00
|
|
|
m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Skip the next page"));
|
2003-07-20 16:48:52 -04:00
|
|
|
mainSizer->Add(
|
|
|
|
m_checkbox,
|
|
|
|
0, // No vertical stretching
|
|
|
|
wxALL,
|
|
|
|
5 // Border width
|
|
|
|
);
|
2005-02-03 10:28:14 -05:00
|
|
|
|
2005-04-15 05:32:40 -04:00
|
|
|
#if wxUSE_CHECKLISTBOX
|
2005-02-03 10:28:14 -05:00
|
|
|
static const wxChar *aszChoices[] =
|
2006-02-12 07:54:19 -05:00
|
|
|
{
|
|
|
|
_T("Zeroth"),
|
|
|
|
_T("First"),
|
|
|
|
_T("Second"),
|
|
|
|
_T("Third"),
|
|
|
|
_T("Fourth"),
|
|
|
|
_T("Fifth"),
|
|
|
|
_T("Sixth"),
|
|
|
|
_T("Seventh"),
|
|
|
|
_T("Eighth"),
|
|
|
|
_T("Nineth")
|
|
|
|
};
|
|
|
|
|
|
|
|
m_checklistbox = new wxCheckListBox
|
|
|
|
(
|
|
|
|
this,
|
|
|
|
wxID_ANY,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxSize(100,100),
|
|
|
|
wxArrayString(WXSIZEOF(aszChoices), aszChoices)
|
|
|
|
);
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2005-02-03 10:28:14 -05:00
|
|
|
mainSizer->Add(
|
|
|
|
m_checklistbox,
|
|
|
|
0, // No vertical stretching
|
|
|
|
wxALL,
|
|
|
|
5 // Border width
|
|
|
|
);
|
2005-04-15 05:32:40 -04:00
|
|
|
#endif // wxUSE_CHECKLISTBOX
|
2005-03-01 06:54:44 -05:00
|
|
|
|
2003-07-20 16:48:52 -04:00
|
|
|
SetSizer(mainSizer);
|
|
|
|
mainSizer->Fit(this);
|
1999-09-29 18:47:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// implement wxWizardPage functions
|
|
|
|
virtual wxWizardPage *GetPrev() const { return m_prev; }
|
|
|
|
virtual wxWizardPage *GetNext() const
|
|
|
|
{
|
|
|
|
return m_checkbox->GetValue() ? m_next->GetNext() : m_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxWizardPage *m_prev,
|
|
|
|
*m_next;
|
|
|
|
|
|
|
|
wxCheckBox *m_checkbox;
|
2005-04-15 05:32:40 -04:00
|
|
|
#if wxUSE_CHECKLISTBOX
|
2005-02-03 10:28:14 -05:00
|
|
|
wxCheckListBox *m_checklistbox;
|
2005-04-15 05:32:40 -04:00
|
|
|
#endif
|
1999-09-29 18:47:56 -04:00
|
|
|
};
|
|
|
|
|
1999-08-15 16:59:50 -04:00
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// event tables and such
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
2005-07-15 12:26:11 -04:00
|
|
|
EVT_MENU(Wizard_Quit, MyFrame::OnQuit)
|
|
|
|
EVT_MENU(Wizard_About, MyFrame::OnAbout)
|
|
|
|
EVT_MENU(Wizard_RunModal, MyFrame::OnRunWizard)
|
|
|
|
EVT_MENU(Wizard_RunModeless, MyFrame::OnRunWizard)
|
2000-01-20 21:31:49 -05:00
|
|
|
|
2005-07-15 12:26:11 -04:00
|
|
|
EVT_WIZARD_CANCEL(wxID_ANY, MyFrame::OnWizardCancel)
|
2004-05-21 03:32:13 -04:00
|
|
|
EVT_WIZARD_FINISHED(wxID_ANY, MyFrame::OnWizardFinished)
|
2000-01-20 21:31:49 -05:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
1999-09-29 18:47:56 -04:00
|
|
|
BEGIN_EVENT_TABLE(wxRadioboxPage, wxWizardPageSimple)
|
2004-05-21 03:32:13 -04:00
|
|
|
EVT_WIZARD_PAGE_CHANGING(wxID_ANY, wxRadioboxPage::OnWizardPageChanging)
|
|
|
|
EVT_WIZARD_CANCEL(wxID_ANY, wxRadioboxPage::OnWizardCancel)
|
1999-09-29 18:47:56 -04:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
1999-08-15 16:59:50 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the application class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// `Main program' equivalent: the program execution "starts" here
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
2002-12-13 16:33:14 -05:00
|
|
|
MyFrame *frame = new MyFrame(_T("wxWizard Sample"));
|
2000-01-20 21:31:49 -05:00
|
|
|
|
|
|
|
// and show it (the frames, unlike simple controls, are not shown when
|
|
|
|
// created initially)
|
2004-05-21 03:32:13 -04:00
|
|
|
frame->Show(true);
|
2000-01-20 21:31:49 -05:00
|
|
|
|
|
|
|
// we're done
|
2004-05-21 03:32:13 -04:00
|
|
|
return true;
|
2000-01-20 21:31:49 -05:00
|
|
|
}
|
|
|
|
|
2005-07-15 12:26:11 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// MyWizard
|
|
|
|
// ----------------------------------------------------------------------------
|
2005-09-19 11:34:56 -04:00
|
|
|
|
2005-07-15 12:26:11 -04:00
|
|
|
MyWizard::MyWizard(wxFrame *frame)
|
|
|
|
:wxWizard(frame,wxID_ANY,_T("Absolutely Useless Wizard"),
|
|
|
|
wxBitmap(wiztest_xpm),wxDefaultPosition,
|
|
|
|
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
|
|
|
|
{
|
|
|
|
// a wizard page may be either an object of predefined class
|
|
|
|
m_page1 = new wxWizardPageSimple(this);
|
|
|
|
|
|
|
|
/* wxStaticText *text = */ new wxStaticText(m_page1, wxID_ANY,
|
|
|
|
_T("This wizard doesn't help you\nto do anything at all.\n")
|
|
|
|
_T("\n")
|
|
|
|
_T("The next pages will present you\nwith more useless controls."),
|
|
|
|
wxPoint(5,5)
|
|
|
|
);
|
|
|
|
|
|
|
|
// ... or a derived class
|
|
|
|
wxRadioboxPage *page3 = new wxRadioboxPage(this);
|
|
|
|
wxValidationPage *page4 = new wxValidationPage(this);
|
|
|
|
|
|
|
|
// set the page order using a convenience function - could also use
|
|
|
|
// SetNext/Prev directly as below
|
|
|
|
wxWizardPageSimple::Chain(page3, page4);
|
|
|
|
|
|
|
|
// this page is not a wxWizardPageSimple, so we use SetNext/Prev to insert
|
|
|
|
// it into the chain of pages
|
|
|
|
wxCheckboxPage *page2 = new wxCheckboxPage(this, m_page1, page3);
|
|
|
|
m_page1->SetNext(page2);
|
|
|
|
page3->SetPrev(page2);
|
|
|
|
|
|
|
|
// allow the wizard to size itself around the pages
|
|
|
|
GetPageAreaSizer()->Add(m_page1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyWizard::RunIt(bool modal)
|
|
|
|
{
|
|
|
|
if ( modal )
|
|
|
|
{
|
|
|
|
if ( RunWizard(m_page1) )
|
|
|
|
{
|
2005-09-18 09:31:50 -04:00
|
|
|
// Success
|
2005-07-15 12:26:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FinishLayout();
|
|
|
|
ShowPage(m_page1);
|
|
|
|
Show(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// MyFrame
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
MyFrame::MyFrame(const wxString& title)
|
2005-07-15 12:26:11 -04:00
|
|
|
:wxFrame((wxFrame *)NULL, wxID_ANY, title,
|
2000-01-20 21:31:49 -05:00
|
|
|
wxDefaultPosition, wxSize(250, 150)) // small frame
|
|
|
|
{
|
|
|
|
wxMenu *menuFile = new wxMenu;
|
2005-07-15 12:26:11 -04:00
|
|
|
menuFile->Append(Wizard_RunModal, _T("&Run wizard modal...\tCtrl-R"));
|
|
|
|
menuFile->Append(Wizard_RunModeless, _T("&Run wizard modeless..."));
|
2000-01-20 21:31:49 -05:00
|
|
|
menuFile->AppendSeparator();
|
2002-12-13 16:33:14 -05:00
|
|
|
menuFile->Append(Wizard_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
|
2000-01-20 21:31:49 -05:00
|
|
|
|
|
|
|
wxMenu *helpMenu = new wxMenu;
|
2002-12-13 16:33:14 -05:00
|
|
|
helpMenu->Append(Wizard_About, _T("&About...\tF1"), _T("Show about dialog"));
|
2000-01-20 21:31:49 -05:00
|
|
|
|
|
|
|
// now append the freshly created menu to the menu bar...
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar();
|
2002-12-13 16:33:14 -05:00
|
|
|
menuBar->Append(menuFile, _T("&File"));
|
|
|
|
menuBar->Append(helpMenu, _T("&Help"));
|
1999-08-15 16:59:50 -04:00
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
// ... and attach this menu bar to the frame
|
|
|
|
SetMenuBar(menuBar);
|
|
|
|
|
|
|
|
// also create status bar which we use in OnWizardCancel
|
2004-06-24 02:59:48 -04:00
|
|
|
#if wxUSE_STATUSBAR
|
2000-01-20 21:31:49 -05:00
|
|
|
CreateStatusBar();
|
2004-06-24 02:59:48 -04:00
|
|
|
#endif // wxUSE_STATUSBAR
|
2000-01-20 21:31:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2004-05-21 03:32:13 -04:00
|
|
|
// true is to force the frame to close
|
|
|
|
Close(true);
|
2000-01-20 21:31:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2002-12-13 16:33:14 -05:00
|
|
|
wxMessageBox(_T("Demo of wxWizard class\n")
|
2004-10-02 08:36:02 -04:00
|
|
|
_T("(c) 1999, 2000 Vadim Zeitlin"),
|
2002-12-13 16:33:14 -05:00
|
|
|
_T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this);
|
2000-01-20 21:31:49 -05:00
|
|
|
}
|
|
|
|
|
2005-07-15 12:26:11 -04:00
|
|
|
void MyFrame::OnRunWizard(wxCommandEvent& event)
|
2000-01-20 21:31:49 -05:00
|
|
|
{
|
2005-09-19 11:34:56 -04:00
|
|
|
MyWizard *wizard = new MyWizard(this);
|
1999-08-15 16:59:50 -04:00
|
|
|
|
2005-09-19 11:34:56 -04:00
|
|
|
wizard->RunIt( event.GetId() == Wizard_RunModal );
|
1999-08-15 16:59:50 -04:00
|
|
|
}
|
1999-11-07 13:34:36 -05:00
|
|
|
|
2003-10-16 03:23:58 -04:00
|
|
|
void MyFrame::OnWizardFinished(wxWizardEvent& WXUNUSED(event))
|
|
|
|
{
|
2005-07-15 12:26:11 -04:00
|
|
|
wxMessageBox(wxT("The wizard finished successfully."), wxT("Wizard notification"));
|
2003-10-16 03:23:58 -04:00
|
|
|
}
|
|
|
|
|
2000-01-20 21:31:49 -05:00
|
|
|
void MyFrame::OnWizardCancel(wxWizardEvent& WXUNUSED(event))
|
|
|
|
{
|
2005-07-15 12:26:11 -04:00
|
|
|
wxMessageBox(wxT("The wizard was cancelled."), wxT("Wizard notification"));
|
2000-01-20 21:31:49 -05:00
|
|
|
}
|