diff options
Diffstat (limited to 'lib/wx/src/gen/wxToolTip.erl')
-rw-r--r-- | lib/wx/src/gen/wxToolTip.erl | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/lib/wx/src/gen/wxToolTip.erl b/lib/wx/src/gen/wxToolTip.erl index b0749c851a..c604fc4af9 100644 --- a/lib/wx/src/gen/wxToolTip.erl +++ b/lib/wx/src/gen/wxToolTip.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2010. All Rights Reserved. +%% Copyright Ericsson AB 2008-2012. 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 @@ -29,33 +29,39 @@ %% inherited exports -export([parent_class/1]). +-export_type([wxToolTip/0]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -%% @spec (Flag::bool()) -> ok +-type wxToolTip() :: wx:wx_object(). %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipenable">external documentation</a>. +-spec enable(Flag) -> ok when + Flag::boolean(). enable(Flag) when is_boolean(Flag) -> wxe_util:cast(?wxToolTip_Enable, <<(wxe_util:from_bool(Flag)):32/?UI>>). -%% @spec (Msecs::integer()) -> ok %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipsetdelay">external documentation</a>. +-spec setDelay(Msecs) -> ok when + Msecs::integer(). setDelay(Msecs) when is_integer(Msecs) -> wxe_util:cast(?wxToolTip_SetDelay, <<Msecs:32/?UI>>). -%% @spec (Tip::string()) -> wxToolTip() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipwxtooltip">external documentation</a>. +-spec new(Tip) -> wxToolTip() when + Tip::string(). new(Tip) when is_list(Tip) -> Tip_UC = unicode:characters_to_binary([Tip,0]), wxe_util:construct(?wxToolTip_new, <<(byte_size(Tip_UC)):32/?UI,(Tip_UC)/binary, 0:(((8- ((4+byte_size(Tip_UC)) band 16#7)) band 16#7))/unit:8>>). -%% @spec (This::wxToolTip(), Tip::string()) -> ok %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipsettip">external documentation</a>. +-spec setTip(This, Tip) -> ok when + This::wxToolTip(), Tip::string(). setTip(#wx_ref{type=ThisT,ref=ThisRef},Tip) when is_list(Tip) -> ?CLASS(ThisT,wxToolTip), @@ -63,22 +69,24 @@ setTip(#wx_ref{type=ThisT,ref=ThisRef},Tip) wxe_util:cast(?wxToolTip_SetTip, <<ThisRef:32/?UI,(byte_size(Tip_UC)):32/?UI,(Tip_UC)/binary, 0:(((8- ((0+byte_size(Tip_UC)) band 16#7)) band 16#7))/unit:8>>). -%% @spec (This::wxToolTip()) -> string() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipgettip">external documentation</a>. +-spec getTip(This) -> string() when + This::wxToolTip(). getTip(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxToolTip), wxe_util:call(?wxToolTip_GetTip, <<ThisRef:32/?UI>>). -%% @spec (This::wxToolTip()) -> wxWindow:wxWindow() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxtooltip.html#wxtooltipgetwindow">external documentation</a>. +-spec getWindow(This) -> wxWindow:wxWindow() when + This::wxToolTip(). getWindow(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxToolTip), wxe_util:call(?wxToolTip_GetWindow, <<ThisRef:32/?UI>>). -%% @spec (This::wxToolTip()) -> ok %% @doc Destroys this object, do not use object again +-spec destroy(This::wxToolTip) -> ok. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxToolTip), wxe_util:destroy(?DESTROY_OBJECT,Obj), |