/
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/wxImageList.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(wxImageList). -include("wxe.hrl"). -export([add/2,add/3,create/3,create/4,destroy/1,draw/5,draw/6,getBitmap/2,getIcon/2, getImageCount/1,getSize/2,new/0,new/2,new/3,remove/2,removeAll/1,replace/3, replace/4]). %% inherited exports -export([parent_class/1]). -type wxImageList() :: wx:wx_object(). -export_type([wxImageList/0]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistwximagelist">external documentation</a>. -spec new() -> wxImageList(). new() -> wxe_util:queue_cmd(?get_env(), ?wxImageList_new_0), wxe_util:rec(?wxImageList_new_0). %% @equiv new(Width,Height, []) -spec new(Width, Height) -> wxImageList() when Width::integer(), Height::integer(). new(Width,Height) when is_integer(Width),is_integer(Height) -> new(Width,Height, []). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistwximagelist">external documentation</a>. -spec new(Width, Height, [Option]) -> wxImageList() when Width::integer(), Height::integer(), Option :: {'mask', boolean()} | {'initialCount', integer()}. new(Width,Height, Options) when is_integer(Width),is_integer(Height),is_list(Options) -> MOpts = fun({mask, _mask} = Arg) -> Arg; ({initialCount, _initialCount} = Arg) -> Arg; (BadOpt) -> erlang:error({badoption, BadOpt}) end, Opts = lists:map(MOpts, Options), wxe_util:queue_cmd(Width,Height, Opts,?get_env(),?wxImageList_new_3), wxe_util:rec(?wxImageList_new_3). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistadd">external documentation</a>. -spec add(This, Icon) -> integer() when This::wxImageList(), Icon::wxIcon:wxIcon() | wxBitmap:wxBitmap(). add(#wx_ref{type=ThisT}=This,#wx_ref{type=IconT}=Icon) -> ?CLASS(ThisT,wxImageList), IswxIcon = ?CLASS_T(IconT,wxIcon), IswxBitmap = ?CLASS_T(IconT,wxBitmap), IconType = if IswxIcon -> wxIcon; IswxBitmap -> wxBitmap; true -> error({badarg, IconT}) end, wxe_util:queue_cmd(This,wx:typeCast(Icon, IconType),?get_env(),?wxImageList_Add_1), wxe_util:rec(?wxImageList_Add_1). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistadd">external documentation</a>. %% <br /> Also:<br /> %% add(This, Bitmap, MaskColour) -> integer() when<br /> %% This::wxImageList(), Bitmap::wxBitmap:wxBitmap(), MaskColour::wx:wx_colour().<br /> %% -spec add(This, Bitmap, Mask) -> integer() when This::wxImageList(), Bitmap::wxBitmap:wxBitmap(), Mask::wxBitmap:wxBitmap(); (This, Bitmap, MaskColour) -> integer() when This::wxImageList(), Bitmap::wxBitmap:wxBitmap(), MaskColour::wx:wx_colour(). add(#wx_ref{type=ThisT}=This,#wx_ref{type=BitmapT}=Bitmap,#wx_ref{type=MaskT}=Mask) -> ?CLASS(ThisT,wxImageList), ?CLASS(BitmapT,wxBitmap), ?CLASS(MaskT,wxBitmap), wxe_util:queue_cmd(This,Bitmap,Mask,?get_env(),?wxImageList_Add_2_0), wxe_util:rec(?wxImageList_Add_2_0); add(#wx_ref{type=ThisT}=This,#wx_ref{type=BitmapT}=Bitmap,MaskColour) when ?is_colordata(MaskColour) -> ?CLASS(ThisT,wxImageList), ?CLASS(BitmapT,wxBitmap), wxe_util:queue_cmd(This,Bitmap,wxe_util:color(MaskColour),?get_env(),?wxImageList_Add_2_1), wxe_util:rec(?wxImageList_Add_2_1). %% @equiv create(This,Width,Height, []) -spec create(This, Width, Height) -> boolean() when This::wxImageList(), Width::integer(), Height::integer(). create(This,Width,Height) when is_record(This, wx_ref),is_integer(Width),is_integer(Height) -> create(This,Width,Height, []). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistcreate">external documentation</a>. -spec create(This, Width, Height, [Option]) -> boolean() when This::wxImageList(), Width::integer(), Height::integer(), Option :: {'mask', boolean()} | {'initialCount', integer()}. create(#wx_ref{type=ThisT}=This,Width,Height, Options) when is_integer(Width),is_integer(Height),is_list(Options) -> ?CLASS(ThisT,wxImageList), MOpts = fun({mask, _mask} = Arg) -> Arg; ({initialCount, _initialCount} = Arg) -> Arg; (BadOpt) -> erlang:error({badoption, BadOpt}) end, Opts = lists:map(MOpts, Options), wxe_util:queue_cmd(This,Width,Height, Opts,?get_env(),?wxImageList_Create), wxe_util:rec(?wxImageList_Create). %% @equiv draw(This,Index,Dc,X,Y, []) -spec draw(This, Index, Dc, X, Y) -> boolean() when This::wxImageList(), Index::integer(), Dc::wxDC:wxDC(), X::integer(), Y::integer(). draw(This,Index,Dc,X,Y) when is_record(This, wx_ref),is_integer(Index),is_record(Dc, wx_ref),is_integer(X),is_integer(Y) -> draw(This,Index,Dc,X,Y, []). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistdraw">external documentation</a>. -spec draw(This, Index, Dc, X, Y, [Option]) -> boolean() when This::wxImageList(), Index::integer(), Dc::wxDC:wxDC(), X::integer(), Y::integer(), Option :: {'flags', integer()} | {'solidBackground', boolean()}. draw(#wx_ref{type=ThisT}=This,Index,#wx_ref{type=DcT}=Dc,X,Y, Options) when is_integer(Index),is_integer(X),is_integer(Y),is_list(Options) -> ?CLASS(ThisT,wxImageList), ?CLASS(DcT,wxDC), MOpts = fun({flags, _flags} = Arg) -> Arg; ({solidBackground, _solidBackground} = Arg) -> Arg; (BadOpt) -> erlang:error({badoption, BadOpt}) end, Opts = lists:map(MOpts, Options), wxe_util:queue_cmd(This,Index,Dc,X,Y, Opts,?get_env(),?wxImageList_Draw), wxe_util:rec(?wxImageList_Draw). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistgetbitmap">external documentation</a>. -spec getBitmap(This, Index) -> wxBitmap:wxBitmap() when This::wxImageList(), Index::integer(). getBitmap(#wx_ref{type=ThisT}=This,Index) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,Index,?get_env(),?wxImageList_GetBitmap), wxe_util:rec(?wxImageList_GetBitmap). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistgeticon">external documentation</a>. -spec getIcon(This, Index) -> wxIcon:wxIcon() when This::wxImageList(), Index::integer(). getIcon(#wx_ref{type=ThisT}=This,Index) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,Index,?get_env(),?wxImageList_GetIcon), wxe_util:rec(?wxImageList_GetIcon). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistgetimagecount">external documentation</a>. -spec getImageCount(This) -> integer() when This::wxImageList(). getImageCount(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,?get_env(),?wxImageList_GetImageCount), wxe_util:rec(?wxImageList_GetImageCount). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistgetsize">external documentation</a>. -spec getSize(This, Index) -> Result when Result ::{Res ::boolean(), Width::integer(), Height::integer()}, This::wxImageList(), Index::integer(). getSize(#wx_ref{type=ThisT}=This,Index) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,Index,?get_env(),?wxImageList_GetSize), wxe_util:rec(?wxImageList_GetSize). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistremove">external documentation</a>. -spec remove(This, Index) -> boolean() when This::wxImageList(), Index::integer(). remove(#wx_ref{type=ThisT}=This,Index) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,Index,?get_env(),?wxImageList_Remove), wxe_util:rec(?wxImageList_Remove). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistremoveall">external documentation</a>. -spec removeAll(This) -> boolean() when This::wxImageList(). removeAll(#wx_ref{type=ThisT}=This) -> ?CLASS(ThisT,wxImageList), wxe_util:queue_cmd(This,?get_env(),?wxImageList_RemoveAll), wxe_util:rec(?wxImageList_RemoveAll). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistreplace">external documentation</a>. -spec replace(This, Index, Icon) -> boolean() when This::wxImageList(), Index::integer(), Icon::wxIcon:wxIcon() | wxBitmap:wxBitmap(). replace(#wx_ref{type=ThisT}=This,Index,#wx_ref{type=IconT}=Icon) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), IswxIcon = ?CLASS_T(IconT,wxIcon), IswxBitmap = ?CLASS_T(IconT,wxBitmap), IconType = if IswxIcon -> wxIcon; IswxBitmap -> wxBitmap; true -> error({badarg, IconT}) end, wxe_util:queue_cmd(This,Index,wx:typeCast(Icon, IconType),?get_env(),?wxImageList_Replace_2), wxe_util:rec(?wxImageList_Replace_2). %% @doc See <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wximagelist.html#wximagelistreplace">external documentation</a>. -spec replace(This, Index, Bitmap, Mask) -> boolean() when This::wxImageList(), Index::integer(), Bitmap::wxBitmap:wxBitmap(), Mask::wxBitmap:wxBitmap(). replace(#wx_ref{type=ThisT}=This,Index,#wx_ref{type=BitmapT}=Bitmap,#wx_ref{type=MaskT}=Mask) when is_integer(Index) -> ?CLASS(ThisT,wxImageList), ?CLASS(BitmapT,wxBitmap), ?CLASS(MaskT,wxBitmap), wxe_util:queue_cmd(This,Index,Bitmap,Mask,?get_env(),?wxImageList_Replace_3), wxe_util:rec(?wxImageList_Replace_3). %% @doc Destroys this object, do not use object again -spec destroy(This::wxImageList()) -> 'ok'. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxImageList), wxe_util:queue_cmd(Obj, ?get_env(), ?DESTROY_OBJECT), ok.
Copyright ©2k19 -
Hexid
|
Tex7ure