From a181c06152a3c935fdf63659322020fb7625b577 Mon Sep 17 00:00:00 2001 From: Dan Gudmundsson Date: Thu, 16 Feb 2012 11:04:18 +0100 Subject: [wx] Generated types for all wx classes --- lib/wx/src/gen/wxEvent.erl | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) (limited to 'lib/wx/src/gen/wxEvent.erl') diff --git a/lib/wx/src/gen/wxEvent.erl b/lib/wx/src/gen/wxEvent.erl index 403fd89f1f..1b2147a326 100644 --- a/lib/wx/src/gen/wxEvent.erl +++ b/lib/wx/src/gen/wxEvent.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 @@ -30,61 +30,72 @@ %% inherited exports -export([parent_class/1]). +-export_type([wxEvent/0]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -%% @spec (This::wxEvent()) -> integer() +-type wxEvent() :: wx:wx_object(). %% @doc See external documentation. +-spec getId(This) -> integer() when + This::wxEvent(). getId(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_GetId, <>). -%% @spec (This::wxEvent()) -> bool() %% @doc See external documentation. +-spec getSkipped(This) -> boolean() when + This::wxEvent(). getSkipped(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_GetSkipped, <>). -%% @spec (This::wxEvent()) -> integer() %% @doc See external documentation. +-spec getTimestamp(This) -> integer() when + This::wxEvent(). getTimestamp(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_GetTimestamp, <>). -%% @spec (This::wxEvent()) -> bool() %% @doc See external documentation. +-spec isCommandEvent(This) -> boolean() when + This::wxEvent(). isCommandEvent(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_IsCommandEvent, <>). -%% @spec (This::wxEvent(), PropagationLevel::integer()) -> ok %% @doc See external documentation. +-spec resumePropagation(This, PropagationLevel) -> ok when + This::wxEvent(), PropagationLevel::integer(). resumePropagation(#wx_ref{type=ThisT,ref=ThisRef},PropagationLevel) when is_integer(PropagationLevel) -> ?CLASS(ThisT,wxEvent), wxe_util:cast(?wxEvent_ResumePropagation, <>). -%% @spec (This::wxEvent()) -> bool() %% @doc See external documentation. +-spec shouldPropagate(This) -> boolean() when + This::wxEvent(). shouldPropagate(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_ShouldPropagate, <>). -%% @spec (This::wxEvent()) -> ok %% @equiv skip(This, []) +-spec skip(This) -> ok when + This::wxEvent(). + skip(This) when is_record(This, wx_ref) -> skip(This, []). -%% @spec (This::wxEvent(), [Option]) -> ok -%% Option = {skip, bool()} %% @doc See external documentation. +-spec skip(This, [Option]) -> ok when + This::wxEvent(), + Option :: {skip, boolean()}. skip(#wx_ref{type=ThisT,ref=ThisRef}, Options) when is_list(Options) -> ?CLASS(ThisT,wxEvent), @@ -94,8 +105,9 @@ skip(#wx_ref{type=ThisT,ref=ThisRef}, Options) wxe_util:cast(?wxEvent_Skip, <>). -%% @spec (This::wxEvent()) -> integer() %% @doc See external documentation. +-spec stopPropagation(This) -> integer() when + This::wxEvent(). stopPropagation(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxEvent), wxe_util:call(?wxEvent_StopPropagation, -- cgit v1.2.3