1wxFindReplaceData(3) Erlang Module Definition wxFindReplaceData(3)
2
3
4
6 wxFindReplaceData - Functions for wxFindReplaceData class
7
9 wxFindReplaceData holds the data for wxFindReplaceDialog.
10
11 It is used to initialize the dialog with the default values and will
12 keep the last values from the dialog when it is closed. It is also up‐
13 dated each time a wxFindDialogEvent (not implemented in wx) is gener‐
14 ated so instead of using the wxFindDialogEvent (not implemented in wx)
15 methods you can also directly query this object.
16
17 Note that all SetXXX() methods may only be called before showing the
18 dialog and calling them has no effect later.
19
20 wxWidgets docs: wxFindReplaceData
21
23 wxFindReplaceData() = wx:wx_object()
24
26 new() -> wxFindReplaceData()
27
28 new(Options :: [Option]) -> wxFindReplaceData()
29
30 Types:
31
32 Option = {flags, integer()}
33
34 Constructor initializes the flags to default value (0).
35
36 getFindString(This) -> unicode:charlist()
37
38 Types:
39
40 This = wxFindReplaceData()
41
42 Get the string to find.
43
44 getReplaceString(This) -> unicode:charlist()
45
46 Types:
47
48 This = wxFindReplaceData()
49
50 Get the replacement string.
51
52 getFlags(This) -> integer()
53
54 Types:
55
56 This = wxFindReplaceData()
57
58 Get the combination of wxFindReplaceFlags values.
59
60 setFlags(This, Flags) -> ok
61
62 Types:
63
64 This = wxFindReplaceData()
65 Flags = integer()
66
67 Set the flags to use to initialize the controls of the dialog.
68
69 setFindString(This, Str) -> ok
70
71 Types:
72
73 This = wxFindReplaceData()
74 Str = unicode:chardata()
75
76 Set the string to find (used as initial value by the dialog).
77
78 setReplaceString(This, Str) -> ok
79
80 Types:
81
82 This = wxFindReplaceData()
83 Str = unicode:chardata()
84
85 Set the replacement string (used as initial value by the dia‐
86 log).
87
88 destroy(This :: wxFindReplaceData()) -> ok
89
90 Destroys the object.
91
92
93
94wxWidgets team. wx 2.2.1 wxFindReplaceData(3)