From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/wx/src/gen/wxRegion.erl | 305 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 305 insertions(+) create mode 100644 lib/wx/src/gen/wxRegion.erl (limited to 'lib/wx/src/gen/wxRegion.erl') diff --git a/lib/wx/src/gen/wxRegion.erl b/lib/wx/src/gen/wxRegion.erl new file mode 100644 index 0000000000..a2d2c7d830 --- /dev/null +++ b/lib/wx/src/gen/wxRegion.erl @@ -0,0 +1,305 @@ +%% +%% %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: wxRegion. +%% @type wxRegion(). 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(wxRegion). +-include("wxe.hrl"). +-export(['Xor'/2,'Xor'/5,clear/1,contains/2,contains/3,contains/5,convertToBitmap/1, + destroy/1,getBox/1,intersect/2,intersect/5,isEmpty/1,new/0,new/1,new/2, + new/4,offset/2,offset/3,subtract/2,subtract/5,union/2,union/3,union/4, + union/5]). + +%% inherited exports +-export([parent_class/1]). + +%% @hidden +parent_class(_Class) -> erlang:error({badtype, ?MODULE}). + +%% @spec () -> wxRegion() +%% @doc See external documentation. +new() -> + wxe_util:construct(?wxRegion_new_0, + <<>>). + +%% @spec (X::term()) -> wxRegion() +%% @doc See external documentation. +%%
Alternatives: +%%

+%% new(Bmp::wxBitmap:wxBitmap()) -> wxRegion() +%%

+%%

+%% new(Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> wxRegion() +%%

+new(#wx_ref{type=BmpT,ref=BmpRef}) -> + ?CLASS(BmpT,wxBitmap), + wxe_util:construct(?wxRegion_new_1_0, + <>); +new({RectX,RectY,RectW,RectH}) + when is_integer(RectX),is_integer(RectY),is_integer(RectW),is_integer(RectH) -> + wxe_util:construct(?wxRegion_new_1_1, + <>). + +%% @spec (TopLeft::{X::integer(),Y::integer()}, BottomRight::{X::integer(),Y::integer()}) -> wxRegion() +%% @doc See external documentation. +new({TopLeftX,TopLeftY},{BottomRightX,BottomRightY}) + when is_integer(TopLeftX),is_integer(TopLeftY),is_integer(BottomRightX),is_integer(BottomRightY) -> + wxe_util:construct(?wxRegion_new_2, + <>). + +%% @spec (X::integer(), Y::integer(), W::integer(), H::integer()) -> wxRegion() +%% @doc See external documentation. +new(X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + wxe_util:construct(?wxRegion_new_4, + <>). + +%% @spec (This::wxRegion()) -> ok +%% @doc See external documentation. +clear(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxRegion), + wxe_util:cast(?wxRegion_Clear, + <>). + +%% @spec (This::wxRegion(),X::term()) -> WxRegionContain +%% @doc See external documentation. +%%
Alternatives: +%%

+%% contains(This::wxRegion(), Pt::{X::integer(),Y::integer()}) -> WxRegionContain +%%
WxRegionContain = integer() +%%
WxRegionContain is one of ?wxOutRegion | ?wxPartRegion | ?wxInRegion +%%

+%%

+%% contains(This::wxRegion(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> WxRegionContain +%%
WxRegionContain = integer() +%%
WxRegionContain is one of ?wxOutRegion | ?wxPartRegion | ?wxInRegion +%%

+contains(#wx_ref{type=ThisT,ref=ThisRef},{PtX,PtY}) + when is_integer(PtX),is_integer(PtY) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Contains_1_0, + <>); +contains(#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,wxRegion), + wxe_util:call(?wxRegion_Contains_1_1, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer()) -> WxRegionContain +%% WxRegionContain = integer() +%% @doc See external documentation. +%%
WxRegionContain is one of ?wxOutRegion | ?wxPartRegion | ?wxInRegion +contains(#wx_ref{type=ThisT,ref=ThisRef},X,Y) + when is_integer(X),is_integer(Y) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Contains_2, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer(), W::integer(), H::integer()) -> WxRegionContain +%% WxRegionContain = integer() +%% @doc See external documentation. +%%
WxRegionContain is one of ?wxOutRegion | ?wxPartRegion | ?wxInRegion +contains(#wx_ref{type=ThisT,ref=ThisRef},X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Contains_4, + <>). + +%% @spec (This::wxRegion()) -> wxBitmap:wxBitmap() +%% @doc See external documentation. +convertToBitmap(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_ConvertToBitmap, + <>). + +%% @spec (This::wxRegion()) -> {X::integer(),Y::integer(),W::integer(),H::integer()} +%% @doc See external documentation. +getBox(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_GetBox, + <>). + +%% @spec (This::wxRegion(),X::wxRegion()|term()) -> bool() +%% @doc See external documentation. +%%
Alternatives: +%%

+%% intersect(This::wxRegion(), Region::wxRegion()) -> bool() +%%

+%%

+%% intersect(This::wxRegion(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> bool() +%%

+intersect(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=RegionT,ref=RegionRef}) -> + ?CLASS(ThisT,wxRegion), + ?CLASS(RegionT,wxRegion), + wxe_util:call(?wxRegion_Intersect_1_0, + <>); +intersect(#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,wxRegion), + wxe_util:call(?wxRegion_Intersect_1_1, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer(), W::integer(), H::integer()) -> bool() +%% @doc See external documentation. +intersect(#wx_ref{type=ThisT,ref=ThisRef},X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Intersect_4, + <>). + +%% @spec (This::wxRegion()) -> bool() +%% @doc See external documentation. +isEmpty(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_IsEmpty, + <>). + +%% @spec (This::wxRegion(),X::wxRegion()|term()) -> bool() +%% @doc See external documentation. +%%
Alternatives: +%%

+%% subtract(This::wxRegion(), Region::wxRegion()) -> bool() +%%

+%%

+%% subtract(This::wxRegion(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> bool() +%%

+subtract(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=RegionT,ref=RegionRef}) -> + ?CLASS(ThisT,wxRegion), + ?CLASS(RegionT,wxRegion), + wxe_util:call(?wxRegion_Subtract_1_0, + <>); +subtract(#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,wxRegion), + wxe_util:call(?wxRegion_Subtract_1_1, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer(), W::integer(), H::integer()) -> bool() +%% @doc See external documentation. +subtract(#wx_ref{type=ThisT,ref=ThisRef},X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Subtract_4, + <>). + +%% @spec (This::wxRegion(), Pt::{X::integer(),Y::integer()}) -> bool() +%% @doc See external documentation. +offset(#wx_ref{type=ThisT,ref=ThisRef},{PtX,PtY}) + when is_integer(PtX),is_integer(PtY) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Offset_1, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer()) -> bool() +%% @doc See external documentation. +offset(#wx_ref{type=ThisT,ref=ThisRef},X,Y) + when is_integer(X),is_integer(Y) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Offset_2, + <>). + +%% @spec (This::wxRegion(),X::term()) -> bool() +%% @doc See external documentation. +%%
Alternatives: +%%

+%% union(This::wxRegion(), Region::wxRegion() | wxBitmap:wxBitmap()) -> bool() +%%

+%%

+%% union(This::wxRegion(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> bool() +%%

+union(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=RegionT,ref=RegionRef}) -> + ?CLASS(ThisT,wxRegion), + RegionOP = case ?CLASS_T(RegionT,wxRegion) of + true -> + ?wxRegion_Union_1_1; + _ -> ?CLASS(RegionT,wxBitmap), + ?wxRegion_Union_1_0 + end, + wxe_util:call(RegionOP, + <>); +union(#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,wxRegion), + wxe_util:call(?wxRegion_Union_1_2, + <>). + +%% @spec (This::wxRegion(), Bmp::wxBitmap:wxBitmap(), Transp::wx:colour()) -> bool() +%% @equiv union(This,Bmp,Transp, []) +union(This,Bmp,Transp) + when is_record(This, wx_ref),is_record(Bmp, wx_ref),tuple_size(Transp) =:= 3; tuple_size(Transp) =:= 4 -> + union(This,Bmp,Transp, []). + +%% @spec (This::wxRegion(), Bmp::wxBitmap:wxBitmap(), Transp::wx:colour(), [Option]) -> bool() +%% Option = {tolerance, integer()} +%% @doc See external documentation. +union(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=BmpT,ref=BmpRef},Transp, Options) + when tuple_size(Transp) =:= 3; tuple_size(Transp) =:= 4,is_list(Options) -> + ?CLASS(ThisT,wxRegion), + ?CLASS(BmpT,wxBitmap), + MOpts = fun({tolerance, Tolerance}, Acc) -> [<<1:32/?UI,Tolerance:32/?UI>>|Acc]; + (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, + BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), + wxe_util:call(?wxRegion_Union_3, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer(), W::integer(), H::integer()) -> bool() +%% @doc See external documentation. +union(#wx_ref{type=ThisT,ref=ThisRef},X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Union_4, + <>). + +%% @spec (This::wxRegion(),X::wxRegion()|term()) -> bool() +%% @doc See external documentation. +%%
Alternatives: +%%

+%% 'Xor'(This::wxRegion(), Region::wxRegion()) -> bool() +%%

+%%

+%% 'Xor'(This::wxRegion(), Rect::{X::integer(),Y::integer(),W::integer(),H::integer()}) -> bool() +%%

+'Xor'(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=RegionT,ref=RegionRef}) -> + ?CLASS(ThisT,wxRegion), + ?CLASS(RegionT,wxRegion), + wxe_util:call(?wxRegion_Xor_1_0, + <>); +'Xor'(#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,wxRegion), + wxe_util:call(?wxRegion_Xor_1_1, + <>). + +%% @spec (This::wxRegion(), X::integer(), Y::integer(), W::integer(), H::integer()) -> bool() +%% @doc See external documentation. +'Xor'(#wx_ref{type=ThisT,ref=ThisRef},X,Y,W,H) + when is_integer(X),is_integer(Y),is_integer(W),is_integer(H) -> + ?CLASS(ThisT,wxRegion), + wxe_util:call(?wxRegion_Xor_4, + <>). + +%% @spec (This::wxRegion()) -> ok +%% @doc Destroys this object, do not use object again +destroy(Obj=#wx_ref{type=Type}) -> + ?CLASS(Type,wxRegion), + wxe_util:destroy(?DESTROY_OBJECT,Obj), + ok. -- cgit v1.2.3