]> git.saurik.com Git - wxWidgets.git/blob - src/generic/dcpsg.cpp
makefile typo
[wxWidgets.git] / src / generic / dcpsg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcpsg.cpp
3 // Purpose: Generic wxPostScriptDC implementation
4 // Author: Julian Smart, Robert Roebling, Markus Holzhem
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #pragma interface
15 #endif
16
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/setup.h"
25 #include "wx/defs.h"
26 #endif // WX_PRECOMP
27
28 #if wxUSE_PRINTING_ARCHITECTURE
29
30 #if wxUSE_POSTSCRIPT
31
32 #include "wx/window.h"
33 #include "wx/dcmemory.h"
34 #include "wx/utils.h"
35 #include "wx/intl.h"
36 #include "wx/filedlg.h"
37 #include "wx/app.h"
38 #include "wx/msgdlg.h"
39 #include "wx/image.h"
40 #include "wx/log.h"
41 #include "wx/generic/dcpsg.h"
42 #include "wx/generic/prntdlgg.h"
43 #include "wx/button.h"
44 #include "wx/stattext.h"
45 #include "wx/radiobox.h"
46 #include "wx/textctrl.h"
47 #include "wx/prntbase.h"
48 #include "wx/paper.h"
49
50 #include <math.h>
51
52 #ifdef __WXMSW__
53
54 #ifdef DrawText
55 #undef DrawText
56 #endif
57
58 #ifdef StartDoc
59 #undef StartDoc
60 #endif
61
62 #ifdef GetCharWidth
63 #undef GetCharWidth
64 #endif
65
66 #ifdef FindWindow
67 #undef FindWindow
68 #endif
69
70 #endif
71
72 //-----------------------------------------------------------------------------
73 // start and end of document/page
74 //-----------------------------------------------------------------------------
75
76 static const char *wxPostScriptHeaderEllipse = "\
77 /ellipsedict 8 dict def\n\
78 ellipsedict /mtrx matrix put\n\
79 /ellipse {\n\
80 ellipsedict begin\n\
81 /endangle exch def\n\
82 /startangle exch def\n\
83 /yrad exch def\n\
84 /xrad exch def\n\
85 /y exch def\n\
86 /x exch def\n\
87 /savematrix mtrx currentmatrix def\n\
88 x y translate\n\
89 xrad yrad scale\n\
90 0 0 1 startangle endangle arc\n\
91 savematrix setmatrix\n\
92 end\n\
93 } def\n\
94 ";
95
96 static const char *wxPostScriptHeaderEllipticArc= "\
97 /ellipticarcdict 8 dict def\n\
98 ellipticarcdict /mtrx matrix put\n\
99 /ellipticarc\n\
100 { ellipticarcdict begin\n\
101 /do_fill exch def\n\
102 /endangle exch def\n\
103 /startangle exch def\n\
104 /yrad exch def\n\
105 /xrad exch def \n\
106 /y exch def\n\
107 /x exch def\n\
108 /savematrix mtrx currentmatrix def\n\
109 x y translate\n\
110 xrad yrad scale\n\
111 do_fill { 0 0 moveto } if\n\
112 0 0 1 startangle endangle arc\n\
113 savematrix setmatrix\n\
114 do_fill { fill }{ stroke } ifelse\n\
115 end\n\
116 } def\n";
117
118 static const char *wxPostScriptHeaderSpline = "\
119 /DrawSplineSection {\n\
120 /y3 exch def\n\
121 /x3 exch def\n\
122 /y2 exch def\n\
123 /x2 exch def\n\
124 /y1 exch def\n\
125 /x1 exch def\n\
126 /xa x1 x2 x1 sub 0.666667 mul add def\n\
127 /ya y1 y2 y1 sub 0.666667 mul add def\n\
128 /xb x3 x2 x3 sub 0.666667 mul add def\n\
129 /yb y3 y2 y3 sub 0.666667 mul add def\n\
130 x1 y1 lineto\n\
131 xa ya xb yb x3 y3 curveto\n\
132 } def\n\
133 ";
134
135 static const char *wxPostScriptHeaderColourImage = "\
136 %% define 'colorimage' if it isn't defined\n\
137 %% ('colortogray' and 'mergeprocs' come from xwd2ps\n\
138 %% via xgrab)\n\
139 /colorimage where %% do we know about 'colorimage'?\n\
140 { pop } %% yes: pop off the 'dict' returned\n\
141 { %% no: define one\n\
142 /colortogray { %% define an RGB->I function\n\
143 /rgbdata exch store %% call input 'rgbdata'\n\
144 rgbdata length 3 idiv\n\
145 /npixls exch store\n\
146 /rgbindx 0 store\n\
147 0 1 npixls 1 sub {\n\
148 grays exch\n\
149 rgbdata rgbindx get 20 mul %% Red\n\
150 rgbdata rgbindx 1 add get 32 mul %% Green\n\
151 rgbdata rgbindx 2 add get 12 mul %% Blue\n\
152 add add 64 idiv %% I = .5G + .31R + .18B\n\
153 put\n\
154 /rgbindx rgbindx 3 add store\n\
155 } for\n\
156 grays 0 npixls getinterval\n\
157 } bind def\n\
158 \n\
159 %% Utility procedure for colorimage operator.\n\
160 %% This procedure takes two procedures off the\n\
161 %% stack and merges them into a single procedure.\n\
162 \n\
163 /mergeprocs { %% def\n\
164 dup length\n\
165 3 -1 roll\n\
166 dup\n\
167 length\n\
168 dup\n\
169 5 1 roll\n\
170 3 -1 roll\n\
171 add\n\
172 array cvx\n\
173 dup\n\
174 3 -1 roll\n\
175 0 exch\n\
176 putinterval\n\
177 dup\n\
178 4 2 roll\n\
179 putinterval\n\
180 } bind def\n\
181 \n\
182 /colorimage { %% def\n\
183 pop pop %% remove 'false 3' operands\n\
184 {colortogray} mergeprocs\n\
185 image\n\
186 } bind def\n\
187 } ifelse %% end of 'false' case\n\
188 ";
189
190 static char wxPostScriptHeaderReencodeISO1[] =
191 "\n/reencodeISO {\n"
192 "dup dup findfont dup length dict begin\n"
193 "{ 1 index /FID ne { def }{ pop pop } ifelse } forall\n"
194 "/Encoding ISOLatin1Encoding def\n"
195 "currentdict end definefont\n"
196 "} def\n"
197 "/ISOLatin1Encoding [\n"
198 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
199 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
200 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
201 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
202 "/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright\n"
203 "/parenleft/parenright/asterisk/plus/comma/minus/period/slash\n"
204 "/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon\n"
205 "/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N\n"
206 "/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright\n"
207 "/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m\n"
208 "/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde\n"
209 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
210 "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n"
211 "/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve\n"
212 "/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut\n";
213
214 static char wxPostScriptHeaderReencodeISO2[] =
215 "/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar\n"
216 "/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot\n"
217 "/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior\n"
218 "/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine\n"
219 "/guillemotright/onequarter/onehalf/threequarters/questiondown\n"
220 "/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla\n"
221 "/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex\n"
222 "/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis\n"
223 "/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute\n"
224 "/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis\n"
225 "/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave\n"
226 "/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex\n"
227 "/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis\n"
228 "/yacute/thorn/ydieresis\n"
229 "] def\n\n";
230
231 //-------------------------------------------------------------------------------
232 // wxPostScriptDC
233 //-------------------------------------------------------------------------------
234
235 wxPostScriptDC::wxPostScriptDC ()
236 {
237 m_pstream = (FILE*) NULL;
238
239 m_currentRed = 0;
240 m_currentGreen = 0;
241 m_currentBlue = 0;
242
243 m_pageNumber = 0;
244
245 m_clipping = FALSE;
246
247 m_underlinePosition = 0.0;
248 m_underlineThickness = 0.0;
249
250 m_signX = 1; // default x-axis left to right
251 m_signY = -1; // default y-axis bottom up -> top down
252
253 // Compatibility only
254 // HH: Doesn't seem to work for wxMSW...
255 #ifndef __WXMSW__
256 m_printData = * wxThePrintSetupData;
257 #endif
258 }
259
260 wxPostScriptDC::wxPostScriptDC (const wxString& file, bool interactive, wxWindow *parent)
261 {
262 m_pstream = (FILE*) NULL;
263
264 m_currentRed = 0;
265 m_currentGreen = 0;
266 m_currentBlue = 0;
267
268 m_pageNumber = 0;
269
270 m_clipping = FALSE;
271
272 m_underlinePosition = 0.0;
273 m_underlineThickness = 0.0;
274
275 m_signX = 1; // default x-axis left to right
276 m_signY = -1; // default y-axis bottom up -> top down
277
278 Create(file, interactive, parent);
279 }
280
281 bool wxPostScriptDC::Create(const wxString& file, bool interactive, wxWindow *parent)
282 {
283 m_isInteractive = interactive;
284
285 m_title = "";
286 m_printData.SetFilename(file);
287
288 #ifdef __WXMSW__
289 // Can only send to file in Windows
290 m_printData.SetPrintMode(wxPRINT_MODE_FILE);
291 #endif
292
293 if (m_isInteractive)
294 {
295 if ((m_ok = PrinterDialog (parent) ) == FALSE) return FALSE;
296 }
297 else
298 {
299 m_ok = TRUE;
300 }
301
302 return m_ok;
303 }
304
305 wxPostScriptDC::wxPostScriptDC (const wxPrintData& printData)
306 {
307 m_pstream = (FILE*) NULL;
308
309 m_currentRed = 0;
310 m_currentGreen = 0;
311 m_currentBlue = 0;
312
313 m_pageNumber = 0;
314
315 m_clipping = FALSE;
316
317 m_underlinePosition = 0.0;
318 m_underlineThickness = 0.0;
319
320 m_signX = 1; // default x-axis left to right
321 m_signY = -1; // default y-axis bottom up -> top down
322
323 m_printData = printData;
324
325 m_ok = TRUE;
326 }
327
328 wxPostScriptDC::~wxPostScriptDC ()
329 {
330 if (m_pstream)
331 {
332 fclose( m_pstream );
333 m_pstream = (FILE*) NULL;
334 }
335 }
336
337 bool wxPostScriptDC::Ok() const
338 {
339 return m_ok;
340 }
341
342 // This dialog is deprecated now: use wxGenericPrintDialog or the printing framework
343 bool wxPostScriptDC::PrinterDialog(wxWindow *parent)
344 {
345 wxPostScriptPrintDialog dialog( parent, _("Printer Settings"), wxPoint(150, 150), wxSize(400, 400),
346 wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL );
347 m_ok = (dialog.ShowModal () == wxID_OK);
348
349 if (!m_ok) return FALSE;
350
351 if ((m_printData.GetFilename() == "") &&
352 (m_printData.GetPrintMode() == wxPRINT_MODE_PREVIEW ||
353 m_printData.GetPrintMode() == wxPRINT_MODE_PRINTER))
354 {
355 // steve, 05.09.94
356 #ifdef __VMS__
357 m_printData.SetFilename("preview");
358 #else
359 // For PS_PRINTER action this depends on a Unix-style print spooler
360 // since the wx_printer_file can be destroyed during a session
361 // @@@ TODO: a Windows-style answer for non-Unix
362 wxChar userId[256];
363 wxGetUserId (userId, sizeof (userId) / sizeof (char));
364 wxChar tmp[256];
365 wxStrcpy (tmp, _T("/tmp/preview_"));
366 wxStrcat (tmp, userId);
367 m_printData.SetFilename(tmp);
368 #endif
369 wxChar tmp2[256];
370 wxStrcpy(tmp2, m_printData.GetFilename());
371 wxStrcat (tmp2, _T(".ps"));
372 m_printData.SetFilename(tmp2);
373 }
374 else if ((m_printData.GetFilename() == _T("")) && (m_printData.GetPrintMode() == wxPRINT_MODE_FILE))
375 {
376 wxString file = wxSaveFileSelector (_("PostScript"), _T("ps"));
377 if ( file.IsEmpty() )
378 {
379 m_ok = FALSE;
380 return FALSE;
381 }
382
383 m_printData.SetFilename(file);
384 m_ok = TRUE;
385 }
386
387 return m_ok;
388 }
389
390 void wxPostScriptDC::SetClippingRegion (long x, long y, long w, long h)
391 {
392 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
393
394 if (m_clipping) return;
395
396 wxDC::SetClippingRegion( x, y, w, h );
397
398 m_clipping = TRUE;
399 fprintf( m_pstream,
400 "gsave\n newpath\n"
401 "%ld %ld moveto\n"
402 "%ld %ld lineto\n"
403 "%ld %ld lineto\n"
404 "%ld %ld lineto\n"
405 "closepath clip newpath\n",
406 XLOG2DEV(x), YLOG2DEV(y),
407 XLOG2DEV(x+w), YLOG2DEV(y),
408 XLOG2DEV(x+w), YLOG2DEV(y+h),
409 XLOG2DEV(x), YLOG2DEV(y+h) );
410 }
411
412 void wxPostScriptDC::SetClippingRegion( const wxRegion &WXUNUSED(region) )
413 {
414 wxFAIL_MSG( _T("wxPostScriptDC::SetClippingRegion not implemented.") );
415 }
416
417 void wxPostScriptDC::DestroyClippingRegion()
418 {
419 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
420
421 wxDC::DestroyClippingRegion();
422
423 if (m_clipping)
424 {
425 m_clipping = FALSE;
426 fprintf( m_pstream, "grestore\n" );
427 }
428 }
429
430 void wxPostScriptDC::Clear()
431 {
432 wxFAIL_MSG( _T("wxPostScriptDC::Clear not implemented.") );
433 }
434
435 void wxPostScriptDC::DoFloodFill (long WXUNUSED(x), long WXUNUSED(y), const wxColour &WXUNUSED(col), int WXUNUSED(style))
436 {
437 wxFAIL_MSG( _T("wxPostScriptDC::FloodFill not implemented.") );
438 }
439
440 bool wxPostScriptDC::DoGetPixel (long WXUNUSED(x), long WXUNUSED(y), wxColour * WXUNUSED(col)) const
441 {
442 wxFAIL_MSG( _T("wxPostScriptDC::GetPixel not implemented.") );
443 return FALSE;
444 }
445
446 void wxPostScriptDC::DoCrossHair (long WXUNUSED(x), long WXUNUSED(y))
447 {
448 wxFAIL_MSG( _T("wxPostScriptDC::CrossHair not implemented.") );
449 }
450
451 void wxPostScriptDC::DoDrawLine (long x1, long y1, long x2, long y2)
452 {
453 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
454
455 if (m_pen.GetStyle() == wxTRANSPARENT) return;
456
457 SetPen( m_pen );
458
459 fprintf( m_pstream,
460 "newpath\n"
461 "%ld %ld moveto\n"
462 "%ld %ld lineto\n"
463 "stroke\n",
464 XLOG2DEV(x1), YLOG2DEV(y1),
465 XLOG2DEV(x2), YLOG2DEV (y2) );
466
467 CalcBoundingBox( x1, y1 );
468 CalcBoundingBox( x2, y2 );
469 }
470
471 #define RAD2DEG 57.29577951308
472
473 void wxPostScriptDC::DoDrawArc (long x1, long y1, long x2, long y2, long xc, long yc)
474 {
475 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
476
477 long dx = x1 - xc;
478 long dy = y1 - yc;
479 long radius = (long) sqrt(dx*dx+dy*dy);
480 double alpha1, alpha2;
481
482 if (x1 == x2 && y1 == y2)
483 {
484 alpha1 = 0.0;
485 alpha2 = 360.0;
486 }
487 else if (radius == 0.0)
488 {
489 alpha1 = alpha2 = 0.0;
490 }
491 else
492 {
493 alpha1 = (x1 - xc == 0) ?
494 (y1 - yc < 0) ? 90.0 : -90.0 :
495 -atan2(double(y1-yc), double(x1-xc)) * RAD2DEG;
496 alpha2 = (x2 - xc == 0) ?
497 (y2 - yc < 0) ? 90.0 : -90.0 :
498 -atan2(double(y2-yc), double(x2-xc)) * RAD2DEG;
499 }
500 while (alpha1 <= 0) alpha1 += 360;
501 while (alpha2 <= 0) alpha2 += 360; // adjust angles to be between
502 while (alpha1 > 360) alpha1 -= 360; // 0 and 360 degree
503 while (alpha2 > 360) alpha2 -= 360;
504
505 if (m_brush.GetStyle() != wxTRANSPARENT)
506 {
507 SetBrush( m_brush );
508
509 fprintf( m_pstream,
510 "newpath\n"
511 "%ld %ld %ld %ld %ld %ld ellipse\n"
512 "%ld %ld lineto\n"
513 "closepath\n"
514 "fill\n",
515 XLOG2DEV(xc), YLOG2DEV(yc), XLOG2DEVREL(radius), YLOG2DEVREL(radius), (long)alpha1, (long) alpha2,
516 XLOG2DEV(xc), YLOG2DEV(yc) );
517
518 CalcBoundingBox( xc-radius, yc-radius );
519 CalcBoundingBox( xc+radius, yc+radius );
520 }
521
522 if (m_pen.GetStyle() != wxTRANSPARENT)
523 {
524 SetPen( m_pen );
525
526 fprintf( m_pstream,
527 "newpath\n"
528 "%ld %ld %ld %ld %ld %ld ellipse\n"
529 "%ld %ld lineto\n"
530 "stroke\n"
531 "fill\n",
532 XLOG2DEV(xc), YLOG2DEV(yc), XLOG2DEVREL(radius), YLOG2DEVREL(radius), (long)alpha1, (long) alpha2,
533 XLOG2DEV(xc), YLOG2DEV(yc) );
534
535 CalcBoundingBox( xc-radius, yc-radius );
536 CalcBoundingBox( xc+radius, yc+radius );
537 }
538 }
539
540 void wxPostScriptDC::DoDrawEllipticArc(long x,long y,long w,long h,double sa,double ea)
541 {
542 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
543
544 if (sa>=360 || sa<=-360) sa=sa-int(sa/360)*360;
545 if (ea>=360 || ea<=-360) ea=ea-int(ea/360)*360;
546 if (sa<0) sa+=360;
547 if (ea<0) ea+=360;
548
549 if (sa==ea)
550 {
551 DrawEllipse(x,y,w,h);
552 return;
553 }
554
555 if (m_brush.GetStyle () != wxTRANSPARENT)
556 {
557 SetBrush( m_brush );
558
559 fprintf( m_pstream,
560 "newpath\n"
561 "%ld %ld %ld %ld %ld %ld true ellipticarc\n",
562 XLOG2DEV(x+w/2), YLOG2DEV(y+h/2), XLOG2DEVREL(w/2), YLOG2DEVREL(h/2), (long)sa, (long)ea );
563
564 CalcBoundingBox( x ,y );
565 CalcBoundingBox( x+w, y+h );
566 }
567
568 if (m_pen.GetStyle () != wxTRANSPARENT)
569 {
570 SetPen( m_pen );
571
572 fprintf( m_pstream,
573 "newpath\n"
574 "%ld %ld %ld %ld %ld %ld false ellipticarc\n",
575 XLOG2DEV(x+w/2), YLOG2DEV(y+h/2), XLOG2DEVREL(w/2), YLOG2DEVREL(h/2), (long)sa, (long)ea );
576
577 CalcBoundingBox( x ,y );
578 CalcBoundingBox( x+w, y+h );
579 }
580 }
581
582 void wxPostScriptDC::DoDrawPoint (long x, long y)
583 {
584 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
585
586 if (m_pen.GetStyle() == wxTRANSPARENT) return;
587
588 SetPen (m_pen);
589
590 fprintf( m_pstream,
591 "newpath\n"
592 "%ld %ld moveto\n"
593 "%ld %ld lineto\n"
594 "stroke\n",
595 XLOG2DEV(x), YLOG2DEV(y),
596 XLOG2DEV(x+1), YLOG2DEV(y) );
597
598 CalcBoundingBox( x, y );
599 }
600
601 void wxPostScriptDC::DoDrawPolygon (int n, wxPoint points[], long xoffset, long yoffset, int WXUNUSED(fillStyle))
602 {
603 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
604
605 if (n <= 0) return;
606
607 if (m_brush.GetStyle () != wxTRANSPARENT)
608 {
609 SetBrush( m_brush );
610
611 fprintf( m_pstream, "newpath\n" );
612
613 long xx = XLOG2DEV(points[0].x + xoffset);
614 long yy = YLOG2DEV(points[0].y + yoffset);
615
616 fprintf( m_pstream, "%ld %ld moveto\n", xx, yy );
617
618 CalcBoundingBox( points[0].x + xoffset, points[0].y + yoffset );
619
620 for (int i = 1; i < n; i++)
621 {
622 xx = XLOG2DEV(points[i].x + xoffset);
623 yy = YLOG2DEV(points[i].y + yoffset);
624
625 fprintf( m_pstream, "%ld %ld lineto\n", xx, yy );
626
627 CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset);
628 }
629
630 fprintf( m_pstream, "fill\n" );
631 }
632
633 if (m_pen.GetStyle () != wxTRANSPARENT)
634 {
635 SetPen( m_pen );
636
637 fprintf( m_pstream, "newpath\n" );
638
639 long xx = XLOG2DEV(points[0].x + xoffset);
640 long yy = YLOG2DEV(points[0].y + yoffset);
641
642 fprintf( m_pstream, "%ld %ld moveto\n", xx, yy );
643
644 CalcBoundingBox( points[0].x + xoffset, points[0].y + yoffset );
645
646 for (int i = 1; i < n; i++)
647 {
648 xx = XLOG2DEV(points[i].x + xoffset);
649 yy = YLOG2DEV(points[i].y + yoffset);
650
651 fprintf( m_pstream, "%ld %ld lineto\n", xx, yy );
652
653 CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset);
654 }
655
656 fprintf( m_pstream, "fill\n" );
657 }
658 }
659
660 void wxPostScriptDC::DoDrawLines (int n, wxPoint points[], long xoffset, long yoffset)
661 {
662 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
663
664 if (m_pen.GetStyle() == wxTRANSPARENT) return;
665
666 if (n <= 0) return;
667
668 SetPen (m_pen);
669
670 int i;
671 for ( i =0; i<n ; i++ )
672 {
673 CalcBoundingBox( XLOG2DEV(points[i].x+xoffset), YLOG2DEV(points[i].y+yoffset));
674 }
675
676 fprintf( m_pstream,
677 "newpath\n"
678 "%ld %ld moveto\n",
679 XLOG2DEV(points[0].x+xoffset), YLOG2DEV(points[0].y+yoffset) );
680
681 for (i = 1; i < n; i++)
682 {
683 fprintf( m_pstream,
684 "%ld %ld lineto\n",
685 XLOG2DEV(points[i].x+xoffset), YLOG2DEV(points[i].y+yoffset) );
686 }
687
688 fprintf( m_pstream, "stroke\n" );
689 }
690
691 void wxPostScriptDC::DoDrawRectangle (long x, long y, long width, long height)
692 {
693 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
694
695 if (m_brush.GetStyle () != wxTRANSPARENT)
696 {
697 SetBrush( m_brush );
698
699 fprintf( m_pstream,
700 "newpath\n"
701 "%ld %ld moveto\n"
702 "%ld %ld lineto\n"
703 "%ld %ld lineto\n"
704 "%ld %ld lineto\n"
705 "closepath\n"
706 "fill\n",
707 XLOG2DEV(x), YLOG2DEV(y),
708 XLOG2DEV(x + width), YLOG2DEV(y),
709 XLOG2DEV(x + width), YLOG2DEV(y + height),
710 XLOG2DEV(x), YLOG2DEV(y + height) );
711
712 CalcBoundingBox( x, y );
713 CalcBoundingBox( x + width, y + height );
714 }
715
716 if (m_pen.GetStyle () != wxTRANSPARENT)
717 {
718 SetPen (m_pen);
719
720 fprintf( m_pstream,
721 "newpath\n"
722 "%ld %ld moveto\n"
723 "%ld %ld lineto\n"
724 "%ld %ld lineto\n"
725 "%ld %ld lineto\n"
726 "closepath\n"
727 "stroke\n",
728 XLOG2DEV(x), YLOG2DEV(y),
729 XLOG2DEV(x + width), YLOG2DEV(y),
730 XLOG2DEV(x + width), YLOG2DEV(y + height),
731 XLOG2DEV(x), YLOG2DEV(y + height) );
732
733 CalcBoundingBox( x, y );
734 CalcBoundingBox( x + width, y + height );
735 }
736 }
737
738 void wxPostScriptDC::DoDrawRoundedRectangle (long x, long y, long width, long height, double radius)
739 {
740 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
741
742 if (radius < 0.0)
743 {
744 // Now, a negative radius is interpreted to mean
745 // 'the proportion of the smallest X or Y dimension'
746 double smallest = 0.0;
747 if (width < height)
748 smallest = width;
749 else
750 smallest = height;
751 radius = (-radius * smallest);
752 }
753
754 long rad = (long) radius;
755
756 if (m_brush.GetStyle () != wxTRANSPARENT)
757 {
758 SetBrush( m_brush );
759
760 /* Draw rectangle anticlockwise */
761 fprintf( m_pstream,
762 "newpath\n"
763 "%ld %ld %ld 90 180 arc\n"
764 "%ld %ld moveto\n"
765 "%ld %ld %ld 180 270 arc\n"
766 "%ld %ld lineto\n"
767 "%ld %ld %ld 270 0 arc\n"
768 "%ld %ld lineto\n"
769 "%ld %ld %ld 0 90 arc\n"
770 "%ld %ld lineto\n"
771 "closepath\n"
772 "fill\n",
773 XLOG2DEV(x + rad), YLOG2DEV(y + rad), XLOG2DEVREL(rad),
774 XLOG2DEV(x), YLOG2DEV(y + rad),
775 XLOG2DEV(x + rad), YLOG2DEV(y + height - rad), XLOG2DEVREL(rad),
776 XLOG2DEV(x + width - rad), YLOG2DEV(y + height),
777 XLOG2DEV(x + width - rad), YLOG2DEV(y + height - rad), XLOG2DEVREL(rad),
778 XLOG2DEV(x + width), YLOG2DEV(y + rad),
779 XLOG2DEV(x + width - rad), YLOG2DEV(y + rad), XLOG2DEVREL(rad),
780 XLOG2DEV(x + rad), YLOG2DEV(y) );
781
782 CalcBoundingBox( x, y );
783 CalcBoundingBox( x + width, y + height );
784 }
785
786 if (m_pen.GetStyle () != wxTRANSPARENT)
787 {
788 SetPen (m_pen);
789
790 /* Draw rectangle anticlockwise */
791 fprintf( m_pstream,
792 "newpath\n"
793 "%ld %ld %ld 90 180 arc\n"
794 "%ld %ld moveto\n"
795 "%ld %ld %ld 180 270 arc\n"
796 "%ld %ld lineto\n"
797 "%ld %ld %ld 270 0 arc\n"
798 "%ld %ld lineto\n"
799 "%ld %ld %ld 0 90 arc\n"
800 "%ld %ld lineto\n"
801 "closepath\n"
802 "stroke\n",
803 XLOG2DEV(x + rad), YLOG2DEV(y + rad), XLOG2DEVREL(rad),
804 XLOG2DEV(x), YLOG2DEV(y + rad),
805 XLOG2DEV(x + rad), YLOG2DEV(y + height - rad), XLOG2DEVREL(rad),
806 XLOG2DEV(x + width - rad), YLOG2DEV(y + height),
807 XLOG2DEV(x + width - rad), YLOG2DEV(y + height - rad), XLOG2DEVREL(rad),
808 XLOG2DEV(x + width), YLOG2DEV(y + rad),
809 XLOG2DEV(x + width - rad), YLOG2DEV(y + rad), XLOG2DEVREL(rad),
810 XLOG2DEV(x + rad), YLOG2DEV(y) );
811
812 CalcBoundingBox( x, y );
813 CalcBoundingBox( x + width, y + height );
814 }
815 }
816
817 void wxPostScriptDC::DoDrawEllipse (long x, long y, long width, long height)
818 {
819 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
820
821 if (m_brush.GetStyle () != wxTRANSPARENT)
822 {
823 SetBrush (m_brush);
824
825 fprintf( m_pstream,
826 "newpath\n"
827 "%ld %ld %ld %ld 0 360 ellipse\n"
828 "fill\n",
829 XLOG2DEV(x + width / 2), YLOG2DEV(y + height / 2),
830 XLOG2DEV(width / 2), YLOG2DEVREL(height / 2) );
831
832 CalcBoundingBox( x - width, y - height );
833 CalcBoundingBox( x + width, y + height );
834 }
835
836 if (m_pen.GetStyle () != wxTRANSPARENT)
837 {
838 SetPen (m_pen);
839
840 fprintf( m_pstream,
841 "newpath\n"
842 "%ld %ld %ld %ld 0 360 ellipse\n"
843 "stroke\n",
844 XLOG2DEV(x + width / 2), YLOG2DEV(y + height / 2),
845 XLOG2DEV(width / 2), YLOG2DEVREL(height / 2) );
846
847 CalcBoundingBox( x - width, y - height );
848 CalcBoundingBox( x + width, y + height );
849 }
850 }
851
852 void wxPostScriptDC::DoDrawIcon( const wxIcon& icon, long x, long y )
853 {
854 DrawBitmap( icon, x, y, TRUE );
855 }
856
857 /* this has to be char, not wxChar */
858 static char hexArray[] = "0123456789ABCDEF";
859 static void LocalDecToHex( int dec, char *buf )
860 {
861 int firstDigit = (int)(dec/16.0);
862 int secondDigit = (int)(dec - (firstDigit*16.0));
863 buf[0] = hexArray[firstDigit];
864 buf[1] = hexArray[secondDigit];
865 buf[2] = 0;
866 }
867
868 void wxPostScriptDC::DoDrawBitmap( const wxBitmap& bitmap, long x, long y, bool WXUNUSED(useMask) )
869 {
870 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
871
872 if (!bitmap.Ok()) return;
873
874 wxImage image( bitmap );
875
876 if (!image.Ok()) return;
877
878 long ww = XLOG2DEVREL(image.GetWidth());
879 long hh = YLOG2DEVREL(image.GetHeight());
880
881 image = image.Scale( ww, hh );
882
883 if (!image.Ok()) return;
884
885 long xx = XLOG2DEV(x);
886 long yy = YLOG2DEV(y + bitmap.GetHeight());
887
888 fprintf( m_pstream,
889 "/origstate save def\n"
890 "20 dict begin\n"
891 "/pix %ld string def\n"
892 "/grays %ld string def\n"
893 "/npixels 0 def\n"
894 "/rgbindx 0 def\n"
895 "%ld %ld translate\n"
896 "%ld %ld scale\n"
897 "%ld %ld 8\n"
898 "[%ld 0 0 %ld 0 %ld]\n"
899 "{currentfile pix readhexstring pop}\n"
900 "false 3 colorimage\n",
901 ww, ww, xx, yy, ww, hh, ww, hh, ww, -hh, hh );
902
903 for (int j = 0; j < hh; j++)
904 {
905 for (int i = 0; i < ww; i++)
906 {
907 char buffer[5];
908 LocalDecToHex( image.GetRed(i,j), buffer );
909 fprintf( m_pstream, buffer );
910 LocalDecToHex( image.GetGreen(i,j), buffer );
911 fprintf( m_pstream, buffer );
912 LocalDecToHex( image.GetBlue(i,j), buffer );
913 fprintf( m_pstream, buffer );
914 }
915 fprintf( m_pstream, "\n" );
916 }
917
918 fprintf( m_pstream, "end\n" );
919 fprintf( m_pstream, "origstate restore\n" );
920 }
921
922 void wxPostScriptDC::SetFont( const wxFont& font )
923 {
924 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
925
926 if (!font.Ok()) return;
927
928 m_font = font;
929
930 const char *name;
931 const char *style = "";
932 int Style = m_font.GetStyle();
933 int Weight = m_font.GetWeight();
934
935 switch (m_font.GetFamily())
936 {
937 case wxTELETYPE:
938 case wxMODERN:
939 name = "/Courier";
940 break;
941 case wxSWISS:
942 name = "/Helvetica";
943 break;
944 case wxROMAN:
945 // name = "/Times-Roman";
946 name = "/Times"; // Altered by EDZ
947 break;
948 case wxSCRIPT:
949 name = "/Zapf-Chancery-MediumItalic";
950 Style = wxNORMAL;
951 Weight = wxNORMAL;
952 break;
953 default:
954 case wxDEFAULT: // Sans Serif Font
955 name = "/LucidaSans";
956 }
957
958 if (Style == wxNORMAL && (Weight == wxNORMAL || Weight == wxLIGHT))
959 {
960 if (m_font.GetFamily () == wxROMAN)
961 style = "-Roman";
962 else
963 style = "";
964 }
965 else if (Style == wxNORMAL && Weight == wxBOLD)
966 {
967 style = "-Bold";
968 }
969 else if (Style == wxITALIC && (Weight == wxNORMAL || Weight == wxLIGHT))
970 {
971 if (m_font.GetFamily () == wxROMAN)
972 style = "-Italic";
973 else
974 style = "-Oblique";
975 }
976 else if (Style == wxITALIC && Weight == wxBOLD)
977 {
978 if (m_font.GetFamily () == wxROMAN)
979 style = "-BoldItalic";
980 else
981 style = "-BoldOblique";
982 }
983 else if (Style == wxSLANT && (Weight == wxNORMAL || Weight == wxLIGHT))
984 {
985 if (m_font.GetFamily () == wxROMAN)
986 style = "-Italic";
987 else
988 style = "-Oblique";
989 }
990 else if (Style == wxSLANT && Weight == wxBOLD)
991 {
992 if (m_font.GetFamily () == wxROMAN)
993 style = "-BoldItalic";
994 else
995 style = "-BoldOblique";
996 }
997 else
998 {
999 style = "";
1000 }
1001
1002 char buffer[100];
1003 strcpy( buffer, name );
1004 strcat( buffer, style );
1005
1006 fprintf( m_pstream, buffer );
1007 fprintf( m_pstream, " reencodeISO def\n" );
1008 fprintf( m_pstream, buffer );
1009 fprintf( m_pstream, " findfont\n" );
1010 #ifdef __WXMSW__
1011 fprintf( m_pstream, "%d scalefont setfont\n", YLOG2DEVREL(m_font.GetPointSize()) );
1012 #else
1013 fprintf( m_pstream, "%ld scalefont setfont\n", YLOG2DEVREL(m_font.GetPointSize()) );
1014 #endif
1015 }
1016
1017 void wxPostScriptDC::SetPen( const wxPen& pen )
1018 {
1019 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1020
1021 if (!pen.Ok()) return;
1022
1023 int oldStyle = m_pen.GetStyle();
1024
1025 m_pen = pen;
1026
1027 #ifdef __WXMSW__
1028 fprintf( m_pstream, "%d setlinewidth\n", XLOG2DEVREL(m_pen.GetWidth()) );
1029 #else
1030 fprintf( m_pstream, "%ld setlinewidth\n", XLOG2DEVREL(m_pen.GetWidth()) );
1031 #endif
1032 /*
1033 Line style - WRONG: 2nd arg is OFFSET
1034
1035 Here, I'm afraid you do not conceive meaning of parameters of 'setdash'
1036 operator correctly. You should look-up this in the Red Book: the 2nd parame-
1037 ter is not number of values in the array of the first one, but an offset
1038 into this description of the pattern. I mean a real *offset* not index
1039 into array. I.e. If the command is [3 4] 1 setdash is used, then there
1040 will be first black line *2* units long, then space 4 units, then the
1041 pattern of *3* units black, 4 units space will be repeated.
1042 */
1043
1044 static const char *dotted = "[2 5] 2";
1045 static const char *short_dashed = "[4 4] 2";
1046 static const char *long_dashed = "[4 8] 2";
1047 static const char *dotted_dashed = "[6 6 2 6] 4";
1048
1049 const char *psdash = (char *) NULL;
1050 switch (m_pen.GetStyle())
1051 {
1052 case wxDOT: psdash = dotted; break;
1053 case wxSHORT_DASH: psdash = short_dashed; break;
1054 case wxLONG_DASH: psdash = long_dashed; break;
1055 case wxDOT_DASH: psdash = dotted_dashed; break;
1056 case wxSOLID:
1057 case wxTRANSPARENT:
1058 default: psdash = "[] 0"; break;
1059 }
1060
1061 if (oldStyle != m_pen.GetStyle())
1062 {
1063 fprintf( m_pstream, psdash );
1064 fprintf( m_pstream," setdash\n" );
1065 }
1066
1067 // Line colour
1068 unsigned char red = m_pen.GetColour().Red();
1069 unsigned char blue = m_pen.GetColour().Blue();
1070 unsigned char green = m_pen.GetColour().Green();
1071
1072 if (!m_colour)
1073 {
1074 // Anything not white is black
1075 if (! (red == (unsigned char) 255 &&
1076 blue == (unsigned char) 255 &&
1077 green == (unsigned char) 255) )
1078 {
1079 red = (unsigned char) 0;
1080 green = (unsigned char) 0;
1081 blue = (unsigned char) 0;
1082 }
1083 // setgray here ?
1084 }
1085
1086 if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue))
1087 {
1088 double redPS = (double)(red) / 255.0;
1089 double bluePS = (double)(blue) / 255.0;
1090 double greenPS = (double)(green) / 255.0;
1091
1092 fprintf( m_pstream,
1093 "%.8f %.8f %.8f setrgbcolor\n",
1094 redPS, greenPS, bluePS );
1095
1096 m_currentRed = red;
1097 m_currentBlue = blue;
1098 m_currentGreen = green;
1099 }
1100 }
1101
1102 void wxPostScriptDC::SetBrush( const wxBrush& brush )
1103 {
1104 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1105
1106 if (!brush.Ok()) return;
1107
1108 m_brush = brush;
1109
1110 // Brush colour
1111 unsigned char red = m_brush.GetColour().Red();
1112 unsigned char blue = m_brush.GetColour().Blue();
1113 unsigned char green = m_brush.GetColour().Green();
1114
1115 if (!m_colour)
1116 {
1117 // Anything not white is black
1118 if (! (red == (unsigned char) 255 &&
1119 blue == (unsigned char) 255 &&
1120 green == (unsigned char) 255) )
1121 {
1122 red = (unsigned char) 0;
1123 green = (unsigned char) 0;
1124 blue = (unsigned char) 0;
1125 }
1126 // setgray here ?
1127 }
1128
1129 if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue))
1130 {
1131 double redPS = (double)(red) / 255.0;
1132 double bluePS = (double)(blue) / 255.0;
1133 double greenPS = (double)(green) / 255.0;
1134
1135 fprintf( m_pstream,
1136 "%.8f %.8f %.8f setrgbcolor\n",
1137 redPS, greenPS, bluePS );
1138
1139 m_currentRed = red;
1140 m_currentBlue = blue;
1141 m_currentGreen = green;
1142 }
1143 }
1144
1145 void wxPostScriptDC::DoDrawText( const wxString& text, long x, long y )
1146 {
1147 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1148
1149 SetFont( m_font );
1150
1151 if (m_textForegroundColour.Ok())
1152 {
1153 unsigned char red = m_textForegroundColour.Red();
1154 unsigned char blue = m_textForegroundColour.Blue();
1155 unsigned char green = m_textForegroundColour.Green();
1156
1157 if (!m_colour)
1158 {
1159 // Anything not white is black
1160 if (! (red == (unsigned char) 255 &&
1161 blue == (unsigned char) 255 &&
1162 green == (unsigned char) 255))
1163 {
1164 red = (unsigned char) 0;
1165 green = (unsigned char) 0;
1166 blue = (unsigned char) 0;
1167 }
1168 }
1169
1170 // maybe setgray here ?
1171 if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue))
1172 {
1173 double redPS = (double)(red) / 255.0;
1174 double bluePS = (double)(blue) / 255.0;
1175 double greenPS = (double)(green) / 255.0;
1176
1177 fprintf( m_pstream,
1178 "%.8f %.8f %.8f setrgbcolor\n",
1179 redPS, greenPS, bluePS );
1180
1181 m_currentRed = red;
1182 m_currentBlue = blue;
1183 m_currentGreen = green;
1184 }
1185 }
1186
1187 int size = m_font.GetPointSize();
1188
1189 long by = y + (long)floor( double(size) * 2.0 / 3.0 ); // approximate baseline
1190 fprintf( m_pstream, "%ld %ld moveto\n", XLOG2DEV(x), YLOG2DEV(by) );
1191
1192 /* I don't know how to write char to a stream, so I use a mini string */
1193 char tmpbuf[2];
1194 tmpbuf[1] = 0;
1195
1196 fprintf( m_pstream, "(" );
1197 const wxWX2MBbuf textbuf = text.mb_str();
1198 int len = strlen(textbuf);
1199 int i;
1200 for (i = 0; i < len; i++)
1201 {
1202 int c = (unsigned char) textbuf[i];
1203 if (c == ')' || c == '(' || c == '\\')
1204 {
1205 /* Cope with special characters */
1206 fprintf( m_pstream, "\\" );
1207 tmpbuf[0] = (char) c;
1208 fprintf( m_pstream, tmpbuf );
1209 }
1210 else if ( c >= 128 )
1211 {
1212 /* Cope with character codes > 127 */
1213 fprintf(m_pstream, "\\%o", c);
1214 }
1215 else
1216 {
1217 tmpbuf[0] = (char) c;
1218 fprintf( m_pstream, tmpbuf );
1219 }
1220 }
1221
1222 fprintf( m_pstream, ") show\n" );
1223
1224 if (m_font.GetUnderlined())
1225 {
1226 long uy = (long)(y + size - m_underlinePosition);
1227 long w, h;
1228 GetTextExtent(text, &w, &h);
1229
1230 fprintf( m_pstream,
1231 "gsave\n"
1232 "%ld %ld moveto\n"
1233 "%ld setlinewidth\n"
1234 "%ld %ld lineto\n"
1235 "stroke\n"
1236 "grestore\n",
1237 XLOG2DEV(x), YLOG2DEV(uy),
1238 (long)m_underlineThickness,
1239 XLOG2DEV(x + w), YLOG2DEV(uy) );
1240 }
1241
1242 CalcBoundingBox( x, y );
1243 CalcBoundingBox( x + size * text.Length() * 2/3 , y );
1244 }
1245
1246
1247 void wxPostScriptDC::SetBackground (const wxBrush& brush)
1248 {
1249 m_backgroundBrush = brush;
1250 }
1251
1252 void wxPostScriptDC::SetLogicalFunction (int WXUNUSED(function))
1253 {
1254 wxFAIL_MSG( _T("wxPostScriptDC::SetLogicalFunction not implemented.") );
1255 }
1256
1257 void wxPostScriptDC::DoDrawSpline( wxList *points )
1258 {
1259 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1260
1261 SetPen( m_pen );
1262
1263 double a, b, c, d, x1, y1, x2, y2, x3, y3;
1264 wxPoint *p, *q;
1265
1266 wxNode *node = points->First();
1267 p = (wxPoint *)node->Data();
1268 x1 = p->x;
1269 y1 = p->y;
1270
1271 node = node->Next();
1272 p = (wxPoint *)node->Data();
1273 c = p->x;
1274 d = p->y;
1275 x3 = a = (double)(x1 + c) / 2;
1276 y3 = b = (double)(y1 + d) / 2;
1277
1278 fprintf( m_pstream,
1279 "newpath\n"
1280 "%ld %ld moveto\n"
1281 "%ld %ld lineto\n",
1282 XLOG2DEV((long)x1), YLOG2DEV((long)y1),
1283 XLOG2DEV((long)x3), YLOG2DEV((long)y3) );
1284
1285 CalcBoundingBox( (long)x1, (long)y1 );
1286 CalcBoundingBox( (long)x3, (long)y3 );
1287
1288 while ((node = node->Next()) != NULL)
1289 {
1290 q = (wxPoint *)node->Data();
1291
1292 x1 = x3;
1293 y1 = y3;
1294 x2 = c;
1295 y2 = d;
1296 c = q->x;
1297 d = q->y;
1298 x3 = (double)(x2 + c) / 2;
1299 y3 = (double)(y2 + d) / 2;
1300
1301 fprintf( m_pstream,
1302 "%ld %ld %ld %ld %ld %ld DrawSplineSection\n",
1303 XLOG2DEV((long)x1), YLOG2DEV((long)y1),
1304 XLOG2DEV((long)x2), YLOG2DEV((long)y2),
1305 XLOG2DEV((long)x3), YLOG2DEV((long)y3) );
1306
1307 CalcBoundingBox( (long)x1, (long)y1 );
1308 CalcBoundingBox( (long)x3, (long)y3 );
1309 }
1310
1311 /*
1312 At this point, (x2,y2) and (c,d) are the position of the
1313 next-to-last and last point respectively, in the point list
1314 */
1315
1316 fprintf( m_pstream,
1317 "%ld %ld lineto\n"
1318 "stroke\n",
1319 XLOG2DEV((long)c), YLOG2DEV((long)d) );
1320 }
1321
1322 long wxPostScriptDC::GetCharWidth() const
1323 {
1324 // Chris Breeze: reasonable approximation using wxMODERN/Courier
1325 return (long) (GetCharHeight() * 72.0 / 120.0);
1326 }
1327
1328
1329 void wxPostScriptDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
1330 {
1331 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1332
1333 m_signX = (xLeftRight ? 1 : -1);
1334 m_signY = (yBottomUp ? 1 : -1);
1335
1336 // FIXME there is no such function in MSW
1337 #ifndef __WXMSW__
1338 ComputeScaleAndOrigin();
1339 #endif
1340 }
1341
1342 void wxPostScriptDC::SetDeviceOrigin( long x, long y )
1343 {
1344 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1345
1346 int h = 0;
1347 int w = 0;
1348 GetSize( &w, &h );
1349
1350 wxDC::SetDeviceOrigin( x, h-y );
1351 }
1352
1353 void wxPostScriptDC::DoGetSize(int* width, int* height) const
1354 {
1355 wxPaperSize id = m_printData.GetPaperId();
1356
1357 wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(id);
1358
1359 if (!paper) paper = wxThePrintPaperDatabase->FindPaperType(wxPAPER_A4);
1360
1361 int w = 595;
1362 int h = 842;
1363 if (paper)
1364 {
1365 w = paper->GetSizeDeviceUnits().x;
1366 h = paper->GetSizeDeviceUnits().y;
1367 }
1368
1369 if (m_printData.GetOrientation() == wxLANDSCAPE)
1370 {
1371 int tmp = w;
1372 w = h;
1373 h = tmp;
1374 }
1375
1376 if (width) *width = w;
1377 if (height) *height = h;
1378 }
1379
1380 void wxPostScriptDC::DoGetSizeMM(int *width, int *height) const
1381 {
1382 wxPaperSize id = m_printData.GetPaperId();
1383
1384 wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(id);
1385
1386 if (!paper) paper = wxThePrintPaperDatabase->FindPaperType(wxPAPER_A4);
1387
1388 int w = 210;
1389 int h = 297;
1390 if (paper)
1391 {
1392 w = paper->GetWidth() / 10;
1393 h = paper->GetHeight() / 10;
1394 }
1395
1396 if (m_printData.GetOrientation() == wxLANDSCAPE)
1397 {
1398 int tmp = w;
1399 w = h;
1400 h = tmp;
1401 }
1402
1403 if (width) *width = w;
1404 if (height) *height = h;
1405 }
1406
1407 // Resolution in pixels per logical inch
1408 wxSize wxPostScriptDC::GetPPI(void) const
1409 {
1410 return wxSize(72, 72);
1411 }
1412
1413
1414 bool wxPostScriptDC::StartDoc( const wxString& message )
1415 {
1416 wxCHECK_MSG( m_ok, FALSE, _T("invalid postscript dc") );
1417
1418 if (m_printData.GetFilename() == "")
1419 {
1420 wxString filename = wxGetTempFileName("ps");
1421 m_printData.SetFilename(filename);
1422 }
1423
1424 m_pstream = fopen( m_printData.GetFilename().fn_str(), "w+" );
1425
1426 if (!m_pstream)
1427 {
1428 wxMessageBox( _("Cannot open file for PostScript printing!"), _("Error"), wxOK );
1429 m_ok = FALSE;
1430 return FALSE;
1431 }
1432
1433 m_ok = TRUE;
1434
1435 fprintf( m_pstream, "%%%%BeginProlog\n" );
1436 fprintf( m_pstream, wxPostScriptHeaderEllipse );
1437 fprintf( m_pstream, wxPostScriptHeaderEllipticArc );
1438 fprintf( m_pstream, wxPostScriptHeaderColourImage );
1439 fprintf( m_pstream, wxPostScriptHeaderReencodeISO1 );
1440 fprintf( m_pstream, wxPostScriptHeaderReencodeISO2 );
1441 if (wxPostScriptHeaderSpline)
1442 fprintf( m_pstream, wxPostScriptHeaderSpline );
1443 fprintf( m_pstream, "%%%%EndProlog\n" );
1444
1445 SetBrush( *wxBLACK_BRUSH );
1446 SetPen( *wxBLACK_PEN );
1447 SetBackground( *wxWHITE_BRUSH );
1448 SetTextForeground( *wxBLACK );
1449
1450 // set origin according to paper size
1451 SetDeviceOrigin( 0,0 );
1452
1453 wxPageNumber = 1;
1454 m_pageNumber = 1;
1455 m_title = message;
1456 return TRUE;
1457 }
1458
1459 void wxPostScriptDC::EndDoc ()
1460 {
1461 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1462
1463 if (m_clipping)
1464 {
1465 m_clipping = FALSE;
1466 fprintf( m_pstream, "grestore\n" );
1467 }
1468
1469 fclose( m_pstream );
1470 m_pstream = (FILE *) NULL;
1471
1472 wxChar *header_file = wxGetTempFileName("ps");
1473
1474 m_pstream = fopen( wxConvFile.cWX2MB(header_file) , "w+" );
1475
1476 fprintf( m_pstream, "%%!PS-Adobe-2.0\n" ); // PostScript magic strings
1477 fprintf( m_pstream, "%%%%Title: %s\n", (const char *)m_title.mb_str() );
1478 fprintf( m_pstream, "%%%%Creator: %s\n", (const char*)wxConvCurrent->cWX2MB(wxTheApp->argv[0]) );
1479 fprintf( m_pstream, "%%%%CreationDate: %s\n", (const char *)wxNow().mb_str() );
1480
1481 wxChar userID[256];
1482 if ( wxGetEmailAddress(userID, sizeof(userID)) )
1483 {
1484 fprintf( m_pstream, "%%%%For: %s ", MBSTRINGCAST wxConvCurrent->cWX2MB(userID) );
1485 wxChar userName[245];
1486 if (wxGetUserName(userName, sizeof(userName)))
1487 fprintf( m_pstream, " (%s)", MBSTRINGCAST wxConvCurrent->cWX2MB(userName) );
1488 fprintf( m_pstream, "\n" );
1489 }
1490 else if ( wxGetUserName(userID, sizeof(userID)) )
1491 {
1492 fprintf( m_pstream, "%%%%For: %s\n", MBSTRINGCAST wxConvCurrent->cWX2MB(userID) );;
1493 }
1494
1495 // THE FOLLOWING HAS BEEN CONTRIBUTED BY Andy Fyfe <andy@hyperparallel.com>
1496
1497 long wx_printer_translate_x, wx_printer_translate_y;
1498 double wx_printer_scale_x, wx_printer_scale_y;
1499
1500 wx_printer_translate_x = m_printData.GetPrinterTranslateX();
1501 wx_printer_translate_y = m_printData.GetPrinterTranslateY();
1502
1503 wx_printer_scale_x = m_printData.GetPrinterScaleX();
1504 wx_printer_scale_y = m_printData.GetPrinterScaleY();
1505
1506 if (m_printData.GetOrientation() == wxLANDSCAPE)
1507 fprintf( m_pstream, "%%%%Orientation: Landscape\n" );
1508 else
1509 fprintf( m_pstream, "%%%%Orientation: Portrait\n" );
1510
1511 // Compute the bounding box. Note that it is in the default user
1512 // coordinate system, thus we have to convert the values.
1513 long llx = (long) ((XLOG2DEV(m_minX)+wx_printer_translate_x)*wx_printer_scale_x);
1514 long lly = (long) ((YLOG2DEV(m_minY)+wx_printer_translate_y)*wx_printer_scale_y);
1515 long urx = (long) ((XLOG2DEV(m_maxX)+wx_printer_translate_x)*wx_printer_scale_x);
1516 long ury = (long) ((YLOG2DEV(m_maxY)+wx_printer_translate_y)*wx_printer_scale_y);
1517
1518 // If we're landscape, our sense of "x" and "y" is reversed.
1519 if (m_printData.GetOrientation() == wxLANDSCAPE)
1520 {
1521 long tmp;
1522 tmp = llx; llx = lly; lly = tmp;
1523 tmp = urx; urx = ury; ury = tmp;
1524
1525 // We need either the two lines that follow, or we need to subtract
1526 // min_x from real_translate_y, which is commented out below.
1527 llx = llx - (long)(m_minX*wx_printer_scale_y);
1528 urx = urx - (long)(m_minX*wx_printer_scale_y);
1529 }
1530
1531 // The Adobe specifications call for integers; we round as to make
1532 // the bounding larger.
1533 fprintf( m_pstream,
1534 "%%%%BoundingBox: %ld %ld %ld %ld\n",
1535 (long)floor((double)llx), (long)floor((double)lly),
1536 (long)ceil((double)urx), (long)ceil((double)ury) );
1537 fprintf( m_pstream, "%%%%Pages: %d\n", (wxPageNumber - 1) );
1538 fprintf( m_pstream, "%%%%EndComments\n\n" );
1539
1540 // To check the correctness of the bounding box, postscript commands
1541 // to draw a box corresponding to the bounding box are generated below.
1542 // But since we typically don't want to print such a box, the postscript
1543 // commands are generated within comments. These lines appear before any
1544 // adjustment of scale, rotation, or translation, and hence are in the
1545 // default user coordinates.
1546 fprintf( m_pstream, "%% newpath\n" );
1547 fprintf( m_pstream, "%% %ld %ld moveto\n", llx, lly );
1548 fprintf( m_pstream, "%% %ld %ld lineto\n", urx, lly );
1549 fprintf( m_pstream, "%% %ld %ld lineto\n", urx, ury );
1550 fprintf( m_pstream, "%% %ld %ld lineto closepath stroke\n", llx, ury );
1551
1552 fclose( m_pstream );
1553 m_pstream = (FILE*) NULL;
1554
1555 wxChar *tmp_file = wxGetTempFileName("ps");
1556
1557 // Paste header Before wx_printer_file
1558 wxConcatFiles (header_file, m_printData.GetFilename(), tmp_file );
1559 wxRemoveFile( header_file );
1560 wxRemoveFile( m_printData.GetFilename() );
1561 wxRenameFile( tmp_file, m_printData.GetFilename() );
1562
1563 #if defined(__X__) || defined(__WXGTK__)
1564 if (m_ok)
1565 {
1566 wxString previewCommand(m_printData.GetPreviewCommand());
1567 wxString printerCommand(m_printData.GetPrinterCommand());
1568 wxString printerOptions(m_printData.GetPrinterOptions());
1569 wxString filename(m_printData.GetFilename());
1570
1571 switch (m_printData.GetPrintMode())
1572 {
1573 case wxPRINT_MODE_PREVIEW:
1574 {
1575 wxChar *argv[3];
1576 argv[0] = WXSTRINGCAST previewCommand;
1577 argv[1] = WXSTRINGCAST filename;
1578 argv[2] = (wxChar*) NULL;
1579 wxExecute( argv, TRUE );
1580 wxRemoveFile( m_printData.GetFilename() );
1581 }
1582 break;
1583 case wxPRINT_MODE_PRINTER:
1584 {
1585 wxChar *argv[4];
1586 int argc = 0;
1587 argv[argc++] = WXSTRINGCAST printerCommand;
1588
1589 // !SM! If we simply assign to argv[1] here, if printer options
1590 // are blank, we get an annoying and confusing message from lpr.
1591 wxChar *opts = WXSTRINGCAST printerOptions;
1592 if (opts && *opts)
1593 argv[argc++] = opts;
1594
1595 argv[argc++] = WXSTRINGCAST filename;
1596 argv[argc++] = (wxChar *) NULL;
1597 wxExecute( argv, TRUE );
1598 wxRemoveFile( filename );
1599 }
1600 break;
1601 case wxPRINT_MODE_FILE:
1602 case wxPRINT_MODE_NONE:
1603 break;
1604 }
1605 }
1606 #endif
1607 }
1608
1609 void wxPostScriptDC::StartPage()
1610 {
1611 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1612
1613 fprintf( m_pstream, "%%%%Page: %d\n", wxPageNumber++ );
1614
1615 // What is this one supposed to do? RR.
1616 // *m_pstream << "matrix currentmatrix\n";
1617
1618 // Added by Chris Breeze
1619
1620 // Each page starts with an "initgraphics" which resets the
1621 // transformation and so we need to reset the origin
1622 // (and rotate the page for landscape printing)
1623
1624 // Output scaling
1625 long translate_x, translate_y;
1626 double scale_x, scale_y;
1627
1628 translate_x = m_printData.GetPrinterTranslateX();
1629 translate_y = m_printData.GetPrinterTranslateY();
1630
1631 scale_x = m_printData.GetPrinterScaleX();
1632 scale_y = m_printData.GetPrinterScaleY();
1633
1634 if (m_printData.GetOrientation() == wxLANDSCAPE)
1635 {
1636 int h;
1637 GetSize( (int*) NULL, &h );
1638 translate_y -= h;
1639 fprintf( m_pstream, "90 rotate\n" );
1640
1641 // I copied this one from a PostScript tutorial, but to no avail. RR.
1642 // fprintf( m_pstream, "90 rotate llx neg ury nef translate\n" );
1643 }
1644
1645 fprintf( m_pstream, "%.8f %.8f scale\n", scale_x, scale_y );
1646 fprintf( m_pstream, "%ld %ld translate\n", translate_x, translate_y );
1647 }
1648
1649 void wxPostScriptDC::EndPage ()
1650 {
1651 wxCHECK_RET( m_ok && m_pstream, _T("invalid postscript dc") );
1652
1653 fprintf( m_pstream, "showpage\n" );
1654 }
1655
1656 bool wxPostScriptDC::DoBlit( long xdest, long ydest,
1657 long fwidth, long fheight,
1658 wxDC *source,
1659 long xsrc, long ysrc,
1660 int rop, bool WXUNUSED(useMask) )
1661 {
1662 wxCHECK_MSG( m_ok && m_pstream, FALSE, _T("invalid postscript dc") );
1663
1664 wxCHECK_MSG( source, FALSE, _T("invalid source dc") );
1665
1666 /* blit into a bitmap */
1667 wxBitmap bitmap( (int)fwidth, (int)fheight );
1668 wxMemoryDC memDC;
1669 memDC.SelectObject(bitmap);
1670 memDC.Blit(0, 0, fwidth, fheight, source, xsrc, ysrc, rop); /* TODO: Blit transparently? */
1671 memDC.SelectObject(wxNullBitmap);
1672
1673 /* draw bitmap. scaling and positioning is done there */
1674 DrawBitmap( bitmap, xdest, ydest );
1675
1676 return TRUE;
1677 }
1678
1679 long wxPostScriptDC::GetCharHeight() const
1680 {
1681 if (m_font.Ok())
1682 return m_font.GetPointSize();
1683 else
1684 return 12;
1685 }
1686
1687 void wxPostScriptDC::GetTextExtent( const wxString& string, long *x, long *y,
1688 long *descent, long *externalLeading, wxFont *theFont ) const
1689 {
1690 wxFont *fontToUse = theFont;
1691
1692 if (!fontToUse) fontToUse = (wxFont*) &m_font;
1693
1694 wxCHECK_RET( fontToUse, _T("GetTextExtent: no font defined") );
1695 wxCHECK_RET( x, _T("GetTextExtent: x == NULL") );
1696 wxCHECK_RET( y, _T("GetTextExtent: y == NULL") );
1697
1698 const wxWX2MBbuf strbuf = string.mb_str();
1699
1700 #if !USE_AFM_FOR_POSTSCRIPT
1701 /* Provide a VERY rough estimate (avoid using it).
1702 * Produces accurate results for mono-spaced font
1703 * such as Courier (aka wxMODERN) */
1704
1705 int height = 12;
1706 if (fontToUse)
1707 {
1708 height = fontToUse->GetPointSize();
1709 }
1710 *x = strlen (strbuf) * height * 72 / 120;
1711 *y = (long) (height * 1.32); /* allow for descender */
1712 if (descent) *descent = 0;
1713 if (externalLeading) *externalLeading = 0;
1714 #else
1715
1716 /* method for calculating string widths in postscript:
1717 / read in the AFM (adobe font metrics) file for the
1718 / actual font, parse it and extract the character widths
1719 / and also the descender. this may be improved, but for now
1720 / it works well. the AFM file is only read in if the
1721 / font is changed. this may be chached in the future.
1722 / calls to GetTextExtent with the font unchanged are rather
1723 / efficient!!!
1724 /
1725 / for each font and style used there is an AFM file necessary.
1726 / currently i have only files for the roman font family.
1727 / I try to get files for the other ones!
1728 /
1729 / CAVE: the size of the string is currently always calculated
1730 / in 'points' (1/72 of an inch). this should later on be
1731 / changed to depend on the mapping mode.
1732 / CAVE: the path to the AFM files must be set before calling this
1733 / function. this is usually done by a call like the following:
1734 / wxSetAFMPath("d:\\wxw161\\afm\\");
1735 /
1736 / example:
1737 /
1738 / wxPostScriptDC dc(NULL, TRUE);
1739 / if (dc.Ok()){
1740 / wxSetAFMPath("d:\\wxw161\\afm\\");
1741 / dc.StartDoc("Test");
1742 / dc.StartPage();
1743 / long w,h;
1744 / dc.SetFont(new wxFont(10, wxROMAN, wxNORMAL, wxNORMAL));
1745 / dc.GetTextExtent("Hallo",&w,&h);
1746 / dc.EndPage();
1747 / dc.EndDoc();
1748 / }
1749 /
1750 / by steve (stefan.hammes@urz.uni-heidelberg.de)
1751 / created: 10.09.94
1752 / updated: 14.05.95 */
1753
1754 /* these static vars are for storing the state between calls */
1755 static int lastFamily= INT_MIN;
1756 static int lastSize= INT_MIN;
1757 static int lastStyle= INT_MIN;
1758 static int lastWeight= INT_MIN;
1759 static int lastDescender = INT_MIN;
1760 static int lastWidths[256]; /* widths of the characters */
1761
1762 /* get actual parameters */
1763 const int Family = fontToUse->GetFamily();
1764 const int Size = fontToUse->GetPointSize();
1765 const int Style = fontToUse->GetStyle();
1766 const int Weight = fontToUse->GetWeight();
1767
1768 /* if we have another font, read the font-metrics */
1769 if (Family!=lastFamily || Size!=lastSize || Style!=lastStyle || Weight!=lastWeight)
1770 {
1771 /* store actual values */
1772 lastFamily = Family;
1773 lastSize = Size;
1774 lastStyle = Style;
1775 lastWeight = Weight;
1776
1777 char *name = (char*) NULL;
1778
1779 switch (Family)
1780 {
1781 case wxMODERN:
1782 {
1783 if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "CourBoO";
1784 else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "CourBo";
1785 else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "Cour0";
1786 else name = "Cour";
1787 }
1788 break;
1789 case wxROMAN:
1790 {
1791 if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "TimesBoO";
1792 else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "TimesBo";
1793 else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "TimesO";
1794 else if name = "TimesRo"; /* no typo */
1795 }
1796 break;
1797 default:
1798 {
1799 if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "HelvBoO";
1800 else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "HelvBo";
1801 else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "Helv0";
1802 else name = "Helv";
1803 }
1804 break;
1805 }
1806
1807 /* get the directory of the AFM files */
1808 char afmName[256];
1809 afmName[0] = 0;
1810
1811 if (!m_printData.GetFontMetricPath().IsEmpty())
1812 {
1813 strcpy( afmName, m_printData.GetFontMetricPath().fn_str() )
1814 }
1815
1816 /* 2. open and process the file
1817 / a short explanation of the AFM format:
1818 / we have for each character a line, which gives its size
1819 / e.g.:
1820 /
1821 / C 63 ; WX 444 ; N question ; B 49 -14 395 676 ;
1822 /
1823 / that means, we have a character with ascii code 63, and width
1824 / (444/1000 * fontSize) points.
1825 / the other data is ignored for now!
1826 /
1827 / when the font has changed, we read in the right AFM file and store the
1828 / character widths in an array, which is processed below (see point 3.). */
1829
1830 /* new elements JC Sun Aug 25 23:21:44 MET DST 1996 */
1831
1832 strcat(afmName,name);
1833 strcat(afmName,".afm");
1834 FILE *afmFile = fopen(afmName,"r");
1835
1836 #ifdef __UNIX__
1837 if (afmFile==NULL)
1838 {
1839 strcpy( afmName, "/usr/local/share/wx/gs_afm/" );
1840 strcat(afmName,name);
1841 strcat(afmName,".afm");
1842 FILE *afmFile = fopen(afmName,"r");
1843 }
1844
1845 if (afmFile==NULL)
1846 {
1847 strcpy( afmName, "/usr/share/wx/gs_afm/" );
1848 strcat(afmName,name);
1849 strcat(afmName,".afm");
1850 FILE *afmFile = fopen(afmName,"r");
1851 }
1852 #endif
1853
1854 if (afmFile==NULL)
1855 {
1856 wxLogDebug( "GetTextExtent: can't open AFM file '%s'\n", afmName );
1857 wxLogDebug( " using approximate values\n");
1858 for (int i=0; i<256; i++) lastWidths[i] = 500; /* an approximate value */
1859 lastDescender = -150; /* dito. */
1860 }
1861 else
1862 {
1863 /* init the widths array */
1864 for(int i=0; i<256; i++) lastWidths[i] = INT_MIN;
1865 /* some variables for holding parts of a line */
1866 char cString[10],semiString[10],WXString[10],descString[20];
1867 char upString[30], utString[30], encString[50];
1868 char line[256];
1869 int ascii,cWidth;
1870 /* read in the file and parse it */
1871 while(fgets(line,sizeof(line),afmFile)!=NULL)
1872 {
1873 /* A.) check for descender definition */
1874 if (strncmp(line,"Descender",9)==0)
1875 {
1876 if ((sscanf(line,"%s%d",descString,&lastDescender)!=2) ||
1877 (strcmp(descString,"Descender")!=0))
1878 {
1879 wxLogDebug( "AFM-file '%s': line '%s' has error (bad descender)\n", afmName,line );
1880 }
1881 }
1882 /* JC 1.) check for UnderlinePosition */
1883 else if(strncmp(line,"UnderlinePosition",17)==0)
1884 {
1885 if ((sscanf(line,"%s%lf",upString,&UnderlinePosition)!=2) ||
1886 (strcmp(upString,"UnderlinePosition")!=0))
1887 {
1888 wxLogDebug( "AFM-file '%s': line '%s' has error (bad UnderlinePosition)\n", afmName, line );
1889 }
1890 }
1891 /* JC 2.) check for UnderlineThickness */
1892 else if(strncmp(line,"UnderlineThickness",18)==0)
1893 {
1894 if ((sscanf(line,"%s%lf",utString,&UnderlineThickness)!=2) ||
1895 (strcmp(utString,"UnderlineThickness")!=0))
1896 {
1897 wxLogDebug( "AFM-file '%s': line '%s' has error (bad UnderlineThickness)\n", afmName, line );
1898 }
1899 }
1900 /* JC 3.) check for EncodingScheme */
1901 else if(strncmp(line,"EncodingScheme",14)==0)
1902 {
1903 if ((sscanf(line,"%s%s",utString,encString)!=2) ||
1904 (strcmp(utString,"EncodingScheme")!=0))
1905 {
1906 wxLogDebug("AFM-file '%s': line '%s' has error (bad EncodingScheme)\n", afmName, line );
1907 }
1908 else if (strncmp(encString, "AdobeStandardEncoding", 21))
1909 {
1910 wxLogDebug( "AFM-file '%s': line '%s' has error (unsupported EncodingScheme %s)\n",
1911 afmName,line, encString);
1912 }
1913 }
1914 /* B.) check for char-width */
1915 else if(strncmp(line,"C ",2)==0)
1916 {
1917 if (sscanf(line,"%s%d%s%s%d",cString,&ascii,semiString,WXString,&cWidth)!=5)
1918 {
1919 wxLogDebug("AFM-file '%s': line '%s' has an error (bad character width)\n",afmName,line);
1920 }
1921 if(strcmp(cString,"C")!=0 || strcmp(semiString,";")!=0 || strcmp(WXString,"WX")!=0)
1922 {
1923 wxLogDebug("AFM-file '%s': line '%s' has a format error\n",afmName,line);
1924 }
1925 /* printf(" char '%c'=%d has width '%d'\n",ascii,ascii,cWidth); */
1926 if (ascii>=0 && ascii<256)
1927 {
1928 lastWidths[ascii] = cWidth; /* store width */
1929 }
1930 else
1931 {
1932 /* MATTHEW: this happens a lot; don't print an error */
1933 /* wxLogDebug("AFM-file '%s': ASCII value %d out of range\n",afmName,ascii); */
1934 }
1935 }
1936 /* C.) ignore other entries. */
1937 }
1938 fclose(afmFile);
1939 }
1940 /* hack to compute correct values for german 'Umlaute'
1941 / the correct way would be to map the character names
1942 / like 'adieresis' to corresp. positions of ISOEnc and read
1943 / these values from AFM files, too. Maybe later ... */
1944 lastWidths[196] = lastWidths['A']; // Ä
1945 lastWidths[228] = lastWidths['a']; // ä
1946 lastWidths[214] = lastWidths['O']; // Ö
1947 lastWidths[246] = lastWidths['o']; // ö
1948 lastWidths[220] = lastWidths['U']; // Ü
1949 lastWidths[252] = lastWidths['u']; // ü
1950 lastWidths[223] = lastWidths[251]; // ß
1951 }
1952
1953 /* JC: calculate UnderlineThickness/UnderlinePosition */
1954 m_underlinePosition = m_underlinePosition * fontToUse->GetPointSize() / 1000.0f;
1955 m_underlineThickness = m_underlineThickness * fontToUse->GetPointSize() / 1000.0f * m_scaleFactor;
1956
1957 /* 3. now the font metrics are read in, calc size this
1958 / is done by adding the widths of the characters in the
1959 / string. they are given in 1/1000 of the size! */
1960
1961 long widthSum=0;
1962 long height=Size; /* by default */
1963 unsigned char *p;
1964 for(p=(unsigned char *)strbuf; *p; p++)
1965 {
1966 if(lastWidths[*p]== INT_MIN)
1967 {
1968 wxLogDebug("GetTextExtent: undefined width for character '%c' (%d)\n", *p,*p);
1969 widthSum += (long)(lastWidths[' ']/1000.0F * Size); /* assume space */
1970 }
1971 else
1972 {
1973 widthSum += (long)((lastWidths[*p]/1000.0F)*Size);
1974 }
1975 }
1976
1977 /* add descender to height (it is usually a negative value) */
1978 if (lastDescender!=INT_MIN)
1979 {
1980 height += (long)(((-lastDescender)/1000.0F) * Size); /* MATTHEW: forgot scale */
1981 }
1982
1983 /* return size values */
1984 *x = widthSum;
1985 *y = height;
1986
1987 /* return other parameters */
1988 if (descent)
1989 {
1990 if(lastDescender!=INT_MIN)
1991 {
1992 *descent = (long)(((-lastDescender)/1000.0F) * Size); /* MATTHEW: forgot scale */
1993 }
1994 else
1995 {
1996 *descent = 0;
1997 }
1998 }
1999
2000 /* currently no idea how to calculate this! */
2001 if (externalLeading) *externalLeading = 0;
2002
2003 #endif
2004 }
2005
2006 // Determine the Default Postscript Previewer
2007 // available on the platform
2008 #if defined(__SUN__) && defined(__XVIEW__)
2009 // OpenWindow/NeWS's Postscript Previewer
2010 # define PS_VIEWER_PROG "pageview"
2011 #elif defined(__VMS__)
2012 #define PS_VIEWER_PROG "view/format=ps/select=x_display"
2013 #elif defined(__SGI__)
2014 // SGI's Display Postscript Previewer
2015 //# define PS_VIEWER_PROG "dps"
2016 # define PS_VIEWER_PROG "xpsview"
2017 #elif defined(__X__) || defined(__WXGTK__)
2018 // Front-end to ghostscript
2019 # define PS_VIEWER_PROG "ghostview"
2020 #else
2021 // Windows ghostscript/ghostview
2022 # define PS_VIEWER_PROG "gsview"
2023 #endif
2024
2025 wxPrintSetupData *wxThePrintSetupData = (wxPrintSetupData *) NULL;
2026
2027 #if !USE_SHARED_LIBRARY
2028 IMPLEMENT_DYNAMIC_CLASS(wxPostScriptDC, wxDC)
2029 IMPLEMENT_DYNAMIC_CLASS(wxPrintSetupData, wxObject)
2030 #endif
2031
2032 // Redundant now I think
2033 #if 1
2034 IMPLEMENT_CLASS(wxPostScriptPrintDialog, wxDialog)
2035
2036 wxPostScriptPrintDialog::wxPostScriptPrintDialog (wxWindow *parent, const wxString& title,
2037 const wxPoint& pos, const wxSize& size, long style):
2038 wxDialog(parent, -1, title, pos, size, style)
2039 {
2040 wxBeginBusyCursor();
2041
2042 char buf[100];
2043 int yPos = 40;
2044 wxString
2045 *orientation = new wxString[2],
2046 *print_modes = new wxString[3];
2047 int features;
2048 long wx_printer_translate_x, wx_printer_translate_y;
2049 double wx_printer_scale_x, wx_printer_scale_y;
2050
2051 orientation[0] = _("Portrait");
2052 orientation[1] = _("Landscape");
2053
2054 print_modes[0] = _("Send to Printer");
2055 print_modes[1] = _("Print to File");
2056 print_modes[2] = _("Preview Only");
2057
2058
2059
2060 wxButton *okBut = new wxButton (this, wxID_OK, _("OK"), wxPoint(5, 5));
2061 (void) new wxButton (this, wxID_CANCEL, _("Cancel"), wxPoint(40, 5));
2062 okBut->SetDefault();
2063
2064
2065 #if defined(__WXGTK__) || defined (__WXMOTIF__)
2066 (void) new wxStaticText( this, -1, _("Printer Command: "),
2067 wxPoint(5, yPos) );
2068 (void) new wxTextCtrl( this, wxID_PRINTER_COMMAND, wxThePrintSetupData->GetPrinterCommand(),
2069 wxPoint(100, yPos), wxSize(100, -1) );
2070
2071 (void) new wxStaticText( this, -1, _("Printer Options: "),
2072 wxPoint(210, yPos) );
2073 (void) new wxTextCtrl( this, wxID_PRINTER_OPTIONS, wxThePrintSetupData->GetPrinterOptions(),
2074 wxPoint(305, yPos), wxSize(150, -1) );
2075
2076 yPos += 40;
2077 #endif
2078
2079
2080 wxRadioBox *radio0 = new wxRadioBox(this, wxID_PRINTER_ORIENTATION, "Orientation: ", wxPoint(5, yPos), wxSize(-1,-1),
2081 2,orientation,2,wxRA_SPECIFY_ROWS);
2082 radio0->SetSelection((int)wxThePrintSetupData->GetPrinterOrientation() - 1);
2083
2084 // @@@ Configuration hook
2085 if ( !wxThePrintSetupData->GetPrintPreviewCommand() )
2086 wxThePrintSetupData->SetPrintPreviewCommand(PS_VIEWER_PROG);
2087
2088 // wxGetResource ("wxWindows", "PSView", &wxThePrintSetupData->m_previewCommand);
2089
2090 features = (wxThePrintSetupData->GetPrintPreviewCommand() &&
2091 *wxThePrintSetupData->GetPrintPreviewCommand()) ? 3 : 2;
2092
2093 wxRadioBox *radio1 = new wxRadioBox(this, wxID_PRINTER_MODES, _("PostScript:"),
2094 wxPoint(150, yPos),
2095 wxSize(-1,-1), features,
2096 print_modes, features, wxRA_SPECIFY_ROWS);
2097
2098 #ifdef __WXMSW__
2099 radio1->Enable(0, FALSE);
2100 if (wxThePrintSetupData->GetPrintPreviewCommand() && *wxThePrintSetupData->GetPrintPreviewCommand())
2101 radio1->Enable(2, FALSE);
2102 #endif
2103
2104 radio1->SetSelection((int)wxThePrintSetupData->GetPrinterMode());
2105 wxThePrintSetupData->GetPrinterTranslation(&wx_printer_translate_x, &wx_printer_translate_y);
2106 wxThePrintSetupData->GetPrinterScaling(&wx_printer_scale_x, &wx_printer_scale_y);
2107
2108 sprintf (buf, "%.2f", wx_printer_scale_x);
2109
2110 yPos += 90;
2111 (void) new wxStaticText(this, -1, _("X Scaling"), wxPoint(5, yPos));
2112 /* wxTextCtrl *text1 = */ (void) new wxTextCtrl(this, wxID_PRINTER_X_SCALE, buf, wxPoint(100, yPos), wxSize(100, -1));
2113
2114 sprintf (buf, "%.2f", wx_printer_scale_y);
2115 (void) new wxStaticText(this, -1, _("Y Scaling"), wxPoint(220, yPos));
2116 /* wxTextCtrl *text2 = */ (void) new wxTextCtrl(this, wxID_PRINTER_Y_SCALE, buf, wxPoint(320, yPos), wxSize(100, -1));
2117
2118 yPos += 25;
2119
2120 (void) new wxStaticText(this, -1, _("X Translation"), wxPoint(5, yPos));
2121 sprintf (buf, "%.2ld", wx_printer_translate_x);
2122 /* wxTextCtrl *text3 = */ (void) new wxTextCtrl(this, wxID_PRINTER_X_TRANS, buf, wxPoint(100, yPos), wxSize(100, -1));
2123
2124 (void) new wxStaticText(this, -1, _("Y Translation"), wxPoint(220, yPos));
2125 sprintf (buf, "%.2ld", wx_printer_translate_y);
2126 /* wxTextCtrl *text4 = */ (void) new wxTextCtrl(this, wxID_PRINTER_Y_TRANS, buf, wxPoint(320, yPos), wxSize(100, -1));
2127
2128 Fit ();
2129
2130 delete[] orientation;
2131 delete[] print_modes;
2132
2133 wxEndBusyCursor();
2134 }
2135
2136 int wxPostScriptPrintDialog::ShowModal ()
2137 {
2138 if ( wxDialog::ShowModal() == wxID_OK )
2139 {
2140 // wxTextCtrl *text0 = (wxTextCtrl *)FindWindow(wxID_PRINTER_OPTIONS);
2141 wxTextCtrl *text1 = (wxTextCtrl *)FindWindow(wxID_PRINTER_X_SCALE);
2142 wxTextCtrl *text2 = (wxTextCtrl *)FindWindow(wxID_PRINTER_Y_SCALE);
2143 wxTextCtrl *text3 = (wxTextCtrl *)FindWindow(wxID_PRINTER_X_TRANS);
2144 wxTextCtrl *text4 = (wxTextCtrl *)FindWindow(wxID_PRINTER_Y_TRANS);
2145 // wxTextCtrl *text_prt = (wxTextCtrl *)FindWindow(wxID_PRINTER_COMMAND);
2146 wxRadioBox *radio0 = (wxRadioBox *)FindWindow(wxID_PRINTER_ORIENTATION);
2147 wxRadioBox *radio1 = (wxRadioBox *)FindWindow(wxID_PRINTER_MODES);
2148
2149 StringToDouble (WXSTRINGCAST text1->GetValue (), &wxThePrintSetupData->m_printerScaleX);
2150 StringToDouble (WXSTRINGCAST text2->GetValue (), &wxThePrintSetupData->m_printerScaleY);
2151 StringToLong (WXSTRINGCAST text3->GetValue (), &wxThePrintSetupData->m_printerTranslateX);
2152 StringToLong (WXSTRINGCAST text4->GetValue (), &wxThePrintSetupData->m_printerTranslateY);
2153
2154 #ifdef __X__
2155 // wxThePrintSetupData->SetPrinterOptions(WXSTRINGCAST text0->GetValue ());
2156 // wxThePrintSetupData->SetPrinterCommand(WXSTRINGCAST text_prt->GetValue ());
2157 #endif
2158
2159 wxThePrintSetupData->SetPrinterOrientation((radio0->GetSelection() == 1 ? wxLANDSCAPE : wxPORTRAIT));
2160
2161 // C++ wants this
2162 switch ( radio1->GetSelection() ) {
2163 case 0: wxThePrintSetupData->SetPrinterMode(PS_PRINTER); break;
2164 case 1: wxThePrintSetupData->SetPrinterMode(PS_FILE); break;
2165 case 2: wxThePrintSetupData->SetPrinterMode(PS_PREVIEW); break;
2166 }
2167 return wxID_OK;
2168 }
2169 return wxID_CANCEL;
2170 }
2171 #endif
2172 // 0 (redundant)
2173
2174 // PostScript printer settings
2175 // RETAINED FOR BACKWARD COMPATIBILITY
2176 void wxSetPrinterCommand(const wxString& cmd)
2177 {
2178 wxThePrintSetupData->SetPrinterCommand(cmd);
2179 }
2180
2181 void wxSetPrintPreviewCommand(const wxString& cmd)
2182 {
2183 wxThePrintSetupData->SetPrintPreviewCommand(cmd);
2184 }
2185
2186 void wxSetPrinterOptions(const wxString& flags)
2187 {
2188 wxThePrintSetupData->SetPrinterOptions(flags);
2189 }
2190
2191 void wxSetPrinterFile(const wxString& f)
2192 {
2193 wxThePrintSetupData->SetPrinterFile(f);
2194 }
2195
2196 void wxSetPrinterOrientation(int orient)
2197 {
2198 wxThePrintSetupData->SetPrinterOrientation(orient);
2199 }
2200
2201 void wxSetPrinterScaling(double x, double y)
2202 {
2203 wxThePrintSetupData->SetPrinterScaling(x, y);
2204 }
2205
2206 void wxSetPrinterTranslation(long x, long y)
2207 {
2208 wxThePrintSetupData->SetPrinterTranslation(x, y);
2209 }
2210
2211 // 1 = Preview, 2 = print to file, 3 = send to printer
2212 void wxSetPrinterMode(int mode)
2213 {
2214 wxThePrintSetupData->SetPrinterMode(mode);
2215 }
2216
2217 void wxSetAFMPath(const wxString& f)
2218 {
2219 wxThePrintSetupData->SetAFMPath(f);
2220 }
2221
2222 // Get current values
2223 wxString wxGetPrinterCommand()
2224 {
2225 return wxThePrintSetupData->GetPrinterCommand();
2226 }
2227
2228 wxString wxGetPrintPreviewCommand()
2229 {
2230 return wxThePrintSetupData->GetPrintPreviewCommand();
2231 }
2232
2233 wxString wxGetPrinterOptions()
2234 {
2235 return wxThePrintSetupData->GetPrinterOptions();
2236 }
2237
2238 wxString wxGetPrinterFile()
2239 {
2240 return wxThePrintSetupData->GetPrinterFile();
2241 }
2242
2243 int wxGetPrinterOrientation()
2244 {
2245 return wxThePrintSetupData->GetPrinterOrientation();
2246 }
2247
2248 void wxGetPrinterScaling(double* x, double* y)
2249 {
2250 wxThePrintSetupData->GetPrinterScaling(x, y);
2251 }
2252
2253 void wxGetPrinterTranslation(long *x, long *y)
2254 {
2255 wxThePrintSetupData->GetPrinterTranslation(x, y);
2256 }
2257
2258 int wxGetPrinterMode()
2259 {
2260 return wxThePrintSetupData->GetPrinterMode();
2261 }
2262
2263 wxString wxGetAFMPath()
2264 {
2265 return wxThePrintSetupData->GetAFMPath();
2266 }
2267
2268 /*
2269 * Print setup data
2270 */
2271
2272 wxPrintSetupData::wxPrintSetupData()
2273 {
2274 m_printerOrient = wxPORTRAIT;
2275 m_printerScaleX = (double)1.0;
2276 m_printerScaleY = (double)1.0;
2277 m_printerTranslateX = 0;
2278 m_printerTranslateY = 0;
2279 m_printerMode = wxPRINT_MODE_FILE;
2280 m_printColour = TRUE;
2281 }
2282
2283 wxPrintSetupData::~wxPrintSetupData()
2284 {
2285 }
2286
2287 void wxPrintSetupData::operator=(wxPrintSetupData& data)
2288 {
2289 SetPrinterCommand(data.GetPrinterCommand());
2290 SetPrintPreviewCommand(data.GetPrintPreviewCommand());
2291 SetPrinterOptions(data.GetPrinterOptions());
2292 long x, y;
2293 data.GetPrinterTranslation(&x, &y);
2294 SetPrinterTranslation(x, y);
2295
2296 double x1, y1;
2297 data.GetPrinterScaling(&x1, &y1);
2298 SetPrinterScaling(x1, y1);
2299
2300 SetPrinterOrientation(data.GetPrinterOrientation());
2301 SetPrinterMode(data.GetPrinterMode());
2302 SetAFMPath(data.GetAFMPath());
2303 SetPaperName(data.GetPaperName());
2304 SetColour(data.GetColour());
2305 }
2306
2307 // Initialize from a wxPrintData object (wxPrintData should now be used instead of wxPrintSetupData).
2308 void wxPrintSetupData::operator=(const wxPrintData& data)
2309 {
2310 SetPrinterCommand(data.GetPrinterCommand());
2311 SetPrintPreviewCommand(data.GetPreviewCommand());
2312 SetPrinterOptions(data.GetPrinterOptions());
2313 SetPrinterTranslation(data.GetPrinterTranslateX(), data.GetPrinterTranslateY());
2314 SetPrinterScaling(data.GetPrinterScaleX(), data.GetPrinterScaleY());
2315 SetPrinterOrientation(data.GetOrientation());
2316 SetPrinterMode((int) data.GetPrintMode());
2317 SetAFMPath(data.GetFontMetricPath());
2318 SetPaperName(wxThePrintPaperDatabase->ConvertIdToName(data.GetPaperId()));
2319 SetColour(data.GetColour());
2320 SetPrinterFile(data.GetFilename());
2321 }
2322
2323 void wxInitializePrintSetupData(bool init)
2324 {
2325 if (init)
2326 {
2327 wxThePrintSetupData = new wxPrintSetupData;
2328
2329 wxThePrintSetupData->SetPrintPreviewCommand(PS_VIEWER_PROG);
2330 wxThePrintSetupData->SetPrinterOrientation(wxPORTRAIT);
2331 wxThePrintSetupData->SetPrinterMode(wxPRINT_MODE_PREVIEW);
2332 wxThePrintSetupData->SetPaperName(_("A4 sheet, 210 x 297 mm"));
2333
2334 // Could have a .ini file to read in some defaults
2335 // - and/or use environment variables, e.g. WXWIN
2336 #ifdef __VMS__
2337 wxThePrintSetupData->SetPrinterCommand("print");
2338 wxThePrintSetupData->SetPrinterOptions("/nonotify/queue=psqueue");
2339 wxThePrintSetupData->SetAFMPath("sys$ps_font_metrics:");
2340 #endif
2341 #ifdef __WXMSW__
2342 wxThePrintSetupData->SetPrinterCommand("print");
2343 wxThePrintSetupData->SetAFMPath("c:\\windows\\system\\");
2344 wxThePrintSetupData->SetPrinterOptions("");
2345 #endif
2346 #if !defined(__VMS__) && !defined(__WXMSW__)
2347 wxThePrintSetupData->SetPrinterCommand("lpr");
2348 wxThePrintSetupData->SetPrinterOptions("");
2349 wxThePrintSetupData->SetAFMPath("");
2350 #endif
2351 }
2352 else
2353 {
2354 if (wxThePrintSetupData)
2355 delete wxThePrintSetupData;
2356 wxThePrintSetupData = (wxPrintSetupData *) NULL;
2357 }
2358 }
2359
2360 // A module to allow initialization/cleanup of PostScript-related
2361 // things without calling these functions from app.cpp.
2362
2363 class WXDLLEXPORT wxPostScriptModule: public wxModule
2364 {
2365 DECLARE_DYNAMIC_CLASS(wxPostScriptModule)
2366 public:
2367 wxPostScriptModule() {}
2368 bool OnInit();
2369 void OnExit();
2370 };
2371
2372 IMPLEMENT_DYNAMIC_CLASS(wxPostScriptModule, wxModule)
2373
2374 /*
2375 * Initialization/cleanup module
2376 */
2377
2378 bool wxPostScriptModule::OnInit()
2379 {
2380 wxInitializePrintSetupData();
2381
2382 return TRUE;
2383 }
2384
2385 void wxPostScriptModule::OnExit()
2386 {
2387 wxInitializePrintSetupData(FALSE);
2388 }
2389
2390 #endif
2391 // wxUSE_POSTSCRIPT
2392
2393 #endif
2394 // wxUSE_PRINTING_ARCHITECTURE