1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: 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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
25 #pragma implementation "wizardg.h"
28 // For compilers that support precompilation, includes "wx.h".
29 #include "wx/wxprec.h"
38 #include "wx/dynarray.h"
40 #include "wx/statbmp.h"
41 #include "wx/button.h"
44 #include "wx/statline.h"
47 #include "wx/wizard.h"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 class wxWizardSizer
: public wxSizer
56 wxWizardSizer(wxWizard
*owner
);
61 wxSize
GetMaxChildSize();
65 wxSize
SiblingSize(wxSizerItem
*child
);
68 bool m_childSizeValid
;
72 // ----------------------------------------------------------------------------
73 // event tables and such
74 // ----------------------------------------------------------------------------
76 DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGED
)
77 DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGING
)
78 DEFINE_EVENT_TYPE(wxEVT_WIZARD_CANCEL
)
79 DEFINE_EVENT_TYPE(wxEVT_WIZARD_FINISHED
)
80 DEFINE_EVENT_TYPE(wxEVT_WIZARD_HELP
)
82 BEGIN_EVENT_TABLE(wxWizard
, wxDialog
)
83 EVT_BUTTON(wxID_CANCEL
, wxWizard::OnCancel
)
84 EVT_BUTTON(wxID_BACKWARD
, wxWizard::OnBackOrNext
)
85 EVT_BUTTON(wxID_FORWARD
, wxWizard::OnBackOrNext
)
86 EVT_BUTTON(wxID_HELP
, wxWizard::OnHelp
)
88 EVT_WIZARD_PAGE_CHANGED(-1, wxWizard::OnWizEvent
)
89 EVT_WIZARD_PAGE_CHANGING(-1, wxWizard::OnWizEvent
)
90 EVT_WIZARD_CANCEL(-1, wxWizard::OnWizEvent
)
91 EVT_WIZARD_FINISHED(-1, wxWizard::OnWizEvent
)
92 EVT_WIZARD_HELP(-1, wxWizard::OnWizEvent
)
95 IMPLEMENT_DYNAMIC_CLASS(wxWizard
, wxDialog
)
104 IMPLEMENT_ABSTRACT_CLASS(wxWizardPage
, wxPanel
)
105 IMPLEMENT_DYNAMIC_CLASS(wxWizardPageSimple
, wxWizardPage
)
106 IMPLEMENT_DYNAMIC_CLASS(wxWizardEvent
, wxNotifyEvent
)
108 // ============================================================================
110 // ============================================================================
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 void wxWizardPage::Init()
118 m_bitmap
= wxNullBitmap
;
121 wxWizardPage::wxWizardPage(wxWizard
*parent
,
122 const wxBitmap
& bitmap
,
123 const wxChar
*resource
)
125 Create(parent
, bitmap
, resource
);
128 bool wxWizardPage::Create(wxWizard
*parent
,
129 const wxBitmap
& bitmap
,
130 const wxChar
*resource
)
132 if ( !wxPanel::Create(parent
, -1) )
135 if ( resource
!= NULL
)
137 #if wxUSE_WX_RESOURCES
139 if ( !LoadFromResource(this, resource
) )
141 wxFAIL_MSG(wxT("wxWizardPage LoadFromResource failed!!!!"));
144 #endif // wxUSE_RESOURCES
149 // initially the page is hidden, it's shown only when it becomes current
155 // ----------------------------------------------------------------------------
156 // wxWizardPageSimple
157 // ----------------------------------------------------------------------------
159 wxWizardPage
*wxWizardPageSimple::GetPrev() const
164 wxWizardPage
*wxWizardPageSimple::GetNext() const
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
173 wxWizardSizer::wxWizardSizer(wxWizard
*owner
)
176 m_childSizeValid
= false;
179 void wxWizardSizer::RecalcSizes()
181 // Effect of this function depends on m_owner->m_page and
182 // it should be called whenever it changes (wxWizard::ShowPage)
183 if ( m_owner
->m_page
)
185 m_owner
->m_page
->SetSize(m_position
.x
,m_position
.y
, m_size
.x
,m_size
.y
);
189 wxSize
wxWizardSizer::CalcMin()
191 return m_owner
->GetPageSize();
194 wxSize
wxWizardSizer::GetMaxChildSize()
196 #if !defined(__WXDEBUG__)
197 if ( m_childSizeValid
)
202 wxSizerItemList::compatibility_iterator childNode
;
204 for(childNode
= m_children
.GetFirst(); childNode
;
205 childNode
= childNode
->GetNext())
207 wxSizerItem
*child
= childNode
->GetData();
208 maxOfMin
.IncTo(child
->CalcMin());
209 maxOfMin
.IncTo(SiblingSize(child
));
213 if ( m_childSizeValid
&& m_childSize
!= maxOfMin
)
215 wxFAIL_MSG( _T("Size changed in wxWizard::GetPageAreaSizer()")
216 _T("after RunWizard().\n")
217 _T("Did you forget to call GetSizer()->Fit(this) ")
218 _T("for some page?")) ;
222 #endif // __WXDEBUG__
224 if ( m_owner
->m_started
)
226 m_childSizeValid
= true;
227 m_childSize
= maxOfMin
;
233 int wxWizardSizer::Border() const
235 if ( m_owner
->m_calledSetBorder
)
236 return m_owner
->m_border
;
238 return m_children
.IsEmpty() ? 5 : 0;
241 wxSize
wxWizardSizer::SiblingSize(wxSizerItem
*child
)
245 if ( child
->IsWindow() )
247 wxWizardPage
*page
= wxDynamicCast(child
->GetWindow(), wxWizardPage
);
250 for ( wxWizardPage
*sibling
= page
->GetNext();
252 sibling
= sibling
->GetNext() )
254 if ( sibling
->GetSizer() )
256 maxSibling
.IncTo(sibling
->GetSizer()->CalcMin());
265 // ----------------------------------------------------------------------------
266 // generic wxWizard implementation
267 // ----------------------------------------------------------------------------
269 void wxWizard::Init()
271 m_posWizard
= wxDefaultPosition
;
272 m_page
= (wxWizardPage
*)NULL
;
273 m_btnPrev
= m_btnNext
= NULL
;
275 m_sizerBmpAndPage
= NULL
;
277 m_calledSetBorder
= false;
282 bool wxWizard::Create(wxWindow
*parent
,
284 const wxString
& title
,
285 const wxBitmap
& bitmap
,
289 bool result
= wxDialog::Create(parent
,id
,title
,pos
,wxDefaultSize
,style
);
299 void wxWizard::AddBitmapRow(wxBoxSizer
*mainColumn
)
301 m_sizerBmpAndPage
= new wxBoxSizer(wxHORIZONTAL
);
304 1, // Vertically stretchable
305 wxEXPAND
// Horizonal stretching, no border
308 0, // No vertical stretching
309 wxEXPAND
// No border, (mostly useless) horizontal stretching
314 m_statbmp
= new wxStaticBitmap(this, -1, m_bitmap
);
315 m_sizerBmpAndPage
->Add(
317 0, // No horizontal stretching
318 wxALL
, // Border all around, top alignment
321 m_sizerBmpAndPage
->Add(
323 0, // No horizontal stretching
324 wxEXPAND
// No border, (mostly useless) vertical stretching
328 // Added to m_sizerBmpAndPage in FinishLayout
329 m_sizerPage
= new wxWizardSizer(this);
332 void wxWizard::AddStaticLine(wxBoxSizer
*mainColumn
)
336 new wxStaticLine(this, -1),
337 0, // Vertically unstretchable
338 wxEXPAND
| wxALL
, // Border all around, horizontally stretchable
342 0, // No vertical stretching
343 wxEXPAND
// No border, (mostly useless) horizontal stretching
347 #endif // wxUSE_STATLINE
350 void wxWizard::AddBackNextPair(wxBoxSizer
*buttonRow
)
352 wxASSERT_MSG( m_btnNext
&& m_btnPrev
,
353 _T("You must create the buttons before calling ")
354 _T("wxWizard::AddBackNextPair") );
356 // margin between Back and Next buttons
358 static const int BACKNEXT_MARGIN
= 10;
360 static const int BACKNEXT_MARGIN
= 0;
363 wxBoxSizer
*backNextPair
= new wxBoxSizer(wxHORIZONTAL
);
366 0, // No horizontal stretching
367 wxALL
, // Border all around
371 backNextPair
->Add(m_btnPrev
);
372 backNextPair
->Add(BACKNEXT_MARGIN
,0,
373 0, // No horizontal stretching
374 wxEXPAND
// No border, (mostly useless) vertical stretching
376 backNextPair
->Add(m_btnNext
);
379 void wxWizard::AddButtonRow(wxBoxSizer
*mainColumn
)
381 // the order in which the buttons are created determines the TAB order - at least under MSWindows...
382 // although the 'back' button appears before the 'next' button, a more userfriendly tab order is
383 // to activate the 'next' button first (create the next button before the back button).
384 // The reason is: The user will repeatedly enter information in the wizard pages and then wants to
385 // press 'next'. If a user uses mostly the keyboard, he would have to skip the 'back' button
386 // everytime. This is annoying. There is a second reason: RETURN acts as TAB. If the 'next'
387 // button comes first in the TAB order, the user can enter information very fast using the RETURN
388 // key to TAB to the next entry field and page. This would not be possible, if the 'back' button
389 // was created before the 'next' button.
391 wxBoxSizer
*buttonRow
= new wxBoxSizer(wxHORIZONTAL
);
394 0, // Vertically unstretchable
395 wxALIGN_RIGHT
// Right aligned, no border
398 // Desired TAB order is 'next', 'cancel', 'help', 'back'. This makes the 'back' button the last control on the page.
399 // Create the buttons in the right order...
400 m_btnNext
= new wxButton(this, wxID_FORWARD
, _("&Next >"));
401 wxButton
*btnCancel
=new wxButton(this, wxID_CANCEL
, _("&Cancel"));
403 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON
)
404 btnHelp
=new wxButton(this, wxID_HELP
, _("&Help"));
405 m_btnPrev
= new wxButton(this, wxID_BACKWARD
, _("< &Back"));
410 0, // Horizontally unstretchable
411 wxALL
, // Border all around, top aligned
415 AddBackNextPair(buttonRow
);
419 0, // Horizontally unstretchable
420 wxALL
, // Border all around, top aligned
425 void wxWizard::DoCreateControls()
427 // do nothing if the controls were already created
431 // wxWindow::SetSizer will be called at end
432 wxBoxSizer
*windowSizer
= new wxBoxSizer(wxVERTICAL
);
434 wxBoxSizer
*mainColumn
= new wxBoxSizer(wxVERTICAL
);
437 1, // Vertical stretching
438 wxALL
| wxEXPAND
, // Border all around, horizontal stretching
442 AddBitmapRow(mainColumn
);
443 AddStaticLine(mainColumn
);
444 AddButtonRow(mainColumn
);
446 // wxWindow::SetSizer should be followed by wxWindow::Fit, but
447 // this is done in FinishLayout anyway so why duplicate it
448 SetSizer(windowSizer
);
451 void wxWizard::SetPageSize(const wxSize
& size
)
453 wxCHECK_RET(!m_started
,wxT("wxWizard::SetPageSize after RunWizard"));
457 void wxWizard::FinishLayout()
459 m_sizerBmpAndPage
->Add(
461 1, // Horizontal stretching
462 wxEXPAND
| wxALL
, // Vertically stretchable
463 m_sizerPage
->Border()
466 GetSizer()->SetSizeHints(this);
467 if ( m_posWizard
== wxDefaultPosition
)
471 void wxWizard::FitToPage(const wxWizardPage
*page
)
473 wxCHECK_RET(!m_started
,wxT("wxWizard::FitToPage after RunWizard"));
477 wxSize size
= page
->GetBestSize();
479 m_sizePage
.IncTo(size
);
481 page
= page
->GetNext();
485 bool wxWizard::ShowPage(wxWizardPage
*page
, bool goingForward
)
487 wxASSERT_MSG( page
!= m_page
, wxT("this is useless") );
489 // we'll use this to decide whether we have to change the label of this
490 // button or not (initially the label is "Next")
491 bool btnLabelWasNext
= TRUE
;
493 // Modified 10-20-2001 Robert Cavanaugh.
494 // Fixed bug for displaying a new bitmap
495 // in each *consecutive* page
497 // flag to indicate if this page uses a new bitmap
498 bool bmpIsDefault
= TRUE
;
500 // use these labels to determine if we need to change the bitmap
502 wxBitmap bmpPrev
, bmpCur
;
504 // check for previous page
507 // send the event to the old page
508 wxWizardEvent
event(wxEVT_WIZARD_PAGE_CHANGING
, GetId(), goingForward
, m_page
);
509 if ( m_page
->GetEventHandler()->ProcessEvent(event
) &&
512 // vetoed by the page
518 btnLabelWasNext
= HasNextPage(m_page
);
520 // Get the bitmap of the previous page (if it exists)
521 if ( m_page
->GetBitmap().Ok() )
523 bmpPrev
= m_page
->GetBitmap();
533 // terminate successfully
536 // and notify the user code (this is especially useful for modeless
538 wxWizardEvent
event(wxEVT_WIZARD_FINISHED
, GetId(), FALSE
, 0);
539 (void)GetEventHandler()->ProcessEvent(event
);
544 // position and show the new page
545 (void)m_page
->TransferDataToWindow();
547 // wxWizardSizer::RecalcSizes wants to be called when m_page changes
548 m_sizerPage
->RecalcSizes();
550 // check if bitmap needs to be updated
551 // update default flag as well
552 if ( m_page
->GetBitmap().Ok() )
554 bmpCur
= m_page
->GetBitmap();
555 bmpIsDefault
= FALSE
;
558 // change the bitmap if:
559 // 1) a default bitmap was selected in constructor
560 // 2) this page was constructed with a bitmap
561 // 3) this bitmap is not the previous bitmap
562 if ( m_statbmp
&& (bmpCur
!= bmpPrev
) )
568 bmp
= m_page
->GetBitmap();
569 m_statbmp
->SetBitmap(bmp
);
572 // and update the buttons state
573 m_btnPrev
->Enable(HasPrevPage(m_page
));
575 bool hasNext
= HasNextPage(m_page
);
576 if ( btnLabelWasNext
!= hasNext
)
580 m_btnNext
->SetLabel(_("&Finish"));
582 m_btnNext
->SetLabel(_("&Next >"));
584 // nothing to do: the label was already correct
586 // send the change event to the new page now
587 wxWizardEvent
event(wxEVT_WIZARD_PAGE_CHANGED
, GetId(), goingForward
, m_page
);
588 (void)m_page
->GetEventHandler()->ProcessEvent(event
);
590 // and finally show it
597 bool wxWizard::RunWizard(wxWizardPage
*firstPage
)
599 wxCHECK_MSG( firstPage
, FALSE
, wxT("can't run empty wizard") );
601 // Set before FinishLayout to enable wxWizardSizer::GetMaxChildSize
604 // This cannot be done sooner, because user can change layout options
608 // can't return FALSE here because there is no old page
609 (void)ShowPage(firstPage
, TRUE
/* forward */);
611 return ShowModal() == wxID_OK
;
614 wxWizardPage
*wxWizard::GetCurrentPage() const
619 wxSize
wxWizard::GetPageSize() const
621 wxSize
pageSize(GetManualPageSize());
622 pageSize
.IncTo(m_sizerPage
->GetMaxChildSize());
626 wxSizer
*wxWizard::GetPageAreaSizer() const
631 void wxWizard::SetBorder(int border
)
633 wxCHECK_RET(!m_started
,wxT("wxWizard::SetBorder after RunWizard"));
635 m_calledSetBorder
= true;
639 wxSize
wxWizard::GetManualPageSize() const
641 // default width and height of the page
642 static const int DEFAULT_PAGE_WIDTH
= 270;
643 static const int DEFAULT_PAGE_HEIGHT
= 290;
645 wxSize
totalPageSize(DEFAULT_PAGE_WIDTH
,DEFAULT_PAGE_HEIGHT
);
647 totalPageSize
.IncTo(m_sizePage
);
651 totalPageSize
.IncTo(wxSize(0, m_bitmap
.GetHeight()));
654 return totalPageSize
;
657 void wxWizard::OnCancel(wxCommandEvent
& WXUNUSED(eventUnused
))
659 // this function probably can never be called when we don't have an active
660 // page, but a small extra check won't hurt
661 wxWindow
*win
= m_page
? (wxWindow
*)m_page
: (wxWindow
*)this;
663 wxWizardEvent
event(wxEVT_WIZARD_CANCEL
, GetId(), FALSE
, m_page
);
664 if ( !win
->GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
666 // no objections - close the dialog
667 EndModal(wxID_CANCEL
);
669 //else: request to Cancel ignored
672 void wxWizard::OnBackOrNext(wxCommandEvent
& event
)
674 wxASSERT_MSG( (event
.GetEventObject() == m_btnNext
) ||
675 (event
.GetEventObject() == m_btnPrev
),
676 wxT("unknown button") );
678 // ask the current page first: notice that we do it before calling
679 // GetNext/Prev() because the data transfered from the controls of the page
680 // may change the value returned by these methods
681 if ( m_page
&& (!m_page
->Validate() || !m_page
->TransferDataFromWindow()) )
683 // the page data is incorrect, don't do anything
687 bool forward
= event
.GetEventObject() == m_btnNext
;
692 page
= m_page
->GetNext();
696 page
= m_page
->GetPrev();
698 wxASSERT_MSG( page
, wxT("\"<Back\" button should have been disabled") );
701 // just pass to the new page (or may be not - but we don't care here)
702 (void)ShowPage(page
, forward
);
705 void wxWizard::OnHelp(wxCommandEvent
& WXUNUSED(event
))
707 // this function probably can never be called when we don't have an active
708 // page, but a small extra check won't hurt
711 // Create and send the help event to the specific page handler
712 // event data contains the active page so that context-sensitive
714 wxWizardEvent
eventHelp(wxEVT_WIZARD_HELP
, GetId(), TRUE
, m_page
);
715 (void)m_page
->GetEventHandler()->ProcessEvent(eventHelp
);
719 void wxWizard::OnWizEvent(wxWizardEvent
& event
)
721 // the dialogs have wxWS_EX_BLOCK_EVENTS style on by default but we want to
722 // propagate wxEVT_WIZARD_XXX to the parent (if any), so do it manually
723 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS
) )
725 // the event will be propagated anyhow
729 wxWindow
*parent
= GetParent();
731 if ( !parent
|| !parent
->GetEventHandler()->ProcessEvent(event
) )
737 // ----------------------------------------------------------------------------
738 // our public interface
739 // ----------------------------------------------------------------------------
741 #if WXWIN_COMPATIBILITY_2_2
744 wxWizard
*wxWizardBase::Create(wxWindow
*parent
,
746 const wxString
& title
,
747 const wxBitmap
& bitmap
,
749 const wxSize
& WXUNUSED(size
))
751 return new wxWizard(parent
, id
, title
, bitmap
, pos
);
754 #endif // WXWIN_COMPATIBILITY_2_2
756 // ----------------------------------------------------------------------------
758 // ----------------------------------------------------------------------------
760 wxWizardEvent::wxWizardEvent(wxEventType type
, int id
, bool direction
, wxWizardPage
* page
)
761 : wxNotifyEvent(type
, id
)
763 // Modified 10-20-2001 Robert Cavanaugh
764 // add the active page to the event data
765 m_direction
= direction
;
769 #endif // wxUSE_WIZARDDLG