]> git.saurik.com Git - wxWidgets.git/blame - src/generic/wizard.cpp
Move SetDefaultTimeout to wxProtocol and set it to 60 seconds for both wxHTTP and...
[wxWidgets.git] / src / generic / wizard.cpp
CommitLineData
66cd017c 1///////////////////////////////////////////////////////////////////////////////
94c09a19 2// Name: src/generic/wizard.cpp
66cd017c
VZ
3// Purpose: generic implementation of wxWizard class
4// Author: Vadim Zeitlin
a0a48a3f
VZ
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
07f20d9a 9// Robert Vazan (sizers)
66cd017c
VZ
10// Created: 15.08.99
11// RCS-ID: $Id$
12// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 13// Licence: wxWindows licence
66cd017c
VZ
14///////////////////////////////////////////////////////////////////////////////
15
16// ============================================================================
17// declarations
18// ============================================================================
19
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
23
66cd017c
VZ
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
1e6feb95
VZ
31#if wxUSE_WIZARDDLG
32
66cd017c
VZ
33#ifndef WX_PRECOMP
34 #include "wx/dynarray.h"
35 #include "wx/intl.h"
b87654f3 36 #include "wx/statbmp.h"
f6bcfd97 37 #include "wx/button.h"
9eddec69 38 #include "wx/settings.h"
ed2fbeb8 39 #include "wx/sizer.h"
66cd017c
VZ
40#endif //WX_PRECOMP
41
42#include "wx/statline.h"
43
d9af3670 44#include "wx/scrolwin.h"
66cd017c 45#include "wx/wizard.h"
d9af3670 46#include "wx/dcmemory.h"
66cd017c 47
aedd6d6a
VZ
48// ----------------------------------------------------------------------------
49// wxWizardSizer
50// ----------------------------------------------------------------------------
51
52class wxWizardSizer : public wxSizer
53{
54public:
55 wxWizardSizer(wxWizard *owner);
56
0a9ed8f1
VZ
57 virtual wxSizerItem *Insert(size_t index, wxSizerItem *item);
58
88517d90
VZ
59 virtual void RecalcSizes();
60 virtual wxSize CalcMin();
aedd6d6a 61
88517d90 62 // get the max size of all wizard pages
aedd6d6a 63 wxSize GetMaxChildSize();
88517d90
VZ
64
65 // return the border which can be either set using wxWizard::SetBorder() or
66 // have default value
67 int GetBorder() const;
ca65c044 68
0a9ed8f1
VZ
69 // hide the pages which we temporarily "show" when they're added to this
70 // sizer (see Insert())
71 void HidePages();
72
aedd6d6a
VZ
73private:
74 wxSize SiblingSize(wxSizerItem *child);
ca65c044 75
aedd6d6a 76 wxWizard *m_owner;
aedd6d6a
VZ
77 wxSize m_childSize;
78};
79
66cd017c
VZ
80// ----------------------------------------------------------------------------
81// event tables and such
82// ----------------------------------------------------------------------------
83
3c778901
VZ
84wxDEFINE_EVENT( wxEVT_WIZARD_PAGE_CHANGED, wxWizardEvent )
85wxDEFINE_EVENT( wxEVT_WIZARD_PAGE_CHANGING, wxWizardEvent )
86wxDEFINE_EVENT( wxEVT_WIZARD_CANCEL, wxWizardEvent )
87wxDEFINE_EVENT( wxEVT_WIZARD_FINISHED, wxWizardEvent )
88wxDEFINE_EVENT( wxEVT_WIZARD_HELP, wxWizardEvent )
2e4df4bf 89
74b31181
VZ
90BEGIN_EVENT_TABLE(wxWizard, wxDialog)
91 EVT_BUTTON(wxID_CANCEL, wxWizard::OnCancel)
f80bf901
VZ
92 EVT_BUTTON(wxID_BACKWARD, wxWizard::OnBackOrNext)
93 EVT_BUTTON(wxID_FORWARD, wxWizard::OnBackOrNext)
94 EVT_BUTTON(wxID_HELP, wxWizard::OnHelp)
91c68292 95
ca65c044
WS
96 EVT_WIZARD_PAGE_CHANGED(wxID_ANY, wxWizard::OnWizEvent)
97 EVT_WIZARD_PAGE_CHANGING(wxID_ANY, wxWizard::OnWizEvent)
98 EVT_WIZARD_CANCEL(wxID_ANY, wxWizard::OnWizEvent)
99 EVT_WIZARD_FINISHED(wxID_ANY, wxWizard::OnWizEvent)
100 EVT_WIZARD_HELP(wxID_ANY, wxWizard::OnWizEvent)
66cd017c
VZ
101END_EVENT_TABLE()
102
74b31181 103IMPLEMENT_DYNAMIC_CLASS(wxWizard, wxDialog)
066f1b7a
SC
104
105/*
ca65c044
WS
106 TODO PROPERTIES :
107 wxWizard
108 extstyle
109 title
066f1b7a
SC
110*/
111
74b31181
VZ
112IMPLEMENT_ABSTRACT_CLASS(wxWizardPage, wxPanel)
113IMPLEMENT_DYNAMIC_CLASS(wxWizardPageSimple, wxWizardPage)
66cd017c
VZ
114IMPLEMENT_DYNAMIC_CLASS(wxWizardEvent, wxNotifyEvent)
115
116// ============================================================================
117// implementation
118// ============================================================================
119
74b31181
VZ
120// ----------------------------------------------------------------------------
121// wxWizardPage
122// ----------------------------------------------------------------------------
123
c7de4135
VS
124void wxWizardPage::Init()
125{
126 m_bitmap = wxNullBitmap;
127}
128
a0a48a3f 129wxWizardPage::wxWizardPage(wxWizard *parent,
cf63f3d3 130 const wxBitmap& bitmap)
74b31181 131{
cf63f3d3 132 Create(parent, bitmap);
c7de4135 133}
91c68292 134
c7de4135 135bool wxWizardPage::Create(wxWizard *parent,
cf63f3d3 136 const wxBitmap& bitmap)
c7de4135 137{
ca65c044
WS
138 if ( !wxPanel::Create(parent, wxID_ANY) )
139 return false;
c7de4135 140
636d266b 141 m_bitmap = bitmap;
a0a48a3f 142
74b31181
VZ
143 // initially the page is hidden, it's shown only when it becomes current
144 Hide();
91c68292 145
ca65c044 146 return true;
74b31181
VZ
147}
148
149// ----------------------------------------------------------------------------
150// wxWizardPageSimple
151// ----------------------------------------------------------------------------
152
153wxWizardPage *wxWizardPageSimple::GetPrev() const
154{
155 return m_prev;
156}
157
158wxWizardPage *wxWizardPageSimple::GetNext() const
159{
160 return m_next;
161}
07f20d9a
VZ
162
163// ----------------------------------------------------------------------------
164// wxWizardSizer
165// ----------------------------------------------------------------------------
166
07f20d9a 167wxWizardSizer::wxWizardSizer(wxWizard *owner)
0a089246
VZ
168 : m_owner(owner),
169 m_childSize(wxDefaultSize)
07f20d9a 170{
07f20d9a
VZ
171}
172
0a9ed8f1
VZ
173wxSizerItem *wxWizardSizer::Insert(size_t index, wxSizerItem *item)
174{
0a089246
VZ
175 m_owner->m_usingSizer = true;
176
0a9ed8f1
VZ
177 if ( item->IsWindow() )
178 {
179 // we must pretend that the window is shown as otherwise it wouldn't be
180 // taken into account for the layout -- but avoid really showing it, so
181 // just set the internal flag instead of calling wxWindow::Show()
182 item->GetWindow()->wxWindowBase::Show();
183 }
184
185 return wxSizer::Insert(index, item);
186}
187
188void wxWizardSizer::HidePages()
189{
190 for ( wxSizerItemList::compatibility_iterator node = GetChildren().GetFirst();
191 node;
192 node = node->GetNext() )
193 {
194 wxSizerItem * const item = node->GetData();
195 if ( item->IsWindow() )
196 item->GetWindow()->wxWindowBase::Show(false);
197 }
198}
199
07f20d9a
VZ
200void wxWizardSizer::RecalcSizes()
201{
202 // Effect of this function depends on m_owner->m_page and
203 // it should be called whenever it changes (wxWizard::ShowPage)
204 if ( m_owner->m_page )
205 {
0a089246 206 m_owner->m_page->SetSize(wxRect(m_position, m_size));
07f20d9a
VZ
207 }
208}
209
210wxSize wxWizardSizer::CalcMin()
211{
212 return m_owner->GetPageSize();
213}
214
215wxSize wxWizardSizer::GetMaxChildSize()
216{
217#if !defined(__WXDEBUG__)
0a089246 218 if ( m_childSize.IsFullySpecified() )
07f20d9a
VZ
219 return m_childSize;
220#endif
221
222 wxSize maxOfMin;
07f20d9a 223
0a089246
VZ
224 for ( wxSizerItemList::compatibility_iterator childNode = m_children.GetFirst();
225 childNode;
226 childNode = childNode->GetNext() )
07f20d9a
VZ
227 {
228 wxSizerItem *child = childNode->GetData();
229 maxOfMin.IncTo(child->CalcMin());
230 maxOfMin.IncTo(SiblingSize(child));
231 }
232
3aa8e4ea
JS
233 // No longer applicable since we may change sizes when size adaptation is done
234#if 0
07f20d9a 235#ifdef __WXDEBUG__
0a089246 236 if ( m_childSize.IsFullySpecified() && m_childSize != maxOfMin )
07f20d9a
VZ
237 {
238 wxFAIL_MSG( _T("Size changed in wxWizard::GetPageAreaSizer()")
239 _T("after RunWizard().\n")
240 _T("Did you forget to call GetSizer()->Fit(this) ")
241 _T("for some page?")) ;
242
243 return m_childSize;
244 }
245#endif // __WXDEBUG__
3aa8e4ea 246#endif
07f20d9a
VZ
247
248 if ( m_owner->m_started )
249 {
07f20d9a
VZ
250 m_childSize = maxOfMin;
251 }
ca65c044 252
07f20d9a
VZ
253 return maxOfMin;
254}
255
88517d90 256int wxWizardSizer::GetBorder() const
07f20d9a 257{
0a089246 258 return m_owner->m_border;
07f20d9a
VZ
259}
260
261wxSize wxWizardSizer::SiblingSize(wxSizerItem *child)
262{
263 wxSize maxSibling;
ca65c044 264
07f20d9a
VZ
265 if ( child->IsWindow() )
266 {
267 wxWizardPage *page = wxDynamicCast(child->GetWindow(), wxWizardPage);
268 if ( page )
269 {
270 for ( wxWizardPage *sibling = page->GetNext();
271 sibling;
272 sibling = sibling->GetNext() )
273 {
274 if ( sibling->GetSizer() )
275 {
276 maxSibling.IncTo(sibling->GetSizer()->CalcMin());
277 }
278 }
279 }
280 }
ca65c044 281
07f20d9a
VZ
282 return maxSibling;
283}
284
66cd017c
VZ
285// ----------------------------------------------------------------------------
286// generic wxWizard implementation
287// ----------------------------------------------------------------------------
288
77436c4c
JS
289void wxWizard::Init()
290{
291 m_posWizard = wxDefaultPosition;
292 m_page = (wxWizardPage *)NULL;
293 m_btnPrev = m_btnNext = NULL;
294 m_statbmp = NULL;
aedd6d6a 295 m_sizerBmpAndPage = NULL;
07f20d9a 296 m_sizerPage = NULL;
0a089246 297 m_border = 5;
07f20d9a 298 m_started = false;
94c09a19 299 m_wasModal = false;
0a089246 300 m_usingSizer = false;
3aa8e4ea
JS
301 m_bitmapBackgroundColour = *wxWHITE;
302 m_bitmapPlacement = 0;
303 m_bitmapMinimumWidth = 115;
77436c4c
JS
304}
305
306bool wxWizard::Create(wxWindow *parent,
aedd6d6a
VZ
307 int id,
308 const wxString& title,
309 const wxBitmap& bitmap,
310 const wxPoint& pos,
311 long style)
66cd017c 312{
07f20d9a 313 bool result = wxDialog::Create(parent,id,title,pos,wxDefaultSize,style);
ca65c044 314
77436c4c
JS
315 m_posWizard = pos;
316 m_bitmap = bitmap ;
636d266b 317
07f20d9a 318 DoCreateControls();
ca65c044 319
07f20d9a 320 return result;
f6bcfd97
BP
321}
322
781130bf
VZ
323wxWizard::~wxWizard()
324{
325 // normally we don't have to delete this sizer as it's deleted by the
326 // associated window but if we never used it or didn't set it as the window
327 // sizer yet, do delete it manually
328 if ( !m_usingSizer || !m_started )
329 delete m_sizerPage;
330}
331
07f20d9a 332void wxWizard::AddBitmapRow(wxBoxSizer *mainColumn)
f6bcfd97 333{
07f20d9a
VZ
334 m_sizerBmpAndPage = new wxBoxSizer(wxHORIZONTAL);
335 mainColumn->Add(
336 m_sizerBmpAndPage,
337 1, // Vertically stretchable
338 wxEXPAND // Horizonal stretching, no border
339 );
340 mainColumn->Add(0,5,
341 0, // No vertical stretching
342 wxEXPAND // No border, (mostly useless) horizontal stretching
343 );
66cd017c 344
461dae94 345#if wxUSE_STATBMP
f6bcfd97 346 if ( m_bitmap.Ok() )
66cd017c 347 {
3aa8e4ea
JS
348 wxSize bitmapSize(wxDefaultSize);
349 if (GetBitmapPlacement())
350 bitmapSize.x = GetMinimumBitmapWidth();
351
352 m_statbmp = new wxStaticBitmap(this, wxID_ANY, m_bitmap, wxDefaultPosition, bitmapSize);
07f20d9a
VZ
353 m_sizerBmpAndPage->Add(
354 m_statbmp,
355 0, // No horizontal stretching
356 wxALL, // Border all around, top alignment
357 5 // Border width
358 );
359 m_sizerBmpAndPage->Add(
360 5,0,
361 0, // No horizontal stretching
362 wxEXPAND // No border, (mostly useless) vertical stretching
363 );
66cd017c 364 }
461dae94 365#endif
f1df0927 366
0a089246 367 // Added to m_sizerBmpAndPage later
07f20d9a
VZ
368 m_sizerPage = new wxWizardSizer(this);
369}
74b31181 370
07f20d9a
VZ
371void wxWizard::AddStaticLine(wxBoxSizer *mainColumn)
372{
74b31181 373#if wxUSE_STATLINE
07f20d9a 374 mainColumn->Add(
ca65c044 375 new wxStaticLine(this, wxID_ANY),
07f20d9a
VZ
376 0, // Vertically unstretchable
377 wxEXPAND | wxALL, // Border all around, horizontally stretchable
378 5 // Border width
379 );
380 mainColumn->Add(0,5,
381 0, // No vertical stretching
382 wxEXPAND // No border, (mostly useless) horizontal stretching
383 );
384#else
385 (void)mainColumn;
f6bcfd97 386#endif // wxUSE_STATLINE
07f20d9a 387}
74b31181 388
07f20d9a
VZ
389void wxWizard::AddBackNextPair(wxBoxSizer *buttonRow)
390{
54cf600d
VZ
391 wxASSERT_MSG( m_btnNext && m_btnPrev,
392 _T("You must create the buttons before calling ")
393 _T("wxWizard::AddBackNextPair") );
394
07f20d9a
VZ
395 // margin between Back and Next buttons
396#ifdef __WXMAC__
397 static const int BACKNEXT_MARGIN = 10;
398#else
399 static const int BACKNEXT_MARGIN = 0;
400#endif
66cd017c 401
07f20d9a
VZ
402 wxBoxSizer *backNextPair = new wxBoxSizer(wxHORIZONTAL);
403 buttonRow->Add(
404 backNextPair,
405 0, // No horizontal stretching
406 wxALL, // Border all around
407 5 // Border width
408 );
ca65c044 409
07f20d9a
VZ
410 backNextPair->Add(m_btnPrev);
411 backNextPair->Add(BACKNEXT_MARGIN,0,
412 0, // No horizontal stretching
413 wxEXPAND // No border, (mostly useless) vertical stretching
414 );
07f20d9a
VZ
415 backNextPair->Add(m_btnNext);
416}
66cd017c 417
07f20d9a
VZ
418void wxWizard::AddButtonRow(wxBoxSizer *mainColumn)
419{
9473e9a4
VZ
420 // the order in which the buttons are created determines the TAB order - at least under MSWindows...
421 // although the 'back' button appears before the 'next' button, a more userfriendly tab order is
422 // to activate the 'next' button first (create the next button before the back button).
423 // The reason is: The user will repeatedly enter information in the wizard pages and then wants to
424 // press 'next'. If a user uses mostly the keyboard, he would have to skip the 'back' button
425 // everytime. This is annoying. There is a second reason: RETURN acts as TAB. If the 'next'
426 // button comes first in the TAB order, the user can enter information very fast using the RETURN
427 // key to TAB to the next entry field and page. This would not be possible, if the 'back' button
428 // was created before the 'next' button.
429
a6328131 430 bool isPda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
94c09a19 431 int buttonStyle = isPda ? wxBU_EXACTFIT : 0;
a6328131 432
07f20d9a 433 wxBoxSizer *buttonRow = new wxBoxSizer(wxHORIZONTAL);
977a3818
JS
434#ifdef __WXMAC__
435 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
436 mainColumn->Add(
437 buttonRow,
438 0, // Vertically unstretchable
439 wxGROW|wxALIGN_CENTRE
440 );
441 else
442#endif
07f20d9a
VZ
443 mainColumn->Add(
444 buttonRow,
445 0, // Vertically unstretchable
446 wxALIGN_RIGHT // Right aligned, no border
447 );
66cd017c 448
9473e9a4
VZ
449 // Desired TAB order is 'next', 'cancel', 'help', 'back'. This makes the 'back' button the last control on the page.
450 // Create the buttons in the right order...
977a3818
JS
451 wxButton *btnHelp=0;
452#ifdef __WXMAC__
453 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
a6328131 454 btnHelp=new wxButton(this, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, buttonStyle);
977a3818
JS
455#endif
456
9473e9a4 457 m_btnNext = new wxButton(this, wxID_FORWARD, _("&Next >"));
a6328131 458 wxButton *btnCancel=new wxButton(this, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, buttonStyle);
977a3818 459#ifndef __WXMAC__
07f20d9a 460 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
a6328131 461 btnHelp=new wxButton(this, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, buttonStyle);
977a3818 462#endif
a6328131 463 m_btnPrev = new wxButton(this, wxID_BACKWARD, _("< &Back"), wxDefaultPosition, wxDefaultSize, buttonStyle);
9473e9a4
VZ
464
465 if (btnHelp)
977a3818 466 {
07f20d9a 467 buttonRow->Add(
9473e9a4 468 btnHelp,
07f20d9a
VZ
469 0, // Horizontally unstretchable
470 wxALL, // Border all around, top aligned
471 5 // Border width
977a3818
JS
472 );
473#ifdef __WXMAC__
474 // Put stretchable space between help button and others
475 buttonRow->Add(0, 0, 1, wxALIGN_CENTRE, 0);
476#endif
477 }
07f20d9a
VZ
478
479 AddBackNextPair(buttonRow);
ca65c044 480
07f20d9a 481 buttonRow->Add(
9473e9a4 482 btnCancel,
07f20d9a
VZ
483 0, // Horizontally unstretchable
484 wxALL, // Border all around, top aligned
485 5 // Border width
486 );
487}
66cd017c 488
07f20d9a
VZ
489void wxWizard::DoCreateControls()
490{
491 // do nothing if the controls were already created
492 if ( WasCreated() )
493 return;
ca65c044 494
a6328131 495 bool isPda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
94c09a19 496
a6328131
JS
497 // Horizontal stretching, and if not PDA, border all around
498 int mainColumnSizerFlags = isPda ? wxEXPAND : wxALL|wxEXPAND ;
94c09a19 499
07f20d9a
VZ
500 // wxWindow::SetSizer will be called at end
501 wxBoxSizer *windowSizer = new wxBoxSizer(wxVERTICAL);
ca65c044 502
07f20d9a
VZ
503 wxBoxSizer *mainColumn = new wxBoxSizer(wxVERTICAL);
504 windowSizer->Add(
505 mainColumn,
506 1, // Vertical stretching
a6328131 507 mainColumnSizerFlags,
07f20d9a
VZ
508 5 // Border width
509 );
ca65c044 510
07f20d9a 511 AddBitmapRow(mainColumn);
94c09a19 512
a6328131
JS
513 if (!isPda)
514 AddStaticLine(mainColumn);
94c09a19 515
07f20d9a 516 AddButtonRow(mainColumn);
ca65c044 517
07f20d9a 518 SetSizer(windowSizer);
66cd017c
VZ
519}
520
f6bcfd97
BP
521void wxWizard::SetPageSize(const wxSize& size)
522{
0a089246 523 wxCHECK_RET(!m_started, wxT("wxWizard::SetPageSize after RunWizard"));
f6bcfd97
BP
524 m_sizePage = size;
525}
526
07f20d9a
VZ
527void wxWizard::FitToPage(const wxWizardPage *page)
528{
0a089246 529 wxCHECK_RET(!m_started, wxT("wxWizard::FitToPage after RunWizard"));
ca65c044 530
c73b439f
VZ
531 while ( page )
532 {
533 wxSize size = page->GetBestSize();
534
07f20d9a 535 m_sizePage.IncTo(size);
c73b439f
VZ
536
537 page = page->GetNext();
538 }
c73b439f
VZ
539}
540
74b31181 541bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
66cd017c 542{
223d09f6 543 wxASSERT_MSG( page != m_page, wxT("this is useless") );
66cd017c 544
0a089246
VZ
545 wxSizerFlags flags(1);
546 flags.Border(wxALL, m_border).Expand();
547
548 if ( !m_started )
549 {
550 if ( m_usingSizer )
551 {
552 m_sizerBmpAndPage->Add(m_sizerPage, flags);
553
554 // now that our layout is computed correctly, hide the pages
555 // artificially shown in wxWizardSizer::Insert() back again
556 m_sizerPage->HidePages();
557 }
558 }
559
560
0a089246
VZ
561 // remember the old bitmap (if any) to compare with the new one later
562 wxBitmap bmpPrev;
7cc5041d
VZ
563
564 // check for previous page
74b31181 565 if ( m_page )
66cd017c 566 {
74b31181 567 // send the event to the old page
0a089246
VZ
568 wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGING, GetId(),
569 goingForward, m_page);
74b31181
VZ
570 if ( m_page->GetEventHandler()->ProcessEvent(event) &&
571 !event.IsAllowed() )
572 {
573 // vetoed by the page
ca65c044 574 return false;
74b31181 575 }
66cd017c 576
74b31181
VZ
577 m_page->Hide();
578
0a089246
VZ
579 bmpPrev = m_page->GetBitmap();
580
581 if ( !m_usingSizer )
582 m_sizerBmpAndPage->Detach(m_page);
dee5b92f 583 }
66cd017c 584
7cc5041d 585 // set the new page
66cd017c 586 m_page = page;
66cd017c 587
74b31181
VZ
588 // is this the end?
589 if ( !m_page )
66cd017c 590 {
74b31181 591 // terminate successfully
0a089246 592 if ( IsModal() )
b3eb133b
WS
593 {
594 EndModal(wxID_OK);
595 }
596 else
597 {
598 SetReturnCode(wxID_OK);
599 Hide();
600 }
64c2fa13
VZ
601
602 // and notify the user code (this is especially useful for modeless
603 // wizards)
ca65c044 604 wxWizardEvent event(wxEVT_WIZARD_FINISHED, GetId(), false, 0);
64c2fa13
VZ
605 (void)GetEventHandler()->ProcessEvent(event);
606
ca65c044 607 return true;
74b31181 608 }
66cd017c 609
74b31181
VZ
610 // position and show the new page
611 (void)m_page->TransferDataToWindow();
ca65c044 612
0a089246 613 if ( m_usingSizer )
7cc5041d 614 {
0a089246
VZ
615 // wxWizardSizer::RecalcSizes wants to be called when m_page changes
616 m_sizerPage->RecalcSizes();
617 }
618 else // pages are not managed by the sizer
619 {
620 m_sizerBmpAndPage->Add(m_page, flags);
621 m_sizerBmpAndPage->SetItemMinSize(m_page, GetPageSize());
7cc5041d
VZ
622 }
623
461dae94 624#if wxUSE_STATBMP
0a089246 625 // update the bitmap if:it changed
3aa8e4ea 626 wxBitmap bmp;
0a089246 627 if ( m_statbmp )
f1df0927 628 {
3aa8e4ea 629 bmp = m_page->GetBitmap();
0a089246 630 if ( !bmp.Ok() )
cfd88569 631 bmp = m_bitmap;
0a089246
VZ
632
633 if ( !bmpPrev.Ok() )
634 bmpPrev = m_bitmap;
635
3aa8e4ea
JS
636 if (!GetBitmapPlacement())
637 {
638 if ( !bmp.IsSameAs(bmpPrev) )
639 m_statbmp->SetBitmap(bmp);
640 }
f1df0927 641 }
0a089246
VZ
642#endif // wxUSE_STATBMP
643
f1df0927 644
74b31181 645 // and update the buttons state
2b5f62a0 646 m_btnPrev->Enable(HasPrevPage(m_page));
66cd017c 647
7f3bf33a
VZ
648 const bool hasNext = HasNextPage(m_page);
649 const wxString label = hasNext ? _("&Next >") : _("&Finish");
650 if ( label != m_btnNext->GetLabel() )
651 m_btnNext->SetLabel(label);
66cd017c 652
0a089246
VZ
653 m_btnNext->SetDefault();
654
655
5bc28e84 656 // send the change event to the new page now
2365e5cb 657 wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGED, GetId(), goingForward, m_page);
5bc28e84
VZ
658 (void)m_page->GetEventHandler()->ProcessEvent(event);
659
660 // and finally show it
661 m_page->Show();
662 m_page->SetFocus();
663
0a089246
VZ
664 if ( !m_usingSizer )
665 m_sizerBmpAndPage->Layout();
666
667 if ( !m_started )
668 {
669 m_started = true;
670
3aa8e4ea
JS
671 DoWizardLayout();
672 }
673
634bb98a 674 if (GetBitmapPlacement() && m_statbmp)
3aa8e4ea
JS
675 {
676 ResizeBitmap(bmp);
634bb98a 677
3aa8e4ea
JS
678 if ( !bmp.IsSameAs(bmpPrev) )
679 m_statbmp->SetBitmap(bmp);
634bb98a 680
3aa8e4ea
JS
681 if (m_usingSizer)
682 m_sizerPage->RecalcSizes();
0a089246
VZ
683 }
684
ca65c044 685 return true;
66cd017c
VZ
686}
687
3aa8e4ea
JS
688/// Do fit, and adjust to screen size if necessary
689void wxWizard::DoWizardLayout()
690{
691 if ( wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA )
692 {
693 if (CanDoLayoutAdaptation())
694 DoLayoutAdaptation();
695 else
696 GetSizer()->SetSizeHints(this);
697
698 if ( m_posWizard == wxDefaultPosition )
699 CentreOnScreen();
700 }
701
702 SetLayoutAdaptationDone(true);
703}
704
74b31181 705bool wxWizard::RunWizard(wxWizardPage *firstPage)
66cd017c 706{
ca65c044
WS
707 wxCHECK_MSG( firstPage, false, wxT("can't run empty wizard") );
708
ca65c044
WS
709 // can't return false here because there is no old page
710 (void)ShowPage(firstPage, true /* forward */);
66cd017c 711
94c09a19 712 m_wasModal = true;
37f6a080 713
66cd017c
VZ
714 return ShowModal() == wxID_OK;
715}
716
74b31181 717wxWizardPage *wxWizard::GetCurrentPage() const
66cd017c 718{
74b31181 719 return m_page;
66cd017c
VZ
720}
721
4fe5383d 722wxSize wxWizard::GetPageSize() const
07f20d9a
VZ
723{
724 // default width and height of the page
0a089246
VZ
725 int DEFAULT_PAGE_WIDTH,
726 DEFAULT_PAGE_HEIGHT;
727 if ( wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA )
a6328131
JS
728 {
729 // Make the default page size small enough to fit on screen
730 DEFAULT_PAGE_WIDTH = wxSystemSettings::GetMetric(wxSYS_SCREEN_X) / 2;
731 DEFAULT_PAGE_HEIGHT = wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) / 2;
732 }
0a089246
VZ
733 else // !PDA
734 {
735 DEFAULT_PAGE_WIDTH =
736 DEFAULT_PAGE_HEIGHT = 270;
737 }
94c09a19 738
0a089246
VZ
739 // start with default minimal size
740 wxSize pageSize(DEFAULT_PAGE_WIDTH, DEFAULT_PAGE_HEIGHT);
ca65c044 741
0a089246
VZ
742 // make the page at least as big as specified by user
743 pageSize.IncTo(m_sizePage);
ca65c044 744
aedd6d6a
VZ
745 if ( m_statbmp )
746 {
0a089246
VZ
747 // make the page at least as tall as the bitmap
748 pageSize.IncTo(wxSize(0, m_bitmap.GetHeight()));
aedd6d6a 749 }
ca65c044 750
0a089246
VZ
751 if ( m_usingSizer )
752 {
753 // make it big enough to contain all pages added to the sizer
754 pageSize.IncTo(m_sizerPage->GetMaxChildSize());
755 }
756
757 return pageSize;
758}
759
760wxSizer *wxWizard::GetPageAreaSizer() const
761{
762 return m_sizerPage;
763}
764
765void wxWizard::SetBorder(int border)
766{
767 wxCHECK_RET(!m_started, wxT("wxWizard::SetBorder after RunWizard"));
768
769 m_border = border;
4fe5383d
VZ
770}
771
20f18ea1 772void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(eventUnused))
66cd017c 773{
74b31181
VZ
774 // this function probably can never be called when we don't have an active
775 // page, but a small extra check won't hurt
776 wxWindow *win = m_page ? (wxWindow *)m_page : (wxWindow *)this;
777
ca65c044 778 wxWizardEvent event(wxEVT_WIZARD_CANCEL, GetId(), false, m_page);
74b31181 779 if ( !win->GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
66cd017c
VZ
780 {
781 // no objections - close the dialog
b3eb133b
WS
782 if(IsModal())
783 {
784 EndModal(wxID_CANCEL);
785 }
786 else
787 {
788 SetReturnCode(wxID_CANCEL);
789 Hide();
790 }
66cd017c
VZ
791 }
792 //else: request to Cancel ignored
793}
794
74b31181 795void wxWizard::OnBackOrNext(wxCommandEvent& event)
66cd017c
VZ
796{
797 wxASSERT_MSG( (event.GetEventObject() == m_btnNext) ||
798 (event.GetEventObject() == m_btnPrev),
223d09f6 799 wxT("unknown button") );
66cd017c 800
47e64664
VZ
801 wxCHECK_RET( m_page, _T("should have a valid current page") );
802
f6bcfd97
BP
803 // ask the current page first: notice that we do it before calling
804 // GetNext/Prev() because the data transfered from the controls of the page
805 // may change the value returned by these methods
47e64664 806 if ( !m_page->Validate() || !m_page->TransferDataFromWindow() )
f6bcfd97
BP
807 {
808 // the page data is incorrect, don't do anything
809 return;
810 }
811
74b31181 812 bool forward = event.GetEventObject() == m_btnNext;
66cd017c 813
74b31181
VZ
814 wxWizardPage *page;
815 if ( forward )
66cd017c 816 {
74b31181 817 page = m_page->GetNext();
66cd017c 818 }
74b31181 819 else // back
66cd017c 820 {
74b31181
VZ
821 page = m_page->GetPrev();
822
223d09f6 823 wxASSERT_MSG( page, wxT("\"<Back\" button should have been disabled") );
66cd017c 824 }
74b31181 825
0a089246 826 // just pass to the new page (or maybe not - but we don't care here)
74b31181 827 (void)ShowPage(page, forward);
66cd017c
VZ
828}
829
f80bf901
VZ
830void wxWizard::OnHelp(wxCommandEvent& WXUNUSED(event))
831{
832 // this function probably can never be called when we don't have an active
833 // page, but a small extra check won't hurt
834 if(m_page != NULL)
835 {
836 // Create and send the help event to the specific page handler
837 // event data contains the active page so that context-sensitive
838 // help is possible
ca65c044 839 wxWizardEvent eventHelp(wxEVT_WIZARD_HELP, GetId(), true, m_page);
f80bf901
VZ
840 (void)m_page->GetEventHandler()->ProcessEvent(eventHelp);
841 }
842}
843
91c68292
VZ
844void wxWizard::OnWizEvent(wxWizardEvent& event)
845{
846 // the dialogs have wxWS_EX_BLOCK_EVENTS style on by default but we want to
847 // propagate wxEVT_WIZARD_XXX to the parent (if any), so do it manually
848 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) )
849 {
850 // the event will be propagated anyhow
0a640208 851 event.Skip();
91c68292 852 }
b3eb133b
WS
853 else
854 {
855 wxWindow *parent = GetParent();
91c68292 856
b3eb133b
WS
857 if ( !parent || !parent->GetEventHandler()->ProcessEvent(event) )
858 {
859 event.Skip();
860 }
861 }
37f6a080 862
94c09a19 863 if ( ( !m_wasModal ) &&
37f6a080
JS
864 event.IsAllowed() &&
865 ( event.GetEventType() == wxEVT_WIZARD_FINISHED ||
866 event.GetEventType() == wxEVT_WIZARD_CANCEL
867 )
868 )
869 {
37f6a080
JS
870 Destroy();
871 }
91c68292 872}
f80bf901 873
f49fd6d0
JS
874void wxWizard::SetBitmap(const wxBitmap& bitmap)
875{
876 m_bitmap = bitmap;
877 if (m_statbmp)
878 m_statbmp->SetBitmap(m_bitmap);
879}
880
66cd017c
VZ
881// ----------------------------------------------------------------------------
882// wxWizardEvent
883// ----------------------------------------------------------------------------
884
f80bf901 885wxWizardEvent::wxWizardEvent(wxEventType type, int id, bool direction, wxWizardPage* page)
66cd017c
VZ
886 : wxNotifyEvent(type, id)
887{
f80bf901
VZ
888 // Modified 10-20-2001 Robert Cavanaugh
889 // add the active page to the event data
74b31181 890 m_direction = direction;
f80bf901 891 m_page = page;
66cd017c 892}
74b31181 893
3aa8e4ea
JS
894/// Do the adaptation
895bool wxWizard::DoLayoutAdaptation()
896{
897 wxWindowList windows;
898 wxWindowList pages;
899
900 // Make all the pages (that use sizers) scrollable
901 for ( wxSizerItemList::compatibility_iterator node = m_sizerPage->GetChildren().GetFirst(); node; node = node->GetNext() )
902 {
903 wxSizerItem * const item = node->GetData();
904 if ( item->IsWindow() )
905 {
906 wxWizardPage* page = wxDynamicCast(item->GetWindow(), wxWizardPage);
907 if (page)
908 {
909 while (page)
910 {
911 if (!pages.Find(page) && page->GetSizer())
912 {
913 // Create a scrolled window and reparent
914 wxScrolledWindow* scrolledWindow = new wxScrolledWindow(page, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL|wxVSCROLL|wxHSCROLL|wxBORDER_NONE);
915 wxSizer* oldSizer = page->GetSizer();
634bb98a 916
3aa8e4ea
JS
917 wxSizer* newSizer = new wxBoxSizer(wxVERTICAL);
918 newSizer->Add(scrolledWindow,1, wxEXPAND, 0);
634bb98a 919
3aa8e4ea 920 page->SetSizer(newSizer, false /* don't delete the old sizer */);
634bb98a 921
3aa8e4ea 922 scrolledWindow->SetSizer(oldSizer);
634bb98a 923
3aa8e4ea 924 wxStandardDialogLayoutAdapter::DoReparentControls(page, scrolledWindow);
634bb98a 925
3aa8e4ea
JS
926 pages.Append(page);
927 windows.Append(scrolledWindow);
928 }
929 page = page->GetNext();
930 }
931 }
932 }
933 }
934
935 wxStandardDialogLayoutAdapter::DoFitWithScrolling(this, windows);
936
a8eeee19
JS
937 // Size event doesn't get sent soon enough on wxGTK
938 DoLayout();
939
3aa8e4ea
JS
940 SetLayoutAdaptationDone(true);
941
942 return true;
943}
944
945bool wxWizard::ResizeBitmap(wxBitmap& bmp)
946{
947 if (!GetBitmapPlacement())
948 return false;
949
950 if (bmp.Ok())
951 {
952 wxSize pageSize = m_sizerPage->GetSize();
49b75749
JS
953 if (pageSize == wxSize(0,0))
954 pageSize = GetPageSize();
3aa8e4ea
JS
955 int bitmapWidth = wxMax(bmp.GetWidth(), GetMinimumBitmapWidth());
956 int bitmapHeight = pageSize.y;
957
634bb98a 958 if (!m_statbmp->GetBitmap().Ok() || m_statbmp->GetBitmap().GetHeight() != bitmapHeight)
3aa8e4ea
JS
959 {
960 wxBitmap bitmap(bitmapWidth, bitmapHeight);
961 {
962 wxMemoryDC dc;
963 dc.SelectObject(bitmap);
964 dc.SetBackground(wxBrush(m_bitmapBackgroundColour));
965 dc.Clear();
966
967 if (GetBitmapPlacement() & wxWIZARD_TILE)
968 {
969 TileBitmap(wxRect(0, 0, bitmapWidth, bitmapHeight), dc, bmp);
970 }
971 else
972 {
973 int x, y;
974
975 if (GetBitmapPlacement() & wxWIZARD_HALIGN_LEFT)
976 x = 0;
977 else if (GetBitmapPlacement() & wxWIZARD_HALIGN_RIGHT)
634bb98a 978 x = bitmapWidth - bmp.GetWidth();
3aa8e4ea 979 else
634bb98a 980 x = (bitmapWidth - bmp.GetWidth())/2;
3aa8e4ea
JS
981
982 if (GetBitmapPlacement() & wxWIZARD_VALIGN_TOP)
983 y = 0;
984 else if (GetBitmapPlacement() & wxWIZARD_VALIGN_BOTTOM)
634bb98a 985 y = bitmapHeight - bmp.GetHeight();
3aa8e4ea 986 else
634bb98a 987 y = (bitmapHeight - bmp.GetHeight())/2;
3aa8e4ea
JS
988
989 dc.DrawBitmap(bmp, x, y, true);
990 dc.SelectObject(wxNullBitmap);
991 }
992 }
993
994 bmp = bitmap;
995 }
996 }
997
998 return true;
999}
1000
1001bool wxWizard::TileBitmap(const wxRect& rect, wxDC& dc, const wxBitmap& bitmap)
1002{
1003 int w = bitmap.GetWidth();
1004 int h = bitmap.GetHeight();
1005
1006 wxMemoryDC dcMem;
1007
1008 dcMem.SelectObjectAsSource(bitmap);
1009
1010 int i, j;
1011 for (i = rect.x; i < rect.x + rect.width; i += w)
1012 {
1013 for (j = rect.y; j < rect.y + rect.height; j+= h)
1014 dc.Blit(i, j, bitmap.GetWidth(), bitmap.GetHeight(), & dcMem, 0, 0);
1015 }
1016 dcMem.SelectObject(wxNullBitmap);
1017
1018 return true;
1019}
1020
1e6feb95 1021#endif // wxUSE_WIZARDDLG