1999-09-29 22:47:56 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: generic/wizard.h
|
|
|
|
// Purpose: declaration of generic wxWizard class
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 28.09.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2003-03-17 10:34:04 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-09-29 22:47:56 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxWizard
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-08-31 11:29:13 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2002-05-22 23:36:20 +00:00
|
|
|
#pragma interface "wizardg.h"
|
|
|
|
#endif
|
|
|
|
|
2000-01-21 02:26:25 +00:00
|
|
|
class WXDLLEXPORT wxButton;
|
|
|
|
class WXDLLEXPORT wxStaticBitmap;
|
2002-05-22 23:36:20 +00:00
|
|
|
class WXDLLEXPORT wxWizardEvent;
|
2000-01-21 02:26:25 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxWizard : public wxWizardBase
|
1999-09-29 22:47:56 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctor
|
2001-08-17 09:38:19 +00:00
|
|
|
wxWizard() { Init(); }
|
|
|
|
wxWizard(wxWindow *parent,
|
|
|
|
int id = -1,
|
|
|
|
const wxString& title = wxEmptyString,
|
|
|
|
const wxBitmap& bitmap = wxNullBitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
Create(parent, id, title, bitmap, pos);
|
|
|
|
}
|
|
|
|
bool Create(wxWindow *parent,
|
1999-09-29 22:47:56 +00:00
|
|
|
int id = -1,
|
|
|
|
const wxString& title = wxEmptyString,
|
|
|
|
const wxBitmap& bitmap = wxNullBitmap,
|
2000-07-15 19:51:35 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
2001-08-17 09:38:19 +00:00
|
|
|
void Init();
|
1999-09-29 22:47:56 +00:00
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual bool RunWizard(wxWizardPage *firstPage);
|
|
|
|
virtual wxWizardPage *GetCurrentPage() const;
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual void SetPageSize(const wxSize& size);
|
1999-11-14 02:22:27 +00:00
|
|
|
virtual wxSize GetPageSize() const;
|
2002-06-21 21:49:28 +00:00
|
|
|
virtual void FitToPage(const wxWizardPage *firstPage);
|
1999-09-29 22:47:56 +00:00
|
|
|
|
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
// is the wizard running?
|
|
|
|
bool IsRunning() const { return m_page != NULL; }
|
|
|
|
|
|
|
|
// show the prev/next page, but call TransferDataFromWindow on the current
|
2000-07-15 19:51:35 +00:00
|
|
|
// page first and return FALSE without changing the page if
|
|
|
|
// TransferDataFromWindow() returns FALSE - otherwise, returns TRUE
|
1999-09-29 22:47:56 +00:00
|
|
|
bool ShowPage(wxWizardPage *page, bool goingForward = TRUE);
|
|
|
|
|
2001-08-17 09:38:19 +00:00
|
|
|
// do fill the dialog with controls
|
|
|
|
// this is app-overridable to, for example, set help and tooltip text
|
2002-07-12 14:43:58 +00:00
|
|
|
virtual void DoCreateControls();
|
2001-08-17 09:38:19 +00:00
|
|
|
|
1999-09-29 22:47:56 +00:00
|
|
|
private:
|
2000-07-15 19:51:35 +00:00
|
|
|
// was the dialog really created?
|
|
|
|
bool WasCreated() const { return m_btnPrev != NULL; }
|
|
|
|
|
1999-09-29 22:47:56 +00:00
|
|
|
// event handlers
|
|
|
|
void OnCancel(wxCommandEvent& event);
|
|
|
|
void OnBackOrNext(wxCommandEvent& event);
|
2001-11-02 17:29:38 +00:00
|
|
|
void OnHelp(wxCommandEvent& event);
|
1999-09-29 22:47:56 +00:00
|
|
|
|
2002-05-22 23:36:20 +00:00
|
|
|
void OnWizEvent(wxWizardEvent& event);
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// the page size requested by user
|
|
|
|
wxSize m_sizePage;
|
|
|
|
|
|
|
|
// the dialog position from the ctor
|
|
|
|
wxPoint m_posWizard;
|
|
|
|
|
1999-09-29 22:47:56 +00:00
|
|
|
// wizard dimensions
|
|
|
|
int m_x, m_y; // the origin for the pages
|
|
|
|
int m_width, // the size of the page itself
|
|
|
|
m_height; // (total width is m_width + m_x)
|
|
|
|
|
|
|
|
// wizard state
|
|
|
|
wxWizardPage *m_page; // the current page or NULL
|
2000-01-21 02:26:25 +00:00
|
|
|
wxBitmap m_bitmap; // the default bitmap to show
|
1999-09-29 22:47:56 +00:00
|
|
|
|
|
|
|
// wizard controls
|
|
|
|
wxButton *m_btnPrev, // the "<Back" button
|
|
|
|
*m_btnNext; // the "Next>" or "Finish" button
|
2000-01-21 02:26:25 +00:00
|
|
|
wxStaticBitmap *m_statbmp; // the control for the bitmap
|
1999-09-29 22:47:56 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxWizard)
|
|
|
|
DECLARE_EVENT_TABLE()
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxWizard)
|
1999-09-29 22:47:56 +00:00
|
|
|
};
|
|
|
|
|