1wxFrame(3) Erlang Module Definition wxFrame(3)
2
3
4
6 wxFrame - See external documentation: wxFrame.
7
9 See external documentation: wxFrame.
10
11 This class is derived (and can use functions) from:
12 wxTopLevelWindow
13 wxWindow
14 wxEvtHandler
15
17 wxFrame():
18
19
20 An object reference, The representation is internal and can be
21 changed without notice. It can't be used for comparsion stored on
22 disc or distributed for use on other nodes.
23
25 new() -> wxFrame()
26
27 See external documentation.
28
29 new(Parent, Id, Title) -> wxFrame()
30
31 Types:
32
33 Parent = wxWindow:wxWindow()
34 Id = integer()
35 Title = unicode:chardata()
36
37 Equivalent to new(Parent, Id, Title, []).
38
39 new(Parent, Id, Title, Options::[Option]) -> wxFrame()
40
41 Types:
42
43 Parent = wxWindow:wxWindow()
44 Id = integer()
45 Title = unicode:chardata()
46 Option = {pos, {X::integer(), Y::integer()}} | {size,
47 {W::integer(), H::integer()}} | {style, integer()}
48
49 See external documentation.
50
51 create(This, Parent, Id, Title) -> boolean()
52
53 Types:
54
55 This = wxFrame()
56 Parent = wxWindow:wxWindow()
57 Id = integer()
58 Title = unicode:chardata()
59
60 Equivalent to create(This, Parent, Id, Title, []).
61
62 create(This, Parent, Id, Title, Options::[Option]) -> boolean()
63
64 Types:
65
66 This = wxFrame()
67 Parent = wxWindow:wxWindow()
68 Id = integer()
69 Title = unicode:chardata()
70 Option = {pos, {X::integer(), Y::integer()}} | {size,
71 {W::integer(), H::integer()}} | {style, integer()}
72
73 See external documentation.
74
75 createStatusBar(This) -> wxStatusBar:wxStatusBar()
76
77 Types:
78
79 This = wxFrame()
80
81 Equivalent to createStatusBar(This, []).
82
83 createStatusBar(This, Options::[Option]) -> wxStatusBar:wxStatusBar()
84
85 Types:
86
87 This = wxFrame()
88 Option = {number, integer()} | {style, integer()} | {id,
89 integer()}
90
91 See external documentation.
92
93 createToolBar(This) -> wxToolBar:wxToolBar()
94
95 Types:
96
97 This = wxFrame()
98
99 Equivalent to createToolBar(This, []).
100
101 createToolBar(This, Options::[Option]) -> wxToolBar:wxToolBar()
102
103 Types:
104
105 This = wxFrame()
106 Option = {style, integer()} | {id, integer()}
107
108 See external documentation.
109
110 getClientAreaOrigin(This) -> {X::integer(), Y::integer()}
111
112 Types:
113
114 This = wxFrame()
115
116 See external documentation.
117
118 getMenuBar(This) -> wxMenuBar:wxMenuBar()
119
120 Types:
121
122 This = wxFrame()
123
124 See external documentation.
125
126 getStatusBar(This) -> wxStatusBar:wxStatusBar()
127
128 Types:
129
130 This = wxFrame()
131
132 See external documentation.
133
134 getStatusBarPane(This) -> integer()
135
136 Types:
137
138 This = wxFrame()
139
140 See external documentation.
141
142 getToolBar(This) -> wxToolBar:wxToolBar()
143
144 Types:
145
146 This = wxFrame()
147
148 See external documentation.
149
150 processCommand(This, Winid) -> boolean()
151
152 Types:
153
154 This = wxFrame()
155 Winid = integer()
156
157 See external documentation.
158
159 sendSizeEvent(This) -> ok
160
161 Types:
162
163 This = wxFrame()
164
165 See external documentation.
166
167 setMenuBar(This, Menubar) -> ok
168
169 Types:
170
171 This = wxFrame()
172 Menubar = wxMenuBar:wxMenuBar()
173
174 See external documentation.
175
176 setStatusBar(This, Statbar) -> ok
177
178 Types:
179
180 This = wxFrame()
181 Statbar = wxStatusBar:wxStatusBar()
182
183 See external documentation.
184
185 setStatusBarPane(This, N) -> ok
186
187 Types:
188
189 This = wxFrame()
190 N = integer()
191
192 See external documentation.
193
194 setStatusText(This, Text) -> ok
195
196 Types:
197
198 This = wxFrame()
199 Text = unicode:chardata()
200
201 Equivalent to setStatusText(This, Text, []).
202
203 setStatusText(This, Text, Options::[Option]) -> ok
204
205 Types:
206
207 This = wxFrame()
208 Text = unicode:chardata()
209 Option = {number, integer()}
210
211 See external documentation.
212
213 setStatusWidths(This, Widths_field) -> ok
214
215 Types:
216
217 This = wxFrame()
218 Widths_field = [integer()]
219
220 See external documentation.
221
222 setToolBar(This, Toolbar) -> ok
223
224 Types:
225
226 This = wxFrame()
227 Toolbar = wxToolBar:wxToolBar()
228
229 See external documentation.
230
231 destroy(This::wxFrame()) -> ok
232
233 Destroys this object, do not use object again
234
236 <>
237
238
239
240 wx 1.8.3 wxFrame(3)