%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 2008-2009. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. %% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. %% %% %CopyrightEnd% %% This file is generated DO NOT EDIT %% @doc See external documentation: wxBitmap. %% @type wxBitmap(). An object reference, The representation is internal %% and can be changed without notice. It can't be used for comparsion %% stored on disc or distributed for use on other nodes. -module(wxBitmap). -include("wxe.hrl"). -export([convertToImage/1,copyFromIcon/2,create/3,create/4,destroy/1,getDepth/1, getHeight/1,getMask/1,getPalette/1,getSubBitmap/2,getWidth/1,loadFile/2, loadFile/3,new/0,new/1,new/2,new/3,new/4,ok/1,saveFile/3,saveFile/4,setDepth/2, setHeight/2,setMask/2,setPalette/2,setWidth/2]). %% inherited exports -export([parent_class/1]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). %% @spec () -> wxBitmap() %% @doc See external documentation. new() -> wxe_util:construct(?wxBitmap_new_0, <<>>). %% @spec (X::string()|term()) -> wxBitmap() %% @doc See external documentation. %%
Alternatives: %%

%% new(Filename::string()) -> new(Filename, [])

%%

%% new(Image::wxImage:wxImage()) -> new(Image, [])

new(Filename) when is_list(Filename) -> new(Filename, []); new(Image) when is_record(Image, wx_ref) -> new(Image, []). %% @spec (X::integer()|string()|term(),X::integer()|term()) -> wxBitmap() %% @doc See external documentation. %%
Alternatives: %%

%% new(Width::integer(), Height::integer()) -> new(Width,Height, [])

%%

%% new(Filename::string(), [Option]) -> wxBitmap() %%
Option = {type, WxBitmapType} %%
WxBitmapType = integer() %%
WxBitmapType is one of ?wxBITMAP_TYPE_INVALID | ?wxBITMAP_TYPE_BMP | ?wxBITMAP_TYPE_BMP_RESOURCE | ?wxBITMAP_TYPE_RESOURCE | ?wxBITMAP_TYPE_ICO | ?wxBITMAP_TYPE_ICO_RESOURCE | ?wxBITMAP_TYPE_CUR | ?wxBITMAP_TYPE_CUR_RESOURCE | ?wxBITMAP_TYPE_XBM | ?wxBITMAP_TYPE_XBM_DATA | ?wxBITMAP_TYPE_XPM | ?wxBITMAP_TYPE_XPM_DATA | ?wxBITMAP_TYPE_TIF | ?wxBITMAP_TYPE_TIF_RESOURCE | ?wxBITMAP_TYPE_GIF | ?wxBITMAP_TYPE_GIF_RESOURCE | ?wxBITMAP_TYPE_PNG | ?wxBITMAP_TYPE_PNG_RESOURCE | ?wxBITMAP_TYPE_JPEG | ?wxBITMAP_TYPE_JPEG_RESOURCE | ?wxBITMAP_TYPE_PNM | ?wxBITMAP_TYPE_PNM_RESOURCE | ?wxBITMAP_TYPE_PCX | ?wxBITMAP_TYPE_PCX_RESOURCE | ?wxBITMAP_TYPE_PICT | ?wxBITMAP_TYPE_PICT_RESOURCE | ?wxBITMAP_TYPE_ICON | ?wxBITMAP_TYPE_ICON_RESOURCE | ?wxBITMAP_TYPE_ANI | ?wxBITMAP_TYPE_IFF | ?wxBITMAP_TYPE_TGA | ?wxBITMAP_TYPE_MACCURSOR | ?wxBITMAP_TYPE_MACCURSOR_RESOURCE | ?wxBITMAP_TYPE_ANY %%

%%

%% new(Image::wxImage:wxImage(), [Option]) -> wxBitmap() %%
Option = {depth, integer()} %%

new(Width,Height) when is_integer(Width),is_integer(Height) -> new(Width,Height, []); new(Filename, Options) when is_list(Filename),is_list(Options) -> Filename_UC = unicode:characters_to_binary([Filename,0]), MOpts = fun({type, Type}, Acc) -> [<<1:32/?UI,Type:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:construct(?wxBitmap_new_2_0, <<(byte_size(Filename_UC)):32/?UI,(Filename_UC)/binary, 0:(((8- ((4+byte_size(Filename_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>); new(#wx_ref{type=ImageT,ref=ImageRef}, Options) when is_list(Options) -> ?CLASS(ImageT,wxImage), MOpts = fun({depth, Depth}, Acc) -> [<<1:32/?UI,Depth:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:construct(?wxBitmap_new_2_1, <>). %% @spec (X::binary()|integer(),X::integer(),X::integer()|term()) -> wxBitmap() %% @doc See external documentation. %%
Alternatives: %%

%% new(Bits::binary(), Width::integer(), Height::integer()) -> new(Bits,Width,Height, [])

%%

%% new(Width::integer(), Height::integer(), [Option]) -> wxBitmap() %%
Option = {depth, integer()} %%

new(Bits,Width,Height) when is_binary(Bits),is_integer(Width),is_integer(Height) -> new(Bits,Width,Height, []); new(Width,Height, Options) when is_integer(Width),is_integer(Height),is_list(Options) -> MOpts = fun({depth, Depth}, Acc) -> [<<1:32/?UI,Depth:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:construct(?wxBitmap_new_3, <>). %% @spec (Bits::binary(), Width::integer(), Height::integer(), [Option]) -> wxBitmap() %% Option = {depth, integer()} %% @doc See external documentation. new(Bits,Width,Height, Options) when is_binary(Bits),is_integer(Width),is_integer(Height),is_list(Options) -> wxe_util:send_bin(Bits), MOpts = fun({depth, Depth}, Acc) -> [<<1:32/?UI,Depth:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:construct(?wxBitmap_new_4, <>). %% @spec (This::wxBitmap()) -> wxImage:wxImage() %% @doc See external documentation. convertToImage(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_ConvertToImage, <>). %% @spec (This::wxBitmap(), Icon::wxIcon:wxIcon()) -> bool() %% @doc See external documentation. copyFromIcon(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=IconT,ref=IconRef}) -> ?CLASS(ThisT,wxBitmap), ?CLASS(IconT,wxIcon), wxe_util:call(?wxBitmap_CopyFromIcon, <>). %% @spec (This::wxBitmap(), Width::integer(), Height::integer()) -> bool() %% @equiv create(This,Width,Height, []) create(This,Width,Height) when is_record(This, wx_ref),is_integer(Width),is_integer(Height) -> create(This,Width,Height, []). %% @spec (This::wxBitmap(), Width::integer(), Height::integer(), [Option]) -> bool() %% Option = {depth, integer()} %% @doc See external documentation. create(#wx_ref{type=ThisT,ref=ThisRef},Width,Height, Options) when is_integer(Width),is_integer(Height),is_list(Options) -> ?CLASS(ThisT,wxBitmap), MOpts = fun({depth, Depth}, Acc) -> [<<1:32/?UI,Depth:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:call(?wxBitmap_Create, <>). %% @spec (This::wxBitmap()) -> integer() %% @doc See external documentation. getDepth(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetDepth, <>). %% @spec (This::wxBitmap()) -> integer() %% @doc See external documentation. getHeight(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetHeight, <>). %% @spec (This::wxBitmap()) -> wxPalette:wxPalette() %% @doc See external documentation. getPalette(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetPalette, <>). %% @spec (This::wxBitmap()) -> wxMask:wxMask() %% @doc See external documentation. getMask(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetMask, <>). %% @spec (This::wxBitmap()) -> integer() %% @doc See external documentation. getWidth(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetWidth, <>). %% @spec (This::wxBitmap(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> wxBitmap() %% @doc See external documentation. getSubBitmap(#wx_ref{type=ThisT,ref=ThisRef},{RectX,RectY,RectW,RectH}) when is_integer(RectX),is_integer(RectY),is_integer(RectW),is_integer(RectH) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_GetSubBitmap, <>). %% @spec (This::wxBitmap(), Name::string()) -> bool() %% @equiv loadFile(This,Name, []) loadFile(This,Name) when is_record(This, wx_ref),is_list(Name) -> loadFile(This,Name, []). %% @spec (This::wxBitmap(), Name::string(), [Option]) -> bool() %% Option = {type, WxBitmapType} %% WxBitmapType = integer() %% @doc See external documentation. %%
WxBitmapType is one of ?wxBITMAP_TYPE_INVALID | ?wxBITMAP_TYPE_BMP | ?wxBITMAP_TYPE_BMP_RESOURCE | ?wxBITMAP_TYPE_RESOURCE | ?wxBITMAP_TYPE_ICO | ?wxBITMAP_TYPE_ICO_RESOURCE | ?wxBITMAP_TYPE_CUR | ?wxBITMAP_TYPE_CUR_RESOURCE | ?wxBITMAP_TYPE_XBM | ?wxBITMAP_TYPE_XBM_DATA | ?wxBITMAP_TYPE_XPM | ?wxBITMAP_TYPE_XPM_DATA | ?wxBITMAP_TYPE_TIF | ?wxBITMAP_TYPE_TIF_RESOURCE | ?wxBITMAP_TYPE_GIF | ?wxBITMAP_TYPE_GIF_RESOURCE | ?wxBITMAP_TYPE_PNG | ?wxBITMAP_TYPE_PNG_RESOURCE | ?wxBITMAP_TYPE_JPEG | ?wxBITMAP_TYPE_JPEG_RESOURCE | ?wxBITMAP_TYPE_PNM | ?wxBITMAP_TYPE_PNM_RESOURCE | ?wxBITMAP_TYPE_PCX | ?wxBITMAP_TYPE_PCX_RESOURCE | ?wxBITMAP_TYPE_PICT | ?wxBITMAP_TYPE_PICT_RESOURCE | ?wxBITMAP_TYPE_ICON | ?wxBITMAP_TYPE_ICON_RESOURCE | ?wxBITMAP_TYPE_ANI | ?wxBITMAP_TYPE_IFF | ?wxBITMAP_TYPE_TGA | ?wxBITMAP_TYPE_MACCURSOR | ?wxBITMAP_TYPE_MACCURSOR_RESOURCE | ?wxBITMAP_TYPE_ANY loadFile(#wx_ref{type=ThisT,ref=ThisRef},Name, Options) when is_list(Name),is_list(Options) -> ?CLASS(ThisT,wxBitmap), Name_UC = unicode:characters_to_binary([Name,0]), MOpts = fun({type, Type}, Acc) -> [<<1:32/?UI,Type:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:call(?wxBitmap_LoadFile, <>). %% @spec (This::wxBitmap()) -> bool() %% @doc See external documentation. ok(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxBitmap), wxe_util:call(?wxBitmap_Ok, <>). %% @spec (This::wxBitmap(), Name::string(), Type::WxBitmapType) -> bool() %% @equiv saveFile(This,Name,Type, []) saveFile(This,Name,Type) when is_record(This, wx_ref),is_list(Name),is_integer(Type) -> saveFile(This,Name,Type, []). %% @spec (This::wxBitmap(), Name::string(), Type::WxBitmapType, [Option]) -> bool() %% Option = {palette, wxPalette:wxPalette()} %% WxBitmapType = integer() %% @doc See external documentation. %%
WxBitmapType is one of ?wxBITMAP_TYPE_INVALID | ?wxBITMAP_TYPE_BMP | ?wxBITMAP_TYPE_BMP_RESOURCE | ?wxBITMAP_TYPE_RESOURCE | ?wxBITMAP_TYPE_ICO | ?wxBITMAP_TYPE_ICO_RESOURCE | ?wxBITMAP_TYPE_CUR | ?wxBITMAP_TYPE_CUR_RESOURCE | ?wxBITMAP_TYPE_XBM | ?wxBITMAP_TYPE_XBM_DATA | ?wxBITMAP_TYPE_XPM | ?wxBITMAP_TYPE_XPM_DATA | ?wxBITMAP_TYPE_TIF | ?wxBITMAP_TYPE_TIF_RESOURCE | ?wxBITMAP_TYPE_GIF | ?wxBITMAP_TYPE_GIF_RESOURCE | ?wxBITMAP_TYPE_PNG | ?wxBITMAP_TYPE_PNG_RESOURCE | ?wxBITMAP_TYPE_JPEG | ?wxBITMAP_TYPE_JPEG_RESOURCE | ?wxBITMAP_TYPE_PNM | ?wxBITMAP_TYPE_PNM_RESOURCE | ?wxBITMAP_TYPE_PCX | ?wxBITMAP_TYPE_PCX_RESOURCE | ?wxBITMAP_TYPE_PICT | ?wxBITMAP_TYPE_PICT_RESOURCE | ?wxBITMAP_TYPE_ICON | ?wxBITMAP_TYPE_ICON_RESOURCE | ?wxBITMAP_TYPE_ANI | ?wxBITMAP_TYPE_IFF | ?wxBITMAP_TYPE_TGA | ?wxBITMAP_TYPE_MACCURSOR | ?wxBITMAP_TYPE_MACCURSOR_RESOURCE | ?wxBITMAP_TYPE_ANY saveFile(#wx_ref{type=ThisT,ref=ThisRef},Name,Type, Options) when is_list(Name),is_integer(Type),is_list(Options) -> ?CLASS(ThisT,wxBitmap), Name_UC = unicode:characters_to_binary([Name,0]), MOpts = fun({palette, #wx_ref{type=PaletteT,ref=PaletteRef}}, Acc) -> ?CLASS(PaletteT,wxPalette),[<<1:32/?UI,PaletteRef:32/?UI>>|Acc]; (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), wxe_util:call(?wxBitmap_SaveFile, <>). %% @spec (This::wxBitmap(), Depth::integer()) -> ok %% @doc See external documentation. setDepth(#wx_ref{type=ThisT,ref=ThisRef},Depth) when is_integer(Depth) -> ?CLASS(ThisT,wxBitmap), wxe_util:cast(?wxBitmap_SetDepth, <>). %% @spec (This::wxBitmap(), Height::integer()) -> ok %% @doc See external documentation. setHeight(#wx_ref{type=ThisT,ref=ThisRef},Height) when is_integer(Height) -> ?CLASS(ThisT,wxBitmap), wxe_util:cast(?wxBitmap_SetHeight, <>). %% @spec (This::wxBitmap(), Mask::wxMask:wxMask()) -> ok %% @doc See external documentation. setMask(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=MaskT,ref=MaskRef}) -> ?CLASS(ThisT,wxBitmap), ?CLASS(MaskT,wxMask), wxe_util:cast(?wxBitmap_SetMask, <>). %% @spec (This::wxBitmap(), Palette::wxPalette:wxPalette()) -> ok %% @doc See external documentation. setPalette(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=PaletteT,ref=PaletteRef}) -> ?CLASS(ThisT,wxBitmap), ?CLASS(PaletteT,wxPalette), wxe_util:cast(?wxBitmap_SetPalette, <>). %% @spec (This::wxBitmap(), Width::integer()) -> ok %% @doc See external documentation. setWidth(#wx_ref{type=ThisT,ref=ThisRef},Width) when is_integer(Width) -> ?CLASS(ThisT,wxBitmap), wxe_util:cast(?wxBitmap_SetWidth, <>). %% @spec (This::wxBitmap()) -> ok %% @doc Destroys this object, do not use object again destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxBitmap), wxe_util:destroy(?DESTROY_OBJECT,Obj), ok.