]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printps.cpp | |
3 | // Purpose: Postscript print/preview framework | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "printps.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #include "wx/defs.h" | |
24 | ||
25 | #ifndef WX_PRECOMP | |
26 | #include "wx/utils.h" | |
27 | #include "wx/dc.h" | |
28 | #include "wx/app.h" | |
29 | #include "wx/msgdlg.h" | |
1a5a8367 | 30 | #include <wx/intl.h> |
c801d85f KB |
31 | #endif |
32 | ||
33 | #include "wx/generic/printps.h" | |
34 | #include "wx/dcprint.h" | |
35 | #include "wx/printdlg.h" | |
36 | #include "wx/generic/prntdlgg.h" | |
37 | ||
38 | #include <stdlib.h> | |
39 | ||
40 | #if !USE_SHARED_LIBRARY | |
41 | IMPLEMENT_DYNAMIC_CLASS(wxPostScriptPrinter, wxPrinterBase) | |
42 | IMPLEMENT_CLASS(wxPostScriptPrintPreview, wxPrintPreviewBase) | |
43 | #endif | |
44 | ||
45 | /* | |
46 | * Printer | |
47 | */ | |
48 | ||
49 | wxPostScriptPrinter::wxPostScriptPrinter(wxPrintData *data): | |
50 | wxPrinterBase(data) | |
51 | { | |
52 | } | |
53 | ||
54 | wxPostScriptPrinter::~wxPostScriptPrinter(void) | |
55 | { | |
56 | } | |
57 | ||
58 | bool wxPostScriptPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt) | |
59 | { | |
34da0970 JS |
60 | sm_abortIt = FALSE; |
61 | sm_abortWindow = (wxWindow *) NULL; | |
c801d85f KB |
62 | |
63 | if (!printout) | |
64 | return FALSE; | |
65 | ||
66 | printout->SetIsPreview(FALSE); | |
67 | printout->OnPreparePrinting(); | |
68 | ||
69 | // Get some parameters from the printout, if defined | |
70 | int fromPage, toPage; | |
71 | int minPage, maxPage; | |
72 | printout->GetPageInfo(&minPage, &maxPage, &fromPage, &toPage); | |
73 | ||
74 | if (maxPage == 0) | |
75 | return FALSE; | |
76 | ||
34da0970 JS |
77 | m_printData.SetMinPage(minPage); |
78 | m_printData.SetMaxPage(maxPage); | |
c801d85f | 79 | if (fromPage != 0) |
34da0970 | 80 | m_printData.SetFromPage(fromPage); |
c801d85f | 81 | if (toPage != 0) |
34da0970 | 82 | m_printData.SetToPage(toPage); |
c801d85f KB |
83 | |
84 | if (minPage != 0) | |
85 | { | |
34da0970 JS |
86 | m_printData.EnablePageNumbers(TRUE); |
87 | if (m_printData.GetFromPage() < m_printData.GetMinPage()) | |
88 | m_printData.SetFromPage(m_printData.GetMinPage()); | |
89 | else if (m_printData.GetFromPage() > m_printData.GetMaxPage()) | |
90 | m_printData.SetFromPage(m_printData.GetMaxPage()); | |
91 | if (m_printData.GetToPage() > m_printData.GetMaxPage()) | |
92 | m_printData.SetToPage(m_printData.GetMaxPage()); | |
93 | else if (m_printData.GetToPage() < m_printData.GetMinPage()) | |
94 | m_printData.SetToPage(m_printData.GetMinPage()); | |
c801d85f KB |
95 | } |
96 | else | |
34da0970 JS |
97 | m_printData.EnablePageNumbers(FALSE); |
98 | ||
c801d85f | 99 | // Create a suitable device context |
c67daf87 | 100 | wxDC *dc = (wxDC *) NULL; |
c801d85f KB |
101 | if (prompt) |
102 | { | |
34da0970 | 103 | wxGenericPrintDialog dialog(parent, & m_printData); |
c801d85f KB |
104 | if (dialog.ShowModal() == wxID_OK) |
105 | { | |
106 | dc = dialog.GetPrintDC(); | |
34da0970 | 107 | m_printData = dialog.GetPrintData(); |
c801d85f KB |
108 | } |
109 | } | |
110 | else | |
111 | { | |
c67daf87 | 112 | dc = new wxPostScriptDC(wxThePrintSetupData->GetPrinterFile(), FALSE, (wxWindow *) NULL); |
c801d85f KB |
113 | } |
114 | ||
115 | // May have pressed cancel. | |
116 | if (!dc || !dc->Ok()) | |
117 | { | |
118 | if (dc) delete dc; | |
119 | return FALSE; | |
120 | } | |
121 | ||
122 | int logPPIScreenX = 0; | |
123 | int logPPIScreenY = 0; | |
124 | int logPPIPrinterX = 0; | |
125 | int logPPIPrinterY = 0; | |
126 | ||
127 | // Correct values for X/PostScript? | |
128 | logPPIScreenX = 100; | |
129 | logPPIScreenY = 100; | |
130 | logPPIPrinterX = 100; | |
131 | logPPIPrinterY = 100; | |
132 | ||
133 | printout->SetPPIScreen(logPPIScreenX, logPPIScreenY); | |
134 | printout->SetPPIPrinter(logPPIPrinterX, logPPIPrinterY); | |
135 | ||
136 | // Set printout parameters | |
137 | printout->SetDC(dc); | |
138 | ||
139 | int w, h; | |
140 | long ww, hh; | |
141 | dc->GetSize(&w, &h); | |
142 | printout->SetPageSizePixels((int)w, (int)h); | |
143 | dc->GetSizeMM(&ww, &hh); | |
144 | printout->SetPageSizeMM((int)ww, (int)hh); | |
145 | ||
146 | // Create an abort window | |
147 | wxBeginBusyCursor(); | |
148 | ||
149 | printout->OnBeginPrinting(); | |
150 | ||
151 | bool keepGoing = TRUE; | |
152 | ||
153 | int copyCount; | |
34da0970 | 154 | for (copyCount = 1; copyCount <= m_printData.GetNoCopies(); copyCount ++) |
c801d85f | 155 | { |
34da0970 | 156 | if (!printout->OnBeginDocument(m_printData.GetFromPage(), m_printData.GetToPage())) |
c801d85f KB |
157 | { |
158 | wxEndBusyCursor(); | |
1a5a8367 | 159 | wxMessageBox(_("Could not start printing."), _("Print Error"), wxOK, parent); |
c801d85f KB |
160 | break; |
161 | } | |
34da0970 | 162 | if (sm_abortIt) |
c801d85f KB |
163 | break; |
164 | ||
165 | int pn; | |
34da0970 | 166 | for (pn = m_printData.GetFromPage(); keepGoing && (pn <= m_printData.GetToPage()) && printout->HasPage(pn); |
c801d85f KB |
167 | pn++) |
168 | { | |
34da0970 | 169 | if (sm_abortIt) |
c801d85f KB |
170 | { |
171 | keepGoing = FALSE; | |
172 | break; | |
173 | } | |
174 | else | |
175 | { | |
176 | dc->StartPage(); | |
177 | printout->OnPrintPage(pn); | |
178 | dc->EndPage(); | |
179 | } | |
180 | } | |
181 | printout->OnEndDocument(); | |
182 | } | |
183 | ||
184 | printout->OnEndPrinting(); | |
185 | ||
186 | wxEndBusyCursor(); | |
187 | ||
188 | delete dc; | |
189 | ||
190 | return TRUE; | |
191 | } | |
192 | ||
193 | bool wxPostScriptPrinter::PrintDialog(wxWindow *parent) | |
194 | { | |
34da0970 | 195 | wxGenericPrintDialog dialog(parent, & m_printData); |
c801d85f KB |
196 | return (dialog.ShowModal() == wxID_OK); |
197 | } | |
198 | ||
199 | bool wxPostScriptPrinter::Setup(wxWindow *parent) | |
200 | { | |
34da0970 | 201 | wxGenericPrintDialog dialog(parent, & m_printData); |
c801d85f KB |
202 | dialog.GetPrintData().SetSetupDialog(TRUE); |
203 | return (dialog.ShowModal() == wxID_OK); | |
204 | } | |
205 | ||
206 | /* | |
207 | * Print preview | |
208 | */ | |
209 | ||
210 | wxPostScriptPrintPreview::wxPostScriptPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting, wxPrintData *data): | |
211 | wxPrintPreviewBase(printout, printoutForPrinting, data) | |
212 | { | |
213 | // Have to call it here since base constructor can't call it | |
214 | DetermineScaling(); | |
215 | } | |
216 | ||
217 | wxPostScriptPrintPreview::~wxPostScriptPrintPreview(void) | |
218 | { | |
219 | } | |
220 | ||
221 | bool wxPostScriptPrintPreview::Print(bool interactive) | |
222 | { | |
34da0970 | 223 | if (!m_printPrintout) |
c801d85f | 224 | return FALSE; |
34da0970 JS |
225 | wxPostScriptPrinter printer(&m_printData); |
226 | return printer.Print(m_previewFrame, m_printPrintout, interactive); | |
c801d85f KB |
227 | } |
228 | ||
229 | void wxPostScriptPrintPreview::DetermineScaling(void) | |
230 | { | |
36af0bc4 | 231 | const char *paperType = wxThePrintSetupData->GetPaperName(); |
c801d85f | 232 | if (!paperType) |
1a5a8367 | 233 | paperType = _("A4 210 x 297 mm"); |
c801d85f KB |
234 | |
235 | wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(paperType); | |
236 | if (!paper) | |
1a5a8367 | 237 | paper = wxThePrintPaperDatabase->FindPaperType(_("A4 210 x 297 mm")); |
c801d85f KB |
238 | if (paper) |
239 | { | |
34da0970 JS |
240 | m_previewPrintout->SetPPIScreen(100, 100); |
241 | m_previewPrintout->SetPPIPrinter(100, 100); | |
c801d85f KB |
242 | |
243 | // If in landscape mode, we need to swap the width and height. | |
34da0970 | 244 | if ( m_printData.GetOrientation() == wxLANDSCAPE ) |
c801d85f | 245 | { |
34da0970 JS |
246 | m_pageWidth = paper->heightPixels; |
247 | m_pageHeight = paper->widthPixels; | |
248 | m_previewPrintout->SetPageSizeMM(paper->heightMM, paper->widthMM); | |
249 | m_previewPrintout->SetPageSizePixels(paper->heightPixels, paper->widthPixels); | |
c801d85f KB |
250 | } |
251 | else | |
252 | { | |
34da0970 JS |
253 | m_pageWidth = paper->widthPixels; |
254 | m_pageHeight = paper->heightPixels; | |
255 | m_previewPrintout->SetPageSizeMM(paper->widthMM, paper->heightMM); | |
256 | m_previewPrintout->SetPageSizePixels(paper->widthPixels, paper->heightPixels); | |
c801d85f KB |
257 | } |
258 | ||
259 | // At 100%, the page should look about page-size on the screen. | |
34da0970 JS |
260 | m_previewScale = (float)0.8; |
261 | // m_previewScale = (float)((float)screenWidth/(float)printerWidth); | |
262 | // m_previewScale = previewScale * (float)((float)screenXRes/(float)printerYRes); | |
c801d85f KB |
263 | } |
264 | } | |
265 |