]> git.saurik.com Git - wxWidgets.git/blame - src/generic/wizard.cpp
fixed a compilation warning about signed/unsigned comparison
[wxWidgets.git] / src / generic / wizard.cpp
CommitLineData
66cd017c
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: generic/wizard.cpp
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
66cd017c
VZ
9// Created: 15.08.99
10// RCS-ID: $Id$
11// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
12// Licence: wxWindows license
13///////////////////////////////////////////////////////////////////////////////
14
15// ============================================================================
16// declarations
17// ============================================================================
18
19// ----------------------------------------------------------------------------
20// headers
21// ----------------------------------------------------------------------------
22
23#ifdef __GNUG__
91c68292 24 #pragma implementation "wizardg.h"
66cd017c
VZ
25#endif
26
27// For compilers that support precompilation, includes "wx.h".
28#include "wx/wxprec.h"
29
30#ifdef __BORLANDC__
31 #pragma hdrstop
32#endif
33
1e6feb95
VZ
34#if wxUSE_WIZARDDLG
35
66cd017c
VZ
36#ifndef WX_PRECOMP
37 #include "wx/dynarray.h"
38 #include "wx/intl.h"
b87654f3 39 #include "wx/statbmp.h"
f6bcfd97 40 #include "wx/button.h"
66cd017c
VZ
41#endif //WX_PRECOMP
42
43#include "wx/statline.h"
44
45#include "wx/wizard.h"
46
47// ----------------------------------------------------------------------------
48// simple types
49// ----------------------------------------------------------------------------
50
51WX_DEFINE_ARRAY(wxPanel *, wxArrayPages);
52
66cd017c
VZ
53// ----------------------------------------------------------------------------
54// event tables and such
55// ----------------------------------------------------------------------------
56
2e4df4bf
VZ
57DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGED)
58DEFINE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGING)
59DEFINE_EVENT_TYPE(wxEVT_WIZARD_CANCEL)
f80bf901 60DEFINE_EVENT_TYPE(wxEVT_WIZARD_HELP)
2e4df4bf 61
74b31181
VZ
62BEGIN_EVENT_TABLE(wxWizard, wxDialog)
63 EVT_BUTTON(wxID_CANCEL, wxWizard::OnCancel)
f80bf901
VZ
64 EVT_BUTTON(wxID_BACKWARD, wxWizard::OnBackOrNext)
65 EVT_BUTTON(wxID_FORWARD, wxWizard::OnBackOrNext)
66 EVT_BUTTON(wxID_HELP, wxWizard::OnHelp)
91c68292
VZ
67
68 EVT_WIZARD_PAGE_CHANGED(-1, wxWizard::OnWizEvent)
69 EVT_WIZARD_PAGE_CHANGING(-1, wxWizard::OnWizEvent)
70 EVT_WIZARD_CANCEL(-1, wxWizard::OnWizEvent)
71 EVT_WIZARD_HELP(-1, wxWizard::OnWizEvent)
66cd017c
VZ
72END_EVENT_TABLE()
73
74b31181
VZ
74IMPLEMENT_DYNAMIC_CLASS(wxWizard, wxDialog)
75IMPLEMENT_ABSTRACT_CLASS(wxWizardPage, wxPanel)
76IMPLEMENT_DYNAMIC_CLASS(wxWizardPageSimple, wxWizardPage)
66cd017c
VZ
77IMPLEMENT_DYNAMIC_CLASS(wxWizardEvent, wxNotifyEvent)
78
79// ============================================================================
80// implementation
81// ============================================================================
82
74b31181
VZ
83// ----------------------------------------------------------------------------
84// wxWizardPage
85// ----------------------------------------------------------------------------
86
c7de4135
VS
87void wxWizardPage::Init()
88{
89 m_bitmap = wxNullBitmap;
90}
91
a0a48a3f
VZ
92wxWizardPage::wxWizardPage(wxWizard *parent,
93 const wxBitmap& bitmap,
94 const wxChar *resource)
74b31181 95{
c7de4135
VS
96 Create(parent, bitmap, resource);
97}
91c68292 98
c7de4135
VS
99bool wxWizardPage::Create(wxWizard *parent,
100 const wxBitmap& bitmap,
101 const wxChar *resource)
102{
103 if ( !wxPanel::Create(parent, -1) )
104 return FALSE;
105
a0a48a3f
VZ
106 if ( resource != NULL )
107 {
5d5da6f6 108#if wxUSE_WX_RESOURCES
a0a48a3f
VZ
109 if ( !LoadFromResource(this, resource) )
110 {
111 wxFAIL_MSG(wxT("wxWizardPage LoadFromResource failed!!!!"));
112 }
c8804076 113#endif // wxUSE_RESOURCES
a0a48a3f
VZ
114 }
115
636d266b 116 m_bitmap = bitmap;
a0a48a3f 117
74b31181
VZ
118 // initially the page is hidden, it's shown only when it becomes current
119 Hide();
91c68292 120
c7de4135 121 return TRUE;
74b31181
VZ
122}
123
124// ----------------------------------------------------------------------------
125// wxWizardPageSimple
126// ----------------------------------------------------------------------------
127
128wxWizardPage *wxWizardPageSimple::GetPrev() const
129{
130 return m_prev;
131}
132
133wxWizardPage *wxWizardPageSimple::GetNext() const
134{
135 return m_next;
136}
66cd017c
VZ
137// ----------------------------------------------------------------------------
138// generic wxWizard implementation
139// ----------------------------------------------------------------------------
140
77436c4c
JS
141void wxWizard::Init()
142{
143 m_posWizard = wxDefaultPosition;
144 m_page = (wxWizardPage *)NULL;
145 m_btnPrev = m_btnNext = NULL;
146 m_statbmp = NULL;
147}
148
149bool wxWizard::Create(wxWindow *parent,
74b31181
VZ
150 int id,
151 const wxString& title,
152 const wxBitmap& bitmap,
f6bcfd97 153 const wxPoint& pos)
66cd017c 154{
77436c4c
JS
155 m_posWizard = pos;
156 m_bitmap = bitmap ;
636d266b 157
f6bcfd97
BP
158 // just create the dialog itself here, the controls will be created in
159 // DoCreateControls() called later when we know our final size
160 m_page = (wxWizardPage *)NULL;
161 m_btnPrev = m_btnNext = NULL;
162 m_statbmp = NULL;
163
77436c4c 164 return wxDialog::Create(parent, id, title, pos);
f6bcfd97
BP
165}
166
167void wxWizard::DoCreateControls()
168{
169 // do nothing if the controls were already created
170 if ( WasCreated() )
171 return;
172
66cd017c
VZ
173 // constants defining the dialog layout
174 // ------------------------------------
175
176 // these constants define the position of the upper left corner of the
177 // bitmap or the page in the wizard
178 static const int X_MARGIN = 10;
179 static const int Y_MARGIN = 10;
180
181 // margin between the bitmap and the panel
182 static const int BITMAP_X_MARGIN = 15;
183
184 // margin between the bitmap and the static line
185 static const int BITMAP_Y_MARGIN = 15;
186
187 // margin between the static line and the buttons
188 static const int SEPARATOR_LINE_MARGIN = 15;
189
190 // margin between "Next >" and "Cancel" buttons
191 static const int BUTTON_MARGIN = 10;
192
193 // default width and height of the page
194 static const int DEFAULT_PAGE_WIDTH = 270;
195 static const int DEFAULT_PAGE_HEIGHT = 290;
196
66cd017c
VZ
197 // create controls
198 // ---------------
199
200 wxSize sizeBtn = wxButton::GetDefaultSize();
201
66cd017c
VZ
202 // the global dialog layout is: a row of buttons at the bottom (aligned to
203 // the right), the static line above them, the bitmap (if any) on the left
204 // of the upper part of the dialog and the panel in the remaining space
205 m_x = X_MARGIN;
206 m_y = Y_MARGIN;
f6bcfd97
BP
207
208 int defaultHeight;
209 if ( m_bitmap.Ok() )
66cd017c 210 {
f6bcfd97 211 m_statbmp = new wxStaticBitmap(this, -1, m_bitmap, wxPoint(m_x, m_y));
66cd017c 212
f6bcfd97
BP
213 m_x += m_bitmap.GetWidth() + BITMAP_X_MARGIN;
214
215 defaultHeight = m_bitmap.GetHeight();
66cd017c
VZ
216 }
217 else
218 {
f1df0927
VZ
219 m_statbmp = (wxStaticBitmap *)NULL;
220
f6bcfd97 221 defaultHeight = DEFAULT_PAGE_HEIGHT;
66cd017c
VZ
222 }
223
f6bcfd97
BP
224 // use default size if none given and also make sure that the dialog is
225 // not less than the default size
226 m_height = m_sizePage.y == -1 ? defaultHeight : m_sizePage.y;
227 m_width = m_sizePage.x == -1 ? DEFAULT_PAGE_WIDTH : m_sizePage.x;
228 if ( m_height < defaultHeight )
229 m_height = defaultHeight;
230 if ( m_width < DEFAULT_PAGE_WIDTH )
231 m_width = DEFAULT_PAGE_WIDTH;
66cd017c
VZ
232
233 int x = X_MARGIN;
234 int y = m_y + m_height + BITMAP_Y_MARGIN;
74b31181
VZ
235
236#if wxUSE_STATLINE
66cd017c
VZ
237 (void)new wxStaticLine(this, -1, wxPoint(x, y),
238 wxSize(m_x + m_width - x, 2));
f6bcfd97 239#endif // wxUSE_STATLINE
74b31181 240
66cd017c
VZ
241 x = m_x + m_width - 3*sizeBtn.x - BUTTON_MARGIN;
242 y += SEPARATOR_LINE_MARGIN;
77436c4c
JS
243
244 if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
245 {
246 x -= sizeBtn.x;
247 x -= BUTTON_MARGIN ;
248
a8973b12 249 (void)new wxButton(this, wxID_HELP, _("&Help"), wxPoint(x, y), sizeBtn);
77436c4c
JS
250 x += sizeBtn.x;
251 x += BUTTON_MARGIN ;
252 }
253
f6bcfd97 254 m_btnPrev = new wxButton(this, wxID_BACKWARD, _("< &Back"), wxPoint(x, y), sizeBtn);
66cd017c
VZ
255
256 x += sizeBtn.x;
f6bcfd97 257 m_btnNext = new wxButton(this, wxID_FORWARD, _("&Next >"), wxPoint(x, y), sizeBtn);
66cd017c
VZ
258
259 x += sizeBtn.x + BUTTON_MARGIN;
77436c4c 260 (void)new wxButton(this, wxID_CANCEL, _("&Cancel"), wxPoint(x, y), sizeBtn);
66cd017c
VZ
261
262 // position and size the dialog
263 // ----------------------------
264
f6bcfd97
BP
265 SetClientSize(m_x + m_width + X_MARGIN,
266 m_y + m_height + BITMAP_Y_MARGIN +
267 SEPARATOR_LINE_MARGIN + sizeBtn.y + Y_MARGIN);
66cd017c 268
f6bcfd97 269 if ( m_posWizard == wxDefaultPosition )
66cd017c 270 {
91b4c08d 271 CentreOnScreen();
66cd017c
VZ
272 }
273}
274
f6bcfd97
BP
275void wxWizard::SetPageSize(const wxSize& size)
276{
277 // otherwise it will have no effect now as it's too late...
278 wxASSERT_MSG( !WasCreated(), _T("should be called before RunWizard()!") );
279
280 m_sizePage = size;
281}
282
3ee58334 283void wxWizard::FitToPage(const wxWizardPage *page)
c73b439f
VZ
284{
285 // otherwise it will have no effect now as it's too late...
286 wxASSERT_MSG( !WasCreated(), _T("should be called before RunWizard()!") );
287
288 wxSize sizeMax;
289 while ( page )
290 {
291 wxSize size = page->GetBestSize();
292
293 if ( size.x > sizeMax.x )
294 sizeMax.x = size.x;
295
296 if ( size.y > sizeMax.y )
297 sizeMax.y = size.y;
298
299 page = page->GetNext();
300 }
301
302 if ( sizeMax.x > m_sizePage.x )
303 m_sizePage.x = sizeMax.x;
304
305 if ( sizeMax.y > m_sizePage.y )
306 m_sizePage.y = sizeMax.y;
307}
308
74b31181 309bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
66cd017c 310{
223d09f6 311 wxASSERT_MSG( page != m_page, wxT("this is useless") );
66cd017c 312
74b31181
VZ
313 // we'll use this to decide whether we have to change the label of this
314 // button or not (initially the label is "Next")
315 bool btnLabelWasNext = TRUE;
66cd017c 316
7cc5041d
VZ
317 // Modified 10-20-2001 Robert Cavanaugh.
318 // Fixed bug for displaying a new bitmap
319 // in each *consecutive* page
f1df0927 320
7cc5041d
VZ
321 // flag to indicate if this page uses a new bitmap
322 bool bmpIsDefault = TRUE;
323
324 // use these labels to determine if we need to change the bitmap
325 // for this page
a3e8c656 326 wxBitmap bmpPrev, bmpCur;
7cc5041d
VZ
327
328 // check for previous page
74b31181 329 if ( m_page )
66cd017c 330 {
74b31181
VZ
331 // send the event to the old page
332 wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGING, GetId(), goingForward);
333 if ( m_page->GetEventHandler()->ProcessEvent(event) &&
334 !event.IsAllowed() )
335 {
336 // vetoed by the page
66cd017c 337 return FALSE;
74b31181 338 }
66cd017c 339
74b31181
VZ
340 m_page->Hide();
341
342 btnLabelWasNext = m_page->GetNext() != (wxWizardPage *)NULL;
7cc5041d
VZ
343
344 // Get the bitmap of the previous page (if it exists)
a3e8c656
VZ
345 if ( m_page->GetBitmap().Ok() )
346 {
347 bmpPrev = m_page->GetBitmap();
7cc5041d 348 }
dee5b92f 349 }
66cd017c 350
7cc5041d 351 // set the new page
66cd017c 352 m_page = page;
66cd017c 353
74b31181
VZ
354 // is this the end?
355 if ( !m_page )
66cd017c 356 {
74b31181
VZ
357 // terminate successfully
358 EndModal(wxID_OK);
74b31181
VZ
359 return TRUE;
360 }
66cd017c 361
74b31181
VZ
362 // position and show the new page
363 (void)m_page->TransferDataToWindow();
364 m_page->SetSize(m_x, m_y, m_width, m_height);
66cd017c 365
7cc5041d
VZ
366 // check if bitmap needs to be updated
367 // update default flag as well
a3e8c656 368 if ( m_page->GetBitmap().Ok() )
7cc5041d 369 {
a3e8c656 370 bmpCur = m_page->GetBitmap();
7cc5041d
VZ
371 bmpIsDefault = FALSE;
372 }
373
374 // change the bitmap if:
375 // 1) a default bitmap was selected in constructor
376 // 2) this page was constructed with a bitmap
377 // 3) this bitmap is not the previous bitmap
a3e8c656 378 if ( m_statbmp && (bmpCur != bmpPrev) )
f1df0927 379 {
cfd88569
VZ
380 wxBitmap bmp;
381 if ( bmpIsDefault )
382 bmp = m_bitmap;
383 else
384 bmp = m_page->GetBitmap();
385 m_statbmp->SetBitmap(bmp);
f1df0927
VZ
386 }
387
74b31181
VZ
388 // and update the buttons state
389 m_btnPrev->Enable(m_page->GetPrev() != (wxWizardPage *)NULL);
66cd017c 390
8f177c8e
VZ
391 bool hasNext = m_page->GetNext() != (wxWizardPage *)NULL;
392 if ( btnLabelWasNext != hasNext )
66cd017c 393 {
74b31181 394 // need to update
e9fa7581
OK
395 if (btnLabelWasNext)
396 m_btnNext->SetLabel(_("&Finish"));
397 else
398 m_btnNext->SetLabel(_("&Next >"));
66cd017c 399 }
74b31181 400 // nothing to do: the label was already correct
66cd017c 401
5bc28e84
VZ
402 // send the change event to the new page now
403 wxWizardEvent event(wxEVT_WIZARD_PAGE_CHANGED, GetId(), goingForward);
404 (void)m_page->GetEventHandler()->ProcessEvent(event);
405
406 // and finally show it
407 m_page->Show();
408 m_page->SetFocus();
409
74b31181 410 return TRUE;
66cd017c
VZ
411}
412
74b31181 413bool wxWizard::RunWizard(wxWizardPage *firstPage)
66cd017c 414{
223d09f6 415 wxCHECK_MSG( firstPage, FALSE, wxT("can't run empty wizard") );
66cd017c 416
f6bcfd97
BP
417 DoCreateControls();
418
66cd017c 419 // can't return FALSE here because there is no old page
74b31181 420 (void)ShowPage(firstPage, TRUE /* forward */);
66cd017c
VZ
421
422 return ShowModal() == wxID_OK;
423}
424
74b31181 425wxWizardPage *wxWizard::GetCurrentPage() const
66cd017c 426{
74b31181 427 return m_page;
66cd017c
VZ
428}
429
4fe5383d
VZ
430wxSize wxWizard::GetPageSize() const
431{
f6bcfd97
BP
432 // make sure that the controls are created because otherwise m_width and
433 // m_height would be both still -1
434 wxConstCast(this, wxWizard)->DoCreateControls();
435
4fe5383d
VZ
436 return wxSize(m_width, m_height);
437}
438
74b31181 439void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(event))
66cd017c 440{
74b31181
VZ
441 // this function probably can never be called when we don't have an active
442 // page, but a small extra check won't hurt
443 wxWindow *win = m_page ? (wxWindow *)m_page : (wxWindow *)this;
444
66cd017c 445 wxWizardEvent event(wxEVT_WIZARD_CANCEL, GetId());
74b31181 446 if ( !win->GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
66cd017c
VZ
447 {
448 // no objections - close the dialog
449 EndModal(wxID_CANCEL);
450 }
451 //else: request to Cancel ignored
452}
453
74b31181 454void wxWizard::OnBackOrNext(wxCommandEvent& event)
66cd017c
VZ
455{
456 wxASSERT_MSG( (event.GetEventObject() == m_btnNext) ||
457 (event.GetEventObject() == m_btnPrev),
223d09f6 458 wxT("unknown button") );
66cd017c 459
f6bcfd97
BP
460 // ask the current page first: notice that we do it before calling
461 // GetNext/Prev() because the data transfered from the controls of the page
462 // may change the value returned by these methods
463 if ( m_page && !m_page->TransferDataFromWindow() )
464 {
465 // the page data is incorrect, don't do anything
466 return;
467 }
468
74b31181 469 bool forward = event.GetEventObject() == m_btnNext;
66cd017c 470
74b31181
VZ
471 wxWizardPage *page;
472 if ( forward )
66cd017c 473 {
74b31181 474 page = m_page->GetNext();
66cd017c 475 }
74b31181 476 else // back
66cd017c 477 {
74b31181
VZ
478 page = m_page->GetPrev();
479
223d09f6 480 wxASSERT_MSG( page, wxT("\"<Back\" button should have been disabled") );
66cd017c 481 }
74b31181
VZ
482
483 // just pass to the new page (or may be not - but we don't care here)
484 (void)ShowPage(page, forward);
66cd017c
VZ
485}
486
f80bf901
VZ
487void wxWizard::OnHelp(wxCommandEvent& WXUNUSED(event))
488{
489 // this function probably can never be called when we don't have an active
490 // page, but a small extra check won't hurt
491 if(m_page != NULL)
492 {
493 // Create and send the help event to the specific page handler
494 // event data contains the active page so that context-sensitive
495 // help is possible
496 wxWizardEvent eventHelp(wxEVT_WIZARD_HELP, GetId(), TRUE, m_page);
497 (void)m_page->GetEventHandler()->ProcessEvent(eventHelp);
498 }
499}
500
91c68292
VZ
501void wxWizard::OnWizEvent(wxWizardEvent& event)
502{
503 // the dialogs have wxWS_EX_BLOCK_EVENTS style on by default but we want to
504 // propagate wxEVT_WIZARD_XXX to the parent (if any), so do it manually
505 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) )
506 {
507 // the event will be propagated anyhow
508 return;
509 }
510
511 wxWindow *parent = GetParent();
512
513 if ( !parent || !parent->GetEventHandler()->ProcessEvent(event) )
514 {
515 event.Skip();
516 }
517}
f80bf901 518
66cd017c
VZ
519// ----------------------------------------------------------------------------
520// our public interface
521// ----------------------------------------------------------------------------
522
74b31181
VZ
523/* static */
524wxWizard *wxWizardBase::Create(wxWindow *parent,
525 int id,
526 const wxString& title,
527 const wxBitmap& bitmap,
528 const wxPoint& pos,
f6bcfd97 529 const wxSize& WXUNUSED(size))
66cd017c 530{
f6bcfd97 531 return new wxWizard(parent, id, title, bitmap, pos);
66cd017c
VZ
532}
533
534// ----------------------------------------------------------------------------
535// wxWizardEvent
536// ----------------------------------------------------------------------------
537
f80bf901 538wxWizardEvent::wxWizardEvent(wxEventType type, int id, bool direction, wxWizardPage* page)
66cd017c
VZ
539 : wxNotifyEvent(type, id)
540{
f80bf901
VZ
541 // Modified 10-20-2001 Robert Cavanaugh
542 // add the active page to the event data
74b31181 543 m_direction = direction;
f80bf901 544 m_page = page;
66cd017c 545}
74b31181 546
1e6feb95 547#endif // wxUSE_WIZARDDLG