wx.FindReplaceDialog events.
^^
Handlers bound for the following event types will receive a wx.FindDialogEvent parameter.
EVT_FIND: Find button was pressed in the dialog.
EVT_FIND_NEXT: Find next button was pressed in the dialog.
EVT_FIND_REPLACE: Replace button was pressed in the dialog.
EVT_FIND_REPLACE_ALL: Replace all button was pressed in the dialog.
EVT_FIND_CLOSE: The dialog is being destroyed, any pointers to it cannot be used any longer. ^^
Constructor used by wxWidgets only. |
|
Return the pointer to the dialog which generated this event. |
|
Return the string to find (never empty). |
|
Get the currently selected flags: this is the combination of the wx.FindReplaceFlags enumeration values. |
|
Return the string to replace the search string with (only for replace and replace all events). |
See |
|
See |
|
See |
|
See |
wx.
FindDialogEvent
(CommandEvent)¶Possible constructors:
FindDialogEvent(commandType=wxEVT_NULL, id=0)
FindReplaceDialog events.
__init__
(self, commandType=wxEVT_NULL, id=0)¶Constructor used by wxWidgets only.
commandType (wx.EventType) –
id (int) –
GetDialog
(self)¶Return the pointer to the dialog which generated this event.
GetFindString
(self)¶Return the string to find (never empty).
string
GetFlags
(self)¶Get the currently selected flags: this is the combination of the wx.FindReplaceFlags enumeration values.
int
GetReplaceString
(self)¶Return the string to replace the search string with (only for replace and replace all events).
string
FindString
¶See GetFindString
ReplaceString
¶See GetReplaceString