1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/wizard.cpp
3 // Purpose: generic implementation of wxWizard class
4 // Author: Vadim Zeitlin
5 // Modified by: Robert Cavanaugh
6 // 1) Added capability for wxWizardPage to accept resources
7 // 2) Added "Help" button handler stub
8 // 3) Fixed ShowPage() bug on displaying bitmaps
9 // Robert Vazan (sizers)
12 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
13 // Licence: wxWindows licence
14 ///////////////////////////////////////////////////////////////////////////////
16 // ============================================================================
18 // ============================================================================
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/dynarray.h"
36 #include "wx/statbmp.h"
37 #include "wx/button.h"
38 #include "wx/settings.h"
42 #include "wx/statline.h"
44 #include "wx/wizard.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 class wxWizardSizer
: public wxSizer
53 wxWizardSizer(wxWizard
*owner
);
55 virtual wxSizerItem
*Insert(size_t index
, wxSizerItem
*item
);
57 virtual void RecalcSizes();
58 virtual wxSize
CalcMin();
60 // get the max size of all wizard pages
61 wxSize
GetMaxChildSize();
63 // return the border which can be either set using wxWizard::SetBorder() or
65 int GetBorder() const;
67 // hide the pages which we temporarily "show" when they're added to this
68 // sizer (see Insert())
72 wxSize
SiblingSize(wxSizerItem
*child
);
78 // ----------------------------------------------------------------------------
79 // event tables and such
80 // ----------------------------------------------------------------------------
82 DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGED
)
83 DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGING
)
84 DEFINE_EVENT_TYPE(wxEVT_WIZARD_CANCEL
)
85 DEFINE_EVENT_TYPE(wxEVT_WIZARD_FINISHED
)
86 DEFINE_EVENT_TYPE(wxEVT_WIZARD_HELP
)
88 BEGIN_EVENT_TABLE(wxWizard
, wxDialog
)
89 EVT_BUTTON(wxID_CANCEL
, wxWizard::OnCancel
)
90 EVT_BUTTON(wxID_BACKWARD
, wxWizard::OnBackOrNext
)
91 EVT_BUTTON(wxID_FORWARD
, wxWizard::OnBackOrNext
)
92 EVT_BUTTON(wxID_HELP
, wxWizard::OnHelp
)
94 EVT_WIZARD_PAGE_CHANGED(wxID_ANY
, wxWizard::OnWizEvent
)
95 EVT_WIZARD_PAGE_CHANGING(wxID_ANY
, wxWizard::OnWizEvent
)
96 EVT_WIZARD_CANCEL(wxID_ANY
, wxWizard::OnWizEvent
)
97 EVT_WIZARD_FINISHED(wxID_ANY
, wxWizard::OnWizEvent
)
98 EVT_WIZARD_HELP(wxID_ANY
, wxWizard::OnWizEvent
)
101 IMPLEMENT_DYNAMIC_CLASS(wxWizard
, wxDialog
)
110 IMPLEMENT_ABSTRACT_CLASS(wxWizardPage
, wxPanel
)
111 IMPLEMENT_DYNAMIC_CLASS(wxWizardPageSimple
, wxWizardPage
)
112 IMPLEMENT_DYNAMIC_CLASS(wxWizardEvent
, wxNotifyEvent
)
114 // ============================================================================
116 // ============================================================================
118 // ----------------------------------------------------------------------------
120 // ----------------------------------------------------------------------------
122 void wxWizardPage::Init()
124 m_bitmap
= wxNullBitmap
;
127 wxWizardPage::wxWizardPage(wxWizard
*parent
,
128 const wxBitmap
& bitmap
)
130 Create(parent
, bitmap
);
133 bool wxWizardPage::Create(wxWizard
*parent
,
134 const wxBitmap
& bitmap
)
136 if ( !wxPanel::Create(parent
, wxID_ANY
) )
141 // initially the page is hidden, it's shown only when it becomes current
147 // ----------------------------------------------------------------------------
148 // wxWizardPageSimple
149 // ----------------------------------------------------------------------------
151 wxWizardPage
*wxWizardPageSimple::GetPrev() const
156 wxWizardPage
*wxWizardPageSimple::GetNext() const
161 // ----------------------------------------------------------------------------
163 // ----------------------------------------------------------------------------
165 wxWizardSizer::wxWizardSizer(wxWizard
*owner
)
167 m_childSize(wxDefaultSize
)
171 wxSizerItem
*wxWizardSizer::Insert(size_t index
, wxSizerItem
*item
)
173 m_owner
->m_usingSizer
= true;
175 if ( item
->IsWindow() )
177 // we must pretend that the window is shown as otherwise it wouldn't be
178 // taken into account for the layout -- but avoid really showing it, so
179 // just set the internal flag instead of calling wxWindow::Show()
180 item
->GetWindow()->wxWindowBase::Show();
183 return wxSizer::Insert(index
, item
);
186 void wxWizardSizer::HidePages()
188 for ( wxSizerItemList::compatibility_iterator node
= GetChildren().GetFirst();
190 node
= node
->GetNext() )
192 wxSizerItem
* const item
= node
->GetData();
193 if ( item
->IsWindow() )
194 item
->GetWindow()->wxWindowBase::Show(false);
198 void wxWizardSizer::RecalcSizes()
200 // Effect of this function depends on m_owner->m_page and
201 // it should be called whenever it changes (wxWizard::ShowPage)
202 if ( m_owner
->m_page
)
204 m_owner
->m_page
->SetSize(wxRect(m_position
, m_size
));
208 wxSize
wxWizardSizer::CalcMin()
210 return m_owner
->GetPageSize();
213 wxSize
wxWizardSizer::GetMaxChildSize()
215 #if !defined(__WXDEBUG__)
216 if ( m_childSize
.IsFullySpecified() )
222 for ( wxSizerItemList::compatibility_iterator childNode
= m_children
.GetFirst();
224 childNode
= childNode
->GetNext() )
226 wxSizerItem
*child
= childNode
->GetData();
227 maxOfMin
.IncTo(child
->CalcMin());
228 maxOfMin
.IncTo(SiblingSize(child
));
232 if ( m_childSize
.IsFullySpecified() && m_childSize
!= maxOfMin
)
234 wxFAIL_MSG( _T("Size changed in wxWizard::GetPageAreaSizer()")
235 _T("after RunWizard().\n")
236 _T("Did you forget to call GetSizer()->Fit(this) ")
237 _T("for some page?")) ;
241 #endif // __WXDEBUG__
243 if ( m_owner
->m_started
)
245 m_childSize
= maxOfMin
;
251 int wxWizardSizer::GetBorder() const
253 return m_owner
->m_border
;
256 wxSize
wxWizardSizer::SiblingSize(wxSizerItem
*child
)
260 if ( child
->IsWindow() )
262 wxWizardPage
*page
= wxDynamicCast(child
->GetWindow(), wxWizardPage
);
265 for ( wxWizardPage
*sibling
= page
->GetNext();
267 sibling
= sibling
->GetNext() )
269 if ( sibling
->GetSizer() )
271 maxSibling
.IncTo(sibling
->GetSizer()->CalcMin());
280 // ----------------------------------------------------------------------------
281 // generic wxWizard implementation
282 // ----------------------------------------------------------------------------
284 void wxWizard::Init()
286 m_posWizard
= wxDefaultPosition
;
287 m_page
= (wxWizardPage
*)NULL
;
288 m_btnPrev
= m_btnNext
= NULL
;
290 m_sizerBmpAndPage
= NULL
;
295 m_usingSizer
= false;
298 bool wxWizard::Create(wxWindow
*parent
,
300 const wxString
& title
,
301 const wxBitmap
& bitmap
,
305 bool result
= wxDialog::Create(parent
,id
,title
,pos
,wxDefaultSize
,style
);
315 wxWizard::~wxWizard()
317 // normally we don't have to delete this sizer as it's deleted by the
318 // associated window but if we never used it or didn't set it as the window
319 // sizer yet, do delete it manually
320 if ( !m_usingSizer
|| !m_started
)
324 void wxWizard::AddBitmapRow(wxBoxSizer
*mainColumn
)
326 m_sizerBmpAndPage
= new wxBoxSizer(wxHORIZONTAL
);
329 1, // Vertically stretchable
330 wxEXPAND
// Horizonal stretching, no border
333 0, // No vertical stretching
334 wxEXPAND
// No border, (mostly useless) horizontal stretching
340 m_statbmp
= new wxStaticBitmap(this, wxID_ANY
, m_bitmap
);
341 m_sizerBmpAndPage
->Add(
343 0, // No horizontal stretching
344 wxALL
, // Border all around, top alignment
347 m_sizerBmpAndPage
->Add(
349 0, // No horizontal stretching
350 wxEXPAND
// No border, (mostly useless) vertical stretching
355 // Added to m_sizerBmpAndPage later
356 m_sizerPage
= new wxWizardSizer(this);
359 void wxWizard::AddStaticLine(wxBoxSizer
*mainColumn
)
363 new wxStaticLine(this, wxID_ANY
),
364 0, // Vertically unstretchable
365 wxEXPAND
| wxALL
, // Border all around, horizontally stretchable
369 0, // No vertical stretching
370 wxEXPAND
// No border, (mostly useless) horizontal stretching
374 #endif // wxUSE_STATLINE
377 void wxWizard::AddBackNextPair(wxBoxSizer
*buttonRow
)
379 wxASSERT_MSG( m_btnNext
&& m_btnPrev
,
380 _T("You must create the buttons before calling ")
381 _T("wxWizard::AddBackNextPair") );
383 // margin between Back and Next buttons
385 static const int BACKNEXT_MARGIN
= 10;
387 static const int BACKNEXT_MARGIN
= 0;
390 wxBoxSizer
*backNextPair
= new wxBoxSizer(wxHORIZONTAL
);
393 0, // No horizontal stretching
394 wxALL
, // Border all around
398 backNextPair
->Add(m_btnPrev
);
399 backNextPair
->Add(BACKNEXT_MARGIN
,0,
400 0, // No horizontal stretching
401 wxEXPAND
// No border, (mostly useless) vertical stretching
403 backNextPair
->Add(m_btnNext
);
406 void wxWizard::AddButtonRow(wxBoxSizer
*mainColumn
)
408 // the order in which the buttons are created determines the TAB order - at least under MSWindows...
409 // although the 'back' button appears before the 'next' button, a more userfriendly tab order is
410 // to activate the 'next' button first (create the next button before the back button).
411 // The reason is: The user will repeatedly enter information in the wizard pages and then wants to
412 // press 'next'. If a user uses mostly the keyboard, he would have to skip the 'back' button
413 // everytime. This is annoying. There is a second reason: RETURN acts as TAB. If the 'next'
414 // button comes first in the TAB order, the user can enter information very fast using the RETURN
415 // key to TAB to the next entry field and page. This would not be possible, if the 'back' button
416 // was created before the 'next' button.
418 bool isPda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
419 int buttonStyle
= isPda
? wxBU_EXACTFIT
: 0;
421 wxBoxSizer
*buttonRow
= new wxBoxSizer(wxHORIZONTAL
);
423 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON
)
426 0, // Vertically unstretchable
427 wxGROW
|wxALIGN_CENTRE
433 0, // Vertically unstretchable
434 wxALIGN_RIGHT
// Right aligned, no border
437 // Desired TAB order is 'next', 'cancel', 'help', 'back'. This makes the 'back' button the last control on the page.
438 // Create the buttons in the right order...
441 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON
)
442 btnHelp
=new wxButton(this, wxID_HELP
, _("&Help"), wxDefaultPosition
, wxDefaultSize
, buttonStyle
);
445 m_btnNext
= new wxButton(this, wxID_FORWARD
, _("&Next >"));
446 wxButton
*btnCancel
=new wxButton(this, wxID_CANCEL
, _("&Cancel"), wxDefaultPosition
, wxDefaultSize
, buttonStyle
);
448 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON
)
449 btnHelp
=new wxButton(this, wxID_HELP
, _("&Help"), wxDefaultPosition
, wxDefaultSize
, buttonStyle
);
451 m_btnPrev
= new wxButton(this, wxID_BACKWARD
, _("< &Back"), wxDefaultPosition
, wxDefaultSize
, buttonStyle
);
457 0, // Horizontally unstretchable
458 wxALL
, // Border all around, top aligned
462 // Put stretchable space between help button and others
463 buttonRow
->Add(0, 0, 1, wxALIGN_CENTRE
, 0);
467 AddBackNextPair(buttonRow
);
471 0, // Horizontally unstretchable
472 wxALL
, // Border all around, top aligned
477 void wxWizard::DoCreateControls()
479 // do nothing if the controls were already created
483 bool isPda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
485 // Horizontal stretching, and if not PDA, border all around
486 int mainColumnSizerFlags
= isPda
? wxEXPAND
: wxALL
|wxEXPAND
;
488 // wxWindow::SetSizer will be called at end
489 wxBoxSizer
*windowSizer
= new wxBoxSizer(wxVERTICAL
);
491 wxBoxSizer
*mainColumn
= new wxBoxSizer(wxVERTICAL
);
494 1, // Vertical stretching
495 mainColumnSizerFlags
,
499 AddBitmapRow(mainColumn
);
502 AddStaticLine(mainColumn
);
504 AddButtonRow(mainColumn
);
506 SetSizer(windowSizer
);
509 void wxWizard::SetPageSize(const wxSize
& size
)
511 wxCHECK_RET(!m_started
, wxT("wxWizard::SetPageSize after RunWizard"));
515 void wxWizard::FitToPage(const wxWizardPage
*page
)
517 wxCHECK_RET(!m_started
, wxT("wxWizard::FitToPage after RunWizard"));
521 wxSize size
= page
->GetBestSize();
523 m_sizePage
.IncTo(size
);
525 page
= page
->GetNext();
529 bool wxWizard::ShowPage(wxWizardPage
*page
, bool goingForward
)
531 wxASSERT_MSG( page
!= m_page
, wxT("this is useless") );
533 wxSizerFlags
flags(1);
534 flags
.Border(wxALL
, m_border
).Expand();
540 m_sizerBmpAndPage
->Add(m_sizerPage
, flags
);
542 // now that our layout is computed correctly, hide the pages
543 // artificially shown in wxWizardSizer::Insert() back again
544 m_sizerPage
->HidePages();
549 // we'll use this to decide whether we have to change the label of this
550 // button or not (initially the label is "Next")
551 bool btnLabelWasNext
= true;
553 // remember the old bitmap (if any) to compare with the new one later
556 // check for previous page
559 // send the event to the old page
560 wxWizardEvent
event(wxEVT_WIZARD_PAGE_CHANGING
, GetId(),
561 goingForward
, m_page
);
562 if ( m_page
->GetEventHandler()->ProcessEvent(event
) &&
565 // vetoed by the page
571 btnLabelWasNext
= HasNextPage(m_page
);
573 bmpPrev
= m_page
->GetBitmap();
576 m_sizerBmpAndPage
->Detach(m_page
);
585 // terminate successfully
592 SetReturnCode(wxID_OK
);
596 // and notify the user code (this is especially useful for modeless
598 wxWizardEvent
event(wxEVT_WIZARD_FINISHED
, GetId(), false, 0);
599 (void)GetEventHandler()->ProcessEvent(event
);
604 // position and show the new page
605 (void)m_page
->TransferDataToWindow();
609 // wxWizardSizer::RecalcSizes wants to be called when m_page changes
610 m_sizerPage
->RecalcSizes();
612 else // pages are not managed by the sizer
614 m_sizerBmpAndPage
->Add(m_page
, flags
);
615 m_sizerBmpAndPage
->SetItemMinSize(m_page
, GetPageSize());
619 // update the bitmap if:it changed
622 wxBitmap bmp
= m_page
->GetBitmap();
629 if ( !bmp
.IsSameAs(bmpPrev
) )
630 m_statbmp
->SetBitmap(bmp
);
632 #endif // wxUSE_STATBMP
635 // and update the buttons state
636 m_btnPrev
->Enable(HasPrevPage(m_page
));
638 bool hasNext
= HasNextPage(m_page
);
639 if ( btnLabelWasNext
!= hasNext
)
642 m_btnNext
->SetLabel(_("&Next >"));
644 m_btnNext
->SetLabel(_("&Finish"));
646 // nothing to do: the label was already correct
648 m_btnNext
->SetDefault();
651 // send the change event to the new page now
652 wxWizardEvent
event(wxEVT_WIZARD_PAGE_CHANGED
, GetId(), goingForward
, m_page
);
653 (void)m_page
->GetEventHandler()->ProcessEvent(event
);
655 // and finally show it
660 m_sizerBmpAndPage
->Layout();
666 if ( wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA
)
668 GetSizer()->SetSizeHints(this);
669 if ( m_posWizard
== wxDefaultPosition
)
677 bool wxWizard::RunWizard(wxWizardPage
*firstPage
)
679 wxCHECK_MSG( firstPage
, false, wxT("can't run empty wizard") );
681 // can't return false here because there is no old page
682 (void)ShowPage(firstPage
, true /* forward */);
686 return ShowModal() == wxID_OK
;
689 wxWizardPage
*wxWizard::GetCurrentPage() const
694 wxSize
wxWizard::GetPageSize() const
696 // default width and height of the page
697 int DEFAULT_PAGE_WIDTH
,
699 if ( wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
)
701 // Make the default page size small enough to fit on screen
702 DEFAULT_PAGE_WIDTH
= wxSystemSettings::GetMetric(wxSYS_SCREEN_X
) / 2;
703 DEFAULT_PAGE_HEIGHT
= wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
) / 2;
708 DEFAULT_PAGE_HEIGHT
= 270;
711 // start with default minimal size
712 wxSize
pageSize(DEFAULT_PAGE_WIDTH
, DEFAULT_PAGE_HEIGHT
);
714 // make the page at least as big as specified by user
715 pageSize
.IncTo(m_sizePage
);
719 // make the page at least as tall as the bitmap
720 pageSize
.IncTo(wxSize(0, m_bitmap
.GetHeight()));
725 // make it big enough to contain all pages added to the sizer
726 pageSize
.IncTo(m_sizerPage
->GetMaxChildSize());
732 wxSizer
*wxWizard::GetPageAreaSizer() const
737 void wxWizard::SetBorder(int border
)
739 wxCHECK_RET(!m_started
, wxT("wxWizard::SetBorder after RunWizard"));
744 void wxWizard::OnCancel(wxCommandEvent
& WXUNUSED(eventUnused
))
746 // this function probably can never be called when we don't have an active
747 // page, but a small extra check won't hurt
748 wxWindow
*win
= m_page
? (wxWindow
*)m_page
: (wxWindow
*)this;
750 wxWizardEvent
event(wxEVT_WIZARD_CANCEL
, GetId(), false, m_page
);
751 if ( !win
->GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
753 // no objections - close the dialog
756 EndModal(wxID_CANCEL
);
760 SetReturnCode(wxID_CANCEL
);
764 //else: request to Cancel ignored
767 void wxWizard::OnBackOrNext(wxCommandEvent
& event
)
769 wxASSERT_MSG( (event
.GetEventObject() == m_btnNext
) ||
770 (event
.GetEventObject() == m_btnPrev
),
771 wxT("unknown button") );
773 wxCHECK_RET( m_page
, _T("should have a valid current page") );
775 // ask the current page first: notice that we do it before calling
776 // GetNext/Prev() because the data transfered from the controls of the page
777 // may change the value returned by these methods
778 if ( !m_page
->Validate() || !m_page
->TransferDataFromWindow() )
780 // the page data is incorrect, don't do anything
784 bool forward
= event
.GetEventObject() == m_btnNext
;
789 page
= m_page
->GetNext();
793 page
= m_page
->GetPrev();
795 wxASSERT_MSG( page
, wxT("\"<Back\" button should have been disabled") );
798 // just pass to the new page (or maybe not - but we don't care here)
799 (void)ShowPage(page
, forward
);
802 void wxWizard::OnHelp(wxCommandEvent
& WXUNUSED(event
))
804 // this function probably can never be called when we don't have an active
805 // page, but a small extra check won't hurt
808 // Create and send the help event to the specific page handler
809 // event data contains the active page so that context-sensitive
811 wxWizardEvent
eventHelp(wxEVT_WIZARD_HELP
, GetId(), true, m_page
);
812 (void)m_page
->GetEventHandler()->ProcessEvent(eventHelp
);
816 void wxWizard::OnWizEvent(wxWizardEvent
& event
)
818 // the dialogs have wxWS_EX_BLOCK_EVENTS style on by default but we want to
819 // propagate wxEVT_WIZARD_XXX to the parent (if any), so do it manually
820 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS
) )
822 // the event will be propagated anyhow
827 wxWindow
*parent
= GetParent();
829 if ( !parent
|| !parent
->GetEventHandler()->ProcessEvent(event
) )
835 if ( ( !m_wasModal
) &&
837 ( event
.GetEventType() == wxEVT_WIZARD_FINISHED
||
838 event
.GetEventType() == wxEVT_WIZARD_CANCEL
846 void wxWizard::SetBitmap(const wxBitmap
& bitmap
)
850 m_statbmp
->SetBitmap(m_bitmap
);
853 // ----------------------------------------------------------------------------
855 // ----------------------------------------------------------------------------
857 wxWizardEvent::wxWizardEvent(wxEventType type
, int id
, bool direction
, wxWizardPage
* page
)
858 : wxNotifyEvent(type
, id
)
860 // Modified 10-20-2001 Robert Cavanaugh
861 // add the active page to the event data
862 m_direction
= direction
;
866 #endif // wxUSE_WIZARDDLG