diff options
Diffstat (limited to 'lib/wx/src/gen/wxFontDialog.erl')
-rw-r--r-- | lib/wx/src/gen/wxFontDialog.erl | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/wx/src/gen/wxFontDialog.erl b/lib/wx/src/gen/wxFontDialog.erl index 357bfe532d..6cc210a4aa 100644 --- a/lib/wx/src/gen/wxFontDialog.erl +++ b/lib/wx/src/gen/wxFontDialog.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 @@ -77,6 +77,7 @@ transferDataFromWindow/1,transferDataToWindow/1,update/1,updateWindowUI/1, updateWindowUI/2,validate/1,warpPointer/3]). +-export_type([wxFontDialog/0]). %% @hidden parent_class(wxDialog) -> true; parent_class(wxTopLevelWindow) -> true; @@ -84,22 +85,25 @@ parent_class(wxWindow) -> true; parent_class(wxEvtHandler) -> true; parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -%% @spec () -> wxFontDialog() +-type wxFontDialog() :: wx:wx_object(). %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxfontdialog.html#wxfontdialogwxfontdialog">external documentation</a>. +-spec new() -> wxFontDialog(). new() -> wxe_util:construct(?wxFontDialog_new_0, <<>>). -%% @spec (Parent::wxWindow:wxWindow(), Data::wxFontData:wxFontData()) -> wxFontDialog() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxfontdialog.html#wxfontdialogwxfontdialog">external documentation</a>. +-spec new(Parent, Data) -> wxFontDialog() when + Parent::wxWindow:wxWindow(), Data::wxFontData:wxFontData(). new(#wx_ref{type=ParentT,ref=ParentRef},#wx_ref{type=DataT,ref=DataRef}) -> ?CLASS(ParentT,wxWindow), ?CLASS(DataT,wxFontData), wxe_util:construct(?wxFontDialog_new_2, <<ParentRef:32/?UI,DataRef:32/?UI>>). -%% @spec (This::wxFontDialog(), Parent::wxWindow:wxWindow(), Data::wxFontData:wxFontData()) -> bool() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxfontdialog.html#wxfontdialogcreate">external documentation</a>. +-spec create(This, Parent, Data) -> boolean() when + This::wxFontDialog(), Parent::wxWindow:wxWindow(), Data::wxFontData:wxFontData(). create(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},#wx_ref{type=DataT,ref=DataRef}) -> ?CLASS(ThisT,wxFontDialog), ?CLASS(ParentT,wxWindow), @@ -107,15 +111,16 @@ create(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},#wx_r wxe_util:call(?wxFontDialog_Create, <<ThisRef:32/?UI,ParentRef:32/?UI,DataRef:32/?UI>>). -%% @spec (This::wxFontDialog()) -> wxFontData:wxFontData() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxfontdialog.html#wxfontdialoggetfontdata">external documentation</a>. +-spec getFontData(This) -> wxFontData:wxFontData() when + This::wxFontDialog(). getFontData(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxFontDialog), wxe_util:call(?wxFontDialog_GetFontData, <<ThisRef:32/?UI>>). -%% @spec (This::wxFontDialog()) -> ok %% @doc Destroys this object, do not use object again +-spec destroy(This::wxFontDialog()) -> ok. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxFontDialog), wxe_util:destroy(?DESTROY_OBJECT,Obj), |