1wxToolbook(3)              Erlang Module Definition              wxToolbook(3)
2
3
4

NAME

6       wxToolbook - See external documentation: wxToolbook.
7

DESCRIPTION

9       See external documentation: wxToolbook.
10
11       This class is derived (and can use functions) from:
12       wxControl
13       wxWindow
14       wxEvtHandler
15

DATA TYPES

17         wxToolbook():
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

EXPORTS

25       new() -> wxToolbook()
26
27              See external documentation.
28
29       new(Parent, Id) -> wxToolbook()
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]) -> wxToolbook()
39
40              Types:
41
42                 Parent = wxWindow:wxWindow()
43                 Id = integer()
44                 Option = {pos, {X::integer(), Y::integer()}} | {size, {W::in‐
45                 teger(), H::integer()}} | {style, integer()}
46
47              See external documentation.
48
49       addPage(This, Page, Text) -> boolean()
50
51              Types:
52
53                 This = wxToolbook()
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 = wxToolbook()
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 = wxToolbook()
75
76              Equivalent to advanceSelection(This, []).
77
78       advanceSelection(This, Options::[Option]) -> ok
79
80              Types:
81
82                 This = wxToolbook()
83                 Option = {forward, boolean()}
84
85              See external documentation.
86
87       assignImageList(This, ImageList) -> ok
88
89              Types:
90
91                 This = wxToolbook()
92                 ImageList = wxImageList:wxImageList()
93
94              See external documentation.
95
96       create(This, Parent, Id) -> boolean()
97
98              Types:
99
100                 This = wxToolbook()
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 = wxToolbook()
111                 Parent = wxWindow:wxWindow()
112                 Id = integer()
113                 Option = {pos, {X::integer(), Y::integer()}} | {size, {W::in‐
114                 teger(), H::integer()}} | {style, integer()}
115
116              See external documentation.
117
118       deleteAllPages(This) -> boolean()
119
120              Types:
121
122                 This = wxToolbook()
123
124              See external documentation.
125
126       deletePage(This, N) -> boolean()
127
128              Types:
129
130                 This = wxToolbook()
131                 N = integer()
132
133              See external documentation.
134
135       removePage(This, N) -> boolean()
136
137              Types:
138
139                 This = wxToolbook()
140                 N = integer()
141
142              See external documentation.
143
144       getCurrentPage(This) -> wxWindow:wxWindow()
145
146              Types:
147
148                 This = wxToolbook()
149
150              See external documentation.
151
152       getImageList(This) -> wxImageList:wxImageList()
153
154              Types:
155
156                 This = wxToolbook()
157
158              See external documentation.
159
160       getPage(This, N) -> wxWindow:wxWindow()
161
162              Types:
163
164                 This = wxToolbook()
165                 N = integer()
166
167              See external documentation.
168
169       getPageCount(This) -> integer()
170
171              Types:
172
173                 This = wxToolbook()
174
175              See external documentation.
176
177       getPageImage(This, N) -> integer()
178
179              Types:
180
181                 This = wxToolbook()
182                 N = integer()
183
184              See external documentation.
185
186       getPageText(This, N) -> unicode:charlist()
187
188              Types:
189
190                 This = wxToolbook()
191                 N = integer()
192
193              See external documentation.
194
195       getSelection(This) -> integer()
196
197              Types:
198
199                 This = wxToolbook()
200
201              See external documentation.
202
203       hitTest(This, Pt) -> Result
204
205              Types:
206
207                 Result = {Res::integer(), Flags::integer()}
208                 This = wxToolbook()
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 = wxToolbook()
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 = wxToolbook()
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 = wxToolbook()
241                 ImageList = wxImageList:wxImageList()
242
243              See external documentation.
244
245       setPageSize(This, Size) -> ok
246
247              Types:
248
249                 This = wxToolbook()
250                 Size = {W::integer(), H::integer()}
251
252              See external documentation.
253
254       setPageImage(This, N, ImageId) -> boolean()
255
256              Types:
257
258                 This = wxToolbook()
259                 N = integer()
260                 ImageId = integer()
261
262              See external documentation.
263
264       setPageText(This, N, StrText) -> boolean()
265
266              Types:
267
268                 This = wxToolbook()
269                 N = integer()
270                 StrText = unicode:chardata()
271
272              See external documentation.
273
274       setSelection(This, N) -> integer()
275
276              Types:
277
278                 This = wxToolbook()
279                 N = integer()
280
281              See external documentation.
282
283       changeSelection(This, N) -> integer()
284
285              Types:
286
287                 This = wxToolbook()
288                 N = integer()
289
290              See external documentation.
291
292       destroy(This::wxToolbook()) -> ok
293
294              Destroys this object, do not use object again
295

AUTHORS

297       <>
298
299
300
301                                  wx 1.9.3.1                     wxToolbook(3)
Impressum