]>
Commit | Line | Data |
---|---|---|
7bf85405 | 1 | ///////////////////////////////////////////////////////////////////////////// |
d14a1e28 RD |
2 | // Name: _cmndlgs.i |
3 | // Purpose: SWIG interface for the "Common Dialog" classes | |
7bf85405 RD |
4 | // |
5 | // Author: Robin Dunn | |
6 | // | |
d14a1e28 | 7 | // Created: 25-July-1998 |
7bf85405 | 8 | // RCS-ID: $Id$ |
d14a1e28 | 9 | // Copyright: (c) 2003 by Total Control Software |
7bf85405 RD |
10 | // Licence: wxWindows license |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
d14a1e28 | 13 | // Not a %module |
7bf85405 | 14 | |
7bf85405 | 15 | |
d14a1e28 RD |
16 | //--------------------------------------------------------------------------- |
17 | %newgroup | |
7bf85405 | 18 | |
b2dc1044 RD |
19 | MAKE_CONST_WXSTRING(FileSelectorPromptStr); |
20 | MAKE_CONST_WXSTRING(DirSelectorPromptStr); | |
21 | MAKE_CONST_WXSTRING(DirDialogNameStr); | |
22 | MAKE_CONST_WXSTRING(FileSelectorDefaultWildcardStr); | |
23 | MAKE_CONST_WXSTRING(GetTextFromUserPromptStr); | |
24 | MAKE_CONST_WXSTRING(MessageBoxCaptionStr); | |
137b5242 | 25 | |
d14a1e28 RD |
26 | //--------------------------------------------------------------------------- |
27 | ||
137b5242 | 28 | |
fcafa8a9 RD |
29 | DocStr(wxColourData, |
30 | "This class holds a variety of information related to colour dialogs."); | |
31 | ||
9416aa89 | 32 | class wxColourData : public wxObject { |
7bf85405 | 33 | public: |
fcafa8a9 RD |
34 | DocCtorStr( |
35 | wxColourData(), | |
36 | "Constructor, sets default values."); | |
37 | ||
7bf85405 RD |
38 | ~wxColourData(); |
39 | ||
fcafa8a9 RD |
40 | |
41 | DocDeclStr( | |
42 | bool , GetChooseFull(), | |
43 | "Under Windows, determines whether the Windows colour dialog will display\n" | |
44 | "the full dialog with custom colour selection controls. Has no meaning\n" | |
45 | "under other platforms. The default value is true."); | |
46 | ||
47 | DocDeclStr( | |
48 | wxColour , GetColour(), | |
49 | "Gets the colour (pre)selected by the dialog."); | |
50 | ||
51 | DocDeclStr( | |
52 | wxColour , GetCustomColour(int i), | |
53 | "Gets the i'th custom colour associated with the colour dialog. i should\n" | |
54 | "be an integer between 0 and 15. The default custom colours are all white."); | |
55 | ||
56 | DocDeclStr( | |
57 | void , SetChooseFull(int flag), | |
58 | "Under Windows, tells the Windows colour dialog to display the full dialog\n" | |
59 | "with custom colour selection controls. Under other platforms, has no effect.\n" | |
60 | "The default value is true."); | |
61 | ||
62 | DocDeclStr( | |
63 | void , SetColour(const wxColour& colour), | |
64 | "Sets the default colour for the colour dialog. The default colour is black."); | |
65 | ||
66 | DocDeclStr( | |
67 | void , SetCustomColour(int i, const wxColour& colour), | |
68 | "Sets the i'th custom colour for the colour dialog. i should be an integer\n" | |
69 | "between 0 and 15. The default custom colours are all white."); | |
70 | ||
7bf85405 RD |
71 | }; |
72 | ||
73 | ||
fcafa8a9 RD |
74 | DocStr(wxColourDialog, |
75 | "This class represents the colour chooser dialog."); | |
76 | ||
7bf85405 RD |
77 | class wxColourDialog : public wxDialog { |
78 | public: | |
2b9048c5 | 79 | %pythonAppend wxColourDialog "self._setOORInfo(self)" |
7bf85405 | 80 | |
fcafa8a9 RD |
81 | DocCtorStr( |
82 | wxColourDialog(wxWindow* parent, wxColourData* data = NULL), | |
83 | "Constructor. Pass a parent window, and optionally a ColourData, which\n" | |
84 | "will be copied to the colour dialog's internal ColourData instance."); | |
0122b7e3 | 85 | |
fcafa8a9 RD |
86 | DocDeclStr( |
87 | wxColourData& , GetColourData(), | |
88 | "Returns a reference to the ColourData used by the dialog."); | |
7bf85405 RD |
89 | }; |
90 | ||
91 | ||
d14a1e28 | 92 | //-------------------------------------------------------------------------------- |
7bf85405 | 93 | |
fcafa8a9 RD |
94 | |
95 | DocStr(wxDirDialog, | |
96 | "This class represents the directory chooser dialog."); | |
97 | ||
98 | RefDoc(wxDirDialog, " | |
99 | Styles | |
100 | wxDD_NEW_DIR_BUTTON Add \"Create new directory\" button and allow | |
101 | directory names to be editable. On Windows the new | |
102 | directory button is only available with recent | |
103 | versions of the common dialogs."); | |
104 | ||
7bf85405 RD |
105 | class wxDirDialog : public wxDialog { |
106 | public: | |
2b9048c5 | 107 | %pythonAppend wxDirDialog "self._setOORInfo(self)" |
d14a1e28 | 108 | |
fcafa8a9 RD |
109 | DocCtorStr( |
110 | wxDirDialog(wxWindow* parent, | |
111 | const wxString& message = wxPyDirSelectorPromptStr, | |
112 | const wxString& defaultPath = wxPyEmptyString, | |
113 | long style = 0, | |
114 | const wxPoint& pos = wxDefaultPosition, | |
115 | const wxSize& size = wxDefaultSize, | |
116 | const wxString& name = wxPyDirDialogNameStr), | |
117 | "Constructor. Use ShowModal method to show the dialog."); | |
118 | ||
119 | ||
120 | DocDeclStr( | |
121 | wxString , GetPath(), | |
122 | "Returns the default or user-selected path."); | |
123 | ||
124 | DocDeclStr( | |
125 | wxString , GetMessage(), | |
126 | "Returns the message that will be displayed on the dialog."); | |
127 | ||
128 | DocDeclStr( | |
129 | long , GetStyle(), | |
130 | "Returns the dialog style."); | |
131 | ||
132 | DocDeclStr( | |
133 | void , SetMessage(const wxString& message), | |
134 | "Sets the message that will be displayed on the dialog."); | |
135 | ||
136 | DocDeclStr( | |
137 | void , SetPath(const wxString& path), | |
138 | "Sets the default path."); | |
139 | ||
7bf85405 RD |
140 | }; |
141 | ||
68320e40 | 142 | |
d14a1e28 | 143 | //--------------------------------------------------------------------------- |
7bf85405 | 144 | |
fcafa8a9 RD |
145 | DocStr(wxFileDialog, |
146 | "This class represents the file chooser dialog."); | |
147 | ||
148 | RefDoc(wxFileDialog, " | |
149 | In Windows, this is the common file selector dialog. In X, this is a file | |
150 | selector box with somewhat less functionality. The path and filename are | |
151 | distinct elements of a full file pathname. If path is \"\", the current | |
152 | directory will be used. If filename is \"\", no default filename will be | |
153 | supplied. The wildcard determines what files are displayed in the file | |
154 | selector, and file extension supplies a type extension for the required | |
155 | filename. | |
156 | ||
157 | Both the X and Windows versions implement a wildcard filter. Typing a filename | |
158 | containing wildcards (*, ?) in the filename text item, and clicking on Ok, | |
159 | will result in only those files matching the pattern being displayed. The | |
160 | wildcard may be a specification for multiple types of file with a description | |
161 | for each, such as: | |
162 | ||
163 | \"BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif\" | |
164 | ||
165 | Styles | |
166 | wx.OPEN This is an open dialog. | |
167 | ||
168 | wx.SAVE This is a save dialog. | |
169 | ||
170 | wx.HIDE_READONLY For open dialog only: hide the checkbox allowing to | |
171 | open the file in read-only mode. | |
172 | ||
173 | wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation if a | |
174 | file will be overwritten. | |
175 | ||
176 | wx.MULTIPLE For open dialog only: allows selecting multiple files. | |
177 | ||
178 | wx.CHANGE_DIR Change the current working directory to the directory | |
179 | where the file(s) chosen by the user are. | |
180 | "); | |
181 | ||
182 | ||
183 | ||
7bf85405 RD |
184 | class wxFileDialog : public wxDialog { |
185 | public: | |
2b9048c5 | 186 | %pythonAppend wxFileDialog "self._setOORInfo(self)" |
fcafa8a9 RD |
187 | |
188 | DocCtorStr( | |
189 | wxFileDialog(wxWindow* parent, | |
190 | const wxString& message = wxPyFileSelectorPromptStr, | |
191 | const wxString& defaultDir = wxPyEmptyString, | |
192 | const wxString& defaultFile = wxPyEmptyString, | |
193 | const wxString& wildcard = wxPyFileSelectorDefaultWildcardStr, | |
194 | long style = 0, | |
195 | const wxPoint& pos = wxDefaultPosition), | |
196 | "Constructor. Use ShowModal method to show the dialog."); | |
197 | ||
198 | ||
199 | DocDeclStr( | |
200 | void , SetMessage(const wxString& message), | |
201 | "Sets the message that will be displayed on the dialog."); | |
202 | ||
203 | DocDeclStr( | |
204 | void , SetPath(const wxString& path), | |
205 | "Sets the path (the combined directory and filename that will\n" | |
206 | "be returned when the dialog is dismissed)."); | |
207 | ||
208 | DocDeclStr( | |
209 | void , SetDirectory(const wxString& dir), | |
210 | "Sets the default directory."); | |
211 | ||
212 | DocDeclStr( | |
213 | void , SetFilename(const wxString& name), | |
214 | "Sets the default filename."); | |
215 | ||
216 | DocDeclStr( | |
217 | void , SetWildcard(const wxString& wildCard), | |
218 | "Sets the wildcard, which can contain multiple file types, for example:\n" | |
219 | " \"BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif\""); | |
d14a1e28 | 220 | |
fcafa8a9 RD |
221 | DocDeclStr( |
222 | void , SetStyle(long style), | |
223 | "Sets the dialog style."); | |
224 | ||
225 | DocDeclStr( | |
226 | void , SetFilterIndex(int filterIndex), | |
227 | "Sets the default filter index, starting from zero."); | |
228 | ||
229 | ||
230 | DocDeclStr( | |
231 | wxString , GetMessage() const, | |
232 | "Returns the message that will be displayed on the dialog."); | |
233 | ||
234 | DocDeclStr( | |
235 | wxString , GetPath() const, | |
236 | "Returns the full path (directory and filename) of the selected file."); | |
237 | ||
238 | DocDeclStr( | |
239 | wxString , GetDirectory() const, | |
240 | "Returns the default directory."); | |
241 | ||
242 | DocDeclStr( | |
243 | wxString , GetFilename() const, | |
244 | "Returns the default filename."); | |
245 | ||
246 | DocDeclStr( | |
247 | wxString , GetWildcard() const, | |
248 | "Returns the file dialog wildcard."); | |
249 | ||
250 | DocDeclStr( | |
251 | long , GetStyle() const, | |
252 | "Returns the dialog style."); | |
253 | ||
254 | DocDeclStr( | |
255 | int , GetFilterIndex() const, | |
256 | "Returns the index into the list of filters supplied, optionally, in\n" | |
257 | "the wildcard parameter. Before the dialog is shown, this is the index\n" | |
258 | "which will be used when the dialog is first displayed. After the dialog\n" | |
259 | "is shown, this is the index selected by the user."); | |
f6bcfd97 | 260 | |
fcafa8a9 RD |
261 | |
262 | DocStr(GetFilenames, | |
263 | "Returns a list of filenames chosen in the dialog. This function should\n" | |
264 | "only be used with the dialogs which have wx.MULTIPLE style, use\n" | |
265 | "GetFilename for the others."); | |
266 | ||
267 | DocStr(GetPaths, | |
268 | "Fills the array paths with the full paths of the files chosen. This\n" | |
269 | "function should only be used with the dialogs which have wx.MULTIPLE style,\n" | |
270 | "use GetPath for the others."); | |
271 | ||
d14a1e28 | 272 | %extend { |
f6bcfd97 BP |
273 | PyObject* GetFilenames() { |
274 | wxArrayString arr; | |
275 | self->GetFilenames(arr); | |
b37c7e1d | 276 | return wxArrayString2PyList_helper(arr); |
f6bcfd97 BP |
277 | } |
278 | ||
279 | PyObject* GetPaths() { | |
280 | wxArrayString arr; | |
281 | self->GetPaths(arr); | |
b37c7e1d | 282 | return wxArrayString2PyList_helper(arr); |
f6bcfd97 BP |
283 | } |
284 | } | |
3ef86e32 RD |
285 | |
286 | // TODO | |
287 | // // Utility functions | |
288 | ||
289 | // // Parses the wildCard, returning the number of filters. | |
290 | // // Returns 0 if none or if there's a problem, | |
291 | // // The arrays will contain an equal number of items found before the error. | |
292 | // // wildCard is in the form: | |
293 | // // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png" | |
294 | // static int ParseWildcard(const wxString& wildCard, | |
295 | // wxArrayString& descriptions, | |
296 | // wxArrayString& filters); | |
297 | ||
298 | // // Append first extension to filePath from a ';' separated extensionList | |
299 | // // if filePath = "path/foo.bar" just return it as is | |
300 | // // if filePath = "foo[.]" and extensionList = "*.jpg;*.png" return "foo.jpg" | |
301 | // // if the extension is "*.j?g" (has wildcards) or "jpg" then return filePath | |
302 | // static wxString AppendExtension(const wxString &filePath, | |
303 | // const wxString &extensionList); | |
304 | ||
305 | ||
7bf85405 RD |
306 | }; |
307 | ||
308 | ||
d14a1e28 | 309 | //--------------------------------------------------------------------------- |
7bf85405 | 310 | |
293a0a86 RD |
311 | enum { wxCHOICEDLG_STYLE }; |
312 | ||
313 | class wxMultiChoiceDialog : public wxDialog | |
314 | { | |
315 | public: | |
2b9048c5 | 316 | %pythonAppend wxMultiChoiceDialog "self._setOORInfo(self)" |
d14a1e28 | 317 | |
293a0a86 RD |
318 | wxMultiChoiceDialog(wxWindow *parent, |
319 | const wxString& message, | |
320 | const wxString& caption, | |
699e192b | 321 | int choices=0, wxString* choices_array, |
293a0a86 RD |
322 | long style = wxCHOICEDLG_STYLE, |
323 | const wxPoint& pos = wxDefaultPosition); | |
324 | ||
293a0a86 RD |
325 | void SetSelections(const wxArrayInt& selections); |
326 | ||
327 | // wxArrayInt GetSelections() const; | |
d14a1e28 | 328 | %extend { |
293a0a86 RD |
329 | PyObject* GetSelections() { |
330 | return wxArrayInt2PyList_helper(self->GetSelections()); | |
331 | } | |
332 | } | |
333 | }; | |
334 | ||
7bf85405 | 335 | |
d14a1e28 | 336 | //--------------------------------------------------------------------------- |
7bf85405 RD |
337 | |
338 | class wxSingleChoiceDialog : public wxDialog { | |
339 | public: | |
2b9048c5 | 340 | %pythonAppend wxSingleChoiceDialog "self._setOORInfo(self)" |
d14a1e28 RD |
341 | |
342 | %extend { | |
343 | // TODO: ignoring clientData for now... FIX THIS | |
7bf85405 RD |
344 | // SWIG is messing up the &/*'s for some reason. |
345 | wxSingleChoiceDialog(wxWindow* parent, | |
d14a1e28 RD |
346 | const wxString& message, |
347 | const wxString& caption, | |
348 | int choices, wxString* choices_array, | |
7bf85405 | 349 | //char** clientData = NULL, |
293a0a86 | 350 | long style = wxCHOICEDLG_STYLE, |
d14a1e28 RD |
351 | const wxPoint& pos = wxDefaultPosition) { |
352 | return new wxSingleChoiceDialog(parent, message, caption, | |
353 | choices, choices_array, NULL, style, pos); | |
7bf85405 | 354 | } |
09f3d4e6 | 355 | } |
9c039d08 | 356 | |
7bf85405 RD |
357 | int GetSelection(); |
358 | wxString GetStringSelection(); | |
359 | void SetSelection(int sel); | |
360 | int ShowModal(); | |
361 | }; | |
362 | ||
363 | ||
d14a1e28 | 364 | //--------------------------------------------------------------------------- |
7bf85405 RD |
365 | |
366 | class wxTextEntryDialog : public wxDialog { | |
367 | public: | |
2b9048c5 | 368 | %pythonAppend wxTextEntryDialog "self._setOORInfo(self)" |
d14a1e28 | 369 | |
7bf85405 | 370 | wxTextEntryDialog(wxWindow* parent, |
137b5242 RD |
371 | const wxString& message, |
372 | const wxString& caption = wxPyGetTextFromUserPromptStr, | |
373 | const wxString& defaultValue = wxPyEmptyString, | |
7bf85405 | 374 | long style = wxOK | wxCANCEL | wxCENTRE, |
b68dc582 | 375 | const wxPoint& pos = wxDefaultPosition); |
7bf85405 RD |
376 | |
377 | wxString GetValue(); | |
378 | void SetValue(const wxString& value); | |
379 | int ShowModal(); | |
380 | }; | |
381 | ||
d14a1e28 | 382 | //--------------------------------------------------------------------------- |
7bf85405 | 383 | |
9416aa89 | 384 | class wxFontData : public wxObject { |
7bf85405 RD |
385 | public: |
386 | wxFontData(); | |
387 | ~wxFontData(); | |
388 | ||
389 | void EnableEffects(bool enable); | |
390 | bool GetAllowSymbols(); | |
25832b3f | 391 | wxColour GetColour(); |
7bf85405 RD |
392 | wxFont GetChosenFont(); |
393 | bool GetEnableEffects(); | |
394 | wxFont GetInitialFont(); | |
395 | bool GetShowHelp(); | |
396 | void SetAllowSymbols(bool allowSymbols); | |
397 | void SetChosenFont(const wxFont& font); | |
398 | void SetColour(const wxColour& colour); | |
399 | void SetInitialFont(const wxFont& font); | |
400 | void SetRange(int min, int max); | |
401 | void SetShowHelp(bool showHelp); | |
402 | }; | |
403 | ||
404 | ||
405 | class wxFontDialog : public wxDialog { | |
406 | public: | |
2b9048c5 | 407 | %pythonAppend wxFontDialog "self._setOORInfo(self)" |
d14a1e28 | 408 | |
557a93b9 | 409 | wxFontDialog(wxWindow* parent, const wxFontData& data); |
7bf85405 RD |
410 | |
411 | wxFontData& GetFontData(); | |
412 | int ShowModal(); | |
413 | }; | |
414 | ||
415 | ||
d14a1e28 | 416 | //--------------------------------------------------------------------------- |
7bf85405 RD |
417 | |
418 | class wxMessageDialog : public wxDialog { | |
419 | public: | |
2b9048c5 | 420 | %pythonAppend wxMessageDialog "self._setOORInfo(self)" |
d14a1e28 | 421 | |
7bf85405 | 422 | wxMessageDialog(wxWindow* parent, |
137b5242 RD |
423 | const wxString& message, |
424 | const wxString& caption = wxPyMessageBoxCaptionStr, | |
7bf85405 | 425 | long style = wxOK | wxCANCEL | wxCENTRE, |
b68dc582 | 426 | const wxPoint& pos = wxDefaultPosition); |
7bf85405 RD |
427 | |
428 | int ShowModal(); | |
429 | }; | |
430 | ||
d14a1e28 | 431 | //--------------------------------------------------------------------------- |
7bf85405 | 432 | |
bb0054cd RD |
433 | class wxProgressDialog : public wxFrame { |
434 | public: | |
2b9048c5 | 435 | %pythonAppend wxProgressDialog "self._setOORInfo(self)" |
d14a1e28 | 436 | |
bb0054cd RD |
437 | wxProgressDialog(const wxString& title, |
438 | const wxString& message, | |
439 | int maximum = 100, | |
440 | wxWindow* parent = NULL, | |
441 | int style = wxPD_AUTO_HIDE | wxPD_APP_MODAL ); | |
7bf85405 | 442 | |
137b5242 | 443 | bool Update(int value, const wxString& newmsg = wxPyEmptyString); |
bb0054cd | 444 | void Resume(); |
d14a1e28 | 445 | }; |
bb0054cd | 446 | |
d14a1e28 | 447 | //--------------------------------------------------------------------------- |
0122b7e3 RD |
448 | |
449 | enum wxFindReplaceFlags | |
450 | { | |
451 | // downward search/replace selected (otherwise - upwards) | |
452 | wxFR_DOWN = 1, | |
453 | ||
454 | // whole word search/replace selected | |
455 | wxFR_WHOLEWORD = 2, | |
456 | ||
457 | // case sensitive search/replace selected (otherwise - case insensitive) | |
458 | wxFR_MATCHCASE = 4 | |
459 | }; | |
460 | ||
461 | ||
462 | enum wxFindReplaceDialogStyles | |
463 | { | |
464 | // replace dialog (otherwise find dialog) | |
465 | wxFR_REPLACEDIALOG = 1, | |
466 | ||
467 | // don't allow changing the search direction | |
468 | wxFR_NOUPDOWN = 2, | |
469 | ||
470 | // don't allow case sensitive searching | |
471 | wxFR_NOMATCHCASE = 4, | |
472 | ||
473 | // don't allow whole word searching | |
474 | wxFR_NOWHOLEWORD = 8 | |
475 | }; | |
476 | ||
0122b7e3 | 477 | |
0122b7e3 | 478 | |
d14a1e28 RD |
479 | %constant wxEventType wxEVT_COMMAND_FIND; |
480 | %constant wxEventType wxEVT_COMMAND_FIND_NEXT; | |
481 | %constant wxEventType wxEVT_COMMAND_FIND_REPLACE; | |
482 | %constant wxEventType wxEVT_COMMAND_FIND_REPLACE_ALL; | |
483 | %constant wxEventType wxEVT_COMMAND_FIND_CLOSE; | |
0122b7e3 | 484 | |
0122b7e3 | 485 | |
d14a1e28 RD |
486 | %pythoncode { |
487 | EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 ) | |
488 | EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 ) | |
489 | EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 ) | |
490 | EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 ) | |
491 | EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 ) | |
0122b7e3 | 492 | |
d14a1e28 RD |
493 | %# For backwards compatibility. Should they be removed? |
494 | EVT_COMMAND_FIND = EVT_FIND | |
495 | EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT | |
496 | EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE | |
497 | EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL | |
498 | EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE | |
499 | } | |
0122b7e3 | 500 | |
0122b7e3 RD |
501 | |
502 | class wxFindDialogEvent : public wxCommandEvent | |
503 | { | |
504 | public: | |
505 | wxFindDialogEvent(wxEventType commandType = wxEVT_NULL, int id = 0); | |
506 | int GetFlags(); | |
87c2245b | 507 | const wxString& GetFindString(); |
0122b7e3 RD |
508 | const wxString& GetReplaceString(); |
509 | wxFindReplaceDialog *GetDialog(); | |
510 | void SetFlags(int flags); | |
511 | void SetFindString(const wxString& str); | |
512 | void SetReplaceString(const wxString& str); | |
513 | }; | |
514 | ||
515 | ||
516 | ||
517 | class wxFindReplaceData : public wxObject | |
518 | { | |
519 | public: | |
520 | wxFindReplaceData(int flags=0); | |
521 | ~wxFindReplaceData(); | |
522 | ||
523 | const wxString& GetFindString(); | |
524 | const wxString& GetReplaceString(); | |
525 | int GetFlags(); | |
526 | void SetFlags(int flags); | |
527 | void SetFindString(const wxString& str); | |
528 | void SetReplaceString(const wxString& str); | |
529 | }; | |
530 | ||
531 | ||
532 | class wxFindReplaceDialog : public wxDialog { | |
533 | public: | |
2b9048c5 RD |
534 | %pythonAppend wxFindReplaceDialog "self._setOORInfo(self)" |
535 | %pythonAppend wxFindReplaceDialog() "" | |
d14a1e28 | 536 | |
0122b7e3 RD |
537 | wxFindReplaceDialog(wxWindow *parent, |
538 | wxFindReplaceData *data, | |
539 | const wxString &title, | |
540 | int style = 0); | |
d14a1e28 | 541 | %name(PreFindReplaceDialog)wxFindReplaceDialog(); |
0122b7e3 RD |
542 | |
543 | bool Create(wxWindow *parent, | |
544 | wxFindReplaceData *data, | |
545 | const wxString &title, | |
546 | int style = 0); | |
547 | ||
0122b7e3 RD |
548 | const wxFindReplaceData *GetData(); |
549 | void SetData(wxFindReplaceData *data); | |
550 | }; | |
551 | ||
d14a1e28 RD |
552 | //--------------------------------------------------------------------------- |
553 | //--------------------------------------------------------------------------- |