]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/wizard.i
Allow for Cmd-click on wxMac
[wxWidgets.git] / wxPython / src / wizard.i
CommitLineData
af83019e
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: wizard.i
3// Purpose: Classes for wxWizard and etc.
4//
5// Author: Robin Dunn
6//
7// Created: 16-Aug-2002
8// RCS-ID: $Id$
9// Copyright: (c) 2002 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
c8fac2b6
RD
13%define DOCSTRING
14"`Wizard` is a dialog class that guides the user through a sequence of steps,
15or pages."
16%enddef
b2eb030f
RD
17
18%module(package="wx", docstring=DOCSTRING) wizard
af83019e
RD
19
20%{
d14a1e28
RD
21#include "wx/wxPython/wxPython.h"
22#include "wx/wxPython/pyclasses.h"
23#include "wx/wxPython/printfw.h"
24
af83019e 25#include <wx/wizard.h>
d14a1e28 26
af83019e
RD
27%}
28
29//----------------------------------------------------------------------
30
af83019e 31%import windows.i
54f9ee45 32%pythoncode { wx = _core }
99109c0f 33%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
af83019e 34
d14a1e28 35%include _wizard_rename.i
af83019e 36
b2dc1044
RD
37MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
38
af83019e
RD
39//----------------------------------------------------------------------
40
41enum {
42 wxWIZARD_EX_HELPBUTTON,
af83019e
RD
43};
44
d14a1e28
RD
45%constant wxEventType wxEVT_WIZARD_PAGE_CHANGED;
46%constant wxEventType wxEVT_WIZARD_PAGE_CHANGING;
47%constant wxEventType wxEVT_WIZARD_CANCEL;
48%constant wxEventType wxEVT_WIZARD_HELP;
49%constant wxEventType wxEVT_WIZARD_FINISHED;
af83019e 50
af83019e 51
af83019e 52
d14a1e28
RD
53%pythoncode {
54EVT_WIZARD_PAGE_CHANGED = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED, 1)
55EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING, 1)
56EVT_WIZARD_CANCEL = wx.PyEventBinder( wxEVT_WIZARD_CANCEL, 1)
57EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP, 1)
58EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED, 1)
59}
af83019e
RD
60
61//----------------------------------------------------------------------
62
63class wxWizardEvent : public wxNotifyEvent
64{
65public:
66 wxWizardEvent(wxEventType type = wxEVT_NULL,
67 int id = -1,
dd9f7fea 68 bool direction = True,
af83019e
RD
69 wxWizardPage* page = NULL);
70
dd9f7fea
RD
71 // for EVT_WIZARD_PAGE_CHANGING, return True if we're going forward or
72 // False otherwise and for EVT_WIZARD_PAGE_CHANGED return True if we came
73 // from the previous page and False if we returned from the next one
af83019e
RD
74 // (this function doesn't make sense for CANCEL events)
75 bool GetDirection() const { return m_direction; }
76
77 wxWizardPage* GetPage() const { return m_page; }
78};
79
80
81//----------------------------------------------------------------------
82
83// wxWizardPage is one of the wizards screen: it must know what are the
84// following and preceding pages (which may be NULL for the first/last page).
85//
86// Other than GetNext/Prev() functions, wxWizardPage is just a panel and may be
87// used as such (i.e. controls may be placed directly on it &c).
ab1f7d2a 88MustHaveApp(wxWizardPage);
af83019e
RD
89class wxWizardPage : public wxPanel
90{
91public:
92// // ctor accepts an optional bitmap which will be used for this page instead
93// // of the default one for this wizard (should be of the same size). Notice
94// // that no other parameters are needed because the wizard will resize and
95// // reposition the page anyhow
96// wxWizardPage(wxWizard *parent,
97// const wxBitmap& bitmap = wxNullBitmap,
98// const char* resource = NULL);
d14a1e28 99// %name(PreWizardPage)wxWizardPage();
af83019e 100
d14a1e28 101 %extend {
dd4a4b90
RD
102 bool Create(wxWizard *parent,
103 const wxBitmap& bitmap = wxNullBitmap,
104 const wxString& resource = wxPyEmptyString) {
105 wxChar* res = NULL;
106 if (resource.Length())
107 res = (wxChar*)resource.c_str();
108 return self->Create(parent, bitmap, res);
109 }
110 }
111
af83019e 112
af83019e
RD
113 // these functions are used by the wizard to show another page when the
114 // user chooses "Back" or "Next" button
115 virtual wxWizardPage *GetPrev() const;
116 virtual wxWizardPage *GetNext() const;
117
118 // default GetBitmap() will just return m_bitmap which is ok in 99% of
119 // cases - override this method if you want to create the bitmap to be used
120 // dynamically or to do something even more fancy. It's ok to return
121 // wxNullBitmap from here - the default one will be used then.
122 virtual wxBitmap GetBitmap() const;
123};
124
125
126
127%{ // C++ Version of a Python aware class
128class wxPyWizardPage : public wxWizardPage {
129 DECLARE_ABSTRACT_CLASS(wxPyWizardPage);
130public:
131 wxPyWizardPage() : wxWizardPage() {}
132 wxPyWizardPage(wxWizard *parent,
133 const wxBitmap& bitmap = wxNullBitmap,
134 const wxChar* resource = NULL)
135 : wxWizardPage(parent, bitmap, resource) {}
136
137 DEC_PYCALLBACK_WIZPG__pure(GetPrev);
138 DEC_PYCALLBACK_WIZPG__pure(GetNext);
139 DEC_PYCALLBACK_BITMAP__pure(GetBitmap);
140
141 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow);
142 DEC_PYCALLBACK_VOID_INT5(DoSetSize);
143 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize);
144 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize);
145
146 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize);
147 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize);
148 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition);
149
150 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize);
151 DEC_PYCALLBACK_SIZE_const(DoGetBestSize);
152
153 DEC_PYCALLBACK__(InitDialog);
154 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow);
155 DEC_PYCALLBACK_BOOL_(TransferDataToWindow);
156 DEC_PYCALLBACK_BOOL_(Validate);
157
158 DEC_PYCALLBACK_BOOL_const(AcceptsFocus);
159 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard);
160 DEC_PYCALLBACK_SIZE_const(GetMaxSize);
161
162 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild);
163 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild);
164
165 PYPRIVATE;
166};
167
168
169IMPLEMENT_ABSTRACT_CLASS(wxPyWizardPage, wxWizardPage);
170
171IMP_PYCALLBACK_WIZPG__pure(wxPyWizardPage, wxWizardPage, GetPrev);
172IMP_PYCALLBACK_WIZPG__pure(wxPyWizardPage, wxWizardPage, GetNext);
173IMP_PYCALLBACK_BITMAP__pure(wxPyWizardPage, wxWizardPage, GetBitmap);
174
175IMP_PYCALLBACK_VOID_INT4(wxPyWizardPage, wxWizardPage, DoMoveWindow);
176IMP_PYCALLBACK_VOID_INT5(wxPyWizardPage, wxWizardPage, DoSetSize);
177IMP_PYCALLBACK_VOID_INTINT(wxPyWizardPage, wxWizardPage, DoSetClientSize);
178IMP_PYCALLBACK_VOID_INTINT(wxPyWizardPage, wxWizardPage, DoSetVirtualSize);
179
180IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetSize);
181IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetClientSize);
182IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWizardPage, wxWizardPage, DoGetPosition);
183
184IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, DoGetVirtualSize);
185IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, DoGetBestSize);
186
187IMP_PYCALLBACK__(wxPyWizardPage, wxWizardPage, InitDialog);
188IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, TransferDataFromWindow);
189IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, TransferDataToWindow);
190IMP_PYCALLBACK_BOOL_(wxPyWizardPage, wxWizardPage, Validate);
191
192IMP_PYCALLBACK_BOOL_const(wxPyWizardPage, wxWizardPage, AcceptsFocus);
193IMP_PYCALLBACK_BOOL_const(wxPyWizardPage, wxWizardPage, AcceptsFocusFromKeyboard);
194IMP_PYCALLBACK_SIZE_const(wxPyWizardPage, wxWizardPage, GetMaxSize);
195
196IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWizardPage, wxWizardPage, AddChild);
197IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWizardPage, wxWizardPage, RemoveChild);
198
199%}
200
201
202
ab1f7d2a
RD
203MustHaveApp(wxPyWizardPage);
204
af83019e
RD
205class wxPyWizardPage : public wxWizardPage {
206public:
d14a1e28 207
2b9048c5
RD
208 %pythonAppend wxPyWizardPage "self._setCallbackInfo(self, PyWizardPage);self._setOORInfo(self)"
209 %pythonAppend wxPyWizardPage() ""
d14a1e28 210
af83019e
RD
211 // ctor accepts an optional bitmap which will be used for this page instead
212 // of the default one for this wizard (should be of the same size). Notice
213 // that no other parameters are needed because the wizard will resize and
214 // reposition the page anyhow
d14a1e28 215 %extend {
dd4a4b90
RD
216 wxPyWizardPage(wxWizard *parent,
217 const wxBitmap* bitmap = &wxNullBitmap,
218 const wxString* resource = &wxPyEmptyString) {
219 wxChar* res = NULL;
220 if (resource->Length())
221 res = (wxChar*)resource->c_str();
222 return new wxPyWizardPage(parent, *bitmap, res);
223 }
224 }
225
d14a1e28 226 %name(PrePyWizardPage)wxPyWizardPage();
af83019e 227
d14a1e28 228 %extend {
dd4a4b90
RD
229 bool Create(wxWizard *parent,
230 const wxBitmap& bitmap = wxNullBitmap,
231 const wxString& resource = wxPyEmptyString) {
232 wxChar* res = NULL;
233 if (resource.Length())
234 res = (wxChar*)resource.c_str();
235 return self->Create(parent, bitmap, res);
236 }
237 }
af83019e
RD
238
239 void _setCallbackInfo(PyObject* self, PyObject* _class);
af83019e
RD
240
241 void base_DoMoveWindow(int x, int y, int width, int height);
242 void base_DoSetSize(int x, int y, int width, int height,
243 int sizeFlags = wxSIZE_AUTO);
244 void base_DoSetClientSize(int width, int height);
245 void base_DoSetVirtualSize( int x, int y );
246
322913ce
RD
247 DocDeclA(
248 void, base_DoGetSize( int *OUTPUT, int *OUTPUT ) const,
249 "base_DoGetSize() -> (width, height)");
250 DocDeclA(
251 void, base_DoGetClientSize( int *OUTPUT, int *OUTPUT ) const,
252 "base_DoGetClientSize() -> (width, height)");
253 DocDeclA(
254 void, base_DoGetPosition( int *OUTPUT, int *OUTPUT ) const,
255 "base_DoGetPosition() -> (x,y)");
af83019e
RD
256
257 wxSize base_DoGetVirtualSize() const;
258 wxSize base_DoGetBestSize() const;
259
260 void base_InitDialog();
261 bool base_TransferDataToWindow();
262 bool base_TransferDataFromWindow();
263 bool base_Validate();
264
265 bool base_AcceptsFocus() const;
266 bool base_AcceptsFocusFromKeyboard() const;
267 wxSize base_GetMaxSize() const;
268
269 void base_AddChild(wxWindow* child);
270 void base_RemoveChild(wxWindow* child);
271};
272
273//----------------------------------------------------------------------
274
275
276// wxWizardPageSimple just returns the pointers given to the ctor and is useful
277// to create a simple wizard where the order of pages never changes.
278//
279// OTOH, it is also possible to dynamicly decide which page to return (i.e.
280// depending on the user's choices) as the wizard sample shows - in order to do
281// this, you must derive from wxWizardPage directly.
ab1f7d2a 282MustHaveApp(wxWizardPageSimple);
af83019e
RD
283class wxWizardPageSimple : public wxWizardPage
284{
285public:
d14a1e28 286
2b9048c5
RD
287 %pythonAppend wxWizardPageSimple "self._setOORInfo(self)"
288 %pythonAppend wxWizardPageSimple() ""
d14a1e28 289
af83019e
RD
290 // ctor takes the previous and next pages
291 wxWizardPageSimple(wxWizard *parent,
292 wxWizardPage *prev = NULL,
293 wxWizardPage *next = NULL,
294 const wxBitmap& bitmap = wxNullBitmap,
295 const wxChar* resource = NULL);
d14a1e28 296 %name(PreWizardPageSimple)wxWizardPageSimple();
af83019e
RD
297
298 bool Create(wxWizard *parent = NULL,
299 wxWizardPage *prev = NULL,
300 wxWizardPage *next = NULL,
301 const wxBitmap& bitmap = wxNullBitmap,
302 const wxChar* resource = NULL);
303
af83019e
RD
304 // the pointers may be also set later - but before starting the wizard
305 void SetPrev(wxWizardPage *prev);
306 void SetNext(wxWizardPage *next);
307
308 // a convenience function to make the pages follow each other
309 static void Chain(wxWizardPageSimple *first, wxWizardPageSimple *second);
310};
311
312
313//----------------------------------------------------------------------
314
ab1f7d2a
RD
315MustHaveApp(wxWizard);
316
af83019e
RD
317class wxWizard : public wxDialog
318{
319public:
2b9048c5
RD
320 %pythonAppend wxWizard "self._setOORInfo(self)"
321 %pythonAppend wxWizard() ""
d14a1e28 322
af83019e
RD
323 // ctor
324 wxWizard(wxWindow *parent,
325 int id = -1,
b2dc1044 326 const wxString& title = wxPyEmptyString,
af83019e 327 const wxBitmap& bitmap = wxNullBitmap,
3ef86e32
RD
328 const wxPoint& pos = wxDefaultPosition,
329 long style = wxDEFAULT_DIALOG_STYLE);
d14a1e28 330 %name(PreWizard)wxWizard();
af83019e
RD
331
332 bool Create(wxWindow *parent,
333 int id = -1,
b2dc1044 334 const wxString& title = wxPyEmptyString,
af83019e
RD
335 const wxBitmap& bitmap = wxNullBitmap,
336 const wxPoint& pos = wxDefaultPosition);
337
338 void Init();
339
340
dd9f7fea
RD
341 // executes the wizard starting from the given page, returns True if it was
342 // successfully finished, False if user cancelled it
af83019e
RD
343 virtual bool RunWizard(wxWizardPage *firstPage);
344
345 // get the current page (NULL if RunWizard() isn't running)
346 virtual wxWizardPage *GetCurrentPage() const;
347
348 // set the min size which should be available for the pages: a
349 // wizard will take into account the size of the bitmap (if any)
350 // itself and will never be less than some predefined fixed size
351 virtual void SetPageSize(const wxSize& size);
352
353 // get the size available for the page: the wizards are not resizeable, so
354 // this size doesn't change
355 virtual wxSize GetPageSize() const;
356
357 // set the best size for the wizard, i.e. make it big enough to contain all
358 // of the pages starting from the given one
359 //
360 // this function may be called several times and possible with different
361 // pages in which case it will only increase the page size if needed (this
362 // may be useful if not all pages are accessible from the first one by
363 // default)
364 virtual void FitToPage(const wxWizardPage *firstPage);
365
3ef86e32
RD
366 // Adding pages to page area sizer enlarges wizard
367 virtual wxSizer *GetPageAreaSizer() const;
368
369 // Set border around page area. Default is 0 if you add at least one
370 // page to GetPageAreaSizer and 5 if you don't.
371 virtual void SetBorder(int border);
372
af83019e
RD
373 // is the wizard running?
374 bool IsRunning() const { return m_page != NULL; }
375
376 // show the prev/next page, but call TransferDataFromWindow on the current
dd9f7fea
RD
377 // page first and return False without changing the page if
378 // TransferDataFromWindow() returns False - otherwise, returns True
379 bool ShowPage(wxWizardPage *page, bool goingForward = True);
1e4a197e
RD
380
381 bool HasNextPage(wxWizardPage* page);
382 bool HasPrevPage(wxWizardPage* page);
af83019e
RD
383};
384
385
386//----------------------------------------------------------------------
85260f24
RD
387
388%init %{
85260f24
RD
389%}
390
af83019e 391//---------------------------------------------------------------------------