1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPostScriptDC implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "postscrp.h"
14 #pragma implementation
18 // For compilers that support precompilation, includes "wx.h".
19 #include "wx/wxprec.h"
32 #include "wx/postscrp.h"
34 #include "wx/filedlg.h"
35 #include "wx/msgdlg.h"
37 #include "wx/button.h"
38 #include "wx/radiobox.h"
39 #include "wx/textctrl.h"
40 #include "wx/stattext.h"
45 #include "wx/dcmemory.h"
48 #include "wx/msw/private.h"
67 #include "gdk/gdkx.h" // GDK_DISPLAY
68 #include "gdk/gdkprivate.h" // XImage
70 #include <X11/Xutil.h>
76 #include <X11/Xutil.h>
99 // Declarations local to this file
100 #define YSCALE(y) (m_yOrigin / m_scaleFactor - (y))
102 // Determine the Default Postscript Previewer
103 // available on the platform
104 #if defined(__SUN__) && defined(__XVIEW__)
105 // OpenWindow/NeWS's Postscript Previewer
106 # define PS_VIEWER_PROG "pageview"
107 #elif defined(__VMS__)
108 #define PS_VIEWER_PROG "view/format=ps/select=x_display"
109 #elif defined(__SGI__)
110 // SGI's Display Postscript Previewer
111 //# define PS_VIEWER_PROG "dps"
112 # define PS_VIEWER_PROG "xpsview"
113 #elif defined(__X__) || defined(__WXGTK__)
114 // Front-end to ghostscript
115 # define PS_VIEWER_PROG "ghostview"
117 // Windows ghostscript/ghostview
118 # define PS_VIEWER_PROG NULL
121 wxPrintSetupData
*wxThePrintSetupData
= (wxPrintSetupData
*) NULL
;
123 // these should move into wxPostscriptDC:
124 double UnderlinePosition
= 0.0F
;
125 double UnderlineThickness
= 0.0F
;
127 #define _MAXPATHLEN 500
129 /* See "wxspline.inc" and "xfspline.inc" */
130 #if wxUSE_XFIG_SPLINE_CODE
131 static const char *wxPostScriptHeaderSpline
= " \
132 /DrawSplineSection {\n\
139 /xa x1 x2 x1 sub 0.666667 mul add def\n\
140 /ya y1 y2 y1 sub 0.666667 mul add def\n\
141 /xb x3 x2 x3 sub 0.666667 mul add def\n\
142 /yb y3 y2 y3 sub 0.666667 mul add def\n\
144 xa ya xb yb x3 y3 curveto\n\
148 // No extra PS header for this spline implementation.
149 static const char *wxPostScriptHeaderSpline
= (char *) NULL
;
151 #endif /* wxUSE_XFIG_SPLINE_CODE */
154 // VMS has a bug in the ofstream class.
155 // the buffering doesn't work correctly. therefore
156 // we will allocate (temporarily) a very big buffer (1MB), so
157 // that a buffer overflow will not occur.
159 #define VMS_BUFSIZ (1024L*1024L)
160 static char *fileBuffer
= NULL
;
163 #if !USE_SHARED_LIBRARY
164 IMPLEMENT_DYNAMIC_CLASS(wxPostScriptModule
, wxModule
)
165 IMPLEMENT_DYNAMIC_CLASS(wxPostScriptDC
, wxDC
)
166 IMPLEMENT_DYNAMIC_CLASS(wxPrintSetupData
, wxObject
)
167 IMPLEMENT_DYNAMIC_CLASS(wxPrintPaperType
, wxObject
)
168 IMPLEMENT_DYNAMIC_CLASS(wxPrintPaperDatabase
, wxList
)
171 wxPostScriptDC::wxPostScriptDC (void)
173 // m_yOrigin = 792; // For EPS output
174 m_yOrigin
= 842; // For A4 output
182 m_pstream
= (ofstream
*) NULL
;
185 // Can only send to file in Windows
186 wxThePrintSetupData
->SetPrinterMode(PS_FILE
);
190 m_currentGreen
= 255;
194 wxPostScriptDC::wxPostScriptDC (const wxString
& file
, bool interactive
, wxWindow
*parent
)
196 Create(file
, interactive
, parent
);
199 bool wxPostScriptDC::Create(const wxString
& file
, bool interactive
, wxWindow
*parent
)
201 m_isInteractive
= interactive
;
203 m_yOrigin
= 792; // For EPS output
204 // m_yOrigin = 842; // For A4 output
212 m_pstream
= (ofstream
*) NULL
;
215 // Can only send to file in Windows
216 wxThePrintSetupData
->SetPrinterMode(PS_FILE
);
221 if ((m_ok
= PrinterDialog (parent
) ) == FALSE
) return FALSE
;
227 m_currentGreen
= 255;
235 wxPostScriptDC::~wxPostScriptDC (void)
241 bool wxPostScriptDC::PrinterDialog(wxWindow
*parent
)
243 wxPostScriptPrintDialog
dialog (parent
, _("Printer Settings"), wxPoint(150, 150), wxSize(400, 400), wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
);
244 m_ok
= (dialog
.ShowModal () == wxID_OK
) ;
249 if ((m_filename
== "") && (wxThePrintSetupData
->GetPrinterMode() == PS_PREVIEW
|| wxThePrintSetupData
->GetPrinterMode() == PS_PRINTER
))
253 wxThePrintSetupData
->SetPrinterFile("preview");
255 // For PS_PRINTER action this depends on a Unix-style print spooler
256 // since the wx_printer_file can be destroyed during a session
257 // @@@ TODO: a Windows-style answer for non-Unix
259 wxGetUserId (userId
, sizeof (userId
) / sizeof (char));
261 strcpy (tmp
, "/tmp/preview_");
262 strcat (tmp
, userId
);
263 wxThePrintSetupData
->SetPrinterFile(tmp
);
266 strcpy(tmp2
, wxThePrintSetupData
->GetPrinterFile());
267 strcat (tmp2
, ".ps");
268 wxThePrintSetupData
->SetPrinterFile(tmp2
);
271 else if ((m_filename
== "") && (wxThePrintSetupData
->GetPrinterMode() == PS_FILE
))
273 char *file
= wxSaveFileSelector (_("PostScript"), "ps");
279 wxThePrintSetupData
->SetPrinterFile(file
);
287 void wxPostScriptDC::SetClippingRegion (long cx
, long cy
, long cw
, long ch
)
295 *m_pstream
<< "gsave\n";
296 *m_pstream
<< "newpath\n";
297 *m_pstream
<< cx
<< " " << YSCALE (cy
) << " moveto\n";
298 *m_pstream
<< (cx
+ cw
) << " " << YSCALE (cy
) << " lineto\n";
299 *m_pstream
<< cx
+ cw
<< " " << YSCALE (cy
+ ch
) << " lineto\n";
300 *m_pstream
<< cx
<< " " << YSCALE (cy
+ ch
) << " lineto\n";
301 *m_pstream
<< "closepath clip newpath\n";
304 void wxPostScriptDC::DestroyClippingRegion (void)
311 *m_pstream
<< "grestore\n";
315 void wxPostScriptDC::Clear (void)
319 void wxPostScriptDC::FloodFill (long WXUNUSED(x
), long WXUNUSED(y
), wxColour
* WXUNUSED(col
), int WXUNUSED(style
))
323 bool wxPostScriptDC::GetPixel (long WXUNUSED(x
), long WXUNUSED(y
), wxColour
* WXUNUSED(col
)) const
328 void wxPostScriptDC::CrossHair (long WXUNUSED(x
), long WXUNUSED(y
))
332 void wxPostScriptDC::DrawLine (long x1
, long y1
, long x2
, long y2
)
338 *m_pstream
<< "newpath\n";
339 *m_pstream
<< x1
<< " " << YSCALE (y1
) << " moveto\n";
340 *m_pstream
<< x2
<< " " << YSCALE (y2
) << " lineto\n";
341 *m_pstream
<< "stroke\n";
342 CalcBoundingBox (x1
, (long)YSCALE (y1
));
343 CalcBoundingBox (x2
, (long)YSCALE (y2
));
346 #define RAD2DEG 57.29577951308
348 void wxPostScriptDC::DrawArc (long x1
, long y1
, long x2
, long y2
, long xc
, long yc
)
355 long radius
= (long) sqrt((double) (dx
*dx
+dy
*dy
));
356 double alpha1
, alpha2
;
358 if (x1
== x2
&& y1
== y2
) {
361 } else if (radius
== 0.0) {
362 alpha1
= alpha2
= 0.0;
364 alpha1
= (x1
- xc
== 0) ?
365 (y1
- yc
< 0) ? 90.0 : -90.0 :
366 -atan2(double(y1
-yc
), double(x1
-xc
)) * RAD2DEG
;
367 alpha2
= (x2
- xc
== 0) ?
368 (y2
- yc
< 0) ? 90.0 : -90.0 :
369 -atan2(double(y2
-yc
), double(x2
-xc
)) * RAD2DEG
;
371 while (alpha1
<= 0) alpha1
+= 360;
372 while (alpha2
<= 0) alpha2
+= 360; // adjust angles to be between
373 while (alpha1
> 360) alpha1
-= 360; // 0 and 360 degree
374 while (alpha2
> 360) alpha2
-= 360;
376 if (m_brush
.Ok() && m_brush
.GetStyle() != wxTRANSPARENT
) {
378 *m_pstream
<< "newpath\n"
379 << xc
<< " " << YSCALE(yc
) << " "
380 << radius
<< " " << radius
<< " "
381 << alpha1
<< " " << alpha2
<< " ellipse\n"
382 << xc
<< " " << YSCALE(yc
) << " lineto\n"
386 if (m_pen
.Ok() && m_pen
.GetStyle() != wxTRANSPARENT
) {
388 *m_pstream
<< "newpath\n"
389 << xc
<< " " << YSCALE(yc
) << " "
390 << radius
<< " " << radius
<< " "
391 << alpha1
<< " " << alpha2
<< " ellipse\n"
394 CalcBoundingBox(x1
, (long)YSCALE(y1
));
395 CalcBoundingBox(x2
, (long)YSCALE(y2
));
398 void wxPostScriptDC::DrawEllipticArc(long x
,long y
,long w
,long h
,double sa
,double ea
)
403 if (sa
>=360 || sa
<=-360) sa
=sa
-int(sa
/360)*360;
404 if (ea
>=360 || ea
<=-360) ea
=ea
-int(ea
/360)*360;
409 DrawEllipse(x
,y
,w
,h
);
413 if (m_brush
.Ok() && m_brush
.GetStyle () != wxTRANSPARENT
)
419 (x
+w
/2) << " " << YSCALE (y
+h
/2) << " " <<
420 w
/2 << " " << (h
/2) << " " <<
421 int(sa
) <<" "<< int(ea
)<<" true ellipticarc\n";
423 CalcBoundingBox (x
, (long)YSCALE (y
));
424 CalcBoundingBox (x
+w
,(long)YSCALE(y
+h
));
426 if (m_pen
.Ok() && m_pen
.GetStyle () != wxTRANSPARENT
)
432 (x
+w
/2) << " " << YSCALE (y
+h
/2) << " " <<
433 (w
/2) << " " << (h
/2) << " " <<
434 int(sa
) <<" "<< int(ea
)<<" false ellipticarc\n";
436 CalcBoundingBox (x
, (long)YSCALE (y
));
437 CalcBoundingBox (x
+w
,(long)YSCALE(y
+h
));
441 void wxPostScriptDC::DrawPoint (long x
, long y
)
447 *m_pstream
<< "newpath\n";
448 *m_pstream
<< x
<< " " << YSCALE (y
) << " moveto\n";
449 *m_pstream
<< (x
+1) << " " << YSCALE (y
) << " lineto\n";
450 *m_pstream
<< "stroke\n";
451 CalcBoundingBox (x
, (long)YSCALE (y
));
454 void wxPostScriptDC::DrawPolygon (int n
, wxPoint points
[], long xoffset
, long yoffset
, int WXUNUSED(fillStyle
))
460 if (m_brush
.Ok() && m_brush
.GetStyle () != wxTRANSPARENT
)
463 *m_pstream
<< "newpath\n";
465 long xx
= points
[0].x
+ xoffset
;
466 long yy
= (long) YSCALE (points
[0].y
+ yoffset
);
467 *m_pstream
<< xx
<< " " << yy
<< " moveto\n";
468 CalcBoundingBox (xx
, yy
);
471 for (i
= 1; i
< n
; i
++)
473 xx
= points
[i
].x
+ xoffset
;
474 yy
= (long) YSCALE (points
[i
].y
+ yoffset
);
475 *m_pstream
<< xx
<< " " << yy
<< " lineto\n";
476 CalcBoundingBox (xx
, yy
);
478 *m_pstream
<< "fill\n";
481 if (m_pen
.Ok() && m_pen
.GetStyle () != wxTRANSPARENT
)
484 *m_pstream
<< "newpath\n";
486 long xx
= points
[0].x
+ xoffset
;
487 long yy
= (long) YSCALE (points
[0].y
+ yoffset
);
488 *m_pstream
<< xx
<< " " << yy
<< " moveto\n";
489 CalcBoundingBox (xx
, yy
);
492 for (i
= 1; i
< n
; i
++)
494 xx
= points
[i
].x
+ xoffset
;
495 yy
= (long) YSCALE (points
[i
].y
+ yoffset
);
496 *m_pstream
<< xx
<< " " << yy
<< " lineto\n";
497 CalcBoundingBox (xx
, yy
);
501 xx
= points
[0].x
+ xoffset
;
502 yy
= (long) YSCALE (points
[0].y
+ yoffset
);
503 *m_pstream
<< xx
<< " " << yy
<< " lineto\n";
506 *m_pstream
<< "stroke\n";
511 void wxPostScriptDC::DrawLines (int n
, wxPoint points
[], long xoffset
, long yoffset
)
520 *m_pstream
<< "newpath\n";
522 long xx
= points
[0].x
+ xoffset
;
523 long yy
= (long) YSCALE (points
[0].y
+ yoffset
);
524 *m_pstream
<< xx
<< " " << yy
<< " moveto\n";
525 CalcBoundingBox (xx
, yy
);
528 for (i
= 1; i
< n
; i
++)
530 xx
= points
[i
].x
+ xoffset
;
531 yy
= (long) YSCALE (points
[i
].y
+ yoffset
);
532 *m_pstream
<< xx
<< " " << yy
<< " lineto\n";
533 CalcBoundingBox (xx
, yy
);
535 *m_pstream
<< "stroke\n";
539 void wxPostScriptDC::DrawRectangle (long x
, long y
, long width
, long height
)
543 if (m_brush
.Ok() && m_brush
.GetStyle () != wxTRANSPARENT
)
547 *m_pstream
<< "newpath\n";
548 *m_pstream
<< x
<< " " << YSCALE (y
) << " moveto\n";
549 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
) << " lineto\n";
550 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
+ height
) << " lineto\n";
551 *m_pstream
<< x
<< " " << YSCALE (y
+ height
) << " lineto\n";
552 *m_pstream
<< "closepath\n";
553 *m_pstream
<< "fill\n";
555 CalcBoundingBox (x
, (long)YSCALE (y
));
556 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
558 if (m_pen
.Ok() && m_pen
.GetStyle () != wxTRANSPARENT
)
562 *m_pstream
<< "newpath\n";
563 *m_pstream
<< x
<< " " << YSCALE (y
) << " moveto\n";
564 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
) << " lineto\n";
565 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
+ height
) << " lineto\n";
566 *m_pstream
<< x
<< " " << YSCALE (y
+ height
) << " lineto\n";
567 *m_pstream
<< "closepath\n";
568 *m_pstream
<< "stroke\n";
570 CalcBoundingBox (x
, (long)YSCALE (y
));
571 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
575 void wxPostScriptDC::DrawRoundedRectangle (long x
, long y
, long width
, long height
, double radius
)
582 // Now, a negative radius is interpreted to mean
583 // 'the proportion of the smallest X or Y dimension'
584 double smallest
= 0.0;
589 radius
= (-radius
* smallest
);
592 if (m_brush
.Ok() && m_brush
.GetStyle () != wxTRANSPARENT
)
595 // Draw rectangle anticlockwise
596 *m_pstream
<< "newpath\n";
597 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
+ radius
) << " " << radius
<< " 90 180 arc\n";
599 *m_pstream
<< x
<< " " << YSCALE (y
+ radius
) << " moveto\n";
601 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
+ height
- radius
) << " " << radius
<< " 180 270 arc\n";
602 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ height
) << " lineto\n";
604 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ height
- radius
) << " " << radius
<< " 270 0 arc\n";
605 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
+ radius
) << " lineto\n";
607 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ radius
) << " " << radius
<< " 0 90 arc\n";
609 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
) << " lineto\n";
611 *m_pstream
<< "closepath\n";
613 *m_pstream
<< "fill\n";
615 CalcBoundingBox (x
, (long)YSCALE (y
));
616 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
618 if (m_pen
.Ok() && m_pen
.GetStyle () != wxTRANSPARENT
)
621 // Draw rectangle anticlockwise
622 *m_pstream
<< "newpath\n";
623 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
+ radius
) << " " << radius
<< " 90 180 arc\n";
625 *m_pstream
<< x
<< " " << YSCALE (y
+ height
- radius
) << " lineto\n";
627 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
+ height
- radius
) << " " << radius
<< " 180 270 arc\n";
628 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ height
) << " lineto\n";
630 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ height
- radius
) << " " << radius
<< " 270 0 arc\n";
631 *m_pstream
<< (x
+ width
) << " " << YSCALE (y
+ radius
) << " lineto\n";
633 *m_pstream
<< (x
+ width
- radius
) << " " << YSCALE (y
+ radius
) << " " << radius
<< " 0 90 arc\n";
635 *m_pstream
<< (x
+ radius
) << " " << YSCALE (y
) << " lineto\n";
637 *m_pstream
<< "closepath\n";
639 *m_pstream
<< "stroke\n";
641 CalcBoundingBox (x
, (long)YSCALE (y
));
642 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
646 void wxPostScriptDC::DrawEllipse (long x
, long y
, long width
, long height
)
650 if (m_brush
.Ok() && m_brush
.GetStyle () != wxTRANSPARENT
)
654 *m_pstream
<< "newpath\n";
655 *m_pstream
<< (x
+ width
/ 2) << " " << YSCALE (y
+ height
/ 2) << " ";
656 *m_pstream
<< (width
/ 2) << " " << (height
/ 2) << " 0 360 ellipse\n";
657 *m_pstream
<< "fill\n";
659 CalcBoundingBox (x
- width
, (long)YSCALE (y
- height
));
660 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
662 if (m_pen
.Ok() && m_pen
.GetStyle () != wxTRANSPARENT
)
666 *m_pstream
<< "newpath\n";
667 *m_pstream
<< (x
+ width
/ 2) << " " << YSCALE (y
+ height
/ 2) << " ";
668 *m_pstream
<< (width
/ 2) << " " << (height
/ 2) << " 0 360 ellipse\n";
669 *m_pstream
<< "stroke\n";
671 CalcBoundingBox (x
- width
, (long)YSCALE (y
- height
));
672 CalcBoundingBox (x
+ width
, (long)YSCALE (y
+ height
));
676 void wxPostScriptDC::DrawIcon (const wxIcon
& icon
, long x
, long y
)
678 #if defined(__X__) || defined(__WXGTK__)
680 memDC
.SelectObject(icon
);
681 Blit(x
, y
, icon
.GetWidth(), icon
.GetHeight(), &memDC
, 0, 0);
685 void wxPostScriptDC::SetFont (const wxFont
& the_font
)
690 if (m_font
== the_font
)
700 const char *style
= "";
701 int Style
= m_font
.GetStyle ();
702 int Weight
= m_font
.GetWeight ();
704 switch (m_font
.GetFamily ())
714 // name = "/Times-Roman";
715 name
= "/Times"; // Altered by EDZ
718 name
= "/Zapf-Chancery-MediumItalic";
723 case wxDEFAULT
: // Sans Serif Font
724 name
= "/LucidaSans";
727 if (Style
== wxNORMAL
&& (Weight
== wxNORMAL
|| Weight
== wxLIGHT
))
729 if (m_font
.GetFamily () == wxROMAN
)
734 else if (Style
== wxNORMAL
&& Weight
== wxBOLD
)
737 else if (Style
== wxITALIC
&& (Weight
== wxNORMAL
|| Weight
== wxLIGHT
))
739 if (m_font
.GetFamily () == wxROMAN
)
744 else if (Style
== wxITALIC
&& Weight
== wxBOLD
)
746 if (m_font
.GetFamily () == wxROMAN
)
747 style
= "-BoldItalic";
749 style
= "-BoldOblique";
751 else if (Style
== wxSLANT
&& (Weight
== wxNORMAL
|| Weight
== wxLIGHT
))
753 if (m_font
.GetFamily () == wxROMAN
)
758 else if (Style
== wxSLANT
&& Weight
== wxBOLD
)
760 if (m_font
.GetFamily () == wxROMAN
)
761 style
= "-BoldItalic";
763 style
= "-BoldOblique";
770 *m_pstream
<< buf
<< " findfont\n";
771 *m_pstream
<< (m_font
.GetPointSize() * m_scaleFactor
) << " scalefont setfont\n";
774 void wxPostScriptDC::SetPen (const wxPen
& pen
)
779 int oldStyle
= m_pen
.GetStyle();
787 *m_pstream
<< m_pen
.GetWidth () << " setlinewidth\n";
789 // Line style - WRONG: 2nd arg is OFFSET
791 Here, I'm afraid you do not conceive meaning of parameters of 'setdash'
792 operator correctly. You should look-up this in the Red Book: the 2nd parame-
793 ter is not number of values in the array of the first one, but an offset
794 into this description of the pattern. I mean a real *offset* not index
795 into array. I.e. If the command is [3 4] 1 setdash is used, then there
796 will be first black line *2* units long, then space 4 units, then the
797 pattern of *3* units black, 4 units space will be repeated.
799 static const char *dotted
= "[2 5] 2";
800 static const char *short_dashed
= "[4 4] 2";
801 static const char *long_dashed
= "[4 8] 2";
802 static const char *dotted_dashed
= "[6 6 2 6] 4";
804 const char *psdash
= (char *) NULL
;
805 switch (m_pen
.GetStyle ())
811 psdash
= short_dashed
;
814 psdash
= long_dashed
;
817 psdash
= dotted_dashed
;
825 if (oldStyle
!= m_pen
.GetStyle())
826 *m_pstream
<< psdash
<< " setdash\n";
829 unsigned char red
= m_pen
.GetColour ().Red ();
830 unsigned char blue
= m_pen
.GetColour ().Blue ();
831 unsigned char green
= m_pen
.GetColour ().Green ();
835 // Anything not white is black
836 if (!(red
== (unsigned char) 255 && blue
== (unsigned char) 255
837 && green
== (unsigned char) 255))
839 red
= (unsigned char) 0;
840 green
= (unsigned char) 0;
841 blue
= (unsigned char) 0;
845 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
))
847 long redPS
= (long) (((int) red
) / 255.0);
848 long bluePS
= (long) (((int) blue
) / 255.0);
849 long greenPS
= (long) (((int) green
) / 255.0);
851 *m_pstream
<< redPS
<< " " << greenPS
<< " " << bluePS
<< " setrgbcolor\n";
854 m_currentBlue
= blue
;
855 m_currentGreen
= green
;
859 void wxPostScriptDC::SetBrush (const wxBrush
& brush
)
870 unsigned char red
= m_brush
.GetColour ().Red ();
871 unsigned char blue
= m_brush
.GetColour ().Blue ();
872 unsigned char green
= m_brush
.GetColour ().Green ();
876 // Anything not black is white
877 if (!(red
== (unsigned char) 0 && blue
== (unsigned char) 0
878 && green
== (unsigned char) 0))
880 red
= (unsigned char) 255;
881 green
= (unsigned char) 255;
882 blue
= (unsigned char) 255;
886 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
))
888 long redPS
= (long) (((int) red
) / 255.0);
889 long bluePS
= (long) (((int) blue
) / 255.0);
890 long greenPS
= (long) (((int) green
) / 255.0);
891 *m_pstream
<< redPS
<< " " << greenPS
<< " " << bluePS
<< " setrgbcolor\n";
893 m_currentBlue
= blue
;
894 m_currentGreen
= green
;
898 void wxPostScriptDC::DrawText (const wxString
& text
, long x
, long y
, bool WXUNUSED(use16bit
))
903 // TODO: SetFont checks for identity so this will always be a NULL operation
907 if (m_textForegroundColour
.Ok ())
909 unsigned char red
= m_textForegroundColour
.Red ();
910 unsigned char blue
= m_textForegroundColour
.Blue ();
911 unsigned char green
= m_textForegroundColour
.Green ();
915 // Anything not white is black
916 if (!(red
== (unsigned char) 255 && blue
== (unsigned char) 255
917 && green
== (unsigned char) 255))
919 red
= (unsigned char) 0;
920 green
= (unsigned char) 0;
921 blue
= (unsigned char) 0;
924 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
))
926 long redPS
= (long) (((int) red
) / 255.0);
927 long bluePS
= (long) (((int) blue
) / 255.0);
928 long greenPS
= (long) (((int) green
) / 255.0);
929 *m_pstream
<< redPS
<< " " << greenPS
<< " " << bluePS
<< " setrgbcolor\n";
932 m_currentBlue
= blue
;
933 m_currentGreen
= green
;
939 size
= m_font
.GetPointSize ();
941 *m_pstream
<< x
<< " " << YSCALE (y
+ size
) << " moveto\n";
943 // *m_pstream << "(" << text << ")" << " show\n";
945 int len
= strlen ((char *)(const char *)text
);
947 for (i
= 0; i
< len
; i
++)
951 if (ch == ')' || ch == '(' || ch == '\\')
955 int c
= (unsigned char) text
[i
];
956 if ( c
== ')' || c
== '(' || c
== '\\')
958 *m_pstream
<< "\\" << (char) c
;
962 // Cope with character codes > 127
964 sprintf(tmp
, "\\%o", c
);
968 *m_pstream
<< (char) c
;
971 *m_pstream
<< ")" << " show\n";
973 if (m_font
.GetUnderlined())
976 GetTextExtent(text
, &w
, &h
);
977 *m_pstream
<< "gsave " << x
<< " " << YSCALE (y
+ size
- UnderlinePosition
)
979 << UnderlineThickness
<< " setlinewidth "
980 << (x
+ w
) << " " << YSCALE (y
+ size
- UnderlinePosition
)
981 << " lineto stroke grestore\n";
984 CalcBoundingBox (x
, (long)YSCALE (y
+ size
));
985 CalcBoundingBox (x
+ size
* strlen ((char *)(const char *)text
), (long)YSCALE (y
));
989 void wxPostScriptDC::SetBackground (const wxBrush
& brush
)
991 m_backgroundBrush
= brush
;
994 void wxPostScriptDC::SetLogicalFunction (int WXUNUSED(function
))
998 static const char *wxPostScriptHeaderEllipse
= "\
999 /ellipsedict 8 dict def\n\
1000 ellipsedict /mtrx matrix put\n\
1002 { ellipsedict begin\n\
1003 /endangle exch def\n\
1004 /startangle exch def\n\
1009 /savematrix mtrx currentmatrix def\n\
1012 0 0 1 startangle endangle arc\n\
1013 savematrix setmatrix\n\
1018 static const char *wxPostScriptHeaderEllipticArc
= "\
1019 /ellipticarcdict 8 dict def\n\
1020 ellipticarcdict /mtrx matrix put\n\
1022 { ellipticarcdict begin\n\
1023 /do_fill exch def\n\
1024 /endangle exch def\n\
1025 /startangle exch def\n\
1030 /savematrix mtrx currentmatrix def\n\
1033 do_fill { 0 0 moveto } if\n\
1034 0 0 1 startangle endangle arc\n\
1035 savematrix setmatrix\n\
1036 do_fill { fill }{ stroke } ifelse\n\
1040 bool wxPostScriptDC::StartDoc (const wxString
& message
)
1042 if (m_filename
== "")
1045 m_filename
= "wxtmp.ps";
1047 m_filename
= wxGetTempFileName("ps");
1049 wxThePrintSetupData
->SetPrinterFile((char *)(const char *)m_filename
);
1053 wxThePrintSetupData
->SetPrinterFile((char *)(const char *)m_filename
);
1058 m_pstream
= new ofstream
;
1059 if(fileBuffer
) delete[] fileBuffer
;
1060 fileBuffer
= new char[VMS_BUFSIZ
];
1061 m_pstream
->setbuf(fileBuffer
,VMS_BUFSIZ
);
1062 m_pstream
->open(wxThePrintSetupData
->GetPrinterFile());
1064 m_pstream
= new ofstream (wxThePrintSetupData
->GetPrinterFile());
1066 if (!m_pstream
|| !m_pstream
->good())
1068 wxMessageBox (_("Cannot open file!"), _("Error"), wxOK
);
1074 SetBrush (*wxBLACK_BRUSH
);
1075 SetPen (*wxBLACK_PEN
);
1083 void wxPostScriptDC::EndDoc (void)
1085 static char wxPostScriptHeaderReencodeISO1
[] =
1086 "\n/reencodeISO {\n"
1087 "dup dup findfont dup length dict begin\n"
1088 "{ 1 index /FID ne { def }{ pop pop } ifelse } forall\n"
1089 "/Encoding ISOLatin1Encoding def\n"
1090 "currentdict end definefont\n"
1092 "/ISOLatin1Encoding [\n"
1093 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1094 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1095 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1096 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1097 "/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright\n"
1098 "/parenleft/parenright/asterisk/plus/comma/minus/period/slash\n"
1099 "/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon\n"
1100 "/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N\n"
1101 "/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright\n"
1102 "/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m\n"
1103 "/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde\n"
1104 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1105 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
1106 "/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve\n"
1107 "/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut\n";
1109 static char wxPostScriptHeaderReencodeISO2
[] =
1110 "/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar\n"
1111 "/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot\n"
1112 "/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior\n"
1113 "/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine\n"
1114 "/guillemotright/onequarter/onehalf/threequarters/questiondown\n"
1115 "/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla\n"
1116 "/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex\n"
1117 "/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis\n"
1118 "/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute\n"
1119 "/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis\n"
1120 "/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave\n"
1121 "/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex\n"
1122 "/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis\n"
1123 "/yacute/thorn/ydieresis\n"
1131 *m_pstream
<< "grestore\n";
1134 // Will reuse m_pstream for header
1136 // see the definition of fileBuffer for explanation
1137 m_pstream
->close(); // steve, 05.09.94
1138 if(fileBuffer
) delete[] fileBuffer
;
1143 m_pstream
= (ofstream
*) NULL
;
1149 char *header_file
= "header.ps";
1151 char *header_file
= wxGetTempFileName("ps");
1153 m_pstream
= new ofstream (header_file
);
1155 *m_pstream
<< "%!PS-Adobe-2.0\n"; /* PostScript magic strings */
1156 *m_pstream
<< "%%Title: " << (const char *) m_title
<< "\n";
1157 *m_pstream
<< "%%Creator: " << wxTheApp
->argv
[0] << "\n";
1158 // time_t when; time (&when);
1159 // *m_pstream << "%%CreationDate: " << ctime (&when);
1160 *m_pstream
<< "%%CreationDate: " << wxNow() << "\n";
1162 // User Id information
1164 if ( wxGetEmailAddress(userID
, sizeof(userID
)) )
1166 *m_pstream
<< "%%For: " << (char *)userID
;
1168 if (wxGetUserName(userName
, sizeof(userName
)))
1169 *m_pstream
<< " (" << (char *)userName
<< ")";
1172 else if ( wxGetUserName(userID
, sizeof(userID
)) )
1174 *m_pstream
<< "%%For: " << (char *)userID
<< "\n";
1177 // THE FOLLOWING HAS BEEN CONTRIBUTED BY Andy Fyfe <andy@hyperparallel.com>
1179 long wx_printer_translate_x
, wx_printer_translate_y
;
1180 double wx_printer_scale_x
, wx_printer_scale_y
;
1181 wxThePrintSetupData
->GetPrinterTranslation(&wx_printer_translate_x
, &wx_printer_translate_y
);
1182 wxThePrintSetupData
->GetPrinterScaling(&wx_printer_scale_x
, &wx_printer_scale_y
);
1184 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1186 *m_pstream
<< "%%Orientation: Landscape\n";
1190 *m_pstream
<< "%%Orientation: Portrait\n";
1193 // Compute the bounding box. Note that it is in the default user
1194 // coordinate system, thus we have to convert the values.
1195 long llx
= (long) ((m_minX
+wx_printer_translate_x
)*wx_printer_scale_x
);
1196 long lly
= (long) ((m_minY
+wx_printer_translate_y
)*wx_printer_scale_y
);
1197 long urx
= (long) ((m_maxX
+wx_printer_translate_x
)*wx_printer_scale_x
);
1198 long ury
= (long) ((m_maxY
+wx_printer_translate_y
)*wx_printer_scale_y
);
1201 // If we're landscape, our sense of "x" and "y" is reversed.
1202 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1205 tmp
= llx
; llx
= lly
; lly
= tmp
;
1206 tmp
= urx
; urx
= ury
; ury
= tmp
;
1208 // We need either the two lines that follow, or we need to subtract
1209 // min_x from real_translate_y, which is commented out below.
1210 llx
= llx
- m_minX
*wx_printer_scale_y
;
1211 urx
= urx
- m_minX
*wx_printer_scale_y
;
1215 // The Adobe specifications call for integers; we round as to make
1216 // the bounding larger.
1217 *m_pstream
<< "%%BoundingBox: "
1218 << floor((double)llx
) << " " << floor((double)lly
) << " "
1219 << ceil((double)urx
) << " " << ceil((double)ury
) << "\n";
1220 *m_pstream
<< "%%Pages: " << (wxPageNumber
- 1) << "\n";
1221 *m_pstream
<< "%%EndComments\n\n";
1223 // To check the correctness of the bounding box, postscript commands
1224 // to draw a box corresponding to the bounding box are generated below.
1225 // But since we typically don't want to print such a box, the postscript
1226 // commands are generated within comments. These lines appear before any
1227 // adjustment of scale, rotation, or translation, and hence are in the
1228 // default user coordinates.
1229 *m_pstream
<< "% newpath\n";
1230 *m_pstream
<< "% " << llx
<< " " << lly
<< " moveto\n";
1231 *m_pstream
<< "% " << urx
<< " " << lly
<< " lineto\n";
1232 *m_pstream
<< "% " << urx
<< " " << ury
<< " lineto\n";
1233 *m_pstream
<< "% " << llx
<< " " << ury
<< " lineto closepath stroke\n";
1237 long real_translate_y
= wx_printer_translate_y
;
1238 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1240 real_translate_y
-= m_maxY
;
1241 // The following line can be used instead of the adjustment to
1242 // llx and urx above.
1243 // real_translate_y -= m_minX;
1244 *m_pstream
<< "90 rotate\n";
1247 /* Probably don't want this now we have it in EndPage, below.
1248 * We should rationalise the scaling code to one place. JACS, October 1995
1249 * Do we take the next 2 lines out or not?
1252 *m_pstream
<< wx_printer_scale_x
<< " " << wx_printer_scale_y
<< " scale\n";
1253 *m_pstream
<< wx_printer_translate_x
<< " " << real_translate_y
<< " translate\n";
1256 *m_pstream
<< "%%BeginProlog\n";
1257 *m_pstream
<< wxPostScriptHeaderEllipse
;
1258 *m_pstream
<< wxPostScriptHeaderEllipticArc
;
1259 *m_pstream
<< wxPostScriptHeaderReencodeISO1
;
1260 *m_pstream
<< wxPostScriptHeaderReencodeISO2
;
1262 if (wxPostScriptHeaderSpline
)
1263 *m_pstream
<< wxPostScriptHeaderSpline
;
1264 *m_pstream
<< "%%EndProlog\n";
1267 m_pstream
= (ofstream
*) NULL
;
1270 char *tmp_file
= "tmp.ps";
1272 char *tmp_file
= wxGetTempFileName("ps");
1275 // Paste header Before wx_printer_file
1276 wxConcatFiles (header_file
, wxThePrintSetupData
->GetPrinterFile(), tmp_file
);
1277 wxRemoveFile (header_file
);
1278 wxRemoveFile (wxThePrintSetupData
->GetPrinterFile());
1279 wxRenameFile(tmp_file
, wxThePrintSetupData
->GetPrinterFile());
1281 #if defined(__X__) || defined(__WXGTK__)
1284 switch (wxThePrintSetupData
->GetPrinterMode()) {
1288 argv
[0] = wxThePrintSetupData
->GetPrintPreviewCommand();
1289 argv
[1] = wxThePrintSetupData
->GetPrinterFile();
1290 argv
[2] = (char *) NULL
;
1291 wxExecute (argv
, TRUE
);
1292 wxRemoveFile(wxThePrintSetupData
->GetPrinterFile());
1300 argv
[argc
++] = wxThePrintSetupData
->GetPrinterCommand();
1302 // !SM! If we simply assign to argv[1] here, if printer options
1303 // are blank, we get an annoying and confusing message from lpr.
1304 char * opts
= wxThePrintSetupData
->GetPrinterOptions();
1306 argv
[argc
++] = opts
;
1308 argv
[argc
++] = wxThePrintSetupData
->GetPrinterFile();
1309 argv
[argc
++] = (char *) NULL
;
1310 wxExecute (argv
, TRUE
);
1311 wxRemoveFile(wxThePrintSetupData
->GetPrinterFile());
1322 void wxPostScriptDC::StartPage (void)
1326 *m_pstream
<< "%%Page: " << (wxPageNumber
++) << "\n";
1327 // *m_pstream << "matrix currentmatrix\n";
1329 // Added by Chris Breeze
1331 // Each page starts with an "initgraphics" which resets the
1332 // transformation and so we need to reset the origin
1333 // (and rotate the page for landscape printing)
1334 m_scaleFactor
= 1.0;
1335 m_logicalOriginX
= 0;
1336 m_logicalOriginY
= 0;
1339 long translate_x
, translate_y
;
1340 double scale_x
, scale_y
;
1341 wxThePrintSetupData
->GetPrinterTranslation(&translate_x
, &translate_y
);
1342 wxThePrintSetupData
->GetPrinterScaling(&scale_x
, &scale_y
);
1344 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1346 translate_y
-= GetYOrigin();
1347 *m_pstream
<< "90 rotate\n";
1350 *m_pstream
<< scale_x
<< " " << scale_y
<< " scale\n";
1351 *m_pstream
<< translate_x
<< " " << translate_y
<< " translate\n";
1354 void wxPostScriptDC::EndPage (void)
1358 *m_pstream
<< "showpage\n";
1360 // Removed by Chris Breeze
1362 *m_pstream
<< "setmatrix\n";
1364 // THE FOLLOWING HAS BEEN CONTRIBUTED BY Andy Fyfe <andy@hyperparallel.com>
1366 long wx_printer_translate_x
, wx_printer_translate_y
;
1367 double wx_printer_scale_x
, wx_printer_scale_y
;
1368 wxThePrintSetupData
->GetPrinterTranslation(&wx_printer_translate_x
, &wx_printer_translate_y
);
1369 wxThePrintSetupData
->GetPrinterScaling(&wx_printer_scale_x
, &wx_printer_scale_y
);
1371 // Compute the bounding box. Note that it is in the default user
1372 // coordinate system, thus we have to convert the values.
1373 long llx
= (m_minX
+wx_printer_translate_x
)*wx_printer_scale_x
;
1374 long lly
= (m_minY
+wx_printer_translate_y
)*wx_printer_scale_y
;
1375 long urx
= (m_maxX
+wx_printer_translate_x
)*wx_printer_scale_x
;
1376 long ury
= (m_maxY
+wx_printer_translate_y
)*wx_printer_scale_y
;
1378 // If we're landscape, our sense of "x" and "y" is reversed.
1379 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1382 tmp
= llx
; llx
= lly
; lly
= tmp
;
1383 tmp
= urx
; urx
= ury
; ury
= tmp
;
1385 // We need either the two lines that follow, or we need to subtract
1386 // m_minX from real_translate_y, which is commented out below.
1387 llx
= llx
- m_minX
*wx_printer_scale_y
;
1388 urx
= urx
- m_minX
*wx_printer_scale_y
;
1392 long real_translate_y
= wx_printer_translate_y
;
1393 if (wxThePrintSetupData
->GetPrinterOrientation() == PS_LANDSCAPE
)
1395 real_translate_y
-= m_maxY
;
1396 // The following line can be used instead of the adjustment to
1397 // llx and urx above.
1398 // real_translate_y -= m_minX;
1399 *m_pstream
<< "90 rotate\n";
1402 *m_pstream
<< wx_printer_scale_x
<< " " << wx_printer_scale_y
<< " scale\n";
1403 *m_pstream
<< wx_printer_translate_x
<< " " << real_translate_y
<< " translate\n";
1407 bool wxPostScriptDC::
1408 Blit (long xdest
, long ydest
, long fwidth
, long fheight
,
1409 wxDC
*source
, long xsrc
, long ysrc
, int WXUNUSED(rop
), bool WXUNUSED(useMask
))
1411 long width
, height
, x
, y
;
1413 #if !defined(__X__) && !defined(__WXGTK__)
1417 if (!source
->IsKindOf(CLASSINFO(wxPaintDC
))) return FALSE
;
1419 width
= (long)floor((double)fwidth
);
1420 height
= (long)floor((double)fheight
);
1421 x
= (long)floor((double)xsrc
);
1422 y
= (long)floor((double)ysrc
);
1424 /* PostScript setup: */
1425 *m_pstream
<< "gsave\n";
1426 *m_pstream
<< xdest
<< " " << YSCALE(ydest
+ fheight
) << " translate\n";
1427 *m_pstream
<< fwidth
<< " " << fheight
<< " scale\n";
1428 *m_pstream
<< "/DataString " << width
<< " string def\n";
1429 *m_pstream
<< width
<< " " << height
<< " 8 [ ";
1430 *m_pstream
<< width
<< " 0 0 " << (-height
) << " 0 " << height
;
1431 *m_pstream
<< " ]\n{\n";
1432 *m_pstream
<< " currentfile DataString readhexstring pop\n";
1433 *m_pstream
<< "} bind image\n";
1435 #if defined(__X__) || defined(__WXGTK__)
1437 /* Output data as hex digits: */
1447 cm
= ((GdkColormapPrivate
*)gdk_colormap_get_system())->xcolormap
;
1448 GdkWindow
*gwin
= ((wxClientDC
*)source
)->GetWindow();
1449 image
= XGetImage(d
, ((GdkWindowPrivate
*)gwin
)->xwindow
, x
, y
, width
, height
, AllPlanes
, ZPixmap
);
1454 // TODO. for now, use global display
1455 // d = source->display;
1456 d
= (Display
*) wxGetDisplay();
1458 d
= (Display
*) wxGetDisplay();
1461 cm
= (Colormap
) wxTheApp
->GetMainColormap((WXDisplay
*) d
);
1462 // TODO - implement GetPixmap() and uncomment this line
1463 // image = XGetImage(d, source->GetPixmap(), x, y, width, height, AllPlanes, ZPixmap);
1470 #define CM_CACHE_SIZE 256
1471 unsigned long cachesrc
[CM_CACHE_SIZE
];
1472 int cachedest
[CM_CACHE_SIZE
], cache_pos
= 0, all_cache
= FALSE
;
1474 for (j
= 0; j
< height
; j
++) {
1475 for (i
= 0; i
< width
; i
++) {
1477 unsigned long spixel
;
1479 const unsigned short MAX_COLOR
= 0xFFFF;
1481 spixel
= XGetPixel(image
, i
, j
);
1483 for (k
= cache_pos
; k
--; )
1484 if (cachesrc
[k
] == spixel
) {
1485 pixel
= cachedest
[k
];
1489 for (k
= CM_CACHE_SIZE
; k
-- > cache_pos
; )
1490 if (cachesrc
[k
] == spixel
) {
1491 pixel
= cachedest
[k
];
1495 cachesrc
[cache_pos
] = xcol
.pixel
= spixel
;
1496 XQueryColor(d
, cm
, &xcol
);
1500 r
= (long)((double)(xcol
.red
) / MAX_COLOR
);
1501 g
= (long)((double)(xcol
.green
) / MAX_COLOR
);
1502 b
= (long)((double)(xcol
.blue
) / MAX_COLOR
);
1504 pixel
= (int)(255 * sqrt(((r
* r
) + (g
* g
) + (b
* b
)) / 3));
1506 cachedest
[cache_pos
] = pixel
;
1508 if (++cache_pos
>= CM_CACHE_SIZE
) {
1516 h
= (pixel
>> 4) & 0xF;
1522 s
[0] = 'a' + (h
- 10);
1526 s
[1] = 'a' + (l
- 10);
1533 XDestroyImage(image
);
1536 *m_pstream
<< "grestore\n";
1538 CalcBoundingBox(xdest
, (long)YSCALE(ydest
));
1539 CalcBoundingBox(xdest
+ fwidth
, (long)YSCALE(ydest
+ fheight
));
1544 long wxPostScriptDC::GetCharHeight (void)
1547 return m_font
.GetPointSize ();
1552 void wxPostScriptDC::GetTextExtent (const wxString
& string
, long *x
, long *y
,
1553 long *descent
, long *externalLeading
, wxFont
*theFont
,
1554 bool WXUNUSED(use16
))
1556 wxFont
*fontToUse
= theFont
;
1558 fontToUse
= (wxFont
*) &m_font
;
1562 #if !USE_AFM_FOR_POSTSCRIPT
1563 // Provide a VERY rough estimate (avoid using it)
1564 // Chris Breeze 5/11/97: produces accurate results for mono-spaced
1565 // font such as Courier (aka wxMODERN)
1569 height
= fontToUse
->GetPointSize();
1571 *x
= strlen (string
) * height
* 72 / 120;
1572 *y
= (long) (height
* 1.32); // allow for descender
1576 if (externalLeading
)
1577 *externalLeading
= 0;
1579 // +++++ start of contributed code +++++
1581 // ************************************************************
1582 // method for calculating string widths in postscript:
1583 // read in the AFM (adobe font metrics) file for the
1584 // actual font, parse it and extract the character widths
1585 // and also the descender. this may be improved, but for now
1586 // it works well. the AFM file is only read in if the
1587 // font is changed. this may be chached in the future.
1588 // calls to GetTextExtent with the font unchanged are rather
1591 // for each font and style used there is an AFM file necessary.
1592 // currently i have only files for the roman font family.
1593 // i try to get files for the other ones!
1595 // CAVE: the size of the string is currently always calculated
1596 // in 'points' (1/72 of an inch). this should later on be
1597 // changed to depend on the mapping mode.
1598 // CAVE: the path to the AFM files must be set before calling this
1599 // function. this is usually done by a call like the following:
1600 // wxSetAFMPath("d:\\wxw161\\afm\\");
1604 // wxPostScriptDC dc(NULL, TRUE);
1606 // wxSetAFMPath("d:\\wxw161\\afm\\");
1607 // dc.StartDoc("Test");
1610 // dc.SetFont(new wxFont(10, wxROMAN, wxNORMAL, wxNORMAL));
1611 // dc.GetTextExtent("Hallo",&w,&h);
1616 // by steve (stefan.hammes@urz.uni-heidelberg.de)
1617 // created: 10.09.94
1618 // updated: 14.05.95
1620 assert(fontToUse
&& "void wxPostScriptDC::GetTextExtent: no font defined");
1621 assert(x
&& "void wxPostScriptDC::GetTextExtent: x == NULL");
1622 assert(y
&& "void wxPostScriptDC::GetTextExtent: y == NULL");
1624 // these static vars are for storing the state between calls
1625 static int lastFamily
= INT_MIN
;
1626 static int lastSize
= INT_MIN
;
1627 static int lastStyle
= INT_MIN
;
1628 static int lastWeight
= INT_MIN
;
1629 static int lastDescender
= INT_MIN
;
1630 static int lastWidths
[256]; // widths of the characters
1632 // get actual parameters
1633 const int Family
= fontToUse
->GetFamily();
1634 const int Size
= fontToUse
->GetPointSize();
1635 const int Style
= fontToUse
->GetStyle();
1636 const int Weight
= fontToUse
->GetWeight();
1638 // if we have another font, read the font-metrics
1639 if(Family
!=lastFamily
||Size
!=lastSize
||Style
!=lastStyle
||Weight
!=lastWeight
){
1640 // store actual values
1641 lastFamily
= Family
;
1644 lastWeight
= Weight
;
1646 // read in new font metrics **************************************
1648 // 1. construct filename ******************************************
1649 /* MATTHEW: [2] Use wxTheFontNameDirectory */
1652 // Julian - we'll need to do this a different way now we've removed the
1653 // font directory system. Must find Stefan's original code.
1655 name
= wxTheFontNameDirectory
->GetAFMName(Family
, Weight
, Style
);
1659 // get the directory of the AFM files
1663 strcpy(afmName
,wxGetAFMPath());
1665 // 2. open and process the file **********************************
1667 // a short explanation of the AFM format:
1668 // we have for each character a line, which gives its size
1671 // C 63 ; WX 444 ; N question ; B 49 -14 395 676 ;
1673 // that means, we have a character with ascii code 63, and width
1674 // (444/1000 * fontSize) points.
1675 // the other data is ignored for now!
1677 // when the font has changed, we read in the right AFM file and store the
1678 // character widths in an array, which is processed below (see point 3.).
1680 // new elements JC Sun Aug 25 23:21:44 MET DST 1996
1683 strcat(afmName
,name
);
1684 strcat(afmName
,".afm");
1685 FILE *afmFile
= fopen(afmName
,"r");
1687 wxDebugMsg("GetTextExtent: can't open AFM file '%s'\n",afmName
);
1688 wxDebugMsg(" using approximate values\n");
1690 for (i
=0; i
<256; i
++) lastWidths
[i
] = 500; // an approximate value
1691 lastDescender
= -150; // dito.
1694 // init the widths array
1695 for(i
=0; i
<256; i
++) lastWidths
[i
]= INT_MIN
;
1696 // some variables for holding parts of a line
1697 char cString
[10],semiString
[10],WXString
[10],descString
[20];
1698 char upString
[30], utString
[30], encString
[50];
1701 // read in the file and parse it
1702 while(fgets(line
,sizeof(line
),afmFile
)!=NULL
){
1703 // A.) check for descender definition
1704 if(strncmp(line
,"Descender",9)==0){
1705 if((sscanf(line
,"%s%d",descString
,&lastDescender
)!=2)
1706 || (strcmp(descString
,"Descender")!=0)) {
1707 wxDebugMsg("AFM-file '%s': line '%s' has error (bad descender)\n",
1711 // JC 1.) check for UnderlinePosition
1712 else if(strncmp(line
,"UnderlinePosition",17)==0){
1713 if((sscanf(line
,"%s%lf",upString
,&UnderlinePosition
)!=2)
1714 || (strcmp(upString
,"UnderlinePosition")!=0)) {
1715 wxDebugMsg("AFM-file '%s': line '%s' has error (bad UnderlinePosition)\n",
1719 // JC 2.) check for UnderlineThickness
1720 else if(strncmp(line
,"UnderlineThickness",18)==0){
1721 if((sscanf(line
,"%s%lf",utString
,&UnderlineThickness
)!=2)
1722 || (strcmp(utString
,"UnderlineThickness")!=0)) {
1723 wxDebugMsg("AFM-file '%s': line '%s' has error (bad UnderlineThickness)\n",
1727 // JC 3.) check for EncodingScheme
1728 else if(strncmp(line
,"EncodingScheme",14)==0){
1729 if((sscanf(line
,"%s%s",utString
,encString
)!=2)
1730 || (strcmp(utString
,"EncodingScheme")!=0)) {
1731 wxDebugMsg("AFM-file '%s': line '%s' has error (bad EncodingScheme)\n",
1734 else if (strncmp(encString
, "AdobeStandardEncoding", 21))
1736 wxDebugMsg("AFM-file '%s': line '%s' has error (unsupported EncodingScheme %s)\n",
1737 afmName
,line
, encString
);
1740 // B.) check for char-width
1741 else if(strncmp(line
,"C ",2)==0){
1742 if(sscanf(line
,"%s%d%s%s%d",
1743 cString
,&ascii
,semiString
,WXString
,&cWidth
)!=5){
1744 wxDebugMsg("AFM-file '%s': line '%s' has an error (bad character width)\n",afmName
,line
);
1746 if(strcmp(cString
,"C")!=0 || strcmp(semiString
,";")!=0 ||
1747 strcmp(WXString
,"WX")!=0){
1748 wxDebugMsg("AFM-file '%s': line '%s' has a format error\n",afmName
,line
);
1750 //printf(" char '%c'=%d has width '%d'\n",ascii,ascii,cWidth);
1751 if(ascii
>=0 && ascii
<256){
1752 lastWidths
[ascii
] = cWidth
; // store width
1754 /* MATTHEW: this happens a lot; don't print an error */
1755 // wxDebugMsg("AFM-file '%s': ASCII value %d out of range\n",afmName,ascii);
1758 // C.) ignore other entries.
1762 // hack to compute correct values for german 'Umlaute'
1763 // the correct way would be to map the character names
1764 // like 'adieresis' to corresp. positions of ISOEnc and read
1765 // these values from AFM files, too. Maybe later ...
1766 lastWidths
[196] = lastWidths
['A']; // Ä
1767 lastWidths
[228] = lastWidths
['a']; // ä
1768 lastWidths
[214] = lastWidths
['O']; // Ö
1769 lastWidths
[246] = lastWidths
['o']; // ö
1770 lastWidths
[220] = lastWidths
['U']; // Ü
1771 lastWidths
[252] = lastWidths
['u']; // ü
1772 lastWidths
[223] = lastWidths
[251]; // ß
1775 // JC: calculate UnderlineThickness/UnderlinePosition
1776 UnderlinePosition
= UnderlinePosition
* fontToUse
->GetPointSize() / 1000.0f
;
1777 UnderlineThickness
= UnderlineThickness
* fontToUse
->GetPointSize() / 1000.0f
* m_scaleFactor
;
1779 // 3. now the font metrics are read in, calc size *******************
1780 // this is done by adding the widths of the characters in the
1781 // string. they are given in 1/1000 of the size!
1784 long height
=Size
; // by default
1786 for(p
=(unsigned char *)(const char *)string
; *p
; p
++){
1787 if(lastWidths
[*p
]== INT_MIN
){
1788 wxDebugMsg("GetTextExtent: undefined width for character '%c' (%d)\n",
1790 widthSum
+= (long)(lastWidths
[' ']/1000.0F
* Size
); // assume space
1792 widthSum
+= (long)((lastWidths
[*p
]/1000.0F
)*Size
);
1795 // add descender to height (it is usually a negative value)
1796 if(lastDescender
!=INT_MIN
){
1797 height
+= (long)(((-lastDescender
)/1000.0F
) * Size
); /* MATTHEW: forgot scale */
1800 // return size values
1804 // return other parameters
1806 if(lastDescender
!=INT_MIN
){
1807 *descent
= (long)(((-lastDescender
)/1000.0F
) * Size
); /* MATTHEW: forgot scale */
1813 // currently no idea how to calculate this!
1814 // if (externalLeading) *externalLeading = 0;
1815 if (externalLeading
)
1816 *externalLeading
= 0;
1818 // ----- end of contributed code -----
1822 void wxPostScriptDC::DrawSpline( wxList
*points
)
1824 double a
, b
, c
, d
, x1
, y1
, x2
, y2
, x3
, y3
;
1827 wxNode
*node
= points
->First();
1828 p
= (wxPoint
*)node
->Data();
1830 x1
= p
->x
; y1
= p
->y
;
1832 node
= node
->Next();
1833 p
= (wxPoint
*)node
->Data();
1835 x3
= a
= (double)(x1
+ c
) / 2;
1836 y3
= b
= (double)(y1
+ d
) / 2;
1838 *(GetStream()) << "newpath " << x1
<< " " << (GetYOrigin() - y1
) << " moveto " << x3
<< " " << (GetYOrigin() - y3
);
1839 *(GetStream()) << " lineto\n";
1840 CalcBoundingBox( (long)x1
, (long)(GetYOrigin() - y1
));
1841 CalcBoundingBox( (long)x3
, (long)(GetYOrigin() - y3
));
1843 while ((node
= node
->Next()) != NULL
)
1845 q
= (wxPoint
*)node
->Data();
1850 x3
= (double)(x2
+ c
) / 2;
1851 y3
= (double)(y2
+ d
) / 2;
1852 *(GetStream()) << x1
<< " " << (GetYOrigin() - y1
) << " " << x2
<< " " << (GetYOrigin() - y2
) << " ";
1853 *(GetStream()) << x3
<< " " << (GetYOrigin() - y3
) << " DrawSplineSection\n";
1855 CalcBoundingBox( (long)x1
, (long)(GetYOrigin() - y1
));
1856 CalcBoundingBox( (long)x3
, (long)(GetYOrigin() - y3
));
1859 * At this point, (x2,y2) and (c,d) are the position of the
1860 * next-to-last and last point respectively, in the point list
1862 *(GetStream()) << c
<< " " << (GetYOrigin() - d
) << " lineto stroke\n";
1865 long wxPostScriptDC::GetCharWidth (void)
1867 // Chris Breeze: reasonable approximation using wxMODERN/Courier
1868 return (long) (GetCharHeight() * 72.0 / 120.0);
1872 void wxPostScriptDC::SetMapMode (int mode
)
1874 m_mappingMode
= mode
;
1875 SetLogicalOrigin(0, 0);
1876 if(m_mappingMode
== MM_METRIC
)
1878 SetUserScale(72.0f
/ 25.4f
, 72.0f
/ 25.4f
);
1882 SetUserScale(1.0, 1.0);
1888 * Set the logical origin.
1889 * Actually we are setting the printer's origin and since
1890 * postscript transformations are cumulative we need to reset
1891 * the previous origin. We also need to allow for the user scale
1892 * factor (which affects printer coords but not logical)
1894 void wxPostScriptDC::SetLogicalOrigin(long x
, long y
)
1898 long xOffset
= (long) ((m_logicalOriginX
- x
) / m_scaleFactor
);
1899 long yOffset
= (long) ((y
- m_logicalOriginY
) / m_scaleFactor
);
1903 *m_pstream
<< xOffset
<< " " << yOffset
<< " translate\n";
1906 m_logicalOriginX
= x
;
1907 m_logicalOriginY
= y
;
1911 * Obsolete - now performed by SetUserScale() and SetLogicalOrigin()
1914 wxPostScriptDC::SetupCTM()
1919 * Set the user scale.
1920 * NB: Postscript transformations are cumulative and so we
1921 * need to take into account the current scale. Also, this
1922 * affects the logical origin
1924 void wxPostScriptDC::SetUserScale (double x
, double y
)
1926 // reset logical origin
1927 long xOrg
= m_logicalOriginX
;
1928 long yOrg
= m_logicalOriginY
;
1929 SetLogicalOrigin(0, 0);
1931 // set new scale factor
1935 factor
/= m_scaleFactor
;
1939 *m_pstream
<< factor
<< " " << factor
<< " scale\n";
1942 // set logical origin at new scale
1943 SetLogicalOrigin(xOrg
, yOrg
);
1948 m_scaleFactor
= m_userScaleX
;
1951 long wxPostScriptDC::DeviceToLogicalX (int x
) const
1956 long wxPostScriptDC::DeviceToLogicalXRel (int x
) const
1961 long wxPostScriptDC::DeviceToLogicalY (int y
) const
1966 long wxPostScriptDC::DeviceToLogicalYRel (int y
) const
1971 long wxPostScriptDC::LogicalToDeviceX (long x
) const
1976 long wxPostScriptDC::LogicalToDeviceXRel (long x
) const
1981 long wxPostScriptDC::LogicalToDeviceY (long y
) const
1986 long wxPostScriptDC::LogicalToDeviceYRel (long y
) const
1991 void wxPostScriptDC::GetSize(int* width
, int* height
) const
1993 const char *paperType
= wxThePrintSetupData
->GetPaperName();
1995 paperType
= _("A4 210 x 297 mm");
1997 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->FindPaperType(paperType
);
1999 paper
= wxThePrintPaperDatabase
->FindPaperType(_("A4 210 x 297 mm"));
2002 *width
= paper
->widthPixels
;
2003 *height
= paper
->heightPixels
;
2012 void wxPostScriptDC::GetSizeMM(long *width
, long *height
) const
2014 const char *paperType
= wxThePrintSetupData
->GetPaperName();
2016 paperType
= _("A4 210 x 297 mm");
2018 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->FindPaperType(paperType
);
2020 paper
= wxThePrintPaperDatabase
->FindPaperType(_("A4 210 x 297 mm"));
2023 *width
= paper
->widthMM
;
2024 *height
= paper
->heightMM
;
2033 void wxPostScriptDC::CalcBoundingBox(long x
, long y
)
2035 long device_x
= (long) (x
- m_logicalOriginX
* m_scaleFactor
);
2036 long device_y
= (long) (y
+ m_logicalOriginY
* m_scaleFactor
);
2038 if (device_x
< m_minX
) m_minX
= device_x
;
2039 if (device_y
< m_minY
) m_minY
= device_y
;
2040 if (device_x
> m_maxX
) m_maxX
= device_x
;
2041 if (device_y
> m_maxY
) m_maxY
= device_y
;
2044 IMPLEMENT_CLASS(wxPostScriptPrintDialog
, wxDialog
)
2046 wxPostScriptPrintDialog::wxPostScriptPrintDialog (wxWindow
*parent
, const wxString
& title
,
2047 const wxPoint
& pos
, const wxSize
& size
, long style
):
2048 wxDialog(parent
, -1, title
, pos
, size
, style
)
2050 wxBeginBusyCursor();
2053 wxButton
*okBut
= new wxButton (this, wxID_OK
, _("OK"), wxPoint(5, 5));
2054 (void) new wxButton (this, wxID_CANCEL
, _("Cancel"), wxPoint(40, 5));
2055 okBut
->SetDefault();
2059 #if defined(__WXGTK__) || defined (__WXMOTIF__)
2060 (void) new wxStaticText( this, -1, _("Printer Command: "),
2062 (void) new wxTextCtrl( this, wxID_PRINTER_COMMAND
, wxThePrintSetupData
->GetPrinterCommand(),
2063 wxPoint(100, yPos
), wxSize(100, -1) );
2065 (void) new wxStaticText( this, -1, _("Printer Options: "),
2066 wxPoint(210, yPos
) );
2067 (void) new wxTextCtrl( this, wxID_PRINTER_OPTIONS
, wxThePrintSetupData
->GetPrinterOptions(),
2068 wxPoint(305, yPos
), wxSize(150, -1) );
2073 wxString orientation
[2];
2074 orientation
[0] = _("Portrait");
2075 orientation
[1] = _("Landscape");
2077 wxRadioBox
*radio0
= new wxRadioBox(this, wxID_PRINTER_ORIENTATION
, "Orientation: ", wxPoint(5, yPos
), wxSize(-1,-1),
2079 radio0
->SetSelection((int)wxThePrintSetupData
->GetPrinterOrientation() - 1);
2081 // @@@ Configuration hook
2082 if (wxThePrintSetupData
->GetPrintPreviewCommand() == NULL
)
2083 wxThePrintSetupData
->SetPrintPreviewCommand(PS_VIEWER_PROG
);
2085 wxGetResource ("wxWindows", "PSView", &wxThePrintSetupData
->previewCommand
);
2087 wxString print_modes
[3];
2088 print_modes
[0] = _("Send to Printer");
2089 print_modes
[1] = _("Print to File");
2090 print_modes
[2] = _("Preview Only");
2092 int features
= (wxThePrintSetupData
->GetPrintPreviewCommand() && *wxThePrintSetupData
->GetPrintPreviewCommand()) ? 3 : 2;
2093 wxRadioBox
*radio1
= new wxRadioBox(this, wxID_PRINTER_MODES
, _("PostScript:"),
2094 wxPoint(150, yPos
), wxSize(-1,-1), features
, print_modes
, features
, 0);
2097 radio1
->Enable(0, FALSE
);
2098 if (wxThePrintSetupData
->GetPrintPreviewCommand() && *wxThePrintSetupData
->GetPrintPreviewCommand())
2099 radio1
->Enable(2, FALSE
);
2102 radio1
->SetSelection((int)wxThePrintSetupData
->GetPrinterMode());
2104 long wx_printer_translate_x
, wx_printer_translate_y
;
2105 double wx_printer_scale_x
, wx_printer_scale_y
;
2106 wxThePrintSetupData
->GetPrinterTranslation(&wx_printer_translate_x
, &wx_printer_translate_y
);
2107 wxThePrintSetupData
->GetPrinterScaling(&wx_printer_scale_x
, &wx_printer_scale_y
);
2109 sprintf (buf
, "%.2f", wx_printer_scale_x
);
2113 (void) new wxStaticText(this, -1, _("X Scaling"), wxPoint(5, yPos
));
2114 /* wxTextCtrl *text1 = */ (void) new wxTextCtrl(this, wxID_PRINTER_X_SCALE
, buf
, wxPoint(100, yPos
), wxSize(100, -1));
2116 sprintf (buf
, "%.2f", wx_printer_scale_y
);
2117 (void) new wxStaticText(this, -1, _("Y Scaling"), wxPoint(220, yPos
));
2118 /* wxTextCtrl *text2 = */ (void) new wxTextCtrl(this, wxID_PRINTER_Y_SCALE
, buf
, wxPoint(320, yPos
), wxSize(100, -1));
2122 (void) new wxStaticText(this, -1, _("X Translation"), wxPoint(5, yPos
));
2123 sprintf (buf
, "%.2ld", wx_printer_translate_x
);
2124 /* wxTextCtrl *text3 = */ (void) new wxTextCtrl(this, wxID_PRINTER_X_TRANS
, buf
, wxPoint(100, yPos
), wxSize(100, -1));
2126 (void) new wxStaticText(this, -1, _("Y Translation"), wxPoint(220, yPos
));
2127 sprintf (buf
, "%.2ld", wx_printer_translate_y
);
2128 /* wxTextCtrl *text4 = */ (void) new wxTextCtrl(this, wxID_PRINTER_Y_TRANS
, buf
, wxPoint(320, yPos
), wxSize(100, -1));
2135 int wxPostScriptPrintDialog::ShowModal (void)
2137 if ( wxDialog::ShowModal() == wxID_OK
)
2139 // wxTextCtrl *text0 = (wxTextCtrl *)FindWindow(wxID_PRINTER_OPTIONS);
2140 wxTextCtrl
*text1
= (wxTextCtrl
*)FindWindow(wxID_PRINTER_X_SCALE
);
2141 wxTextCtrl
*text2
= (wxTextCtrl
*)FindWindow(wxID_PRINTER_Y_SCALE
);
2142 wxTextCtrl
*text3
= (wxTextCtrl
*)FindWindow(wxID_PRINTER_X_TRANS
);
2143 wxTextCtrl
*text4
= (wxTextCtrl
*)FindWindow(wxID_PRINTER_Y_TRANS
);
2144 // wxTextCtrl *text_prt = (wxTextCtrl *)FindWindow(wxID_PRINTER_COMMAND);
2145 wxRadioBox
*radio0
= (wxRadioBox
*)FindWindow(wxID_PRINTER_ORIENTATION
);
2146 wxRadioBox
*radio1
= (wxRadioBox
*)FindWindow(wxID_PRINTER_MODES
);
2148 StringToDouble (WXSTRINGCAST text1
->GetValue (), &wxThePrintSetupData
->printerScaleX
);
2149 StringToDouble (WXSTRINGCAST text2
->GetValue (), &wxThePrintSetupData
->printerScaleY
);
2150 StringToLong (WXSTRINGCAST text3
->GetValue (), &wxThePrintSetupData
->printerTranslateX
);
2151 StringToLong (WXSTRINGCAST text4
->GetValue (), &wxThePrintSetupData
->printerTranslateY
);
2154 // wxThePrintSetupData->SetPrinterOptions(WXSTRINGCAST text0->GetValue ());
2155 // wxThePrintSetupData->SetPrinterCommand(WXSTRINGCAST text_prt->GetValue ());
2158 wxThePrintSetupData
->SetPrinterOrientation((radio0
->GetSelection() == 1 ? PS_LANDSCAPE
: PS_PORTRAIT
));
2161 switch ( radio1
->GetSelection() ) {
2162 case 0: wxThePrintSetupData
->SetPrinterMode(PS_PRINTER
); break;
2163 case 1: wxThePrintSetupData
->SetPrinterMode(PS_FILE
); break;
2164 case 2: wxThePrintSetupData
->SetPrinterMode(PS_PREVIEW
); break;
2171 // PostScript printer settings
2172 // RETAINED FOR BACKWARD COMPATIBILITY
2173 void wxSetPrinterCommand(const char *cmd
)
2175 wxThePrintSetupData
->SetPrinterCommand(cmd
);
2178 void wxSetPrintPreviewCommand(const char *cmd
)
2180 wxThePrintSetupData
->SetPrintPreviewCommand(cmd
);
2183 void wxSetPrinterOptions(const char *flags
)
2185 wxThePrintSetupData
->SetPrinterOptions(flags
);
2188 void wxSetPrinterFile(const char *f
)
2190 wxThePrintSetupData
->SetPrinterFile(f
);
2193 void wxSetPrinterOrientation(int orient
)
2195 wxThePrintSetupData
->SetPrinterOrientation(orient
);
2198 void wxSetPrinterScaling(double x
, double y
)
2200 wxThePrintSetupData
->SetPrinterScaling(x
, y
);
2203 void wxSetPrinterTranslation(long x
, long y
)
2205 wxThePrintSetupData
->SetPrinterTranslation(x
, y
);
2208 // 1 = Preview, 2 = print to file, 3 = send to printer
2209 void wxSetPrinterMode(int mode
)
2211 wxThePrintSetupData
->SetPrinterMode(mode
);
2214 void wxSetAFMPath(const char *f
)
2216 wxThePrintSetupData
->SetAFMPath(f
);
2219 // Get current values
2220 char *wxGetPrinterCommand(void)
2222 return wxThePrintSetupData
->GetPrinterCommand();
2225 char *wxGetPrintPreviewCommand(void)
2227 return wxThePrintSetupData
->GetPrintPreviewCommand();
2230 char *wxGetPrinterOptions(void)
2232 return wxThePrintSetupData
->GetPrinterOptions();
2235 char *wxGetPrinterFile(void)
2237 return wxThePrintSetupData
->GetPrinterFile();
2240 int wxGetPrinterOrientation(void)
2242 return wxThePrintSetupData
->GetPrinterOrientation();
2245 void wxGetPrinterScaling(double* x
, double* y
)
2247 wxThePrintSetupData
->GetPrinterScaling(x
, y
);
2250 void wxGetPrinterTranslation(long *x
, long *y
)
2252 wxThePrintSetupData
->GetPrinterTranslation(x
, y
);
2255 int wxGetPrinterMode(void)
2257 return wxThePrintSetupData
->GetPrinterMode();
2260 char *wxGetAFMPath(void)
2262 return wxThePrintSetupData
->GetAFMPath();
2269 wxPrintSetupData::wxPrintSetupData(void)
2271 printerCommand
= (char *) NULL
;
2272 previewCommand
= (char *) NULL
;
2273 printerFlags
= (char *) NULL
;
2274 printerOrient
= PS_PORTRAIT
;
2275 printerScaleX
= (double)1.0;
2276 printerScaleY
= (double)1.0;
2277 printerTranslateX
= 0;
2278 printerTranslateY
= 0;
2279 // 1 = Preview, 2 = print to file, 3 = send to printer
2281 afmPath
= (char *) NULL
;
2282 paperName
= (char *) NULL
;
2284 printerFile
= (char *) NULL
;
2287 wxPrintSetupData::~wxPrintSetupData(void)
2290 delete[] printerCommand
;
2292 delete[] previewCommand
;
2294 delete[] printerFlags
;
2300 delete[] printerFile
;
2303 void wxPrintSetupData::SetPrinterCommand(const char *cmd
)
2305 if (cmd
== printerCommand
)
2309 delete[] printerCommand
;
2311 printerCommand
= copystring(cmd
);
2313 printerCommand
= (char *) NULL
;
2316 void wxPrintSetupData::SetPrintPreviewCommand(const char *cmd
)
2318 if (cmd
== previewCommand
)
2322 delete[] previewCommand
;
2324 previewCommand
= copystring(cmd
);
2326 previewCommand
= (char *) NULL
;
2329 void wxPrintSetupData::SetPaperName(const char *name
)
2331 if (name
== paperName
)
2337 paperName
= copystring(name
);
2339 paperName
= (char *) NULL
;
2342 void wxPrintSetupData::SetPrinterOptions(const char *flags
)
2344 if (printerFlags
== flags
)
2348 delete[] printerFlags
;
2350 printerFlags
= copystring(flags
);
2352 printerFlags
= (char *) NULL
;
2355 void wxPrintSetupData::SetPrinterFile(const char *f
)
2357 if (f
== printerFile
)
2361 delete[] printerFile
;
2363 printerFile
= copystring(f
);
2365 printerFile
= (char *) NULL
;
2368 void wxPrintSetupData::SetPrinterOrientation(int orient
)
2370 printerOrient
= orient
;
2373 void wxPrintSetupData::SetPrinterScaling(double x
, double y
)
2379 void wxPrintSetupData::SetPrinterTranslation(long x
, long y
)
2381 printerTranslateX
= x
;
2382 printerTranslateY
= y
;
2385 // 1 = Preview, 2 = print to file, 3 = send to printer
2386 void wxPrintSetupData::SetPrinterMode(int mode
)
2391 void wxPrintSetupData::SetAFMPath(const char *f
)
2399 afmPath
= copystring(f
);
2401 afmPath
= (char *) NULL
;
2404 void wxPrintSetupData::SetColour(bool col
)
2409 // Get current values
2410 char *wxPrintSetupData::GetPrinterCommand(void)
2412 return printerCommand
;
2415 char *wxPrintSetupData::GetPrintPreviewCommand(void)
2417 return previewCommand
;
2420 char *wxPrintSetupData::GetPrinterOptions(void)
2422 return printerFlags
;
2425 char *wxPrintSetupData::GetPrinterFile(void)
2430 char *wxPrintSetupData::GetPaperName(void)
2435 int wxPrintSetupData::GetPrinterOrientation(void)
2437 return printerOrient
;
2440 void wxPrintSetupData::GetPrinterScaling(double *x
, double *y
)
2446 void wxPrintSetupData::GetPrinterTranslation(long *x
, long *y
)
2448 *x
= printerTranslateX
;
2449 *y
= printerTranslateY
;
2452 int wxPrintSetupData::GetPrinterMode(void)
2457 char *wxPrintSetupData::GetAFMPath(void)
2462 bool wxPrintSetupData::GetColour(void)
2467 void wxPrintSetupData::operator=(wxPrintSetupData
& data
)
2469 SetPrinterCommand(data
.GetPrinterCommand());
2470 SetPrintPreviewCommand(data
.GetPrintPreviewCommand());
2471 SetPrinterOptions(data
.GetPrinterOptions());
2473 data
.GetPrinterTranslation(&x
, &y
);
2474 SetPrinterTranslation(x
, y
);
2477 data
.GetPrinterScaling(&x1
, &y1
);
2478 SetPrinterScaling(x1
, y1
);
2480 SetPrinterOrientation(data
.GetPrinterOrientation());
2481 SetPrinterMode(data
.GetPrinterMode());
2482 SetAFMPath(data
.GetAFMPath());
2483 SetPaperName(data
.GetPaperName());
2484 SetColour(data
.GetColour());
2487 void wxInitializePrintSetupData(bool init
)
2491 wxThePrintSetupData
= new wxPrintSetupData
;
2493 wxThePrintSetupData
->SetPrintPreviewCommand(PS_VIEWER_PROG
);
2494 wxThePrintSetupData
->SetPrinterOrientation(PS_PORTRAIT
);
2495 wxThePrintSetupData
->SetPrinterMode(PS_PREVIEW
);
2496 wxThePrintSetupData
->SetPaperName(_("A4 210 x 297 mm"));
2498 // Could have a .ini file to read in some defaults
2499 // - and/or use environment variables, e.g. WXWIN
2501 wxThePrintSetupData
->SetPrinterCommand("print");
2502 wxThePrintSetupData
->SetPrinterOptions("/nonotify/queue=psqueue");
2503 wxThePrintSetupData
->SetAFMPath("sys$ps_font_metrics:");
2506 wxThePrintSetupData
->SetPrinterCommand("print");
2507 wxThePrintSetupData
->SetAFMPath("c:\\windows\\system\\");
2508 wxThePrintSetupData
->SetPrinterOptions(NULL
);
2510 #if !defined(__VMS__) && !defined(__WXMSW__)
2511 wxThePrintSetupData
->SetPrinterCommand("lpr");
2512 wxThePrintSetupData
->SetPrinterOptions((char *) NULL
);
2513 wxThePrintSetupData
->SetAFMPath((char *) NULL
);
2518 if (wxThePrintSetupData
)
2519 delete wxThePrintSetupData
;
2520 wxThePrintSetupData
= (wxPrintSetupData
*) NULL
;
2525 * Paper size database for PostScript
2528 wxPrintPaperType::wxPrintPaperType(const char *name
, int wmm
, int hmm
, int wp
, int hp
)
2534 pageName
= copystring(name
);
2537 wxPrintPaperType::~wxPrintPaperType(void)
2542 wxPrintPaperDatabase::wxPrintPaperDatabase(void):wxList(wxKEY_STRING
)
2544 DeleteContents(TRUE
);
2547 wxPrintPaperDatabase::~wxPrintPaperDatabase(void)
2551 void wxPrintPaperDatabase::CreateDatabase(void)
2553 // Need correct values for page size in pixels.
2554 // Each unit is one 'point' = 1/72 of an inch.
2555 // NOTE: WE NEED ALSO TO MAKE ADJUSTMENTS WHEN TRANSLATING
2556 // in wxPostScriptDC code, so we can start from top left.
2557 // So access this database and translate by appropriate number
2558 // of points for this paper size. OR IS IT OK ALREADY?
2559 // Can't remember where the PostScript origin is by default.
2560 // Heck, someone will know how to make it hunky-dory...
2563 AddPaperType(_("A4 210 x 297 mm"), 210, 297, 595, 842);
2564 AddPaperType(_("A3 297 x 420 mm"), 297, 420, 842, 1191);
2565 AddPaperType(_("Letter 8 1/2 x 11 in"), 216, 279, 612, 791);
2566 AddPaperType(_("Legal 8 1/2 x 14 in"), 216, 356, 612, 1009);
2569 void wxPrintPaperDatabase::ClearDatabase(void)
2574 void wxPrintPaperDatabase::AddPaperType(const char *name
, int wmm
, int hmm
, int wp
, int hp
)
2576 Append(name
, new wxPrintPaperType(name
, wmm
, hmm
, wp
, hp
));
2579 wxPrintPaperType
*wxPrintPaperDatabase::FindPaperType(const char *name
)
2581 wxNode
*node
= Find(name
);
2583 return (wxPrintPaperType
*)node
->Data();
2585 return (wxPrintPaperType
*) NULL
;
2589 * Initialization/cleanup module
2592 bool wxPostScriptModule::OnInit()
2594 wxInitializePrintSetupData();
2595 wxThePrintPaperDatabase
= new wxPrintPaperDatabase
;
2596 wxThePrintPaperDatabase
->CreateDatabase();
2601 void wxPostScriptModule::OnExit()
2603 wxInitializePrintSetupData(FALSE
);
2604 delete wxThePrintPaperDatabase
;
2605 wxThePrintPaperDatabase
= NULL
;