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