File: printing_framework_overview.rst

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (210 lines) | stat: -rw-r--r-- 8,633 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
.. include:: headings.inc


.. _printing framework overview:

=================================================
|phoenix_title|  **Printing Framework Overview**
=================================================


The printing framework relies on the application to provide classes
whose member functions can respond to particular requests, such as
'print this page' or 'does this page exist in the document?'. This
method allows wxPython to take over the housekeeping duties of turning
preview pages, calling the print dialog box, creating the printer
device context, and so on: the application can concentrate on the
rendering of the information onto a device context.

In most cases, the only class you will need to derive from is
:ref:`wx.Printout`; all others will be used as-is.

A brief description of each class's role and how they work together follows.


Printout
--------

A document's printing ability is represented in an application by a
derived :ref:`wx.Printout` class. This class prints a page on request,
and can be passed to the Print function of a :ref:`wx.Printer` object to
actually print the document, or can be passed to a :ref:`wx.PrintPreview`
object to initiate previewing. The following code shows how easy it is
to initiate printing, previewing and the print setup dialog, once the
:ref:`wx.Printout` functionality has been defined. Notice the use of
`MyPrintout` for both printing and previewing. All the preview user
interface functionality is taken care of by wxPython::

	if printing:
	    printer = wx.Printer()
	    printout = MyPrintout("My printout")
	    printer.Print(self, printout, True)

	elif preview:
	    # Pass two printout objects: for preview, and possible printing.
	    preview = wx.PrintPreview(MyPrintout(), MyPrintout())
	    frame = wx.PreviewFrame(preview, self, "Demo Print Preview",
	                            wx.Point(100, 100), wx.Size(600, 650))
	    frame.Centre(wx.BOTH)
	    frame.Initialize()
	    frame.Show(True)



:ref:`wx.Printout` assembles the printed page and (using your subclass's
overrides) writes requested pages to a :ref:`wx.DC` that is passed to
it. This :ref:`wx.DC` could be a :ref:`wx.MemoryDC` (for displaying the
preview image on-screen), a :ref:`wx.PrinterDC` (for printing under MSW
and Mac), or a :ref:`wx.PostScriptDC` (for printing under GTK or
generating PostScript output).

If your window classes have a `Draw(dc)` routine to do screen
rendering, your :ref:`wx.Printout` subclass will typically call those
routines to create portions of the image on your printout. Your
:ref:`wx.Printout` subclass can also make its own calls to its :ref:`wx.DC`
to draw headers, footers, page numbers, etc.

The scaling of the drawn image typically differs from the screen to
the preview and printed images. This class provides a set of routines
named `FitThisSizeToXXX()`, `MapScreenSizeToXXX()`, and
`GetLogicalXXXRect`, which can be used to set the user scale and
origin of the Printout's DC so that your class can easily map your
image to the printout without getting into the details of screen and
printer PPI and scaling.


Printer
-------

Class :ref:`wx.Printer` encapsulates the platform-dependent print
function with a common interface. In most cases, you will not need to
derive a class from :ref:`wx.Printer`; simply create a :ref:`wx.Printer`
object in your `Print` function as in the example above.


PrintPreview
------------

Class :ref:`wx.PrintPreview` manages the print preview process. Among
other things, it constructs the DCs that get passed to your
:ref:`wx.Printout` subclass for printing and manages the display of
multiple pages, a zoomable preview image, and so forth.  In most cases
you will use this class as-is, but you can create your own subclass,
for example, to change the layout or contents of the preview window.


PrinterDC
---------

Class :ref:`wx.PrinterDC` is the :ref:`wx.DC` that represents the actual
printed page under MSW and Mac. During printing, an object of this
class will be passed to your derived :ref:`wx.Printout` object to draw
upon. The size of the :ref:`wx.PrinterDC` will depend on the paper
orientation and the resolution of the printer.

There are two important rectangles in printing: the page rectangle
defines the printable area seen by the application, and under MSW and
Mac, it is the printable area specified by the printer. (For
PostScript printing, the page rectangle is the entire page.)  The
inherited function :meth:`wx.DC.GetSize` returns the page size in device
pixels. The point (0,0) on the :ref:`wx.PrinterDC` represents the top
left corner of the page rectangle; that is, the page rect is given by
`Rect(0, 0, w, h)`, where (w,h) are the values returned by `GetSize`.

The paper rectangle, on the other hand, represents the entire paper
area including the non-printable border. Thus, the coordinates of the
top left corner of the paper rectangle will have small negative
values, while the width and height will be somewhat larger than that
of the page rectangle. The :ref:`wx.PrinterDC` -specific function
:meth:`wx.PrinterDC.GetPaperRect` returns the paper rectangle of the
given :ref:`wx.PrinterDC`.


PostScriptDC
------------

Class :ref:`wx.PostScriptDC` is the :ref:`wx.DC` that represents the actual
printed page under GTK and other PostScript printing.  During
printing, an object of this class will be passed to your derived
:ref:`wx.Printout` object to draw upon. The size of the
:ref:`wx.PostScriptDC` will depend upon the :ref:`wx.PrintData` used to
construct it.

Unlike a :ref:`wx.PrinterDC`, there is no distinction between the page
rectangle and the paper rectangle in a :ref:`wx.PostScriptDC`; both
rectangles are taken to represent the entire sheet of paper.


PrintDialog
-----------

Class :ref:`wx.PrintDialog` puts up the standard print dialog, which
allows you to select the page range for printing (as well as many
other print settings, which may vary from platform to platform). You
provide an object of type :ref:`wx.PrintDialogData` to the
:ref:`wx.PrintDialog` at construction, which is used to populate the
dialog.


.. _print data:

PrintData
---------

Class :ref:`wx.PrintData` is a subset of :ref:`wx.PrintDialogData` that is
used (internally) to initialize a :ref:`wx.PrinterDC` or
:ref:`wx.PostScriptDC`. (In fact, a :ref:`wx.PrintData` is a data member of
a :ref:`wx.PrintDialogData` and a :ref:`wx.PageSetupDialogData`).
Essentially, :ref:`wx.PrintData` contains those bits of information from
the two dialogs necessary to configure the :ref:`wx.PrinterDC` or
:ref:`wx.PostScriptDC` (e.g., size, orientation, etc.). You might wish to
create a global instance of this object to provide call-to-call
persistence to your application's print settings.


.. _print dialog data:

PrintDialogData
---------------

Class :ref:`wx.PrintDialogData` contains the settings entered by the user
in the print dialog. It contains such things as page range, number of
copies, and so forth. In most cases, you won't need to access this
information; the framework takes care of asking your :ref:`wx.Printout`
derived object for the pages requested by the user.


PageSetupDialog
---------------

Class :ref:`wx.PageSetupDialog` puts up the standard page setup dialog,
which allows you to specify the orientation, paper size, and related
settings. You provide it with a :ref:`wx.PageSetupDialogData` object at
initialization, which is used to populate the dialog; when the dialog
is dismissed, this object contains the settings chosen by the user,
including orientation and/or page margins.


.. note:: Note that on Macintosh, the native page setup dialog does
   not contain entries that allow you to change the page margins.



PageSetupDialogData
-------------------

Class :ref:`wx.PageSetupDialogData` contains settings affecting the page
size (paper size), orientation, margins, and so forth. Note that not
all platforms populate all fields; for example, the MSW page setup
dialog lets you set the page margins while the Mac setup dialog does
not.

You will typically create a global instance of each of a
:ref:`wx.PrintData` and :ref:`wx.PageSetupDialogData` at program initiation,
which will contain the default settings provided by the system. Each
time the user calls up either the :ref:`wx.PrintDialog` or the
:ref:`wx.PageSetupDialog`, you pass these data structures to initialize
the dialog values and to be updated by the dialog.  The framework then
queries these data structures to get information like the printed page
range (from the :ref:`wx.PrintDialogData`) or the paper size and/or page
orientation (from the :ref:`wx.PageSetupDialogData`).