]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/printps.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Postscript print/preview framework
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "printps.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/msgdlg.h"
33 #include "wx/generic/printps.h"
34 #include "wx/dcprint.h"
35 #include "wx/printdlg.h"
36 #include "wx/generic/prntdlgg.h"
40 #if !USE_SHARED_LIBRARY
41 IMPLEMENT_DYNAMIC_CLASS(wxPostScriptPrinter
, wxPrinterBase
)
42 IMPLEMENT_CLASS(wxPostScriptPrintPreview
, wxPrintPreviewBase
)
49 wxPostScriptPrinter::wxPostScriptPrinter(wxPrintData
*data
):
54 wxPostScriptPrinter::~wxPostScriptPrinter(void)
58 bool wxPostScriptPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
61 sm_abortWindow
= (wxWindow
*) NULL
;
66 printout
->SetIsPreview(FALSE
);
67 printout
->OnPreparePrinting();
69 // Get some parameters from the printout, if defined
72 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
77 m_printData
.SetMinPage(minPage
);
78 m_printData
.SetMaxPage(maxPage
);
80 m_printData
.SetFromPage(fromPage
);
82 m_printData
.SetToPage(toPage
);
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());
97 m_printData
.EnablePageNumbers(FALSE
);
99 // Create a suitable device context
100 wxDC
*dc
= (wxDC
*) NULL
;
103 wxGenericPrintDialog
dialog(parent
, & m_printData
);
104 if (dialog
.ShowModal() == wxID_OK
)
106 dc
= dialog
.GetPrintDC();
107 m_printData
= dialog
.GetPrintData();
112 dc
= new wxPostScriptDC(wxThePrintSetupData
->GetPrinterFile(), FALSE
, (wxWindow
*) NULL
);
115 // May have pressed cancel.
116 if (!dc
|| !dc
->Ok())
122 int logPPIScreenX
= 0;
123 int logPPIScreenY
= 0;
124 int logPPIPrinterX
= 0;
125 int logPPIPrinterY
= 0;
127 // Correct values for X/PostScript?
130 logPPIPrinterX
= 100;
131 logPPIPrinterY
= 100;
133 printout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
134 printout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
136 // Set printout parameters
142 printout
->SetPageSizePixels((int)w
, (int)h
);
143 dc
->GetSizeMM(&ww
, &hh
);
144 printout
->SetPageSizeMM((int)ww
, (int)hh
);
146 // Create an abort window
149 printout
->OnBeginPrinting();
151 bool keepGoing
= TRUE
;
154 for (copyCount
= 1; copyCount
<= m_printData
.GetNoCopies(); copyCount
++)
156 if (!printout
->OnBeginDocument(m_printData
.GetFromPage(), m_printData
.GetToPage()))
159 wxMessageBox(_("Could not start printing."), _("Print Error"), wxOK
, parent
);
166 for (pn
= m_printData
.GetFromPage(); keepGoing
&& (pn
<= m_printData
.GetToPage()) && printout
->HasPage(pn
);
177 printout
->OnPrintPage(pn
);
181 printout
->OnEndDocument();
184 printout
->OnEndPrinting();
193 bool wxPostScriptPrinter::PrintDialog(wxWindow
*parent
)
195 wxGenericPrintDialog
dialog(parent
, & m_printData
);
196 return (dialog
.ShowModal() == wxID_OK
);
199 bool wxPostScriptPrinter::Setup(wxWindow
*parent
)
201 wxGenericPrintDialog
dialog(parent
, & m_printData
);
202 dialog
.GetPrintData().SetSetupDialog(TRUE
);
203 return (dialog
.ShowModal() == wxID_OK
);
210 wxPostScriptPrintPreview::wxPostScriptPrintPreview(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
, wxPrintData
*data
):
211 wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
213 // Have to call it here since base constructor can't call it
217 wxPostScriptPrintPreview::~wxPostScriptPrintPreview(void)
221 bool wxPostScriptPrintPreview::Print(bool interactive
)
223 if (!m_printPrintout
)
225 wxPostScriptPrinter
printer(&m_printData
);
226 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
229 void wxPostScriptPrintPreview::DetermineScaling(void)
231 const char *paperType
= wxThePrintSetupData
->GetPaperName();
233 paperType
= _("A4 210 x 297 mm");
235 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->FindPaperType(paperType
);
237 paper
= wxThePrintPaperDatabase
->FindPaperType(_("A4 210 x 297 mm"));
240 m_previewPrintout
->SetPPIScreen(100, 100);
241 m_previewPrintout
->SetPPIPrinter(100, 100);
243 // If in landscape mode, we need to swap the width and height.
244 if ( m_printData
.GetOrientation() == wxLANDSCAPE
)
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
);
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
);
259 // At 100%, the page should look about page-size on the screen.
260 m_previewScale
= (float)0.8;
261 // m_previewScale = (float)((float)screenWidth/(float)printerWidth);
262 // m_previewScale = previewScale * (float)((float)screenXRes/(float)printerYRes);