Erlang logo
User's Guide
Reference Manual
Release Notes
PDF
Top

wxErlang
Reference Manual
Version 0.98.5


Expand All
Contract All

Table of Contents

wxPrintout

MODULE

wxPrintout

MODULE SUMMARY

See external documentation: wxPrintout.

DESCRIPTION

See external documentation: wxPrintout.

DATA TYPES

wxPrintout()

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.

EXPORTS

new(Title::string(), OnPrintPage::function()) -> wxPrintout() (see module wxPrintout)

@equiv new(Title, OnPrintPage, [])

new(Title::string(), OnPrintPage::function(), Opts::[Option]) -> wxPrintout() (see module wxPrintout)

Types:

Option = {onPreparePrinting, OnPreparePrinting::function()} | {onBeginPrinting, OnBeginPrinting::function()} | {onEndPrinting, OnEndPrinting::function()} | {onBeginDocument, OnBeginDocument::function()} | {onEndDocument, OnEndDocument::function()} | {hasPage, HasPage::function()} | {getPageInfo, GetPageInfo::function()}

Creates a wxPrintout object with a callback fun and optionally other callback funs.

OnPrintPage(This,Page) -> boolean() 
OnPreparePrinting(This) -> term()   
OnBeginPrinting(This) -> term()   
OnEndPrinting(This) -> term()   
OnBeginDocument(This,StartPage,EndPage) -> boolean()  
OnEndDocument(This) -> term()  
HasPage(This,Page)} -> boolean()   
GetPageInfo(This) -> {MinPage:.integer(), MaxPage::integer(), PageFrom::integer(), PageTo::integer()}  

The This argument is the wxPrintout object reference to this object
NOTE: The callbacks may not call other processes.

getDC(This::wxPrintout()) -> wxDC() (see module wxDC)

getPageSizeMM(This::wxPrintout()) -> {W::integer(), H::integer()}

getPageSizePixels(This::wxPrintout()) -> {W::integer(), H::integer()}

getPaperRectPixels(This::wxPrintout()) -> {X::integer(), Y::integer(), W::integer(), H::integer()}

getPPIPrinter(This::wxPrintout()) -> {X::integer(), Y::integer()}

getPPIScreen(This::wxPrintout()) -> {X::integer(), Y::integer()}

getTitle(This::wxPrintout()) -> string()

isPreview(This::wxPrintout()) -> bool()

fitThisSizeToPaper(This::wxPrintout(), ImageSize::{W::integer(), H::integer()}) -> ok

fitThisSizeToPage(This::wxPrintout(), ImageSize::{W::integer(), H::integer()}) -> ok

fitThisSizeToPageMargins(This::wxPrintout(), ImageSize::{W::integer(), H::integer()}, PageSetupData::wxPageSetupDialogData() (see module wxPageSetupDialogData)) -> ok

mapScreenSizeToPaper(This::wxPrintout()) -> ok

mapScreenSizeToPage(This::wxPrintout()) -> ok

mapScreenSizeToPageMargins(This::wxPrintout(), PageSetupData::wxPageSetupDialogData() (see module wxPageSetupDialogData)) -> ok

mapScreenSizeToDevice(This::wxPrintout()) -> ok

getLogicalPaperRect(This::wxPrintout()) -> {X::integer(), Y::integer(), W::integer(), H::integer()}

getLogicalPageRect(This::wxPrintout()) -> {X::integer(), Y::integer(), W::integer(), H::integer()}

getLogicalPageMarginsRect(This::wxPrintout(), PageSetupData::wxPageSetupDialogData() (see module wxPageSetupDialogData)) -> {X::integer(), Y::integer(), W::integer(), H::integer()}

setLogicalOrigin(This::wxPrintout(), X::integer(), Y::integer()) -> ok

offsetLogicalOrigin(This::wxPrintout(), Xoff::integer(), Yoff::integer()) -> ok

destroy(This::wxPrintout()) -> ok

Destroys this object, do not use object again