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