View Source wxHtmlEasyPrinting (wx v2.4.3)
This class provides very simple interface to printing architecture.
It allows you to print HTML documents using only a few commands.
Note: Do not create this class on the stack only. You should create an instance on app startup and use this instance for all printing operations. The reason is that this class stores various settings in it.
wxWidgets docs: wxHtmlEasyPrinting
Summary
Functions
Destroys the object
Returns a pointer to wxPageSetupDialogData
instance used by this class.
Returns pointer to wxPrintData
instance used by this class.
Constructor.
Display page setup dialog and allows the user to modify settings.
Preview HTML file.
Equivalent to previewText(This, Htmltext, [])
.
Preview HTML text (not file!).
Print HTML file.
Equivalent to printText(This, Htmltext, [])
.
Print HTML text (not file!).
Sets fonts.
Equivalent to setFooter(This, Footer, [])
.
Set page footer.
Equivalent to setHeader(This, Header, [])
.
Set page header.
Types
-type wxHtmlEasyPrinting() :: wx:wx_object().
Functions
-spec destroy(This :: wxHtmlEasyPrinting()) -> ok.
Destroys the object
-spec getPageSetupData(This) -> wxPageSetupDialogData:wxPageSetupDialogData() when This :: wxHtmlEasyPrinting().
Returns a pointer to wxPageSetupDialogData
instance used by this class.
You can set its parameters (via SetXXXX methods).
-spec getPrintData(This) -> wxPrintData:wxPrintData() when This :: wxHtmlEasyPrinting().
Returns pointer to wxPrintData
instance used by this class.
You can set its parameters (via SetXXXX methods).
-spec new() -> wxHtmlEasyPrinting().
Equivalent to new([])
.
-spec new([Option]) -> wxHtmlEasyPrinting() when Option :: {name, unicode:chardata()} | {parentWindow, wxWindow:wxWindow()}.
Constructor.
-spec pageSetup(This) -> ok when This :: wxHtmlEasyPrinting().
Display page setup dialog and allows the user to modify settings.
-spec previewFile(This, Htmlfile) -> boolean() when This :: wxHtmlEasyPrinting(), Htmlfile :: unicode:chardata().
Preview HTML file.
Returns false in case of error - call wxPrinter:getLastError/0
to get detailed information about the kind of the
error.
-spec previewText(This, Htmltext) -> boolean() when This :: wxHtmlEasyPrinting(), Htmltext :: unicode:chardata().
Equivalent to previewText(This, Htmltext, [])
.
-spec previewText(This, Htmltext, [Option]) -> boolean() when This :: wxHtmlEasyPrinting(), Htmltext :: unicode:chardata(), Option :: {basepath, unicode:chardata()}.
Preview HTML text (not file!).
Returns false in case of error - call wxPrinter:getLastError/0
to get detailed information about the kind of the error.
-spec printFile(This, Htmlfile) -> boolean() when This :: wxHtmlEasyPrinting(), Htmlfile :: unicode:chardata().
Print HTML file.
Returns false in case of error - call wxPrinter:getLastError/0
to get detailed information about the kind of the
error.
-spec printText(This, Htmltext) -> boolean() when This :: wxHtmlEasyPrinting(), Htmltext :: unicode:chardata().
Equivalent to printText(This, Htmltext, [])
.
-spec printText(This, Htmltext, [Option]) -> boolean() when This :: wxHtmlEasyPrinting(), Htmltext :: unicode:chardata(), Option :: {basepath, unicode:chardata()}.
Print HTML text (not file!).
Returns false in case of error - call wxPrinter:getLastError/0
to get detailed information about the kind of the error.
-spec setFonts(This, Normal_face, Fixed_face) -> ok when This :: wxHtmlEasyPrinting(), Normal_face :: unicode:chardata(), Fixed_face :: unicode:chardata().
Equivalent to setFonts(This, Normal_face, Fixed_face, [])
.
-spec setFonts(This, Normal_face, Fixed_face, [Option]) -> ok when This :: wxHtmlEasyPrinting(), Normal_face :: unicode:chardata(), Fixed_face :: unicode:chardata(), Option :: {sizes, [integer()]}.
Sets fonts.
See wxHtmlDCRenderer::SetFonts
(not implemented in wx) for detailed description.
-spec setHeader(This, Header) -> ok when This :: wxHtmlEasyPrinting(), Header :: unicode:chardata().
Equivalent to setHeader(This, Header, [])
.
-spec setHeader(This, Header, [Option]) -> ok when This :: wxHtmlEasyPrinting(), Header :: unicode:chardata(), Option :: {pg, integer()}.
Set page header.
The following macros can be used inside it:
@DATE@ is replaced by the current date in default format
@PAGENUM@ is replaced by page number
@PAGESCNT@ is replaced by total number of pages
@TIME@ is replaced by the current time in default format
@TITLE@ is replaced with the title of the document