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