1wxFindReplaceDialog(3) Erlang Module Definition wxFindReplaceDialog(3)
2
3
4
6 wxFindReplaceDialog - Functions for wxFindReplaceDialog class
7
9 wxFindReplaceDialog is a standard modeless dialog which is used to al‐
10 low the user to search for some text (and possibly replace it with
11 something else).
12
13 The actual searching is supposed to be done in the owner window which
14 is the parent of this dialog. Note that it means that unlike for the
15 other standard dialogs this one must have a parent window. Also note
16 that there is no way to use this dialog in a modal way; it is always,
17 by design and implementation, modeless.
18
19 Please see the page_samples_dialogs sample for an example of using it.
20
21 This class is derived (and can use functions) from: wxDialog wxTo‐
22 pLevelWindow wxWindow wxEvtHandler
23
24 wxWidgets docs: wxFindReplaceDialog
25
27 wxFindReplaceDialog() = wx:wx_object()
28
30 new() -> wxFindReplaceDialog()
31
32 new(Parent, Data, Title) -> wxFindReplaceDialog()
33
34 Types:
35
36 Parent = wxWindow:wxWindow()
37 Data = wxFindReplaceData:wxFindReplaceData()
38 Title = unicode:chardata()
39
40 new(Parent, Data, Title, Options :: [Option]) ->
41 wxFindReplaceDialog()
42
43 Types:
44
45 Parent = wxWindow:wxWindow()
46 Data = wxFindReplaceData:wxFindReplaceData()
47 Title = unicode:chardata()
48 Option = {style, integer()}
49
50 After using default constructor create/5 must be called.
51
52 The parent and data parameters must be non-NULL.
53
54 destroy(This :: wxFindReplaceDialog()) -> ok
55
56 Destructor.
57
58 create(This, Parent, Data, Title) -> boolean()
59
60 Types:
61
62 This = wxFindReplaceDialog()
63 Parent = wxWindow:wxWindow()
64 Data = wxFindReplaceData:wxFindReplaceData()
65 Title = unicode:chardata()
66
67 create(This, Parent, Data, Title, Options :: [Option]) ->
68 boolean()
69
70 Types:
71
72 This = wxFindReplaceDialog()
73 Parent = wxWindow:wxWindow()
74 Data = wxFindReplaceData:wxFindReplaceData()
75 Title = unicode:chardata()
76 Option = {style, integer()}
77
78 Creates the dialog; use wxWindow:show/2 to show it on screen.
79
80 The parent and data parameters must be non-NULL.
81
82 getData(This) -> wxFindReplaceData:wxFindReplaceData()
83
84 Types:
85
86 This = wxFindReplaceDialog()
87
88 Get the wxFindReplaceData object used by this dialog.
89
90
91
92wxWidgets team. wx 2.1 wxFindReplaceDialog(3)