From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/wx/src/gen/wxPrinter.erl | 135 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 lib/wx/src/gen/wxPrinter.erl (limited to 'lib/wx/src/gen/wxPrinter.erl') diff --git a/lib/wx/src/gen/wxPrinter.erl b/lib/wx/src/gen/wxPrinter.erl new file mode 100644 index 0000000000..d12a1f5909 --- /dev/null +++ b/lib/wx/src/gen/wxPrinter.erl @@ -0,0 +1,135 @@ +%% +%% %CopyrightBegin% +%% +%% Copyright Ericsson AB 2008-2009. 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 +%% compliance with the License. You should have received a copy of the +%% Erlang Public License along with this software. If not, it can be +%% retrieved online at http://www.erlang.org/. +%% +%% Software distributed under the License is distributed on an "AS IS" +%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +%% the License for the specific language governing rights and limitations +%% under the License. +%% +%% %CopyrightEnd% +%% This file is generated DO NOT EDIT + +%% @doc See external documentation: wxPrinter. +%% @type wxPrinter(). An object reference, The representation is internal +%% and can be changed without notice. It can't be used for comparsion +%% stored on disc or distributed for use on other nodes. + +-module(wxPrinter). +-include("wxe.hrl"). +-export([createAbortWindow/3,destroy/1,getAbort/1,getLastError/0,getPrintDialogData/1, + new/0,new/1,print/3,print/4,printDialog/2,reportError/4,setup/2]). + +%% inherited exports +-export([parent_class/1]). + +%% @hidden +parent_class(_Class) -> erlang:error({badtype, ?MODULE}). + +%% @spec () -> wxPrinter() +%% @equiv new([]) +new() -> + new([]). + +%% @spec ([Option]) -> wxPrinter() +%% Option = {data, wxPrintDialogData:wxPrintDialogData()} +%% @doc See external documentation. +new(Options) + when is_list(Options) -> + MOpts = fun({data, #wx_ref{type=DataT,ref=DataRef}}, Acc) -> ?CLASS(DataT,wxPrintDialogData),[<<1:32/?UI,DataRef:32/?UI>>|Acc]; + (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, + BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), + wxe_util:construct(?wxPrinter_new, + <>). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow(), Printout::wxPrintout:wxPrintout()) -> wxWindow:wxWindow() +%% @doc See external documentation. +createAbortWindow(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},#wx_ref{type=PrintoutT,ref=PrintoutRef}) -> + ?CLASS(ThisT,wxPrinter), + ?CLASS(ParentT,wxWindow), + ?CLASS(PrintoutT,wxPrintout), + wxe_util:call(?wxPrinter_CreateAbortWindow, + <>). + +%% @spec (This::wxPrinter()) -> bool() +%% @doc See external documentation. +getAbort(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxPrinter), + wxe_util:call(?wxPrinter_GetAbort, + <>). + +%% @spec () -> WxPrinterError +%% WxPrinterError = integer() +%% @doc See external documentation. +%%
WxPrinterError is one of ?wxPRINTER_NO_ERROR | ?wxPRINTER_CANCELLED | ?wxPRINTER_ERROR +getLastError() -> + wxe_util:call(?wxPrinter_GetLastError, + <<>>). + +%% @spec (This::wxPrinter()) -> wxPrintDialogData:wxPrintDialogData() +%% @doc See external documentation. +getPrintDialogData(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxPrinter), + wxe_util:call(?wxPrinter_GetPrintDialogData, + <>). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow(), Printout::wxPrintout:wxPrintout()) -> bool() +%% @equiv print(This,Parent,Printout, []) +print(This,Parent,Printout) + when is_record(This, wx_ref),is_record(Parent, wx_ref),is_record(Printout, wx_ref) -> + print(This,Parent,Printout, []). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow(), Printout::wxPrintout:wxPrintout(), [Option]) -> bool() +%% Option = {prompt, bool()} +%% @doc See external documentation. +print(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},#wx_ref{type=PrintoutT,ref=PrintoutRef}, Options) + when is_list(Options) -> + ?CLASS(ThisT,wxPrinter), + ?CLASS(ParentT,wxWindow), + ?CLASS(PrintoutT,wxPrintout), + MOpts = fun({prompt, Prompt}, Acc) -> [<<1:32/?UI,(wxe_util:from_bool(Prompt)):32/?UI>>|Acc]; + (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, + BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), + wxe_util:call(?wxPrinter_Print, + <>). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow()) -> wxDC:wxDC() +%% @doc See external documentation. +printDialog(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef}) -> + ?CLASS(ThisT,wxPrinter), + ?CLASS(ParentT,wxWindow), + wxe_util:call(?wxPrinter_PrintDialog, + <>). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow(), Printout::wxPrintout:wxPrintout(), Message::string()) -> ok +%% @doc See external documentation. +reportError(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},#wx_ref{type=PrintoutT,ref=PrintoutRef},Message) + when is_list(Message) -> + ?CLASS(ThisT,wxPrinter), + ?CLASS(ParentT,wxWindow), + ?CLASS(PrintoutT,wxPrintout), + Message_UC = unicode:characters_to_binary([Message,0]), + wxe_util:cast(?wxPrinter_ReportError, + <>). + +%% @spec (This::wxPrinter(), Parent::wxWindow:wxWindow()) -> bool() +%% @doc See external documentation. +setup(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef}) -> + ?CLASS(ThisT,wxPrinter), + ?CLASS(ParentT,wxWindow), + wxe_util:call(?wxPrinter_Setup, + <>). + +%% @spec (This::wxPrinter()) -> ok +%% @doc Destroys this object, do not use object again +destroy(Obj=#wx_ref{type=Type}) -> + ?CLASS(Type,wxPrinter), + wxe_util:destroy(?DESTROY_OBJECT,Obj), + ok. -- cgit v1.2.3