wx.FindDialogEvent¶
wx.FindReplaceDialog events.
Events Emitted by this Class¶
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.
Class Hierarchy¶
Methods Summary¶
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). |
Properties Summary¶
See |
|
See |
|
See |
|
See |
Class API¶
- class wx.FindDialogEvent(CommandEvent)¶
Possible constructors:
FindDialogEvent(commandType=wxEVT_NULL, id=0) -> None
FindReplaceDialog events.
Methods¶
- __init__(self, commandType=wxEVT_NULL, id=0)¶
Constructor used by wxWidgets only.
- Parameters:
commandType (wx.EventType)
id (int)
- Return type:
None
- GetDialog(self)¶
Return the pointer to the dialog which generated this event.
- Return type:
- GetFindString(self)¶
Return the string to find (never empty).
- Return type:
str
- GetFlags(self)¶
Get the currently selected flags: this is the combination of the wx.FindReplaceFlags enumeration values.
- Return type:
int
- GetReplaceString(self)¶
Return the string to replace the search string with (only for replace and replace all events).
- Return type:
str
Properties¶
- FindString¶
See
GetFindString
- ReplaceString¶
See
GetReplaceString