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/wxGridCellFloatRenderer.erl | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to 'lib/wx/src/gen/wxGridCellFloatRenderer.erl') diff --git a/lib/wx/src/gen/wxGridCellFloatRenderer.erl b/lib/wx/src/gen/wxGridCellFloatRenderer.erl index 84ffd21b37..4e3450c90b 100644 --- a/lib/wx/src/gen/wxGridCellFloatRenderer.erl +++ b/lib/wx/src/gen/wxGridCellFloatRenderer.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009-2010. All Rights Reserved. +%% Copyright Ericsson AB 2009-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 @@ -34,19 +34,23 @@ %% inherited exports -export([draw/8,getBestSize/6,parent_class/1]). +-export_type([wxGridCellFloatRenderer/0]). %% @hidden parent_class(wxGridCellStringRenderer) -> true; parent_class(wxGridCellRenderer) -> true; parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -%% @spec () -> wxGridCellFloatRenderer() +-type wxGridCellFloatRenderer() :: wx:wx_object(). %% @equiv new([]) +-spec new() -> wxGridCellFloatRenderer(). + new() -> new([]). -%% @spec ([Option]) -> wxGridCellFloatRenderer() -%% Option = {width, integer()} | {precision, integer()} %% @doc See external documentation. +-spec new([Option]) -> wxGridCellFloatRenderer() when + Option :: {width, integer()} + | {precision, integer()}. new(Options) when is_list(Options) -> MOpts = fun({width, Width}, Acc) -> [<<1:32/?UI,Width:32/?UI>>|Acc]; @@ -56,22 +60,25 @@ new(Options) wxe_util:construct(?wxGridCellFloatRenderer_new, <>). -%% @spec (This::wxGridCellFloatRenderer()) -> integer() %% @doc See external documentation. +-spec getPrecision(This) -> integer() when + This::wxGridCellFloatRenderer(). getPrecision(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxGridCellFloatRenderer), wxe_util:call(?wxGridCellFloatRenderer_GetPrecision, <>). -%% @spec (This::wxGridCellFloatRenderer()) -> integer() %% @doc See external documentation. +-spec getWidth(This) -> integer() when + This::wxGridCellFloatRenderer(). getWidth(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxGridCellFloatRenderer), wxe_util:call(?wxGridCellFloatRenderer_GetWidth, <>). -%% @spec (This::wxGridCellFloatRenderer(), Params::string()) -> ok %% @doc See external documentation. +-spec setParameters(This, Params) -> ok when + This::wxGridCellFloatRenderer(), Params::string(). setParameters(#wx_ref{type=ThisT,ref=ThisRef},Params) when is_list(Params) -> ?CLASS(ThisT,wxGridCellFloatRenderer), @@ -79,24 +86,26 @@ setParameters(#wx_ref{type=ThisT,ref=ThisRef},Params) wxe_util:cast(?wxGridCellFloatRenderer_SetParameters, <>). -%% @spec (This::wxGridCellFloatRenderer(), Precision::integer()) -> ok %% @doc See external documentation. +-spec setPrecision(This, Precision) -> ok when + This::wxGridCellFloatRenderer(), Precision::integer(). setPrecision(#wx_ref{type=ThisT,ref=ThisRef},Precision) when is_integer(Precision) -> ?CLASS(ThisT,wxGridCellFloatRenderer), wxe_util:cast(?wxGridCellFloatRenderer_SetPrecision, <>). -%% @spec (This::wxGridCellFloatRenderer(), Width::integer()) -> ok %% @doc See external documentation. +-spec setWidth(This, Width) -> ok when + This::wxGridCellFloatRenderer(), Width::integer(). setWidth(#wx_ref{type=ThisT,ref=ThisRef},Width) when is_integer(Width) -> ?CLASS(ThisT,wxGridCellFloatRenderer), wxe_util:cast(?wxGridCellFloatRenderer_SetWidth, <>). -%% @spec (This::wxGridCellFloatRenderer()) -> ok %% @doc Destroys this object, do not use object again +-spec destroy(This::wxGridCellFloatRenderer) -> ok. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxGridCellFloatRenderer), wxe_util:destroy(?wxGridCellFloatRenderer_destroy,Obj), -- cgit v1.2.3