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