]>
Commit | Line | Data |
---|---|---|
66cd017c | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/wizard.h |
66cd017c VZ |
3 | // Purpose: wxWizard class: a GUI control presenting the user with a |
4 | // sequence of dialogs which allows to simply perform some task | |
5 | // Author: Vadim Zeitlin (partly based on work by Ron Kuris and Kevin B. | |
6 | // Smith) | |
a0a48a3f VZ |
7 | // Modified by: Robert Cavanaugh |
8 | // Added capability to use .WXR resource files in Wizard pages | |
9 | // Added wxWIZARD_HELP event | |
07f20d9a | 10 | // Robert Vazan (sizers) |
66cd017c | 11 | // Created: 15.08.99 |
66cd017c | 12 | // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> |
65571936 | 13 | // Licence: wxWindows licence |
66cd017c VZ |
14 | /////////////////////////////////////////////////////////////////////////////// |
15 | ||
16 | #ifndef _WX_WIZARD_H_ | |
17 | #define _WX_WIZARD_H_ | |
18 | ||
2ecf902b WS |
19 | #include "wx/defs.h" |
20 | ||
1e6feb95 VZ |
21 | #if wxUSE_WIZARDDLG |
22 | ||
b87654f3 | 23 | // ---------------------------------------------------------------------------- |
74b31181 | 24 | // headers and other simple declarations |
b87654f3 VZ |
25 | // ---------------------------------------------------------------------------- |
26 | ||
20ceebaa MW |
27 | #include "wx/dialog.h" // the base class |
28 | #include "wx/panel.h" // ditto | |
29 | #include "wx/event.h" // wxEVT_XXX constants | |
c5969a38 VS |
30 | #include "wx/bitmap.h" |
31 | ||
77436c4c JS |
32 | // Extended style to specify a help button |
33 | #define wxWIZARD_EX_HELPBUTTON 0x00000010 | |
34 | ||
3aa8e4ea JS |
35 | // Placement flags |
36 | #define wxWIZARD_VALIGN_TOP 0x01 | |
37 | #define wxWIZARD_VALIGN_CENTRE 0x02 | |
38 | #define wxWIZARD_VALIGN_BOTTOM 0x04 | |
39 | #define wxWIZARD_HALIGN_LEFT 0x08 | |
40 | #define wxWIZARD_HALIGN_CENTRE 0x10 | |
41 | #define wxWIZARD_HALIGN_RIGHT 0x20 | |
42 | #define wxWIZARD_TILE 0x40 | |
43 | ||
74b31181 | 44 | // forward declarations |
b5dbe15d | 45 | class WXDLLIMPEXP_FWD_ADV wxWizard; |
74b31181 VZ |
46 | |
47 | // ---------------------------------------------------------------------------- | |
48 | // wxWizardPage is one of the wizards screen: it must know what are the | |
49 | // following and preceding pages (which may be NULL for the first/last page). | |
50 | // | |
51 | // Other than GetNext/Prev() functions, wxWizardPage is just a panel and may be | |
52 | // used as such (i.e. controls may be placed directly on it &c). | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
12f190b0 | 55 | class WXDLLIMPEXP_ADV wxWizardPage : public wxPanel |
74b31181 VZ |
56 | { |
57 | public: | |
c7de4135 | 58 | wxWizardPage() { Init(); } |
c7de4135 | 59 | |
f1df0927 VZ |
60 | // ctor accepts an optional bitmap which will be used for this page instead |
61 | // of the default one for this wizard (should be of the same size). Notice | |
62 | // that no other parameters are needed because the wizard will resize and | |
74b31181 | 63 | // reposition the page anyhow |
a0a48a3f | 64 | wxWizardPage(wxWizard *parent, |
cf63f3d3 | 65 | const wxBitmap& bitmap = wxNullBitmap); |
c7de4135 VS |
66 | |
67 | bool Create(wxWizard *parent, | |
cf63f3d3 | 68 | const wxBitmap& bitmap = wxNullBitmap); |
74b31181 VZ |
69 | |
70 | // these functions are used by the wizard to show another page when the | |
71 | // user chooses "Back" or "Next" button | |
72 | virtual wxWizardPage *GetPrev() const = 0; | |
73 | virtual wxWizardPage *GetNext() const = 0; | |
74 | ||
f1df0927 VZ |
75 | // default GetBitmap() will just return m_bitmap which is ok in 99% of |
76 | // cases - override this method if you want to create the bitmap to be used | |
77 | // dynamically or to do something even more fancy. It's ok to return | |
78 | // wxNullBitmap from here - the default one will be used then. | |
636d266b | 79 | virtual wxBitmap GetBitmap() const { return m_bitmap; } |
f1df0927 | 80 | |
84006e65 | 81 | #if wxUSE_VALIDATORS |
25e6c061 VZ |
82 | // Override the base functions to allow a validator to be assigned to this page. |
83 | virtual bool TransferDataToWindow() | |
a3a28c50 | 84 | { |
25e6c061 VZ |
85 | return GetValidator() ? GetValidator()->TransferToWindow() |
86 | : wxPanel::TransferDataToWindow(); | |
a3a28c50 | 87 | } |
25e6c061 VZ |
88 | |
89 | virtual bool TransferDataFromWindow() | |
a3a28c50 | 90 | { |
25e6c061 VZ |
91 | return GetValidator() ? GetValidator()->TransferFromWindow() |
92 | : wxPanel::TransferDataFromWindow(); | |
a3a28c50 | 93 | } |
25e6c061 VZ |
94 | |
95 | virtual bool Validate() | |
a3a28c50 | 96 | { |
25e6c061 VZ |
97 | return GetValidator() ? GetValidator()->Validate(this) |
98 | : wxPanel::Validate(); | |
a3a28c50 | 99 | } |
25e6c061 | 100 | #endif // wxUSE_VALIDATORS |
a3a28c50 | 101 | |
f1df0927 | 102 | protected: |
750cefbc VZ |
103 | // common part of ctors: |
104 | void Init(); | |
105 | ||
636d266b | 106 | wxBitmap m_bitmap; |
f1df0927 | 107 | |
74b31181 | 108 | private: |
fc7a2a60 | 109 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxWizardPage) |
74b31181 VZ |
110 | }; |
111 | ||
112 | // ---------------------------------------------------------------------------- | |
113 | // wxWizardPageSimple just returns the pointers given to the ctor and is useful | |
114 | // to create a simple wizard where the order of pages never changes. | |
115 | // | |
b0ad146a | 116 | // OTOH, it is also possible to dynamically decide which page to return (i.e. |
74b31181 VZ |
117 | // depending on the user's choices) as the wizard sample shows - in order to do |
118 | // this, you must derive from wxWizardPage directly. | |
119 | // ---------------------------------------------------------------------------- | |
120 | ||
12f190b0 | 121 | class WXDLLIMPEXP_ADV wxWizardPageSimple : public wxWizardPage |
74b31181 VZ |
122 | { |
123 | public: | |
c7de4135 | 124 | wxWizardPageSimple() { Init(); } |
c7de4135 | 125 | |
74b31181 | 126 | // ctor takes the previous and next pages |
c7de4135 | 127 | wxWizardPageSimple(wxWizard *parent, |
d3b9f782 VZ |
128 | wxWizardPage *prev = NULL, |
129 | wxWizardPage *next = NULL, | |
cf63f3d3 | 130 | const wxBitmap& bitmap = wxNullBitmap) |
c7de4135 | 131 | { |
cf63f3d3 | 132 | Create(parent, prev, next, bitmap); |
c7de4135 VS |
133 | } |
134 | ||
135 | bool Create(wxWizard *parent = NULL, // let it be default ctor too | |
d3b9f782 VZ |
136 | wxWizardPage *prev = NULL, |
137 | wxWizardPage *next = NULL, | |
cf63f3d3 | 138 | const wxBitmap& bitmap = wxNullBitmap) |
74b31181 VZ |
139 | { |
140 | m_prev = prev; | |
141 | m_next = next; | |
cf63f3d3 | 142 | return wxWizardPage::Create(parent, bitmap); |
74b31181 VZ |
143 | } |
144 | ||
145 | // the pointers may be also set later - but before starting the wizard | |
146 | void SetPrev(wxWizardPage *prev) { m_prev = prev; } | |
147 | void SetNext(wxWizardPage *next) { m_next = next; } | |
148 | ||
2d363640 VZ |
149 | // Convenience functions to make the pages follow each other without having |
150 | // to call their SetPrev() or SetNext() explicitly. | |
151 | wxWizardPageSimple& Chain(wxWizardPageSimple* next) | |
152 | { | |
153 | SetNext(next); | |
154 | next->SetPrev(this); | |
155 | return *next; | |
156 | } | |
157 | ||
74b31181 VZ |
158 | static void Chain(wxWizardPageSimple *first, wxWizardPageSimple *second) |
159 | { | |
160 | wxCHECK_RET( first && second, | |
223d09f6 | 161 | wxT("NULL passed to wxWizardPageSimple::Chain") ); |
74b31181 VZ |
162 | |
163 | first->SetNext(second); | |
164 | second->SetPrev(first); | |
165 | } | |
166 | ||
167 | // base class pure virtuals | |
168 | virtual wxWizardPage *GetPrev() const; | |
169 | virtual wxWizardPage *GetNext() const; | |
170 | ||
171 | private: | |
750cefbc VZ |
172 | // common part of ctors: |
173 | void Init() | |
174 | { | |
175 | m_prev = m_next = NULL; | |
176 | } | |
177 | ||
74b31181 VZ |
178 | // pointers are private, the derived classes shouldn't mess with them - |
179 | // just derive from wxWizardPage directly to implement different behaviour | |
180 | wxWizardPage *m_prev, | |
181 | *m_next; | |
182 | ||
fc7a2a60 | 183 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxWizardPageSimple) |
74b31181 VZ |
184 | }; |
185 | ||
66cd017c VZ |
186 | // ---------------------------------------------------------------------------- |
187 | // wxWizard | |
188 | // ---------------------------------------------------------------------------- | |
189 | ||
12f190b0 | 190 | class WXDLLIMPEXP_ADV wxWizardBase : public wxDialog |
66cd017c VZ |
191 | { |
192 | public: | |
750cefbc VZ |
193 | /* |
194 | The derived class (i.e. the real wxWizard) has a ctor and Create() | |
195 | function taking the following arguments: | |
196 | ||
197 | wxWizard(wxWindow *parent, | |
cab1a605 | 198 | int id = wxID_ANY, |
750cefbc VZ |
199 | const wxString& title = wxEmptyString, |
200 | const wxBitmap& bitmap = wxNullBitmap, | |
07f20d9a VZ |
201 | const wxPoint& pos = wxDefaultPosition, |
202 | long style = wxDEFAULT_DIALOG_STYLE); | |
750cefbc | 203 | */ |
fc7a2a60 | 204 | wxWizardBase() { } |
66cd017c | 205 | |
cab1a605 WS |
206 | // executes the wizard starting from the given page, returns true if it was |
207 | // successfully finished, false if user cancelled it | |
74b31181 | 208 | virtual bool RunWizard(wxWizardPage *firstPage) = 0; |
66cd017c VZ |
209 | |
210 | // get the current page (NULL if RunWizard() isn't running) | |
74b31181 | 211 | virtual wxWizardPage *GetCurrentPage() const = 0; |
4fe5383d | 212 | |
f6bcfd97 BP |
213 | // set the min size which should be available for the pages: a |
214 | // wizard will take into account the size of the bitmap (if any) | |
215 | // itself and will never be less than some predefined fixed size | |
216 | virtual void SetPageSize(const wxSize& size) = 0; | |
217 | ||
07f20d9a | 218 | // get the size available for the page |
4fe5383d | 219 | virtual wxSize GetPageSize() const = 0; |
c73b439f VZ |
220 | |
221 | // set the best size for the wizard, i.e. make it big enough to contain all | |
222 | // of the pages starting from the given one | |
223 | // | |
224 | // this function may be called several times and possible with different | |
225 | // pages in which case it will only increase the page size if needed (this | |
226 | // may be useful if not all pages are accessible from the first one by | |
227 | // default) | |
3ee58334 | 228 | virtual void FitToPage(const wxWizardPage *firstPage) = 0; |
750cefbc | 229 | |
07f20d9a VZ |
230 | // Adding pages to page area sizer enlarges wizard |
231 | virtual wxSizer *GetPageAreaSizer() const = 0; | |
cab1a605 | 232 | |
07f20d9a VZ |
233 | // Set border around page area. Default is 0 if you add at least one |
234 | // page to GetPageAreaSizer and 5 if you don't. | |
235 | virtual void SetBorder(int border) = 0; | |
cab1a605 | 236 | |
2b5f62a0 VZ |
237 | // the methods below may be overridden by the derived classes to provide |
238 | // custom logic for determining the pages order | |
239 | ||
240 | virtual bool HasNextPage(wxWizardPage *page) | |
241 | { return page->GetNext() != NULL; } | |
242 | ||
243 | virtual bool HasPrevPage(wxWizardPage *page) | |
244 | { return page->GetPrev() != NULL; } | |
fc7a2a60 | 245 | |
a3a28c50 | 246 | /// Override these functions to stop InitDialog from calling TransferDataToWindow |
cab1a605 | 247 | /// for _all_ pages when the wizard starts. Instead 'ShowPage' will call |
a3a28c50 JS |
248 | /// TransferDataToWindow for the first page only. |
249 | bool TransferDataToWindow() { return true; } | |
250 | bool TransferDataFromWindow() { return true; } | |
251 | bool Validate() { return true; } | |
252 | ||
fc7a2a60 | 253 | private: |
c0c133e1 | 254 | wxDECLARE_NO_COPY_CLASS(wxWizardBase); |
66cd017c VZ |
255 | }; |
256 | ||
74b31181 VZ |
257 | // include the real class declaration |
258 | #include "wx/generic/wizard.h" | |
259 | ||
66cd017c | 260 | // ---------------------------------------------------------------------------- |
74b31181 VZ |
261 | // wxWizardEvent class represents an event generated by the wizard: this event |
262 | // is first sent to the page itself and, if not processed there, goes up the | |
263 | // window hierarchy as usual | |
66cd017c VZ |
264 | // ---------------------------------------------------------------------------- |
265 | ||
12f190b0 | 266 | class WXDLLIMPEXP_ADV wxWizardEvent : public wxNotifyEvent |
66cd017c VZ |
267 | { |
268 | public: | |
74b31181 | 269 | wxWizardEvent(wxEventType type = wxEVT_NULL, |
cab1a605 WS |
270 | int id = wxID_ANY, |
271 | bool direction = true, | |
f80bf901 | 272 | wxWizardPage* page = NULL); |
66cd017c | 273 | |
cab1a605 WS |
274 | // for EVT_WIZARD_PAGE_CHANGING, return true if we're going forward or |
275 | // false otherwise and for EVT_WIZARD_PAGE_CHANGED return true if we came | |
276 | // from the previous page and false if we returned from the next one | |
74b31181 VZ |
277 | // (this function doesn't make sense for CANCEL events) |
278 | bool GetDirection() const { return m_direction; } | |
66cd017c | 279 | |
f80bf901 VZ |
280 | wxWizardPage* GetPage() const { return m_page; } |
281 | ||
d0960f6d FM |
282 | virtual wxEvent *Clone() const { return new wxWizardEvent(*this); } |
283 | ||
66cd017c | 284 | private: |
74b31181 | 285 | bool m_direction; |
f80bf901 | 286 | wxWizardPage* m_page; |
66cd017c | 287 | |
d0960f6d | 288 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWizardEvent) |
66cd017c VZ |
289 | }; |
290 | ||
291 | // ---------------------------------------------------------------------------- | |
292 | // macros for handling wxWizardEvents | |
293 | // ---------------------------------------------------------------------------- | |
294 | ||
9b11752c VZ |
295 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_PAGE_CHANGED, wxWizardEvent ); |
296 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_PAGE_CHANGING, wxWizardEvent ); | |
297 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_CANCEL, wxWizardEvent ); | |
298 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_HELP, wxWizardEvent ); | |
299 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_FINISHED, wxWizardEvent ); | |
deeb0a89 | 300 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_PAGE_SHOWN, wxWizardEvent ); |
c9f18835 | 301 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_WIZARD_BEFORE_PAGE_CHANGED, wxWizardEvent ); |
2e4df4bf | 302 | |
66cd017c VZ |
303 | typedef void (wxEvtHandler::*wxWizardEventFunction)(wxWizardEvent&); |
304 | ||
7fa03f04 | 305 | #define wxWizardEventHandler(func) \ |
3c778901 | 306 | wxEVENT_HANDLER_CAST(wxWizardEventFunction, func) |
7fa03f04 VZ |
307 | |
308 | #define wx__DECLARE_WIZARDEVT(evt, id, fn) \ | |
309 | wx__DECLARE_EVT1(wxEVT_WIZARD_ ## evt, id, wxWizardEventHandler(fn)) | |
310 | ||
74b31181 | 311 | // notifies that the page has just been changed (can't be vetoed) |
7fa03f04 | 312 | #define EVT_WIZARD_PAGE_CHANGED(id, fn) wx__DECLARE_WIZARDEVT(PAGE_CHANGED, id, fn) |
66cd017c VZ |
313 | |
314 | // the user pressed "<Back" or "Next>" button and the page is going to be | |
315 | // changed - unless the event handler vetoes the event | |
7fa03f04 | 316 | #define EVT_WIZARD_PAGE_CHANGING(id, fn) wx__DECLARE_WIZARDEVT(PAGE_CHANGING, id, fn) |
66cd017c | 317 | |
c9f18835 JS |
318 | // Called before GetNext/GetPrev is called, so that the handler can change state that will be |
319 | // used when GetNext/GetPrev is called. PAGE_CHANGING is called too late to influence GetNext/GetPrev. | |
320 | #define EVT_WIZARD_BEFORE_PAGE_CHANGED(id, fn) wx__DECLARE_WIZARDEVT(BEFORE_PAGE_CHANGED, id, fn) | |
321 | ||
66cd017c VZ |
322 | // the user pressed "Cancel" button and the wizard is going to be dismissed - |
323 | // unless the event handler vetoes the event | |
7fa03f04 | 324 | #define EVT_WIZARD_CANCEL(id, fn) wx__DECLARE_WIZARDEVT(CANCEL, id, fn) |
66cd017c | 325 | |
1d30a0a1 | 326 | // the user pressed "Finish" button and the wizard is going to be dismissed - |
7fa03f04 | 327 | #define EVT_WIZARD_FINISHED(id, fn) wx__DECLARE_WIZARDEVT(FINISHED, id, fn) |
1d30a0a1 | 328 | |
cab1a605 | 329 | // the user pressed "Help" button |
7fa03f04 | 330 | #define EVT_WIZARD_HELP(id, fn) wx__DECLARE_WIZARDEVT(HELP, id, fn) |
f80bf901 | 331 | |
deeb0a89 JS |
332 | // the page was just shown and laid out |
333 | #define EVT_WIZARD_PAGE_SHOWN(id, fn) wx__DECLARE_WIZARDEVT(PAGE_SHOWN, id, fn) | |
334 | ||
1e6feb95 VZ |
335 | #endif // wxUSE_WIZARDDLG |
336 | ||
66cd017c | 337 | #endif // _WX_WIZARD_H_ |