/
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/wxListItem.erl
%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 2008-2021. 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(wxListItem). -include("wxe.hrl"). -export([clear/1,destroy/1,getAlign/1,getBackgroundColour/1,getColumn/1,getFont/1, getId/1,getImage/1,getMask/1,getState/1,getText/1,getTextColour/1,getWidth/1, new/0,new/1,setAlign/2,setBackgroundColour/2,setColumn/2,setFont/2, setId/2,setImage/2,setMask/2,setState/2,setStateMask/2,setText/2,setTextColour/2, setWidth/2]). %% inherited exports -export([parent_class/1]). -type wxListItem() :: wx:wx_object(). -export_type([wxListItem/0]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemwxlistitem">external documentation</a>. -spec new() -> wxListItem(). new() -> wxe_util:queue_cmd(?get_env(), ?wxListItem_new_0), wxe_util:rec(?wxListItem_new_0). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemwxlistitem">external documentation</a>. -spec new(Item) -> wxListItem() when Item::wxListItem(). new(#wx_ref{type=ItemT}=Item) -> ?CLASS(ItemT,wxListItem), wxe_util:queue_cmd(Item,?get_env(),?wxListItem_new_1), wxe_util:rec(?wxListItem_new_1). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemclear">external documentation</a>. -spec clear(This) -> 'ok' when This::wxListItem(). clear(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_Clear). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetalign">external documentation</a>. %%<br /> Res = ?wxLIST_FORMAT_LEFT | ?wxLIST_FORMAT_RIGHT | ?wxLIST_FORMAT_CENTRE | ?wxLIST_FORMAT_CENTER -spec getAlign(This) -> wx:wx_enum() when This::wxListItem(). getAlign(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetAlign), wxe_util:rec(?wxListItem_GetAlign). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetbackgroundcolour">external documentation</a>. -spec getBackgroundColour(This) -> wx:wx_colour4() when This::wxListItem(). getBackgroundColour(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetBackgroundColour), wxe_util:rec(?wxListItem_GetBackgroundColour). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetcolumn">external documentation</a>. -spec getColumn(This) -> integer() when This::wxListItem(). getColumn(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetColumn), wxe_util:rec(?wxListItem_GetColumn). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetfont">external documentation</a>. -spec getFont(This) -> wxFont:wxFont() when This::wxListItem(). getFont(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetFont), wxe_util:rec(?wxListItem_GetFont). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetid">external documentation</a>. -spec getId(This) -> integer() when This::wxListItem(). getId(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetId), wxe_util:rec(?wxListItem_GetId). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetimage">external documentation</a>. -spec getImage(This) -> integer() when This::wxListItem(). getImage(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetImage), wxe_util:rec(?wxListItem_GetImage). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetmask">external documentation</a>. -spec getMask(This) -> integer() when This::wxListItem(). getMask(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetMask), wxe_util:rec(?wxListItem_GetMask). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetstate">external documentation</a>. -spec getState(This) -> integer() when This::wxListItem(). getState(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetState), wxe_util:rec(?wxListItem_GetState). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgettext">external documentation</a>. -spec getText(This) -> unicode:charlist() when This::wxListItem(). getText(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetText), wxe_util:rec(?wxListItem_GetText). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgettextcolour">external documentation</a>. -spec getTextColour(This) -> wx:wx_colour4() when This::wxListItem(). getTextColour(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetTextColour), wxe_util:rec(?wxListItem_GetTextColour). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemgetwidth">external documentation</a>. -spec getWidth(This) -> integer() when This::wxListItem(). getWidth(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,?get_env(),?wxListItem_GetWidth), wxe_util:rec(?wxListItem_GetWidth). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetalign">external documentation</a>. %%<br /> Align = ?wxLIST_FORMAT_LEFT | ?wxLIST_FORMAT_RIGHT | ?wxLIST_FORMAT_CENTRE | ?wxLIST_FORMAT_CENTER -spec setAlign(This, Align) -> 'ok' when This::wxListItem(), Align::wx:wx_enum(). setAlign(#wx_ref{type=ThisT}=This,Align) when is_integer(Align) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Align,?get_env(),?wxListItem_SetAlign). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetbackgroundcolour">external documentation</a>. -spec setBackgroundColour(This, ColBack) -> 'ok' when This::wxListItem(), ColBack::wx:wx_colour(). setBackgroundColour(#wx_ref{type=ThisT}=This,ColBack) when ?is_colordata(ColBack) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,wxe_util:color(ColBack),?get_env(),?wxListItem_SetBackgroundColour). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetcolumn">external documentation</a>. -spec setColumn(This, Col) -> 'ok' when This::wxListItem(), Col::integer(). setColumn(#wx_ref{type=ThisT}=This,Col) when is_integer(Col) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Col,?get_env(),?wxListItem_SetColumn). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetfont">external documentation</a>. -spec setFont(This, Font) -> 'ok' when This::wxListItem(), Font::wxFont:wxFont(). setFont(#wx_ref{type=ThisT}=This,#wx_ref{type=FontT}=Font) -> ?CLASS(ThisT,wxListItem), ?CLASS(FontT,wxFont), wxe_util:queue_cmd(This,Font,?get_env(),?wxListItem_SetFont). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetid">external documentation</a>. -spec setId(This, Id) -> 'ok' when This::wxListItem(), Id::integer(). setId(#wx_ref{type=ThisT}=This,Id) when is_integer(Id) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Id,?get_env(),?wxListItem_SetId). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetimage">external documentation</a>. -spec setImage(This, Image) -> 'ok' when This::wxListItem(), Image::integer(). setImage(#wx_ref{type=ThisT}=This,Image) when is_integer(Image) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Image,?get_env(),?wxListItem_SetImage). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetmask">external documentation</a>. -spec setMask(This, Mask) -> 'ok' when This::wxListItem(), Mask::integer(). setMask(#wx_ref{type=ThisT}=This,Mask) when is_integer(Mask) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Mask,?get_env(),?wxListItem_SetMask). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetstate">external documentation</a>. -spec setState(This, State) -> 'ok' when This::wxListItem(), State::integer(). setState(#wx_ref{type=ThisT}=This,State) when is_integer(State) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,State,?get_env(),?wxListItem_SetState). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetstatemask">external documentation</a>. -spec setStateMask(This, StateMask) -> 'ok' when This::wxListItem(), StateMask::integer(). setStateMask(#wx_ref{type=ThisT}=This,StateMask) when is_integer(StateMask) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,StateMask,?get_env(),?wxListItem_SetStateMask). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsettext">external documentation</a>. -spec setText(This, Text) -> 'ok' when This::wxListItem(), Text::unicode:chardata(). setText(#wx_ref{type=ThisT}=This,Text) when ?is_chardata(Text) -> ?CLASS(ThisT,wxListItem), Text_UC = unicode:characters_to_binary(Text), wxe_util:queue_cmd(This,Text_UC,?get_env(),?wxListItem_SetText). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsettextcolour">external documentation</a>. -spec setTextColour(This, ColText) -> 'ok' when This::wxListItem(), ColText::wx:wx_colour(). setTextColour(#wx_ref{type=ThisT}=This,ColText) when ?is_colordata(ColText) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,wxe_util:color(ColText),?get_env(),?wxListItem_SetTextColour). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxlistitem.html#wxlistitemsetwidth">external documentation</a>. -spec setWidth(This, Width) -> 'ok' when This::wxListItem(), Width::integer(). setWidth(#wx_ref{type=ThisT}=This,Width) when is_integer(Width) -> ?CLASS(ThisT,wxListItem), wxe_util:queue_cmd(This,Width,?get_env(),?wxListItem_SetWidth). %% @doc Destroys this object, do not use object again -spec destroy(This::wxListItem()) -> 'ok'. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxListItem), wxe_util:queue_cmd(Obj, ?get_env(), ?DESTROY_OBJECT), ok.
Copyright ©2k19 -
Hexid
|
Tex7ure