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

NAME

6       wxAuiManager - See external documentation: wxAuiManager.
7

DESCRIPTION

9       See external documentation: wxAuiManager.
10
11       This class is derived (and can use functions) from:
12       wxEvtHandler
13

DATA TYPES

15         wxAuiManager():
16
17
18           An  object  reference,  The  representation  is internal and can be
19           changed without notice. It can't be used for comparsion  stored  on
20           disc or distributed for use on other nodes.
21

EXPORTS

23       new() -> wxAuiManager()
24
25              Equivalent to new([]).
26
27       new(Options::[Option]) -> wxAuiManager()
28
29              Types:
30
31                 Option  =  {managed_wnd, wxWindow:wxWindow()} | {flags, inte‐
32                 ger()}
33
34              See external documentation.
35
36       addPane(This, Window) -> boolean()
37
38              Types:
39
40                 This = wxAuiManager()
41                 Window = wxWindow:wxWindow()
42
43              Equivalent to addPane(This, Window, []).
44
45       addPane(This, Window, Options::[Option]) -> boolean()
46
47              Types:
48
49                 This = wxAuiManager()
50                 Window = wxWindow:wxWindow()
51                 Option = {direction,  integer()}  |  {caption,  unicode:char‐
52                 data()}
53
54              See external documentation.
55              Also:
56              addPane(This, Window, Pane_info) -> boolean() when
57              This::wxAuiManager(),               Window::wxWindow:wxWindow(),
58              Pane_info::wxAuiPaneInfo:wxAuiPaneInfo().
59
60
61       addPane(This, Window, Pane_info, Drop_pos) -> boolean()
62
63              Types:
64
65                 This = wxAuiManager()
66                 Window = wxWindow:wxWindow()
67                 Pane_info = wxAuiPaneInfo:wxAuiPaneInfo()
68                 Drop_pos = {X::integer(), Y::integer()}
69
70              See external documentation.
71
72       detachPane(This, Window) -> boolean()
73
74              Types:
75
76                 This = wxAuiManager()
77                 Window = wxWindow:wxWindow()
78
79              See external documentation.
80
81       getAllPanes(This) -> [wxAuiPaneInfo:wxAuiPaneInfo()]
82
83              Types:
84
85                 This = wxAuiManager()
86
87              See external documentation.
88
89       getArtProvider(This) -> wxAuiDockArt:wxAuiDockArt()
90
91              Types:
92
93                 This = wxAuiManager()
94
95              See external documentation.
96
97       getDockSizeConstraint(This) ->  {Width_pct::number(),  Height_pct::num‐
98       ber()}
99
100              Types:
101
102                 This = wxAuiManager()
103
104              See external documentation.
105
106       getFlags(This) -> integer()
107
108              Types:
109
110                 This = wxAuiManager()
111
112              See external documentation.
113
114       getManagedWindow(This) -> wxWindow:wxWindow()
115
116              Types:
117
118                 This = wxAuiManager()
119
120              See external documentation.
121
122       getManager(Window) -> wxAuiManager()
123
124              Types:
125
126                 Window = wxWindow:wxWindow()
127
128              See external documentation.
129
130       getPane(This, Name) -> wxAuiPaneInfo:wxAuiPaneInfo()
131
132              Types:
133
134                 This = wxAuiManager()
135                 Name = unicode:chardata()
136
137              See external documentation.
138              Also:
139              getPane(This, Window) -> wxAuiPaneInfo:wxAuiPaneInfo() when
140              This::wxAuiManager(), Window::wxWindow:wxWindow().
141
142
143       hideHint(This) -> ok
144
145              Types:
146
147                 This = wxAuiManager()
148
149              See external documentation.
150
151       insertPane(This, Window, Insert_location) -> boolean()
152
153              Types:
154
155                 This = wxAuiManager()
156                 Window = wxWindow:wxWindow()
157                 Insert_location = wxAuiPaneInfo:wxAuiPaneInfo()
158
159              Equivalent to insertPane(This, Window, Insert_location, []).
160
161       insertPane(This,  Window,  Insert_location, Options::[Option]) -> bool‐
162       ean()
163
164              Types:
165
166                 This = wxAuiManager()
167                 Window = wxWindow:wxWindow()
168                 Insert_location = wxAuiPaneInfo:wxAuiPaneInfo()
169                 Option = {insert_level, integer()}
170
171              See external documentation.
172
173       loadPaneInfo(This, Pane_part, Pane) -> ok
174
175              Types:
176
177                 This = wxAuiManager()
178                 Pane_part = unicode:chardata()
179                 Pane = wxAuiPaneInfo:wxAuiPaneInfo()
180
181              See external documentation.
182
183       loadPerspective(This, Perspective) -> boolean()
184
185              Types:
186
187                 This = wxAuiManager()
188                 Perspective = unicode:chardata()
189
190              Equivalent to loadPerspective(This, Perspective, []).
191
192       loadPerspective(This, Perspective, Options::[Option]) -> boolean()
193
194              Types:
195
196                 This = wxAuiManager()
197                 Perspective = unicode:chardata()
198                 Option = {update, boolean()}
199
200              See external documentation.
201
202       savePaneInfo(This, Pane) -> unicode:charlist()
203
204              Types:
205
206                 This = wxAuiManager()
207                 Pane = wxAuiPaneInfo:wxAuiPaneInfo()
208
209              See external documentation.
210
211       savePerspective(This) -> unicode:charlist()
212
213              Types:
214
215                 This = wxAuiManager()
216
217              See external documentation.
218
219       setArtProvider(This, Art_provider) -> ok
220
221              Types:
222
223                 This = wxAuiManager()
224                 Art_provider = wxAuiDockArt:wxAuiDockArt()
225
226              See external documentation.
227
228       setDockSizeConstraint(This, Width_pct, Height_pct) -> ok
229
230              Types:
231
232                 This = wxAuiManager()
233                 Width_pct = number()
234                 Height_pct = number()
235
236              See external documentation.
237
238       setFlags(This, Flags) -> ok
239
240              Types:
241
242                 This = wxAuiManager()
243                 Flags = integer()
244
245              See external documentation.
246
247       setManagedWindow(This, Managed_wnd) -> ok
248
249              Types:
250
251                 This = wxAuiManager()
252                 Managed_wnd = wxWindow:wxWindow()
253
254              See external documentation.
255
256       showHint(This, Rect) -> ok
257
258              Types:
259
260                 This = wxAuiManager()
261                 Rect = {X::integer(),  Y::integer(),  W::integer(),  H::inte‐
262                 ger()}
263
264              See external documentation.
265
266       unInit(This) -> ok
267
268              Types:
269
270                 This = wxAuiManager()
271
272              See external documentation.
273
274       update(This) -> ok
275
276              Types:
277
278                 This = wxAuiManager()
279
280              See external documentation.
281
282       destroy(This::wxAuiManager()) -> ok
283
284              Destroys this object, do not use object again
285

AUTHORS

287       <>
288
289
290
291                                    wx 1.9                     wxAuiManager(3)
Impressum