wx.FindReplaceDialog

Inheritance diagram for wx.FindReplaceDialog:



Description

wx.FindReplaceDialog is a standard modeless dialog which is used to allow the user to search for some text (and possibly replace it with something else). The actual searching is supposed to be done in the owner window which is the parent of this dialog.

Note

Note that it means that unlike for the other standard dialogs this one must have a parent window. Also note that there is no way to use this dialog in a modal way; it is always, by design and implementation, modeless.

Derived From

Window Styles

Window Style Description
wx.FR_REPLACEDIALOG Replace dialog (otherwise find dialog)
wx.FR_NOUPDOWN Don’t allow changing the search direction
wx.FR_NOMATCHCASE Don’t allow case sensitive searching
wx.FR_NOWHOLEWORD Don’t allow whole word searching

Methods Summary

Properties Summary

Class API

Methods

__init__(parent, data, title, style=0)

Create a wx.FindReplaceDialog. The parent and data parameters must be non-None. Use Show to display the dialog.

Parameters:


Returns:

wx.FindReplaceDialog


GetData()

Get the wx.FindReplaceData object used by this dialog.


Returns:

wx.FindReplaceData


SetData(data)

Set the wx.FindReplaceData object used by this dialog.

Parameters:


Properties

Data
See GetData and SetData