wxFindReplaceData holds the data for wxFindReplaceDialog.
It is used to initialize the dialog with the default values and will keep the last values
from the dialog when it is closed. It is also updated each time a wxFindDialogEvent (not
implemented in wx) is generated so instead of using the wxFindDialogEvent (not
implemented in wx) methods you can also directly query this object.
Note that all SetXXX() methods may only be called before showing the dialog and calling
them has no effect later.
wxWidgets docs: wxFindReplaceData
Summary
Functions
Destroys the object
Get the string to find.
Get the combination of wxFindReplaceFlags values.
Get the replacement string.
Constructor initializes the flags to default value (0).
Set the string to find (used as initial value by the dialog).
Set the flags to use to initialize the controls of the dialog.
Set the replacement string (used as initial value by the dialog).
Types
-type wxFindReplaceData() :: wx:wx_object().
Functions
destroy(This :: wxFindReplaceData()) -> ok
Destroys the object
getFindString(This :: wxFindReplaceData()) -> unicode:charlist()
Get the string to find.
getFlags(This :: wxFindReplaceData()) -> integer()
Get the combination of wxFindReplaceFlags values.
getReplaceString(This :: wxFindReplaceData()) -> unicode:charlist()
Get the replacement string.
new(Options :: [Option]) -> wxFindReplaceData()
Types
Option = {flags, integer()}
Constructor initializes the flags to default value (0).
setFindString(This :: wxFindReplaceData(), Str :: unicode:chardata()) -> ok
Set the string to find (used as initial value by the dialog).
setFlags(This :: wxFindReplaceData(), Flags :: integer()) -> ok
Set the flags to use to initialize the controls of the dialog.
setReplaceString(This :: wxFindReplaceData(), Str :: unicode:chardata()) -> ok
Set the replacement string (used as initial value by the dialog).