1%%
2%% %CopyrightBegin%
3%%
4%% Copyright Ericsson AB 2008-2020. All Rights Reserved.
5%%
6%% Licensed under the Apache License, Version 2.0 (the "License");
7%% you may not use this file except in compliance with the License.
8%% You may obtain a copy of the License at
9%%
10%%     http://www.apache.org/licenses/LICENSE-2.0
11%%
12%% Unless required by applicable law or agreed to in writing, software
13%% distributed under the License is distributed on an "AS IS" BASIS,
14%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15%% See the License for the specific language governing permissions and
16%% limitations under the License.
17%%
18%% %CopyrightEnd%
19%% This file is generated DO NOT EDIT
20
21-module(wxMultiChoiceDialog).
22-include("wxe.hrl").
23-export([destroy/1,getSelections/1,new/4,new/5,setSelections/2]).
24
25%% inherited exports
26-export([cacheBestSize/2,canSetTransparent/1,captureMouse/1,center/1,center/2,
27  centerOnParent/1,centerOnParent/2,centerOnScreen/1,centerOnScreen/2,
28  centre/1,centre/2,centreOnParent/1,centreOnParent/2,centreOnScreen/1,
29  centreOnScreen/2,clearBackground/1,clientToScreen/2,clientToScreen/3,
30  close/1,close/2,connect/2,connect/3,convertDialogToPixels/2,convertPixelsToDialog/2,
31  createButtonSizer/2,createStdDialogButtonSizer/2,destroyChildren/1,
32  disable/1,disconnect/1,disconnect/2,disconnect/3,dragAcceptFiles/2,
33  enable/1,enable/2,endModal/2,findWindow/2,fit/1,fitInside/1,freeze/1,
34  getAcceleratorTable/1,getAffirmativeId/1,getBackgroundColour/1,getBackgroundStyle/1,
35  getBestSize/1,getCaret/1,getCharHeight/1,getCharWidth/1,getChildren/1,
36  getClientSize/1,getContainingSizer/1,getContentScaleFactor/1,getCursor/1,
37  getDPI/1,getDPIScaleFactor/1,getDropTarget/1,getExtraStyle/1,getFont/1,
38  getForegroundColour/1,getGrandParent/1,getHandle/1,getHelpText/1,
39  getIcon/1,getIcons/1,getId/1,getLabel/1,getMaxSize/1,getMinSize/1,getName/1,
40  getParent/1,getPosition/1,getRect/1,getReturnCode/1,getScreenPosition/1,
41  getScreenRect/1,getScrollPos/2,getScrollRange/2,getScrollThumb/2,
42  getSize/1,getSizer/1,getTextExtent/2,getTextExtent/3,getThemeEnabled/1,
43  getTitle/1,getToolTip/1,getUpdateRegion/1,getVirtualSize/1,getWindowStyleFlag/1,
44  getWindowVariant/1,hasCapture/1,hasScrollbar/2,hasTransparentBackground/1,
45  hide/1,iconize/1,iconize/2,inheritAttributes/1,initDialog/1,invalidateBestSize/1,
46  isActive/1,isDoubleBuffered/1,isEnabled/1,isExposed/2,isExposed/3,
47  isExposed/5,isFrozen/1,isFullScreen/1,isIconized/1,isMaximized/1,isModal/1,
48  isRetained/1,isShown/1,isShownOnScreen/1,isTopLevel/1,layout/1,lineDown/1,
49  lineUp/1,lower/1,maximize/1,maximize/2,move/2,move/3,move/4,moveAfterInTabOrder/2,
50  moveBeforeInTabOrder/2,navigate/1,navigate/2,pageDown/1,pageUp/1,parent_class/1,
51  popupMenu/2,popupMenu/3,popupMenu/4,raise/1,refresh/1,refresh/2,refreshRect/2,
52  refreshRect/3,releaseMouse/1,removeChild/2,reparent/2,requestUserAttention/1,
53  requestUserAttention/2,screenToClient/1,screenToClient/2,scrollLines/2,
54  scrollPages/2,scrollWindow/3,scrollWindow/4,setAcceleratorTable/2,
55  setAffirmativeId/2,setAutoLayout/2,setBackgroundColour/2,setBackgroundStyle/2,
56  setCaret/2,setClientSize/2,setClientSize/3,setContainingSizer/2,setCursor/2,
57  setDoubleBuffered/2,setDropTarget/2,setExtraStyle/2,setFocus/1,setFocusFromKbd/1,
58  setFont/2,setForegroundColour/2,setHelpText/2,setIcon/2,setIcons/2,
59  setId/2,setLabel/2,setMaxSize/2,setMinSize/2,setName/2,setOwnBackgroundColour/2,
60  setOwnFont/2,setOwnForegroundColour/2,setPalette/2,setReturnCode/2,
61  setScrollPos/3,setScrollPos/4,setScrollbar/5,setScrollbar/6,setShape/2,
62  setSize/2,setSize/3,setSize/5,setSize/6,setSizeHints/2,setSizeHints/3,
63  setSizeHints/4,setSizer/2,setSizer/3,setSizerAndFit/2,setSizerAndFit/3,
64  setThemeEnabled/2,setTitle/2,setToolTip/2,setTransparent/2,setVirtualSize/2,
65  setVirtualSize/3,setWindowStyle/2,setWindowStyleFlag/2,setWindowVariant/2,
66  shouldInheritColours/1,show/1,show/2,showFullScreen/2,showFullScreen/3,
67  showModal/1,thaw/1,transferDataFromWindow/1,transferDataToWindow/1,
68  update/1,updateWindowUI/1,updateWindowUI/2,validate/1,warpPointer/3]).
69
70-type wxMultiChoiceDialog() :: wx:wx_object().
71-export_type([wxMultiChoiceDialog/0]).
72%% @hidden
73parent_class(wxDialog) -> true;
74parent_class(wxTopLevelWindow) -> true;
75parent_class(wxWindow) -> true;
76parent_class(wxEvtHandler) -> true;
77parent_class(_Class) -> erlang:error({badtype, ?MODULE}).
78
79%% @equiv new(Parent,Message,Caption,Choices, [])
80-spec new(Parent, Message, Caption, Choices) -> wxMultiChoiceDialog() when
81	Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[unicode:chardata()].
82
83new(Parent,Message,Caption,Choices)
84 when is_record(Parent, wx_ref),?is_chardata(Message),?is_chardata(Caption),is_list(Choices) ->
85  new(Parent,Message,Caption,Choices, []).
86
87%% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxmultichoicedialog.html#wxmultichoicedialogwxmultichoicedialog">external documentation</a>.
88-spec new(Parent, Message, Caption, Choices, [Option]) -> wxMultiChoiceDialog() when
89	Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[unicode:chardata()],
90	Option :: {'style', integer()}
91		 | {'pos', {X::integer(), Y::integer()}}.
92new(#wx_ref{type=ParentT}=Parent,Message,Caption,Choices, Options)
93 when ?is_chardata(Message),?is_chardata(Caption),is_list(Choices),is_list(Options) ->
94  ?CLASS(ParentT,wxWindow),
95  Message_UC = unicode:characters_to_binary(Message),
96  Caption_UC = unicode:characters_to_binary(Caption),
97  Choices_UCA = [unicode:characters_to_binary(ChoicesTemp) ||
98              ChoicesTemp <- Choices],
99  MOpts = fun({style, _style} = Arg) -> Arg;
100          ({pos, {_posX,_posY}} = Arg) -> Arg;
101          (BadOpt) -> erlang:error({badoption, BadOpt}) end,
102  Opts = lists:map(MOpts, Options),
103  wxe_util:queue_cmd(Parent,Message_UC,Caption_UC,Choices_UCA, Opts,?get_env(),?wxMultiChoiceDialog_new),
104  wxe_util:rec(?wxMultiChoiceDialog_new).
105
106%% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxmultichoicedialog.html#wxmultichoicedialoggetselections">external documentation</a>.
107-spec getSelections(This) -> [integer()] when
108	This::wxMultiChoiceDialog().
109getSelections(#wx_ref{type=ThisT}=This) ->
110  ?CLASS(ThisT,wxMultiChoiceDialog),
111  wxe_util:queue_cmd(This,?get_env(),?wxMultiChoiceDialog_GetSelections),
112  wxe_util:rec(?wxMultiChoiceDialog_GetSelections).
113
114%% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxmultichoicedialog.html#wxmultichoicedialogsetselections">external documentation</a>.
115-spec setSelections(This, Selections) -> 'ok' when
116	This::wxMultiChoiceDialog(), Selections::[integer()].
117setSelections(#wx_ref{type=ThisT}=This,Selections)
118 when is_list(Selections) ->
119  ?CLASS(ThisT,wxMultiChoiceDialog),
120  wxe_util:queue_cmd(This,Selections,?get_env(),?wxMultiChoiceDialog_SetSelections).
121
122%% @doc Destroys this object, do not use object again
123-spec destroy(This::wxMultiChoiceDialog()) -> 'ok'.
124destroy(Obj=#wx_ref{type=Type}) ->
125  ?CLASS(Type,wxMultiChoiceDialog),
126  wxe_util:queue_cmd(Obj, ?get_env(), ?DESTROY_OBJECT),
127  ok.
128 %% From wxDialog
129%% @hidden
130showModal(This) -> wxDialog:showModal(This).
131%% @hidden
132show(This, Options) -> wxDialog:show(This, Options).
133%% @hidden
134show(This) -> wxDialog:show(This).
135%% @hidden
136setReturnCode(This,RetCode) -> wxDialog:setReturnCode(This,RetCode).
137%% @hidden
138setAffirmativeId(This,Id) -> wxDialog:setAffirmativeId(This,Id).
139%% @hidden
140isModal(This) -> wxDialog:isModal(This).
141%% @hidden
142getReturnCode(This) -> wxDialog:getReturnCode(This).
143%% @hidden
144getAffirmativeId(This) -> wxDialog:getAffirmativeId(This).
145%% @hidden
146endModal(This,RetCode) -> wxDialog:endModal(This,RetCode).
147%% @hidden
148createStdDialogButtonSizer(This,Flags) -> wxDialog:createStdDialogButtonSizer(This,Flags).
149%% @hidden
150createButtonSizer(This,Flags) -> wxDialog:createButtonSizer(This,Flags).
151 %% From wxTopLevelWindow
152%% @hidden
153showFullScreen(This,Show, Options) -> wxTopLevelWindow:showFullScreen(This,Show, Options).
154%% @hidden
155showFullScreen(This,Show) -> wxTopLevelWindow:showFullScreen(This,Show).
156%% @hidden
157setTitle(This,Title) -> wxTopLevelWindow:setTitle(This,Title).
158%% @hidden
159setShape(This,Region) -> wxTopLevelWindow:setShape(This,Region).
160%% @hidden
161centreOnScreen(This, Options) -> wxTopLevelWindow:centreOnScreen(This, Options).
162%% @hidden
163centerOnScreen(This, Options) -> wxTopLevelWindow:centerOnScreen(This, Options).
164%% @hidden
165centreOnScreen(This) -> wxTopLevelWindow:centreOnScreen(This).
166%% @hidden
167centerOnScreen(This) -> wxTopLevelWindow:centerOnScreen(This).
168%% @hidden
169setIcons(This,Icons) -> wxTopLevelWindow:setIcons(This,Icons).
170%% @hidden
171setIcon(This,Icon) -> wxTopLevelWindow:setIcon(This,Icon).
172%% @hidden
173requestUserAttention(This, Options) -> wxTopLevelWindow:requestUserAttention(This, Options).
174%% @hidden
175requestUserAttention(This) -> wxTopLevelWindow:requestUserAttention(This).
176%% @hidden
177maximize(This, Options) -> wxTopLevelWindow:maximize(This, Options).
178%% @hidden
179maximize(This) -> wxTopLevelWindow:maximize(This).
180%% @hidden
181isMaximized(This) -> wxTopLevelWindow:isMaximized(This).
182%% @hidden
183isIconized(This) -> wxTopLevelWindow:isIconized(This).
184%% @hidden
185isFullScreen(This) -> wxTopLevelWindow:isFullScreen(This).
186%% @hidden
187iconize(This, Options) -> wxTopLevelWindow:iconize(This, Options).
188%% @hidden
189iconize(This) -> wxTopLevelWindow:iconize(This).
190%% @hidden
191isActive(This) -> wxTopLevelWindow:isActive(This).
192%% @hidden
193getTitle(This) -> wxTopLevelWindow:getTitle(This).
194%% @hidden
195getIcons(This) -> wxTopLevelWindow:getIcons(This).
196%% @hidden
197getIcon(This) -> wxTopLevelWindow:getIcon(This).
198 %% From wxWindow
199%% @hidden
200getDPI(This) -> wxWindow:getDPI(This).
201%% @hidden
202getContentScaleFactor(This) -> wxWindow:getContentScaleFactor(This).
203%% @hidden
204setDoubleBuffered(This,On) -> wxWindow:setDoubleBuffered(This,On).
205%% @hidden
206isDoubleBuffered(This) -> wxWindow:isDoubleBuffered(This).
207%% @hidden
208canSetTransparent(This) -> wxWindow:canSetTransparent(This).
209%% @hidden
210setTransparent(This,Alpha) -> wxWindow:setTransparent(This,Alpha).
211%% @hidden
212warpPointer(This,X,Y) -> wxWindow:warpPointer(This,X,Y).
213%% @hidden
214validate(This) -> wxWindow:validate(This).
215%% @hidden
216updateWindowUI(This, Options) -> wxWindow:updateWindowUI(This, Options).
217%% @hidden
218updateWindowUI(This) -> wxWindow:updateWindowUI(This).
219%% @hidden
220update(This) -> wxWindow:update(This).
221%% @hidden
222transferDataToWindow(This) -> wxWindow:transferDataToWindow(This).
223%% @hidden
224transferDataFromWindow(This) -> wxWindow:transferDataFromWindow(This).
225%% @hidden
226thaw(This) -> wxWindow:thaw(This).
227%% @hidden
228shouldInheritColours(This) -> wxWindow:shouldInheritColours(This).
229%% @hidden
230setWindowVariant(This,Variant) -> wxWindow:setWindowVariant(This,Variant).
231%% @hidden
232setWindowStyleFlag(This,Style) -> wxWindow:setWindowStyleFlag(This,Style).
233%% @hidden
234setWindowStyle(This,Style) -> wxWindow:setWindowStyle(This,Style).
235%% @hidden
236setVirtualSize(This,Width,Height) -> wxWindow:setVirtualSize(This,Width,Height).
237%% @hidden
238setVirtualSize(This,Size) -> wxWindow:setVirtualSize(This,Size).
239%% @hidden
240setToolTip(This,TipString) -> wxWindow:setToolTip(This,TipString).
241%% @hidden
242setThemeEnabled(This,Enable) -> wxWindow:setThemeEnabled(This,Enable).
243%% @hidden
244setSizerAndFit(This,Sizer, Options) -> wxWindow:setSizerAndFit(This,Sizer, Options).
245%% @hidden
246setSizerAndFit(This,Sizer) -> wxWindow:setSizerAndFit(This,Sizer).
247%% @hidden
248setSizer(This,Sizer, Options) -> wxWindow:setSizer(This,Sizer, Options).
249%% @hidden
250setSizer(This,Sizer) -> wxWindow:setSizer(This,Sizer).
251%% @hidden
252setSizeHints(This,MinW,MinH, Options) -> wxWindow:setSizeHints(This,MinW,MinH, Options).
253%% @hidden
254setSizeHints(This,MinW,MinH) -> wxWindow:setSizeHints(This,MinW,MinH).
255%% @hidden
256setSizeHints(This,MinSize) -> wxWindow:setSizeHints(This,MinSize).
257%% @hidden
258setSize(This,X,Y,Width,Height, Options) -> wxWindow:setSize(This,X,Y,Width,Height, Options).
259%% @hidden
260setSize(This,X,Y,Width,Height) -> wxWindow:setSize(This,X,Y,Width,Height).
261%% @hidden
262setSize(This,Width,Height) -> wxWindow:setSize(This,Width,Height).
263%% @hidden
264setSize(This,Rect) -> wxWindow:setSize(This,Rect).
265%% @hidden
266setScrollPos(This,Orientation,Pos, Options) -> wxWindow:setScrollPos(This,Orientation,Pos, Options).
267%% @hidden
268setScrollPos(This,Orientation,Pos) -> wxWindow:setScrollPos(This,Orientation,Pos).
269%% @hidden
270setScrollbar(This,Orientation,Position,ThumbSize,Range, Options) -> wxWindow:setScrollbar(This,Orientation,Position,ThumbSize,Range, Options).
271%% @hidden
272setScrollbar(This,Orientation,Position,ThumbSize,Range) -> wxWindow:setScrollbar(This,Orientation,Position,ThumbSize,Range).
273%% @hidden
274setPalette(This,Pal) -> wxWindow:setPalette(This,Pal).
275%% @hidden
276setName(This,Name) -> wxWindow:setName(This,Name).
277%% @hidden
278setLabel(This,Label) -> wxWindow:setLabel(This,Label).
279%% @hidden
280setId(This,Winid) -> wxWindow:setId(This,Winid).
281%% @hidden
282setHelpText(This,HelpText) -> wxWindow:setHelpText(This,HelpText).
283%% @hidden
284setForegroundColour(This,Colour) -> wxWindow:setForegroundColour(This,Colour).
285%% @hidden
286setFont(This,Font) -> wxWindow:setFont(This,Font).
287%% @hidden
288setFocusFromKbd(This) -> wxWindow:setFocusFromKbd(This).
289%% @hidden
290setFocus(This) -> wxWindow:setFocus(This).
291%% @hidden
292setExtraStyle(This,ExStyle) -> wxWindow:setExtraStyle(This,ExStyle).
293%% @hidden
294setDropTarget(This,Target) -> wxWindow:setDropTarget(This,Target).
295%% @hidden
296setOwnForegroundColour(This,Colour) -> wxWindow:setOwnForegroundColour(This,Colour).
297%% @hidden
298setOwnFont(This,Font) -> wxWindow:setOwnFont(This,Font).
299%% @hidden
300setOwnBackgroundColour(This,Colour) -> wxWindow:setOwnBackgroundColour(This,Colour).
301%% @hidden
302setMinSize(This,Size) -> wxWindow:setMinSize(This,Size).
303%% @hidden
304setMaxSize(This,Size) -> wxWindow:setMaxSize(This,Size).
305%% @hidden
306setCursor(This,Cursor) -> wxWindow:setCursor(This,Cursor).
307%% @hidden
308setContainingSizer(This,Sizer) -> wxWindow:setContainingSizer(This,Sizer).
309%% @hidden
310setClientSize(This,Width,Height) -> wxWindow:setClientSize(This,Width,Height).
311%% @hidden
312setClientSize(This,Size) -> wxWindow:setClientSize(This,Size).
313%% @hidden
314setCaret(This,Caret) -> wxWindow:setCaret(This,Caret).
315%% @hidden
316setBackgroundStyle(This,Style) -> wxWindow:setBackgroundStyle(This,Style).
317%% @hidden
318setBackgroundColour(This,Colour) -> wxWindow:setBackgroundColour(This,Colour).
319%% @hidden
320setAutoLayout(This,AutoLayout) -> wxWindow:setAutoLayout(This,AutoLayout).
321%% @hidden
322setAcceleratorTable(This,Accel) -> wxWindow:setAcceleratorTable(This,Accel).
323%% @hidden
324scrollWindow(This,Dx,Dy, Options) -> wxWindow:scrollWindow(This,Dx,Dy, Options).
325%% @hidden
326scrollWindow(This,Dx,Dy) -> wxWindow:scrollWindow(This,Dx,Dy).
327%% @hidden
328scrollPages(This,Pages) -> wxWindow:scrollPages(This,Pages).
329%% @hidden
330scrollLines(This,Lines) -> wxWindow:scrollLines(This,Lines).
331%% @hidden
332screenToClient(This,Pt) -> wxWindow:screenToClient(This,Pt).
333%% @hidden
334screenToClient(This) -> wxWindow:screenToClient(This).
335%% @hidden
336reparent(This,NewParent) -> wxWindow:reparent(This,NewParent).
337%% @hidden
338removeChild(This,Child) -> wxWindow:removeChild(This,Child).
339%% @hidden
340releaseMouse(This) -> wxWindow:releaseMouse(This).
341%% @hidden
342refreshRect(This,Rect, Options) -> wxWindow:refreshRect(This,Rect, Options).
343%% @hidden
344refreshRect(This,Rect) -> wxWindow:refreshRect(This,Rect).
345%% @hidden
346refresh(This, Options) -> wxWindow:refresh(This, Options).
347%% @hidden
348refresh(This) -> wxWindow:refresh(This).
349%% @hidden
350raise(This) -> wxWindow:raise(This).
351%% @hidden
352popupMenu(This,Menu,X,Y) -> wxWindow:popupMenu(This,Menu,X,Y).
353%% @hidden
354popupMenu(This,Menu, Options) -> wxWindow:popupMenu(This,Menu, Options).
355%% @hidden
356popupMenu(This,Menu) -> wxWindow:popupMenu(This,Menu).
357%% @hidden
358pageUp(This) -> wxWindow:pageUp(This).
359%% @hidden
360pageDown(This) -> wxWindow:pageDown(This).
361%% @hidden
362navigate(This, Options) -> wxWindow:navigate(This, Options).
363%% @hidden
364navigate(This) -> wxWindow:navigate(This).
365%% @hidden
366moveBeforeInTabOrder(This,Win) -> wxWindow:moveBeforeInTabOrder(This,Win).
367%% @hidden
368moveAfterInTabOrder(This,Win) -> wxWindow:moveAfterInTabOrder(This,Win).
369%% @hidden
370move(This,X,Y, Options) -> wxWindow:move(This,X,Y, Options).
371%% @hidden
372move(This,X,Y) -> wxWindow:move(This,X,Y).
373%% @hidden
374move(This,Pt) -> wxWindow:move(This,Pt).
375%% @hidden
376lower(This) -> wxWindow:lower(This).
377%% @hidden
378lineUp(This) -> wxWindow:lineUp(This).
379%% @hidden
380lineDown(This) -> wxWindow:lineDown(This).
381%% @hidden
382layout(This) -> wxWindow:layout(This).
383%% @hidden
384isShownOnScreen(This) -> wxWindow:isShownOnScreen(This).
385%% @hidden
386isTopLevel(This) -> wxWindow:isTopLevel(This).
387%% @hidden
388isShown(This) -> wxWindow:isShown(This).
389%% @hidden
390isRetained(This) -> wxWindow:isRetained(This).
391%% @hidden
392isExposed(This,X,Y,W,H) -> wxWindow:isExposed(This,X,Y,W,H).
393%% @hidden
394isExposed(This,X,Y) -> wxWindow:isExposed(This,X,Y).
395%% @hidden
396isExposed(This,Pt) -> wxWindow:isExposed(This,Pt).
397%% @hidden
398isEnabled(This) -> wxWindow:isEnabled(This).
399%% @hidden
400isFrozen(This) -> wxWindow:isFrozen(This).
401%% @hidden
402invalidateBestSize(This) -> wxWindow:invalidateBestSize(This).
403%% @hidden
404initDialog(This) -> wxWindow:initDialog(This).
405%% @hidden
406inheritAttributes(This) -> wxWindow:inheritAttributes(This).
407%% @hidden
408hide(This) -> wxWindow:hide(This).
409%% @hidden
410hasTransparentBackground(This) -> wxWindow:hasTransparentBackground(This).
411%% @hidden
412hasScrollbar(This,Orient) -> wxWindow:hasScrollbar(This,Orient).
413%% @hidden
414hasCapture(This) -> wxWindow:hasCapture(This).
415%% @hidden
416getWindowVariant(This) -> wxWindow:getWindowVariant(This).
417%% @hidden
418getWindowStyleFlag(This) -> wxWindow:getWindowStyleFlag(This).
419%% @hidden
420getVirtualSize(This) -> wxWindow:getVirtualSize(This).
421%% @hidden
422getUpdateRegion(This) -> wxWindow:getUpdateRegion(This).
423%% @hidden
424getToolTip(This) -> wxWindow:getToolTip(This).
425%% @hidden
426getThemeEnabled(This) -> wxWindow:getThemeEnabled(This).
427%% @hidden
428getTextExtent(This,String, Options) -> wxWindow:getTextExtent(This,String, Options).
429%% @hidden
430getTextExtent(This,String) -> wxWindow:getTextExtent(This,String).
431%% @hidden
432getSizer(This) -> wxWindow:getSizer(This).
433%% @hidden
434getSize(This) -> wxWindow:getSize(This).
435%% @hidden
436getScrollThumb(This,Orientation) -> wxWindow:getScrollThumb(This,Orientation).
437%% @hidden
438getScrollRange(This,Orientation) -> wxWindow:getScrollRange(This,Orientation).
439%% @hidden
440getScrollPos(This,Orientation) -> wxWindow:getScrollPos(This,Orientation).
441%% @hidden
442getScreenRect(This) -> wxWindow:getScreenRect(This).
443%% @hidden
444getScreenPosition(This) -> wxWindow:getScreenPosition(This).
445%% @hidden
446getRect(This) -> wxWindow:getRect(This).
447%% @hidden
448getPosition(This) -> wxWindow:getPosition(This).
449%% @hidden
450getParent(This) -> wxWindow:getParent(This).
451%% @hidden
452getName(This) -> wxWindow:getName(This).
453%% @hidden
454getMinSize(This) -> wxWindow:getMinSize(This).
455%% @hidden
456getMaxSize(This) -> wxWindow:getMaxSize(This).
457%% @hidden
458getLabel(This) -> wxWindow:getLabel(This).
459%% @hidden
460getId(This) -> wxWindow:getId(This).
461%% @hidden
462getHelpText(This) -> wxWindow:getHelpText(This).
463%% @hidden
464getHandle(This) -> wxWindow:getHandle(This).
465%% @hidden
466getGrandParent(This) -> wxWindow:getGrandParent(This).
467%% @hidden
468getForegroundColour(This) -> wxWindow:getForegroundColour(This).
469%% @hidden
470getFont(This) -> wxWindow:getFont(This).
471%% @hidden
472getExtraStyle(This) -> wxWindow:getExtraStyle(This).
473%% @hidden
474getDPIScaleFactor(This) -> wxWindow:getDPIScaleFactor(This).
475%% @hidden
476getDropTarget(This) -> wxWindow:getDropTarget(This).
477%% @hidden
478getCursor(This) -> wxWindow:getCursor(This).
479%% @hidden
480getContainingSizer(This) -> wxWindow:getContainingSizer(This).
481%% @hidden
482getClientSize(This) -> wxWindow:getClientSize(This).
483%% @hidden
484getChildren(This) -> wxWindow:getChildren(This).
485%% @hidden
486getCharWidth(This) -> wxWindow:getCharWidth(This).
487%% @hidden
488getCharHeight(This) -> wxWindow:getCharHeight(This).
489%% @hidden
490getCaret(This) -> wxWindow:getCaret(This).
491%% @hidden
492getBestSize(This) -> wxWindow:getBestSize(This).
493%% @hidden
494getBackgroundStyle(This) -> wxWindow:getBackgroundStyle(This).
495%% @hidden
496getBackgroundColour(This) -> wxWindow:getBackgroundColour(This).
497%% @hidden
498getAcceleratorTable(This) -> wxWindow:getAcceleratorTable(This).
499%% @hidden
500freeze(This) -> wxWindow:freeze(This).
501%% @hidden
502fitInside(This) -> wxWindow:fitInside(This).
503%% @hidden
504fit(This) -> wxWindow:fit(This).
505%% @hidden
506findWindow(This,Id) -> wxWindow:findWindow(This,Id).
507%% @hidden
508enable(This, Options) -> wxWindow:enable(This, Options).
509%% @hidden
510enable(This) -> wxWindow:enable(This).
511%% @hidden
512dragAcceptFiles(This,Accept) -> wxWindow:dragAcceptFiles(This,Accept).
513%% @hidden
514disable(This) -> wxWindow:disable(This).
515%% @hidden
516destroyChildren(This) -> wxWindow:destroyChildren(This).
517%% @hidden
518convertPixelsToDialog(This,Sz) -> wxWindow:convertPixelsToDialog(This,Sz).
519%% @hidden
520convertDialogToPixels(This,Sz) -> wxWindow:convertDialogToPixels(This,Sz).
521%% @hidden
522close(This, Options) -> wxWindow:close(This, Options).
523%% @hidden
524close(This) -> wxWindow:close(This).
525%% @hidden
526clientToScreen(This,X,Y) -> wxWindow:clientToScreen(This,X,Y).
527%% @hidden
528clientToScreen(This,Pt) -> wxWindow:clientToScreen(This,Pt).
529%% @hidden
530clearBackground(This) -> wxWindow:clearBackground(This).
531%% @hidden
532centreOnParent(This, Options) -> wxWindow:centreOnParent(This, Options).
533%% @hidden
534centerOnParent(This, Options) -> wxWindow:centerOnParent(This, Options).
535%% @hidden
536centreOnParent(This) -> wxWindow:centreOnParent(This).
537%% @hidden
538centerOnParent(This) -> wxWindow:centerOnParent(This).
539%% @hidden
540centre(This, Options) -> wxWindow:centre(This, Options).
541%% @hidden
542center(This, Options) -> wxWindow:center(This, Options).
543%% @hidden
544centre(This) -> wxWindow:centre(This).
545%% @hidden
546center(This) -> wxWindow:center(This).
547%% @hidden
548captureMouse(This) -> wxWindow:captureMouse(This).
549%% @hidden
550cacheBestSize(This,Size) -> wxWindow:cacheBestSize(This,Size).
551 %% From wxEvtHandler
552%% @hidden
553disconnect(This,EventType, Options) -> wxEvtHandler:disconnect(This,EventType, Options).
554%% @hidden
555disconnect(This,EventType) -> wxEvtHandler:disconnect(This,EventType).
556%% @hidden
557disconnect(This) -> wxEvtHandler:disconnect(This).
558%% @hidden
559connect(This,EventType, Options) -> wxEvtHandler:connect(This,EventType, Options).
560%% @hidden
561connect(This,EventType) -> wxEvtHandler:connect(This,EventType).
562