1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG interface for the "Common Dialog" classes
 
   7 // Created:     25-July-1998
 
   9 // Copyright:   (c) 2003 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  16 //---------------------------------------------------------------------------
 
  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);
 
  26 //---------------------------------------------------------------------------
 
  30 "This class holds a variety of information related to the colour
 
  31 chooser dialog, used to transfer settings and results to and from the
 
  32 `wx.ColourDialog`.", "");
 
  34 class wxColourData : public wxObject {
 
  38         "Constructor, sets default values.", "");
 
  44         bool , GetChooseFull(),
 
  45         "Under Windows, determines whether the Windows colour dialog will
 
  46 display the full dialog with custom colour selection controls. Has no
 
  47 meaning under other platforms.  The default value is true.", "");
 
  50         wxColour , GetColour(),
 
  51         "Gets the colour (pre)selected by the dialog.", "");
 
  54         wxColour , GetCustomColour(int i),
 
  55         "Gets the i'th custom colour associated with the colour dialog. i
 
  56 should be an integer between 0 and 15. The default custom colours are
 
  57 all invalid colours.", "");
 
  60         void , SetChooseFull(int flag),
 
  61         "Under Windows, tells the Windows colour dialog to display the full
 
  62 dialog with custom colour selection controls. Under other platforms,
 
  63 has no effect.  The default value is true.", "");
 
  66         void , SetColour(const wxColour& colour),
 
  67         "Sets the default colour for the colour dialog.  The default colour is
 
  71         void , SetCustomColour(int i, const wxColour& colour),
 
  72         "Sets the i'th custom colour for the colour dialog. i should be an
 
  73 integer between 0 and 15. The default custom colours are all invalid colours.", "");
 
  80 DocStr(wxColourDialog,
 
  81        "This class represents the colour chooser dialog.", "");
 
  83 MustHaveApp(wxColourDialog);
 
  85 class wxColourDialog : public wxDialog {
 
  87     %pythonAppend wxColourDialog   "self._setOORInfo(self)"
 
  90        wxColourDialog(wxWindow* parent, wxColourData* data = NULL),
 
  91        "Constructor. Pass a parent window, and optionally a `wx.ColourData`,
 
  92 which will be copied to the colour dialog's internal ColourData
 
  96         wxColourData& , GetColourData(),
 
  97         "Returns a reference to the `wx.ColourData` used by the dialog.", "");
 
 101 wxColour wxGetColourFromUser(wxWindow *parent = (wxWindow *)NULL,
 
 102                              const wxColour& colInit = wxNullColour,
 
 103                              const wxString& caption = wxPyEmptyString);
 
 106 //--------------------------------------------------------------------------------
 
 110        "wx.DirDialog allows the user to select a directory by browising the
 
 115     ====================  ==========================================
 
 116     wx.DD_NEW_DIR_BUTTON  Add 'Create new directory' button and allow
 
 117                           directory names to be editable. On Windows
 
 118                           the new directory button is only available
 
 119                           with recent versions of the common dialogs.
 
 120     ====================  ==========================================
 
 123 MustHaveApp(wxDirDialog);
 
 125 class wxDirDialog : public wxDialog {
 
 127     %pythonAppend wxDirDialog   "self._setOORInfo(self)"
 
 130         wxDirDialog(wxWindow* parent,
 
 131                     const wxString& message = wxPyDirSelectorPromptStr,
 
 132                     const wxString& defaultPath = wxPyEmptyString,
 
 134                     const wxPoint& pos = wxDefaultPosition,
 
 135                     const wxSize& size = wxDefaultSize,
 
 136                     const wxString& name = wxPyDirDialogNameStr),
 
 137         "Constructor.  Use ShowModal method to show the dialog.", "");
 
 141         wxString , GetPath(),
 
 142         "Returns the default or user-selected path.", "");
 
 145         wxString , GetMessage(),
 
 146         "Returns the message that will be displayed on the dialog.", "");
 
 150         "Returns the dialog style.", "");
 
 153         void , SetMessage(const wxString& message),
 
 154         "Sets the message that will be displayed on the dialog.", "");
 
 157         void , SetPath(const wxString& path),
 
 158         "Sets the default path.", "");
 
 163 //---------------------------------------------------------------------------
 
 166 "wx.FileDialog allows the user to select one or more files from the
 
 169 In Windows, this is the common file selector dialog. On X based
 
 170 platforms a generic alternative is used.  The path and filename are
 
 171 distinct elements of a full file pathname. If path is \"\", the
 
 172 current directory will be used. If filename is \"\", no default
 
 173 filename will be supplied. The wildcard determines what files are
 
 174 displayed in the file selector, and file extension supplies a type
 
 175 extension for the required filename.
 
 177 Both the X and Windows versions implement a wildcard filter. Typing a
 
 178 filename containing wildcards (\*, ?) in the filename text item, and
 
 179 clicking on Ok, will result in only those files matching the pattern
 
 180 being displayed. The wildcard may be a specification for multiple
 
 181 types of file with a description for each, such as::
 
 183    \"BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif\"
 
 188     ===================   ==========================================
 
 189     wx.OPEN               This is an open dialog.
 
 191     wx.SAVE               This is a save dialog.
 
 193     wx.HIDE_READONLY      For open dialog only: hide the checkbox
 
 194                           allowing to open the file in read-only mode.
 
 196     wx.OVERWRITE_PROMPT   For save dialog only: prompt for a confirmation
 
 197                           if a file will be overwritten.
 
 199     wx.MULTIPLE           For open dialog only: allows selecting multiple
 
 202     wx.CHANGE_DIR         Change the current working directory to the
 
 203                           directory  where the file(s) chosen by the user
 
 205     ===================   ==========================================
 
 210 MustHaveApp(wxFileDialog);
 
 212 class wxFileDialog : public wxDialog {
 
 214     %pythonAppend wxFileDialog   "self._setOORInfo(self)"
 
 217         wxFileDialog(wxWindow* parent,
 
 218                      const wxString& message = wxPyFileSelectorPromptStr,
 
 219                      const wxString& defaultDir = wxPyEmptyString,
 
 220                      const wxString& defaultFile = wxPyEmptyString,
 
 221                      const wxString& wildcard = wxPyFileSelectorDefaultWildcardStr,
 
 223                      const wxPoint& pos = wxDefaultPosition),
 
 224         "Constructor.  Use ShowModal method to show the dialog.", "");
 
 228         void , SetMessage(const wxString& message),
 
 229         "Sets the message that will be displayed on the dialog.", "");
 
 232         void , SetPath(const wxString& path),
 
 233         "Sets the path (the combined directory and filename that will be
 
 234 returned when the dialog is dismissed).", "");
 
 237         void , SetDirectory(const wxString& dir),
 
 238         "Sets the default directory.", "");
 
 241         void , SetFilename(const wxString& name),
 
 242         "Sets the default filename.", "");
 
 245         void , SetWildcard(const wxString& wildCard),
 
 246         "Sets the wildcard, which can contain multiple file types, for
 
 249     \"BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif\"
 
 253         void , SetStyle(long style),
 
 254         "Sets the dialog style.", "");
 
 257         void , SetFilterIndex(int filterIndex),
 
 258         "Sets the default filter index, starting from zero.", "");
 
 261         wxString , GetMessage() const,
 
 262         "Returns the message that will be displayed on the dialog.", "");
 
 265         wxString , GetPath() const,
 
 266         "Returns the full path (directory and filename) of the selected file.", "");
 
 269         wxString , GetDirectory() const,
 
 270         "Returns the default directory.", "");
 
 273         wxString , GetFilename() const,
 
 274         "Returns the default filename.", "");
 
 277         wxString , GetWildcard() const,
 
 278         "Returns the file dialog wildcard.", "");
 
 281         long , GetStyle() const,
 
 282         "Returns the dialog style.", "");
 
 285         int , GetFilterIndex() const,
 
 286         "Returns the index into the list of filters supplied, optionally, in
 
 287 the wildcard parameter. Before the dialog is shown, this is the index
 
 288 which will be used when the dialog is first displayed. After the
 
 289 dialog is shown, this is the index selected by the user.", "");
 
 293         "Returns a list of filenames chosen in the dialog.  This function
 
 294 should only be used with the dialogs which have wx.MULTIPLE style, use
 
 295 GetFilename for the others.", "");
 
 298         "Fills the array paths with the full paths of the files chosen. This
 
 299 function should only be used with the dialogs which have wx.MULTIPLE
 
 300 style, use GetPath for the others.", "");   
 
 303         PyObject* GetFilenames() {
 
 305             self->GetFilenames(arr);
 
 306             return wxArrayString2PyList_helper(arr);
 
 309         PyObject* GetPaths() {
 
 312             return wxArrayString2PyList_helper(arr);
 
 317 //     // Utility functions
 
 319 //     // Parses the wildCard, returning the number of filters.
 
 320 //     // Returns 0 if none or if there's a problem,
 
 321 //     // The arrays will contain an equal number of items found before the error.
 
 322 //     // wildCard is in the form:
 
 323 //     // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
 
 324 //     static int ParseWildcard(const wxString& wildCard,
 
 325 //                              wxArrayString& descriptions,
 
 326 //                              wxArrayString& filters);
 
 328 //     // Append first extension to filePath from a ';' separated extensionList
 
 329 //     // if filePath = "path/foo.bar" just return it as is
 
 330 //     // if filePath = "foo[.]" and extensionList = "*.jpg;*.png" return "foo.jpg"
 
 331 //     // if the extension is "*.j?g" (has wildcards) or "jpg" then return filePath
 
 332 //     static wxString AppendExtension(const wxString &filePath,
 
 333 //                                     const wxString &extensionList);
 
 339 //---------------------------------------------------------------------------
 
 341 enum { wxCHOICEDLG_STYLE };
 
 344 DocStr(wxMultiChoiceDialog,
 
 345        "A simple dialog with a multi selection listbox.", "");
 
 347 MustHaveApp(wxMultiChoiceDialog);
 
 349 class wxMultiChoiceDialog : public wxDialog
 
 352     %pythonAppend wxMultiChoiceDialog   "self._setOORInfo(self)"
 
 355         wxMultiChoiceDialog(wxWindow *parent,
 
 356                             const wxString& message,
 
 357                             const wxString& caption,
 
 358                             int choices=0, wxString* choices_array=NULL,
 
 359                             long style = wxCHOICEDLG_STYLE,
 
 360                             const wxPoint& pos = wxDefaultPosition),
 
 361         "__init__(self, Window parent, String message, String caption,
 
 362     List choices=EmptyList, long style=CHOICEDLG_STYLE,
 
 363     Point pos=DefaultPosition) -> MultiChoiceDialog",
 
 364         "Constructor.  Use the `ShowModal` method to show the dialog.
 
 366     :param parent: The parent window.
 
 367     :param message: Text to display above the list of selections.
 
 368     :param caption: Text to use in the title bar of the dialog.
 
 369     :param choices: A list of strings or unicode objects that the
 
 370         user is allowed to choose from.
 
 371     :param style: Styles to apply to the dialog.  The default value is
 
 372         equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
 
 373     :param pos: Where to position the dialog (not used on Windows)
 
 379         void, SetSelections(const wxArrayInt& selections),
 
 380         "SetSelections(List selections)",
 
 381         "Specify the items in the list that should be selected, using a list of
 
 382 integers.  The list should specify the indexes of the items that
 
 383 should be selected.", "");
 
 385     DocAStr(GetSelections,
 
 386             "GetSelections() -> [selections]",
 
 387             "Returns a list of integers representing the items that are selected.
 
 388 If an item is selected then its index will appear in the list.", "");
 
 390         PyObject* GetSelections() {
 
 391             return wxArrayInt2PyList_helper(self->GetSelections());
 
 397 //---------------------------------------------------------------------------
 
 399 DocStr(wxSingleChoiceDialog,
 
 400        "A simple dialog with a single selection listbox.", "");
 
 402 MustHaveApp(wxSingleChoiceDialog);
 
 404 class wxSingleChoiceDialog : public wxDialog {
 
 406     %pythonAppend wxSingleChoiceDialog   "self._setOORInfo(self)"
 
 408     DocAStr(wxSingleChoiceDialog,
 
 409             "__init__(Window parent, String message, String caption,
 
 410     List choices=EmptyList, long style=CHOICEDLG_STYLE,
 
 411     Point pos=DefaultPosition) -> SingleChoiceDialog",
 
 412             "Constructor.  Use ShowModal method to show the dialog.", "");
 
 415         // TODO: ignoring clientData for now...  FIX THIS
 
 416         //       SWIG is messing up the &/*'s for some reason.
 
 417         wxSingleChoiceDialog(wxWindow* parent,
 
 418                              const wxString& message,
 
 419                              const wxString& caption,
 
 420                              int choices, wxString* choices_array,
 
 421                              //char** clientData = NULL,
 
 422                              long style = wxCHOICEDLG_STYLE,
 
 423                              const wxPoint& pos = wxDefaultPosition) {
 
 424             return new wxSingleChoiceDialog(parent, message, caption,
 
 425                                             choices, choices_array, NULL, style, pos);
 
 430         int , GetSelection(),
 
 431         "Get the index of teh currently selected item.", "");
 
 434         wxString , GetStringSelection(),
 
 435         "Returns the string value of the currently selected item", "");
 
 438         void , SetSelection(int sel),
 
 439         "Set the current selected item to sel", "");
 
 443 //---------------------------------------------------------------------------
 
 445 DocStr(wxTextEntryDialog,
 
 446        "A dialog with text control, [ok] and [cancel] buttons", "");
 
 448 MustHaveApp(wxTextEntryDialog);
 
 450 enum { wxTextEntryDialogStyle };
 
 452 class wxTextEntryDialog : public wxDialog {
 
 454     %pythonAppend wxTextEntryDialog   "self._setOORInfo(self)"
 
 457         wxTextEntryDialog(wxWindow* parent,
 
 458                           const wxString& message,
 
 459                           const wxString& caption = wxPyGetTextFromUserPromptStr,
 
 460                           const wxString& defaultValue = wxPyEmptyString,
 
 461                           long style = wxTextEntryDialogStyle,
 
 462                           const wxPoint& pos = wxDefaultPosition),
 
 463         "Constructor.  Use ShowModal method to show the dialog.", "");
 
 466         wxString , GetValue(),
 
 467         "Returns the text that the user has entered if the user has pressed OK,
 
 468 or the original value if the user has pressed Cancel.", "");
 
 471         void , SetValue(const wxString& value),
 
 472         "Sets the default text value.", "");
 
 475 //---------------------------------------------------------------------------
 
 477 MAKE_CONST_WXSTRING(GetPasswordFromUserPromptStr);
 
 479 class wxPasswordEntryDialog : public wxTextEntryDialog
 
 482     wxPasswordEntryDialog(wxWindow *parent,
 
 483                       const wxString& message,
 
 484                       const wxString& caption = wxPyGetPasswordFromUserPromptStr,
 
 485                       const wxString& value = wxPyEmptyString,
 
 486                       long style = wxTextEntryDialogStyle,
 
 487                       const wxPoint& pos = wxDefaultPosition);
 
 490 //---------------------------------------------------------------------------
 
 494        "This class holds a variety of information related to font dialogs and
 
 495 is used to transfer settings to and results from a `wx.FontDialog`.", "");
 
 498 class wxFontData : public wxObject {
 
 504         void , EnableEffects(bool enable),
 
 505         "Enables or disables 'effects' under MS Windows only. This refers to
 
 506 the controls for manipulating colour, strikeout and underline
 
 507 properties.  The default value is true.", "");
 
 510         bool , GetAllowSymbols(),
 
 511         "Under MS Windows, returns a flag determining whether symbol fonts can
 
 512 be selected. Has no effect on other platforms. The default value is
 
 516         wxColour , GetColour(),
 
 517         "Gets the colour associated with the font dialog. The default value is
 
 521         wxFont , GetChosenFont(),
 
 522         "Gets the font chosen by the user.", "");
 
 525         bool , GetEnableEffects(),
 
 526         "Determines whether 'effects' are enabled under Windows.", "");
 
 529         wxFont , GetInitialFont(),
 
 530         "Gets the font that will be initially used by the font dialog. This
 
 531 should have previously been set by the application.", "");
 
 534         bool , GetShowHelp(),
 
 535         "Returns true if the Help button will be shown (Windows only).  The
 
 536 default value is false.", "");
 
 539         void , SetAllowSymbols(bool allowSymbols),
 
 540         "Under MS Windows, determines whether symbol fonts can be selected. Has
 
 541 no effect on other platforms.  The default value is true.", "");
 
 544         void , SetChosenFont(const wxFont& font),
 
 545         "Sets the font that will be returned to the user (normally for internal
 
 549         void , SetColour(const wxColour& colour),
 
 550         "Sets the colour that will be used for the font foreground colour.  The
 
 551 default colour is black.", "");
 
 554         void , SetInitialFont(const wxFont& font),
 
 555         "Sets the font that will be initially used by the font dialog.", "");
 
 558         void , SetRange(int min, int max),
 
 559         "Sets the valid range for the font point size (Windows only).  The
 
 560 default is 0, 0 (unrestricted range).", "");
 
 563         void , SetShowHelp(bool showHelp),
 
 564         "Determines whether the Help button will be displayed in the font
 
 565 dialog (Windows only).  The default value is false.", "");
 
 572        "wx.FontDialog allows the user to select a system font and its attributes.
 
 577 MustHaveApp(wxFontDialog);
 
 579 class wxFontDialog : public wxDialog {
 
 581     %pythonAppend wxFontDialog   "self._setOORInfo(self)"
 
 584            "Constructor. Pass a parent window and the `wx.FontData` object to be
 
 585 used to initialize the dialog controls.  Call `ShowModal` to display
 
 586 the dialog.  If ShowModal returns ``wx.ID_OK`` then you can fetch the
 
 587 results with via the `wx.FontData` returned by `GetFontData`.", "");
 
 588     wxFontDialog(wxWindow* parent, const wxFontData& data);
 
 592         wxFontData& , GetFontData(),
 
 593         "Returns a reference to the internal `wx.FontData` used by the
 
 594 wx.FontDialog.", "");    
 
 598 wxFont wxGetFontFromUser(wxWindow *parent = NULL,
 
 599                          const wxFont& fontInit = wxNullFont,
 
 600                          const wxString& caption = wxPyEmptyString);
 
 603 //---------------------------------------------------------------------------
 
 606 DocStr(wxMessageDialog,
 
 607 "This class provides a simple dialog that shows a single or multi-line
 
 608 message, with a choice of OK, Yes, No and/or Cancel buttons.", "
 
 612     ===================    =============================================
 
 613     wx.OK                  Show an OK button.
 
 614     wx.CANCEL              Show a Cancel button.
 
 615     wx.YES_NO              Show Yes and No buttons.
 
 616     wx.YES_DEFAULT         Used with wxYES_NO, makes Yes button the
 
 617                            default - which is the default behaviour.
 
 618     wx.NO_DEFAULT          Used with wxYES_NO, makes No button the default.
 
 619     wx.ICON_EXCLAMATION    Shows an exclamation mark icon.
 
 620     wx.ICON_HAND           Shows an error icon.
 
 621     wx.ICON_ERROR          Shows an error icon - the same as wxICON_HAND.
 
 622     wx.ICON_QUESTION       Shows a question mark icon.
 
 623     wx.ICON_INFORMATION    Shows an information (i) icon.
 
 624     wx.STAY_ON_TOP         The message box stays on top of all other
 
 625                            window, even those of the other applications
 
 627     ===================    =============================================
 
 631 MustHaveApp(wxMessageDialog);
 
 633 class wxMessageDialog : public wxDialog {
 
 635     %pythonAppend wxMessageDialog   "self._setOORInfo(self)"
 
 638         wxMessageDialog(wxWindow* parent,
 
 639                         const wxString& message,
 
 640                         const wxString& caption = wxPyMessageBoxCaptionStr,
 
 641                         long style = wxOK | wxCANCEL | wxCENTRE,
 
 642                         const wxPoint& pos = wxDefaultPosition),
 
 643         "Constructor, use `ShowModal` to display the dialog.", "");
 
 647 //---------------------------------------------------------------------------
 
 650 DocStr(wxProgressDialog,
 
 651 "A dialog that shows a short message and a progress bar. Optionally, it
 
 652 can display an ABORT button.", "
 
 656     ====================     =============================================
 
 657     wx.PD_APP_MODAL          Make the progress dialog modal. If this flag is
 
 658                              not given, it is only \"locally\" modal -
 
 659                              that is the input to the parent window is
 
 660                              disabled, but not to the other ones.
 
 662     wx.PD_AUTO_HIDE          Causes the progress dialog to disappear from
 
 663                              screen as soon as the maximum value of the
 
 664                              progress meter has been reached.
 
 666     wx.PD_CAN_ABORT          This flag tells the dialog that it should have
 
 667                              a \"Cancel\" button which the user may press. If
 
 668                              this happens, the next call to Update() will
 
 671     wx.PD_ELAPSED_TIME       This flag tells the dialog that it should show
 
 672                              elapsed time (since creating the dialog).
 
 674     wx.PD_ESTIMATED_TIME     This flag tells the dialog that it should show
 
 677     wx.PD_REMAINING_TIME     This flag tells the dialog that it should show
 
 680     wx.PD_SMOOTH             Uses the wx.GA_SMOOTH style on the embedded
 
 682     ====================     =============================================
 
 686 // TODO: wxPD_CAN_SKIP
 
 688 MustHaveApp(wxProgressDialog);
 
 690 class wxProgressDialog : public wxFrame {
 
 692     %pythonAppend wxProgressDialog   "self._setOORInfo(self)"
 
 695         wxProgressDialog(const wxString& title,
 
 696                          const wxString& message,
 
 698                          wxWindow* parent = NULL,
 
 699                          int style = wxPD_AUTO_HIDE | wxPD_APP_MODAL ),
 
 700         "Constructor. Creates the dialog, displays it and disables user input
 
 701 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
 
 702 parent window only.", "");
 
 704     // TODO: support getting the skipped value back in the return value, but
 
 705     // only if style is set.  This is so the API doesn't change for existing
 
 708         virtual bool , Update(int value, const wxString& newmsg = wxPyEmptyString),
 
 709         "Updates the dialog, setting the progress bar to the new value and, if
 
 710 given changes the message above it. The value given should be less
 
 711 than or equal to the maximum value given to the constructor and the
 
 712 dialog is closed if it is equal to the maximum.  Returns True unless
 
 713 the Cancel button has been pressed.
 
 715 If false is returned, the application can either immediately destroy
 
 716 the dialog or ask the user for the confirmation and if the abort is
 
 717 not confirmed the dialog may be resumed with Resume function.", "");
 
 721         "Can be used to continue with the dialog, after the user had chosen to
 
 726 //---------------------------------------------------------------------------
 
 728 enum wxFindReplaceFlags
 
 730     // downward search/replace selected (otherwise - upwards)
 
 733     // whole word search/replace selected
 
 736     // case sensitive search/replace selected (otherwise - case insensitive)
 
 741 enum wxFindReplaceDialogStyles
 
 743     // replace dialog (otherwise find dialog)
 
 744     wxFR_REPLACEDIALOG = 1,
 
 746     // don't allow changing the search direction
 
 749     // don't allow case sensitive searching
 
 750     wxFR_NOMATCHCASE   = 4,
 
 752     // don't allow whole word searching
 
 758 %constant wxEventType wxEVT_COMMAND_FIND;
 
 759 %constant wxEventType wxEVT_COMMAND_FIND_NEXT;
 
 760 %constant wxEventType wxEVT_COMMAND_FIND_REPLACE;
 
 761 %constant wxEventType wxEVT_COMMAND_FIND_REPLACE_ALL;
 
 762 %constant wxEventType wxEVT_COMMAND_FIND_CLOSE;
 
 766 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 )
 
 767 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 )
 
 768 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 )
 
 769 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 )
 
 770 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 )
 
 772 %# For backwards compatibility.  Should they be removed?
 
 773 EVT_COMMAND_FIND             = EVT_FIND 
 
 774 EVT_COMMAND_FIND_NEXT        = EVT_FIND_NEXT
 
 775 EVT_COMMAND_FIND_REPLACE     = EVT_FIND_REPLACE
 
 776 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
 
 777 EVT_COMMAND_FIND_CLOSE       = EVT_FIND_CLOSE        
 
 781 DocStr(wxFindDialogEvent,
 
 782        "Events for the FindReplaceDialog", "");
 
 784 class wxFindDialogEvent : public wxCommandEvent
 
 787     wxFindDialogEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
 
 791         "Get the currently selected flags: this is the combination of
 
 792 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.", "");
 
 795         const wxString& , GetFindString(),
 
 796         "Return the string to find (never empty).", "");
 
 799         const wxString& , GetReplaceString(),
 
 800         "Return the string to replace the search string with (only for replace
 
 801 and replace all events).", "");
 
 804         wxFindReplaceDialog *, GetDialog(),
 
 805         "Return the pointer to the dialog which generated this event.", "");
 
 808         void , SetFlags(int flags),
 
 812         void , SetFindString(const wxString& str),
 
 816         void , SetReplaceString(const wxString& str),
 
 822 DocStr(wxFindReplaceData, 
 
 823 "wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
 
 824 to initialize the dialog with the default values and will keep the
 
 825 last values from the dialog when it is closed. It is also updated each
 
 826 time a `wx.FindDialogEvent` is generated so instead of using the
 
 827 `wx.FindDialogEvent` methods you can also directly query this object.
 
 829 Note that all SetXXX() methods may only be called before showing the
 
 830 dialog and calling them has no effect later.", "
 
 834     ================   ===============================================  
 
 835     wx.FR_DOWN         Downward search/replace selected (otherwise,
 
 838     wx.FR_WHOLEWORD    Whole word search/replace selected
 
 840     wx.FR_MATCHCASE    Case sensitive search/replace selected
 
 841                        (otherwise, case insensitive)
 
 842     ================   ===============================================  
 
 848 class wxFindReplaceData : public wxObject
 
 852         wxFindReplaceData(int flags=0),
 
 853         "Constuctor initializes the flags to default value (0).", "");
 
 855     ~wxFindReplaceData();
 
 859         const wxString& , GetFindString(),
 
 860         "Get the string to find.", "");
 
 863         const wxString& , GetReplaceString(),
 
 864         "Get the replacement string.", "");
 
 868         "Get the combination of flag values.", "");
 
 871         void , SetFlags(int flags),
 
 872         "Set the flags to use to initialize the controls of the dialog.", "");
 
 875         void , SetFindString(const wxString& str),
 
 876         "Set the string to find (used as initial value by the dialog).", "");
 
 879         void , SetReplaceString(const wxString& str),
 
 880         "Set the replacement string (used as initial value by the dialog).", "");
 
 887 DocStr(wxFindReplaceDialog,
 
 888 "wx.FindReplaceDialog is a standard modeless dialog which is used to
 
 889 allow the user to search for some text (and possibly replace it with
 
 890 something else). The actual searching is supposed to be done in the
 
 891 owner window which is the parent of this dialog. Note that it means
 
 892 that unlike for the other standard dialogs this one must have a parent
 
 893 window. Also note that there is no way to use this dialog in a modal
 
 894 way; it is always, by design and implementation, modeless.", "
 
 900     =====================  =========================================
 
 901     wx.FR_REPLACEDIALOG    replace dialog (otherwise find dialog)
 
 903     wx.FR_NOUPDOWN         don't allow changing the search direction
 
 905     wx.FR_NOMATCHCASE      don't allow case sensitive searching
 
 907     wx.FR_NOWHOLEWORD      don't allow whole word searching
 
 908     =====================  =========================================
 
 911 MustHaveApp(wxFindReplaceDialog);
 
 913 class wxFindReplaceDialog : public wxDialog {
 
 915     %pythonAppend wxFindReplaceDialog     "self._setOORInfo(self)"
 
 916     %pythonAppend wxFindReplaceDialog()   ""
 
 919         wxFindReplaceDialog(wxWindow *parent,
 
 920                             wxFindReplaceData *data,
 
 921                             const wxString &title,
 
 923         "Create a FindReplaceDialog.  The parent and data parameters must be
 
 924 non-None.  Use Show to display the dialog.", "");
 
 927         wxFindReplaceDialog(),
 
 928         "Precreate a FindReplaceDialog for 2-phase creation", "",
 
 929         PreFindReplaceDialog);
 
 933         bool , Create(wxWindow *parent, wxFindReplaceData *data,
 
 934                       const wxString &title, int style = 0),
 
 935         "Create the dialog, for 2-phase create.", "");
 
 939         const wxFindReplaceData *, GetData(),
 
 940         "Get the FindReplaceData object used by this dialog.", "");
 
 943         void , SetData(wxFindReplaceData *data),
 
 944         "Set the FindReplaceData object used by this dialog.", "");
 
 948 //---------------------------------------------------------------------------
 
 949 //---------------------------------------------------------------------------