]>
Commit | Line | Data |
---|---|---|
bb0054cd | 1 | |
8fa876ca | 2 | import wx |
299647ac | 3 | import ScrolledWindow |
bb0054cd RD |
4 | |
5 | #---------------------------------------------------------------------- | |
6 | ||
8fa876ca RD |
7 | ID_Setup = wx.NewId() |
8 | ID_Preview = wx.NewId() | |
9 | ID_Print = wx.NewId() | |
10 | ||
11 | class MyPrintout(wx.Printout): | |
bb0054cd | 12 | def __init__(self, canvas, log): |
8fa876ca | 13 | wx.Printout.__init__(self) |
bb0054cd RD |
14 | self.canvas = canvas |
15 | self.log = log | |
16 | ||
17 | def OnBeginDocument(self, start, end): | |
8fa876ca | 18 | self.log.WriteText("wx.Printout.OnBeginDocument\n") |
bb0054cd RD |
19 | return self.base_OnBeginDocument(start, end) |
20 | ||
21 | def OnEndDocument(self): | |
8fa876ca | 22 | self.log.WriteText("wx.Printout.OnEndDocument\n") |
b1cf23dc | 23 | self.base_OnEndDocument() |
bb0054cd RD |
24 | |
25 | def OnBeginPrinting(self): | |
8fa876ca | 26 | self.log.WriteText("wx.Printout.OnBeginPrinting\n") |
b1cf23dc | 27 | self.base_OnBeginPrinting() |
bb0054cd RD |
28 | |
29 | def OnEndPrinting(self): | |
8fa876ca | 30 | self.log.WriteText("wx.Printout.OnEndPrinting\n") |
b1cf23dc | 31 | self.base_OnEndPrinting() |
bb0054cd RD |
32 | |
33 | def OnPreparePrinting(self): | |
8fa876ca | 34 | self.log.WriteText("wx.Printout.OnPreparePrinting\n") |
b1cf23dc | 35 | self.base_OnPreparePrinting() |
bb0054cd RD |
36 | |
37 | def HasPage(self, page): | |
8fa876ca | 38 | self.log.WriteText("wx.Printout.HasPage: %d\n" % page) |
0122b7e3 | 39 | if page <= 2: |
1e4a197e | 40 | return True |
bb0054cd | 41 | else: |
1e4a197e | 42 | return False |
bb0054cd RD |
43 | |
44 | def GetPageInfo(self): | |
8fa876ca | 45 | self.log.WriteText("wx.Printout.GetPageInfo\n") |
0122b7e3 | 46 | return (1, 2, 1, 2) |
bb0054cd RD |
47 | |
48 | def OnPrintPage(self, page): | |
8fa876ca | 49 | self.log.WriteText("wx.Printout.OnPrintPage: %d\n" % page) |
bb0054cd RD |
50 | dc = self.GetDC() |
51 | ||
52 | #------------------------------------------- | |
53 | # One possible method of setting scaling factors... | |
54 | ||
55 | maxX = self.canvas.getWidth() | |
56 | maxY = self.canvas.getHeight() | |
57 | ||
58 | # Let's have at least 50 device units margin | |
59 | marginX = 50 | |
60 | marginY = 50 | |
61 | ||
62 | # Add the margin to the graphic size | |
63 | maxX = maxX + (2 * marginX) | |
64 | maxY = maxY + (2 * marginY) | |
65 | ||
66 | # Get the size of the DC in pixels | |
67 | (w, h) = dc.GetSizeTuple() | |
68 | ||
69 | # Calculate a suitable scaling factor | |
70 | scaleX = float(w) / maxX | |
71 | scaleY = float(h) / maxY | |
72 | ||
73 | # Use x or y scaling factor, whichever fits on the DC | |
74 | actualScale = min(scaleX, scaleY) | |
75 | ||
8b9a4190 | 76 | # Calculate the position on the DC for centering the graphic |
bb0054cd RD |
77 | posX = (w - (self.canvas.getWidth() * actualScale)) / 2.0 |
78 | posY = (h - (self.canvas.getHeight() * actualScale)) / 2.0 | |
79 | ||
80 | # Set the scale and origin | |
81 | dc.SetUserScale(actualScale, actualScale) | |
82 | dc.SetDeviceOrigin(int(posX), int(posY)) | |
83 | ||
84 | #------------------------------------------- | |
85 | ||
1fded56b | 86 | self.canvas.DoDrawing(dc, True) |
fd3f2efe | 87 | dc.DrawText("Page: %d" % page, (marginX/2, maxY-marginY)) |
0122b7e3 | 88 | |
1e4a197e | 89 | return True |
bb0054cd RD |
90 | |
91 | ||
92 | #---------------------------------------------------------------------- | |
93 | ||
94 | ||
8fa876ca | 95 | class TestPrintPanel(wx.Panel): |
bb0054cd | 96 | def __init__(self, parent, frame, log): |
8fa876ca | 97 | wx.Panel.__init__(self, parent, -1) |
bb0054cd RD |
98 | self.log = log |
99 | self.frame = frame | |
100 | ||
8fa876ca RD |
101 | self.printData = wx.PrintData() |
102 | self.printData.SetPaperId(wx.PAPER_LETTER) | |
d88d4683 RD |
103 | self.printData.SetPrintMode(wx.PRINT_MODE_PRINTER) |
104 | ||
8fa876ca | 105 | self.box = wx.BoxSizer(wx.VERTICAL) |
299647ac | 106 | self.canvas = ScrolledWindow.MyCanvas(self) |
8fa876ca | 107 | self.box.Add(self.canvas, 1, wx.GROW) |
bb0054cd | 108 | |
8fa876ca RD |
109 | subbox = wx.BoxSizer(wx.HORIZONTAL) |
110 | btn = wx.Button(self, ID_Setup, "Print Setup") | |
d88d4683 | 111 | self.Bind(wx.EVT_BUTTON, self.OnPrintSetup, btn) |
8fa876ca | 112 | subbox.Add(btn, 1, wx.GROW | wx.ALL, 2) |
bb0054cd | 113 | |
8fa876ca | 114 | btn = wx.Button(self, ID_Preview, "Print Preview") |
d88d4683 | 115 | self.Bind(wx.EVT_BUTTON, self.OnPrintPreview, btn) |
8fa876ca | 116 | subbox.Add(btn, 1, wx.GROW | wx.ALL, 2) |
bb0054cd | 117 | |
8fa876ca | 118 | btn = wx.Button(self, ID_Print, "Print") |
d88d4683 | 119 | self.Bind(wx.EVT_BUTTON, self.OnDoPrint, btn) |
8fa876ca | 120 | subbox.Add(btn, 1, wx.GROW | wx.ALL, 2) |
bb0054cd | 121 | |
8fa876ca | 122 | self.box.Add(subbox, 0, wx.GROW) |
bb0054cd | 123 | |
1e4a197e | 124 | self.SetAutoLayout(True) |
2f90df85 | 125 | self.SetSizer(self.box) |
bb0054cd RD |
126 | |
127 | ||
bb0054cd | 128 | def OnPrintSetup(self, event): |
d88d4683 RD |
129 | data = wx.PrintDialogData(self.printData) |
130 | printerDialog = wx.PrintDialog(self, data) | |
1e4a197e | 131 | printerDialog.GetPrintDialogData().SetSetupDialog(True) |
bb0054cd RD |
132 | printerDialog.ShowModal(); |
133 | self.printData = printerDialog.GetPrintDialogData().GetPrintData() | |
134 | printerDialog.Destroy() | |
135 | ||
136 | ||
137 | def OnPrintPreview(self, event): | |
138 | self.log.WriteText("OnPrintPreview\n") | |
d88d4683 | 139 | data = wx.PrintDialogData(self.printData) |
bb0054cd RD |
140 | printout = MyPrintout(self.canvas, self.log) |
141 | printout2 = MyPrintout(self.canvas, self.log) | |
d88d4683 | 142 | self.preview = wx.PrintPreview(printout, printout2, data) |
8fa876ca | 143 | |
bb0054cd RD |
144 | if not self.preview.Ok(): |
145 | self.log.WriteText("Houston, we have a problem...\n") | |
146 | return | |
147 | ||
8fa876ca | 148 | frame = wx.PreviewFrame(self.preview, self.frame, "This is a print preview") |
bb0054cd RD |
149 | |
150 | frame.Initialize() | |
151 | frame.SetPosition(self.frame.GetPosition()) | |
152 | frame.SetSize(self.frame.GetSize()) | |
1e4a197e | 153 | frame.Show(True) |
bb0054cd RD |
154 | |
155 | ||
156 | ||
157 | def OnDoPrint(self, event): | |
d88d4683 RD |
158 | pdd = wx.PrintDialogData(self.printData) |
159 | pdd.SetToPage(2) | |
8fa876ca | 160 | printer = wx.Printer(pdd) |
bb0054cd | 161 | printout = MyPrintout(self.canvas, self.log) |
8fa876ca | 162 | |
d88d4683 | 163 | if not printer.Print(self.frame, printout, True): |
8fa876ca | 164 | wx.MessageBox("There was a problem printing.\nPerhaps your current printer is not set correctly?", "Printing", wx.OK) |
bb0054cd RD |
165 | else: |
166 | self.printData = printer.GetPrintDialogData().GetPrintData() | |
167 | printout.Destroy() | |
168 | ||
169 | ||
170 | #---------------------------------------------------------------------- | |
171 | ||
172 | def runTest(frame, nb, log): | |
173 | win = TestPrintPanel(nb, frame, log) | |
174 | return win | |
175 | ||
176 | ||
177 | #---------------------------------------------------------------------- | |
178 | ||
179 | ||
180 | ||
181 | ||
182 | ||
183 | overview = """\ | |
8fa876ca RD |
184 | <html> |
185 | <body> | |
186 | <h1>PrintFramework</h1> | |
187 | ||
188 | This is an overview of the classes and methods used to print documents. | |
189 | It also demonstrates how to do print previews and invoke the printer | |
190 | setup dialog. | |
191 | ||
192 | <p>Classes demonstrated here:<P> | |
193 | <ul> | |
194 | <li><b>wx.Printout()</b> - This class encapsulates the functionality of printing out | |
195 | an application document. A new class must be derived and members overridden | |
196 | to respond to calls such as OnPrintPage and HasPage. Instances of this class | |
197 | are passed to wx.Printer.Print() or a wx.PrintPreview object to initiate | |
198 | printing or previewing.<P><p> | |
199 | ||
200 | <li><b>wx.PrintData()</b> - This class holds a variety of information related to | |
201 | printers and printer device contexts. This class is used to create a | |
202 | wx.PrinterDC and a wx.PostScriptDC. It is also used as a data member of | |
203 | wx.PrintDialogData and wx.PageSetupDialogData, as part of the mechanism for | |
204 | transferring data between the print dialogs and the application.<p><p> | |
205 | ||
206 | <li><b>wx.PrintDialog()</b> - This class represents the print and print setup | |
207 | common dialogs. You may obtain a wx.PrinterDC device context from a | |
208 | successfully dismissed print dialog.<p><p> | |
209 | ||
210 | <li><b>wx.PrintPreview()</b> - Objects of this class manage the print preview | |
211 | process. The object is passed a wx.Printout object, and the wx.PrintPreview | |
212 | object itself is passed to a wx.PreviewFrame object. Previewing is started by | |
213 | initializing and showing the preview frame. Unlike wxPrinter.Print, flow of | |
214 | control returns to the application immediately after the frame is shown.<p><p> | |
215 | </ul> | |
216 | ||
217 | <p>Other classes are also demonstrated, but this is the gist of the printer interface | |
218 | framework in wxPython. | |
219 | ||
220 | </body> | |
221 | </html> | |
1fded56b | 222 | |
8fa876ca | 223 | """ |
1fded56b RD |
224 | |
225 | ||
226 | if __name__ == '__main__': | |
227 | import sys,os | |
228 | import run | |
8eca4fef | 229 | run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:]) |
1fded56b | 230 |