FindReplaceDialog events
To process a command event from
FindReplaceDialog, use these event handler
macros to direct input to member functions that take a FindDialogEvent
argument. The id parameter is the identifier of the find dialog and you
may usually specify $-1$ for it unless you plan to have several find dialogs
sending events to the same owner window simultaneously.
evt_find(id) { | event | … } | Find button was pressed in the dialog. |
evt_find_next(id) { | event | … } | Find next button was pressed in the dialog. |
evt_find_replace(id) { | event | … } | Replace button was pressed in the dialog. |
evt_find_replace_all(id) { | event | … } | Replace all button was pressed in the dialog. |
evt_find_close(id) { | event | … } | The dialog is being destroyed,any pointers to it cannot be used any longer. |
Constuctor used by Widgets only.
Get the currently selected flags: this is the combination of FR_DOWN
,
FR_WHOLEWORD
and FR_MATCHCASE
flags.
Return the string to find (never empty).
Return the string to replace the search string with (only for replace and
replace all events).
Return the pointer to the dialog which generated this event.
[This page automatically generated from the Textile source at 2023-06-09 00:45:30 +0000]