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