diff options
Diffstat (limited to 'lib/wx/src/gen/wxHtmlEasyPrinting.erl')
-rw-r--r-- | lib/wx/src/gen/wxHtmlEasyPrinting.erl | 74 |
1 files changed, 49 insertions, 25 deletions
diff --git a/lib/wx/src/gen/wxHtmlEasyPrinting.erl b/lib/wx/src/gen/wxHtmlEasyPrinting.erl index 15d673169a..2a5506053b 100644 --- a/lib/wx/src/gen/wxHtmlEasyPrinting.erl +++ b/lib/wx/src/gen/wxHtmlEasyPrinting.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 @@ -32,17 +32,21 @@ %% inherited exports -export([parent_class/1]). +-export_type([wxHtmlEasyPrinting/0]). %% @hidden parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -%% @spec () -> wxHtmlEasyPrinting() +-type wxHtmlEasyPrinting() :: wx:wx_object(). %% @equiv new([]) +-spec new() -> wxHtmlEasyPrinting(). + new() -> new([]). -%% @spec ([Option]) -> wxHtmlEasyPrinting() -%% Option = {name, string()} | {parentWindow, wxWindow:wxWindow()} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingwxhtmleasyprinting">external documentation</a>. +-spec new([Option]) -> wxHtmlEasyPrinting() when + Option :: {name, unicode:chardata()} + | {parentWindow, wxWindow:wxWindow()}. new(Options) when is_list(Options) -> MOpts = fun({name, Name}, Acc) -> Name_UC = unicode:characters_to_binary([Name,0]),[<<1:32/?UI,(byte_size(Name_UC)):32/?UI,(Name_UC)/binary, 0:(((8- ((0+byte_size(Name_UC)) band 16#7)) band 16#7))/unit:8>>|Acc]; @@ -52,22 +56,25 @@ new(Options) wxe_util:construct(?wxHtmlEasyPrinting_new, <<BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting()) -> wxPrintData:wxPrintData() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintinggetprintdata">external documentation</a>. +-spec getPrintData(This) -> wxPrintData:wxPrintData() when + This::wxHtmlEasyPrinting(). getPrintData(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxHtmlEasyPrinting), wxe_util:call(?wxHtmlEasyPrinting_GetPrintData, <<ThisRef:32/?UI>>). -%% @spec (This::wxHtmlEasyPrinting()) -> wxPageSetupDialogData:wxPageSetupDialogData() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintinggetpagesetupdata">external documentation</a>. +-spec getPageSetupData(This) -> wxPageSetupDialogData:wxPageSetupDialogData() when + This::wxHtmlEasyPrinting(). getPageSetupData(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxHtmlEasyPrinting), wxe_util:call(?wxHtmlEasyPrinting_GetPageSetupData, <<ThisRef:32/?UI>>). -%% @spec (This::wxHtmlEasyPrinting(), Htmlfile::string()) -> bool() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingpreviewfile">external documentation</a>. +-spec previewFile(This, Htmlfile) -> boolean() when + This::wxHtmlEasyPrinting(), Htmlfile::unicode:chardata(). previewFile(#wx_ref{type=ThisT,ref=ThisRef},Htmlfile) when is_list(Htmlfile) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -75,15 +82,18 @@ previewFile(#wx_ref{type=ThisT,ref=ThisRef},Htmlfile) wxe_util:call(?wxHtmlEasyPrinting_PreviewFile, <<ThisRef:32/?UI,(byte_size(Htmlfile_UC)):32/?UI,(Htmlfile_UC)/binary, 0:(((8- ((0+byte_size(Htmlfile_UC)) band 16#7)) band 16#7))/unit:8>>). -%% @spec (This::wxHtmlEasyPrinting(), Htmltext::string()) -> bool() %% @equiv previewText(This,Htmltext, []) +-spec previewText(This, Htmltext) -> boolean() when + This::wxHtmlEasyPrinting(), Htmltext::unicode:chardata(). + previewText(This,Htmltext) when is_record(This, wx_ref),is_list(Htmltext) -> previewText(This,Htmltext, []). -%% @spec (This::wxHtmlEasyPrinting(), Htmltext::string(), [Option]) -> bool() -%% Option = {basepath, string()} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingpreviewtext">external documentation</a>. +-spec previewText(This, Htmltext, [Option]) -> boolean() when + This::wxHtmlEasyPrinting(), Htmltext::unicode:chardata(), + Option :: {basepath, unicode:chardata()}. previewText(#wx_ref{type=ThisT,ref=ThisRef},Htmltext, Options) when is_list(Htmltext),is_list(Options) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -94,8 +104,9 @@ previewText(#wx_ref{type=ThisT,ref=ThisRef},Htmltext, Options) wxe_util:call(?wxHtmlEasyPrinting_PreviewText, <<ThisRef:32/?UI,(byte_size(Htmltext_UC)):32/?UI,(Htmltext_UC)/binary, 0:(((8- ((0+byte_size(Htmltext_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting(), Htmlfile::string()) -> bool() %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingprintfile">external documentation</a>. +-spec printFile(This, Htmlfile) -> boolean() when + This::wxHtmlEasyPrinting(), Htmlfile::unicode:chardata(). printFile(#wx_ref{type=ThisT,ref=ThisRef},Htmlfile) when is_list(Htmlfile) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -103,15 +114,18 @@ printFile(#wx_ref{type=ThisT,ref=ThisRef},Htmlfile) wxe_util:call(?wxHtmlEasyPrinting_PrintFile, <<ThisRef:32/?UI,(byte_size(Htmlfile_UC)):32/?UI,(Htmlfile_UC)/binary, 0:(((8- ((0+byte_size(Htmlfile_UC)) band 16#7)) band 16#7))/unit:8>>). -%% @spec (This::wxHtmlEasyPrinting(), Htmltext::string()) -> bool() %% @equiv printText(This,Htmltext, []) +-spec printText(This, Htmltext) -> boolean() when + This::wxHtmlEasyPrinting(), Htmltext::unicode:chardata(). + printText(This,Htmltext) when is_record(This, wx_ref),is_list(Htmltext) -> printText(This,Htmltext, []). -%% @spec (This::wxHtmlEasyPrinting(), Htmltext::string(), [Option]) -> bool() -%% Option = {basepath, string()} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingprinttext">external documentation</a>. +-spec printText(This, Htmltext, [Option]) -> boolean() when + This::wxHtmlEasyPrinting(), Htmltext::unicode:chardata(), + Option :: {basepath, unicode:chardata()}. printText(#wx_ref{type=ThisT,ref=ThisRef},Htmltext, Options) when is_list(Htmltext),is_list(Options) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -122,22 +136,26 @@ printText(#wx_ref{type=ThisT,ref=ThisRef},Htmltext, Options) wxe_util:call(?wxHtmlEasyPrinting_PrintText, <<ThisRef:32/?UI,(byte_size(Htmltext_UC)):32/?UI,(Htmltext_UC)/binary, 0:(((8- ((0+byte_size(Htmltext_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting()) -> ok %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingpagesetup">external documentation</a>. +-spec pageSetup(This) -> ok when + This::wxHtmlEasyPrinting(). pageSetup(#wx_ref{type=ThisT,ref=ThisRef}) -> ?CLASS(ThisT,wxHtmlEasyPrinting), wxe_util:cast(?wxHtmlEasyPrinting_PageSetup, <<ThisRef:32/?UI>>). -%% @spec (This::wxHtmlEasyPrinting(), Normal_face::string(), Fixed_face::string()) -> ok %% @equiv setFonts(This,Normal_face,Fixed_face, []) +-spec setFonts(This, Normal_face, Fixed_face) -> ok when + This::wxHtmlEasyPrinting(), Normal_face::unicode:chardata(), Fixed_face::unicode:chardata(). + setFonts(This,Normal_face,Fixed_face) when is_record(This, wx_ref),is_list(Normal_face),is_list(Fixed_face) -> setFonts(This,Normal_face,Fixed_face, []). -%% @spec (This::wxHtmlEasyPrinting(), Normal_face::string(), Fixed_face::string(), [Option]) -> ok -%% Option = {sizes, [integer()]} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingsetfonts">external documentation</a>. +-spec setFonts(This, Normal_face, Fixed_face, [Option]) -> ok when + This::wxHtmlEasyPrinting(), Normal_face::unicode:chardata(), Fixed_face::unicode:chardata(), + Option :: {sizes, [integer()]}. setFonts(#wx_ref{type=ThisT,ref=ThisRef},Normal_face,Fixed_face, Options) when is_list(Normal_face),is_list(Fixed_face),is_list(Options) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -150,15 +168,18 @@ setFonts(#wx_ref{type=ThisT,ref=ThisRef},Normal_face,Fixed_face, Options) wxe_util:cast(?wxHtmlEasyPrinting_SetFonts, <<ThisRef:32/?UI,(byte_size(Normal_face_UC)):32/?UI,(Normal_face_UC)/binary, 0:(((8- ((0+byte_size(Normal_face_UC)) band 16#7)) band 16#7))/unit:8,(byte_size(Fixed_face_UC)):32/?UI,(Fixed_face_UC)/binary, 0:(((8- ((4+byte_size(Fixed_face_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting(), Header::string()) -> ok %% @equiv setHeader(This,Header, []) +-spec setHeader(This, Header) -> ok when + This::wxHtmlEasyPrinting(), Header::unicode:chardata(). + setHeader(This,Header) when is_record(This, wx_ref),is_list(Header) -> setHeader(This,Header, []). -%% @spec (This::wxHtmlEasyPrinting(), Header::string(), [Option]) -> ok -%% Option = {pg, integer()} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingsetheader">external documentation</a>. +-spec setHeader(This, Header, [Option]) -> ok when + This::wxHtmlEasyPrinting(), Header::unicode:chardata(), + Option :: {pg, integer()}. setHeader(#wx_ref{type=ThisT,ref=ThisRef},Header, Options) when is_list(Header),is_list(Options) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -169,15 +190,18 @@ setHeader(#wx_ref{type=ThisT,ref=ThisRef},Header, Options) wxe_util:cast(?wxHtmlEasyPrinting_SetHeader, <<ThisRef:32/?UI,(byte_size(Header_UC)):32/?UI,(Header_UC)/binary, 0:(((8- ((0+byte_size(Header_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting(), Footer::string()) -> ok %% @equiv setFooter(This,Footer, []) +-spec setFooter(This, Footer) -> ok when + This::wxHtmlEasyPrinting(), Footer::unicode:chardata(). + setFooter(This,Footer) when is_record(This, wx_ref),is_list(Footer) -> setFooter(This,Footer, []). -%% @spec (This::wxHtmlEasyPrinting(), Footer::string(), [Option]) -> ok -%% Option = {pg, integer()} %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxhtmleasyprinting.html#wxhtmleasyprintingsetfooter">external documentation</a>. +-spec setFooter(This, Footer, [Option]) -> ok when + This::wxHtmlEasyPrinting(), Footer::unicode:chardata(), + Option :: {pg, integer()}. setFooter(#wx_ref{type=ThisT,ref=ThisRef},Footer, Options) when is_list(Footer),is_list(Options) -> ?CLASS(ThisT,wxHtmlEasyPrinting), @@ -188,8 +212,8 @@ setFooter(#wx_ref{type=ThisT,ref=ThisRef},Footer, Options) wxe_util:cast(?wxHtmlEasyPrinting_SetFooter, <<ThisRef:32/?UI,(byte_size(Footer_UC)):32/?UI,(Footer_UC)/binary, 0:(((8- ((0+byte_size(Footer_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>). -%% @spec (This::wxHtmlEasyPrinting()) -> ok %% @doc Destroys this object, do not use object again +-spec destroy(This::wxHtmlEasyPrinting()) -> ok. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxHtmlEasyPrinting), wxe_util:destroy(?DESTROY_OBJECT,Obj), |