/
usr
/
lib64
/
erlang
/
lib
/
wx-2.1.4
/
src
/
gen
/
File Upload :
llllll
Current File: //usr/lib64/erlang/lib/wx-2.1.4/src/gen/wxAuiManagerEvent.erl
%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 2009-2020. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. %% You may obtain a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. %% %% %CopyrightEnd% %% This file is generated DO NOT EDIT -module(wxAuiManagerEvent). -include("wxe.hrl"). -export([canVeto/1,getButton/1,getDC/1,getManager/1,getPane/1,getVeto/1,setButton/2, setCanVeto/2,setDC/2,setManager/2,setPane/2,veto/1,veto/2]). %% inherited exports -export([getId/1,getSkipped/1,getTimestamp/1,isCommandEvent/1,parent_class/1, resumePropagation/2,shouldPropagate/1,skip/1,skip/2,stopPropagation/1]). -type wxAuiManagerEvent() :: wx:wx_object(). -include("wx.hrl"). -type wxAuiManagerEventType() :: 'aui_pane_button' | 'aui_pane_close' | 'aui_pane_maximize' | 'aui_pane_restore' | 'aui_pane_activated' | 'aui_render' | 'aui_find_manager'. -export_type([wxAuiManagerEvent/0, wxAuiManager/0, wxAuiManagerEventType/0]). %% @hidden parent_class(wxEvent) -> true; parent_class(_Class) -> erlang:error({badtype, ?MODULE}). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventsetmanager">external documentation</a>. -spec setManager(This, Manager) -> 'ok' when This::wxAuiManagerEvent(), Manager::wxAuiManager:wxAuiManager(). setManager(#wx_ref{type=ThisT}=This,#wx_ref{type=ManagerT}=Manager) -> ?CLASS(ThisT,wxAuiManagerEvent), ?CLASS(ManagerT,wxAuiManager), wxe_util:queue_cmd(This,Manager,?get_env(),?wxAuiManagerEvent_SetManager). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventgetmanager">external documentation</a>. -spec getManager(This) -> wxAuiManager:wxAuiManager() when This::wxAuiManagerEvent(). getManager(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_GetManager), wxe_util:rec(?wxAuiManagerEvent_GetManager). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventsetpane">external documentation</a>. -spec setPane(This, Pane) -> 'ok' when This::wxAuiManagerEvent(), Pane::wxAuiPaneInfo:wxAuiPaneInfo(). setPane(#wx_ref{type=ThisT}=This,#wx_ref{type=PaneT}=Pane) -> ?CLASS(ThisT,wxAuiManagerEvent), ?CLASS(PaneT,wxAuiPaneInfo), wxe_util:queue_cmd(This,Pane,?get_env(),?wxAuiManagerEvent_SetPane). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventgetpane">external documentation</a>. -spec getPane(This) -> wxAuiPaneInfo:wxAuiPaneInfo() when This::wxAuiManagerEvent(). getPane(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_GetPane), wxe_util:rec(?wxAuiManagerEvent_GetPane). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventsetbutton">external documentation</a>. -spec setButton(This, Button) -> 'ok' when This::wxAuiManagerEvent(), Button::integer(). setButton(#wx_ref{type=ThisT}=This,Button) when is_integer(Button) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,Button,?get_env(),?wxAuiManagerEvent_SetButton). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventgetbutton">external documentation</a>. -spec getButton(This) -> integer() when This::wxAuiManagerEvent(). getButton(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_GetButton), wxe_util:rec(?wxAuiManagerEvent_GetButton). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventsetdc">external documentation</a>. -spec setDC(This, Pdc) -> 'ok' when This::wxAuiManagerEvent(), Pdc::wxDC:wxDC(). setDC(#wx_ref{type=ThisT}=This,#wx_ref{type=PdcT}=Pdc) -> ?CLASS(ThisT,wxAuiManagerEvent), ?CLASS(PdcT,wxDC), wxe_util:queue_cmd(This,Pdc,?get_env(),?wxAuiManagerEvent_SetDC). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventgetdc">external documentation</a>. -spec getDC(This) -> wxDC:wxDC() when This::wxAuiManagerEvent(). getDC(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_GetDC), wxe_util:rec(?wxAuiManagerEvent_GetDC). %% @equiv veto(This, []) -spec veto(This) -> 'ok' when This::wxAuiManagerEvent(). veto(This) when is_record(This, wx_ref) -> veto(This, []). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventveto">external documentation</a>. -spec veto(This, [Option]) -> 'ok' when This::wxAuiManagerEvent(), Option :: {'veto', boolean()}. veto(#wx_ref{type=ThisT}=This, Options) when is_list(Options) -> ?CLASS(ThisT,wxAuiManagerEvent), MOpts = fun({veto, _veto} = Arg) -> Arg; (BadOpt) -> erlang:error({badoption, BadOpt}) end, Opts = lists:map(MOpts, Options), wxe_util:queue_cmd(This, Opts,?get_env(),?wxAuiManagerEvent_Veto). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventgetveto">external documentation</a>. -spec getVeto(This) -> boolean() when This::wxAuiManagerEvent(). getVeto(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_GetVeto), wxe_util:rec(?wxAuiManagerEvent_GetVeto). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventsetcanveto">external documentation</a>. -spec setCanVeto(This, Can_veto) -> 'ok' when This::wxAuiManagerEvent(), Can_veto::boolean(). setCanVeto(#wx_ref{type=ThisT}=This,Can_veto) when is_boolean(Can_veto) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,Can_veto,?get_env(),?wxAuiManagerEvent_SetCanVeto). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxauimanagerevent.html#wxauimanagereventcanveto">external documentation</a>. -spec canVeto(This) -> boolean() when This::wxAuiManagerEvent(). canVeto(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxAuiManagerEvent), wxe_util:queue_cmd(This,?get_env(),?wxAuiManagerEvent_CanVeto), wxe_util:rec(?wxAuiManagerEvent_CanVeto). %% From wxEvent %% @hidden stopPropagation(This) -> wxEvent:stopPropagation(This). %% @hidden skip(This, Options) -> wxEvent:skip(This, Options). %% @hidden skip(This) -> wxEvent:skip(This). %% @hidden shouldPropagate(This) -> wxEvent:shouldPropagate(This). %% @hidden resumePropagation(This,PropagationLevel) -> wxEvent:resumePropagation(This,PropagationLevel). %% @hidden isCommandEvent(This) -> wxEvent:isCommandEvent(This). %% @hidden getTimestamp(This) -> wxEvent:getTimestamp(This). %% @hidden getSkipped(This) -> wxEvent:getSkipped(This). %% @hidden getId(This) -> wxEvent:getId(This).
Copyright ©2k19 -
Hexid
|
Tex7ure