1wxChoicebook(3) Erlang Module Definition wxChoicebook(3)
2
3
4
6 wxChoicebook - See external documentation: wxChoicebook.
7
9 See external documentation: wxChoicebook.
10
11 This class is derived (and can use functions) from:
12 wxControl
13 wxWindow
14 wxEvtHandler
15
17 wxChoicebook():
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() -> wxChoicebook()
26
27 See external documentation.
28
29 new(Parent, Id) -> wxChoicebook()
30
31 Types:
32
33 Parent = wxWindow:wxWindow()
34 Id = integer()
35
36 Equivalent to new(Parent, Id, []).
37
38 new(Parent, Id, Options::[Option]) -> wxChoicebook()
39
40 Types:
41
42 Parent = wxWindow:wxWindow()
43 Id = integer()
44 Option = {pos, {X::integer(), Y::integer()}} | {size,
45 {W::integer(), H::integer()}} | {style, integer()}
46
47 See external documentation.
48
49 addPage(This, Page, Text) -> boolean()
50
51 Types:
52
53 This = wxChoicebook()
54 Page = wxWindow:wxWindow()
55 Text = unicode:chardata()
56
57 Equivalent to addPage(This, Page, Text, []).
58
59 addPage(This, Page, Text, Options::[Option]) -> boolean()
60
61 Types:
62
63 This = wxChoicebook()
64 Page = wxWindow:wxWindow()
65 Text = unicode:chardata()
66 Option = {bSelect, boolean()} | {imageId, integer()}
67
68 See external documentation.
69
70 advanceSelection(This) -> ok
71
72 Types:
73
74 This = wxChoicebook()
75
76 Equivalent to advanceSelection(This, []).
77
78 advanceSelection(This, Options::[Option]) -> ok
79
80 Types:
81
82 This = wxChoicebook()
83 Option = {forward, boolean()}
84
85 See external documentation.
86
87 assignImageList(This, ImageList) -> ok
88
89 Types:
90
91 This = wxChoicebook()
92 ImageList = wxImageList:wxImageList()
93
94 See external documentation.
95
96 create(This, Parent, Id) -> boolean()
97
98 Types:
99
100 This = wxChoicebook()
101 Parent = wxWindow:wxWindow()
102 Id = integer()
103
104 Equivalent to create(This, Parent, Id, []).
105
106 create(This, Parent, Id, Options::[Option]) -> boolean()
107
108 Types:
109
110 This = wxChoicebook()
111 Parent = wxWindow:wxWindow()
112 Id = integer()
113 Option = {pos, {X::integer(), Y::integer()}} | {size,
114 {W::integer(), H::integer()}} | {style, integer()}
115
116 See external documentation.
117
118 deleteAllPages(This) -> boolean()
119
120 Types:
121
122 This = wxChoicebook()
123
124 See external documentation.
125
126 deletePage(This, N) -> boolean()
127
128 Types:
129
130 This = wxChoicebook()
131 N = integer()
132
133 See external documentation.
134
135 removePage(This, N) -> boolean()
136
137 Types:
138
139 This = wxChoicebook()
140 N = integer()
141
142 See external documentation.
143
144 getCurrentPage(This) -> wxWindow:wxWindow()
145
146 Types:
147
148 This = wxChoicebook()
149
150 See external documentation.
151
152 getImageList(This) -> wxImageList:wxImageList()
153
154 Types:
155
156 This = wxChoicebook()
157
158 See external documentation.
159
160 getPage(This, N) -> wxWindow:wxWindow()
161
162 Types:
163
164 This = wxChoicebook()
165 N = integer()
166
167 See external documentation.
168
169 getPageCount(This) -> integer()
170
171 Types:
172
173 This = wxChoicebook()
174
175 See external documentation.
176
177 getPageImage(This, N) -> integer()
178
179 Types:
180
181 This = wxChoicebook()
182 N = integer()
183
184 See external documentation.
185
186 getPageText(This, N) -> unicode:charlist()
187
188 Types:
189
190 This = wxChoicebook()
191 N = integer()
192
193 See external documentation.
194
195 getSelection(This) -> integer()
196
197 Types:
198
199 This = wxChoicebook()
200
201 See external documentation.
202
203 hitTest(This, Pt) -> Result
204
205 Types:
206
207 Result = {Res::integer(), Flags::integer()}
208 This = wxChoicebook()
209 Pt = {X::integer(), Y::integer()}
210
211 See external documentation.
212
213 insertPage(This, N, Page, Text) -> boolean()
214
215 Types:
216
217 This = wxChoicebook()
218 N = integer()
219 Page = wxWindow:wxWindow()
220 Text = unicode:chardata()
221
222 Equivalent to insertPage(This, N, Page, Text, []).
223
224 insertPage(This, N, Page, Text, Options::[Option]) -> boolean()
225
226 Types:
227
228 This = wxChoicebook()
229 N = integer()
230 Page = wxWindow:wxWindow()
231 Text = unicode:chardata()
232 Option = {bSelect, boolean()} | {imageId, integer()}
233
234 See external documentation.
235
236 setImageList(This, ImageList) -> ok
237
238 Types:
239
240 This = wxChoicebook()
241 ImageList = wxImageList:wxImageList()
242
243 See external documentation.
244
245 setPageSize(This, Size) -> ok
246
247 Types:
248
249 This = wxChoicebook()
250 Size = {W::integer(), H::integer()}
251
252 See external documentation.
253
254 setPageImage(This, N, ImageId) -> boolean()
255
256 Types:
257
258 This = wxChoicebook()
259 N = integer()
260 ImageId = integer()
261
262 See external documentation.
263
264 setPageText(This, N, StrText) -> boolean()
265
266 Types:
267
268 This = wxChoicebook()
269 N = integer()
270 StrText = unicode:chardata()
271
272 See external documentation.
273
274 setSelection(This, N) -> integer()
275
276 Types:
277
278 This = wxChoicebook()
279 N = integer()
280
281 See external documentation.
282
283 changeSelection(This, N) -> integer()
284
285 Types:
286
287 This = wxChoicebook()
288 N = integer()
289
290 See external documentation.
291
292 destroy(This::wxChoicebook()) -> ok
293
294 Destroys this object, do not use object again
295
297 <>
298
299
300
301 wx 1.9 wxChoicebook(3)