]>
Commit | Line | Data |
---|---|---|
ed880dd4 | 1 | ///////////////////////////////////////////////////////////////////////////// |
bf38cbff JS |
2 | // Name: dcpsg.cpp |
3 | // Purpose: Generic wxPostScriptDC implementation | |
ed880dd4 RR |
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 | |
9a6be59a | 9 | // Licence: wxWindows licence |
ed880dd4 RR |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
1aedb1dd | 13 | #pragma implementation "dcpsg.h" |
ed880dd4 RR |
14 | #endif |
15 | ||
9a6be59a VZ |
16 | #include "wx/wxprec.h" |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #ifndef WX_PRECOMP | |
9a6be59a | 23 | #endif // WX_PRECOMP |
06cfab17 | 24 | |
ce4169a4 RR |
25 | #if wxUSE_PRINTING_ARCHITECTURE |
26 | ||
06cfab17 RR |
27 | #if wxUSE_POSTSCRIPT |
28 | ||
401eb3de RR |
29 | #include "wx/setup.h" |
30 | ||
e6f1ad22 | 31 | #include "wx/window.h" |
f04371f0 | 32 | #include "wx/dcmemory.h" |
ed880dd4 | 33 | #include "wx/utils.h" |
f04371f0 | 34 | #include "wx/intl.h" |
ed880dd4 | 35 | #include "wx/filedlg.h" |
ed880dd4 | 36 | #include "wx/app.h" |
f04371f0 | 37 | #include "wx/msgdlg.h" |
ef539066 | 38 | #include "wx/image.h" |
3069ac4e | 39 | #include "wx/log.h" |
bf38cbff | 40 | #include "wx/generic/dcpsg.h" |
b403ab00 | 41 | #include "wx/printdlg.h" |
bf38cbff JS |
42 | #include "wx/button.h" |
43 | #include "wx/stattext.h" | |
44 | #include "wx/radiobox.h" | |
45 | #include "wx/textctrl.h" | |
9a05fd8d | 46 | #include "wx/prntbase.h" |
7bcb11d3 | 47 | #include "wx/paper.h" |
d361e74e | 48 | #include "wx/filefn.h" |
ed880dd4 | 49 | |
57c208c5 JS |
50 | #include <math.h> |
51 | ||
bf38cbff JS |
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 | ||
ed880dd4 RR |
72 | //----------------------------------------------------------------------------- |
73 | // start and end of document/page | |
74 | //----------------------------------------------------------------------------- | |
75 | ||
c31c771b RR |
76 | static const char *wxPostScriptHeaderConicTo = "\ |
77 | /conicto {\n\ | |
78 | /to_y exch def\n\ | |
79 | /to_x exch def\n\ | |
80 | /conic_cntrl_y exch def\n\ | |
81 | /conic_cntrl_x exch def\n\ | |
82 | currentpoint\n\ | |
83 | /p0_y exch def\n\ | |
84 | /p0_x exch def\n\ | |
85 | /p1_x p0_x conic_cntrl_x p0_x sub 2 3 div mul add def\n\ | |
86 | /p1_y p0_y conic_cntrl_y p0_y sub 2 3 div mul add def\n\ | |
87 | /p2_x p1_x to_x p0_x sub 1 3 div mul add def\n\ | |
88 | /p2_y p1_y to_y p0_y sub 1 3 div mul add def\n\ | |
89 | p1_x p1_y p2_x p2_y to_x to_y curveto\n\ | |
90 | } bind def\n\ | |
c31c771b RR |
91 | "; |
92 | ||
ed880dd4 RR |
93 | static const char *wxPostScriptHeaderEllipse = "\ |
94 | /ellipsedict 8 dict def\n\ | |
95 | ellipsedict /mtrx matrix put\n\ | |
96 | /ellipse {\n\ | |
9a6be59a VZ |
97 | ellipsedict begin\n\ |
98 | /endangle exch def\n\ | |
99 | /startangle exch def\n\ | |
100 | /yrad exch def\n\ | |
101 | /xrad exch def\n\ | |
102 | /y exch def\n\ | |
103 | /x exch def\n\ | |
104 | /savematrix mtrx currentmatrix def\n\ | |
105 | x y translate\n\ | |
106 | xrad yrad scale\n\ | |
107 | 0 0 1 startangle endangle arc\n\ | |
108 | savematrix setmatrix\n\ | |
109 | end\n\ | |
110 | } def\n\ | |
ed880dd4 RR |
111 | "; |
112 | ||
113 | static const char *wxPostScriptHeaderEllipticArc= "\ | |
114 | /ellipticarcdict 8 dict def\n\ | |
115 | ellipticarcdict /mtrx matrix put\n\ | |
116 | /ellipticarc\n\ | |
117 | { ellipticarcdict begin\n\ | |
118 | /do_fill exch def\n\ | |
119 | /endangle exch def\n\ | |
120 | /startangle exch def\n\ | |
121 | /yrad exch def\n\ | |
122 | /xrad exch def \n\ | |
123 | /y exch def\n\ | |
124 | /x exch def\n\ | |
125 | /savematrix mtrx currentmatrix def\n\ | |
126 | x y translate\n\ | |
127 | xrad yrad scale\n\ | |
128 | do_fill { 0 0 moveto } if\n\ | |
129 | 0 0 1 startangle endangle arc\n\ | |
130 | savematrix setmatrix\n\ | |
131 | do_fill { fill }{ stroke } ifelse\n\ | |
132 | end\n\ | |
133 | } def\n"; | |
134 | ||
135 | static const char *wxPostScriptHeaderSpline = "\ | |
136 | /DrawSplineSection {\n\ | |
9a6be59a VZ |
137 | /y3 exch def\n\ |
138 | /x3 exch def\n\ | |
139 | /y2 exch def\n\ | |
140 | /x2 exch def\n\ | |
141 | /y1 exch def\n\ | |
142 | /x1 exch def\n\ | |
143 | /xa x1 x2 x1 sub 0.666667 mul add def\n\ | |
144 | /ya y1 y2 y1 sub 0.666667 mul add def\n\ | |
145 | /xb x3 x2 x3 sub 0.666667 mul add def\n\ | |
146 | /yb y3 y2 y3 sub 0.666667 mul add def\n\ | |
147 | x1 y1 lineto\n\ | |
148 | xa ya xb yb x3 y3 curveto\n\ | |
149 | } def\n\ | |
ed880dd4 RR |
150 | "; |
151 | ||
152 | static const char *wxPostScriptHeaderColourImage = "\ | |
d7657f75 RR |
153 | %% define 'colorimage' if it isn't defined\n\ |
154 | %% ('colortogray' and 'mergeprocs' come from xwd2ps\n\ | |
155 | %% via xgrab)\n\ | |
156 | /colorimage where %% do we know about 'colorimage'?\n\ | |
157 | { pop } %% yes: pop off the 'dict' returned\n\ | |
158 | { %% no: define one\n\ | |
159 | /colortogray { %% define an RGB->I function\n\ | |
160 | /rgbdata exch store %% call input 'rgbdata'\n\ | |
ed880dd4 RR |
161 | rgbdata length 3 idiv\n\ |
162 | /npixls exch store\n\ | |
163 | /rgbindx 0 store\n\ | |
164 | 0 1 npixls 1 sub {\n\ | |
165 | grays exch\n\ | |
d7657f75 RR |
166 | rgbdata rgbindx get 20 mul %% Red\n\ |
167 | rgbdata rgbindx 1 add get 32 mul %% Green\n\ | |
168 | rgbdata rgbindx 2 add get 12 mul %% Blue\n\ | |
169 | add add 64 idiv %% I = .5G + .31R + .18B\n\ | |
ed880dd4 RR |
170 | put\n\ |
171 | /rgbindx rgbindx 3 add store\n\ | |
172 | } for\n\ | |
173 | grays 0 npixls getinterval\n\ | |
174 | } bind def\n\ | |
175 | \n\ | |
d7657f75 RR |
176 | %% Utility procedure for colorimage operator.\n\ |
177 | %% This procedure takes two procedures off the\n\ | |
178 | %% stack and merges them into a single procedure.\n\ | |
ed880dd4 | 179 | \n\ |
d7657f75 | 180 | /mergeprocs { %% def\n\ |
ed880dd4 RR |
181 | dup length\n\ |
182 | 3 -1 roll\n\ | |
183 | dup\n\ | |
184 | length\n\ | |
185 | dup\n\ | |
186 | 5 1 roll\n\ | |
187 | 3 -1 roll\n\ | |
188 | add\n\ | |
189 | array cvx\n\ | |
190 | dup\n\ | |
191 | 3 -1 roll\n\ | |
192 | 0 exch\n\ | |
193 | putinterval\n\ | |
194 | dup\n\ | |
195 | 4 2 roll\n\ | |
196 | putinterval\n\ | |
197 | } bind def\n\ | |
198 | \n\ | |
d7657f75 RR |
199 | /colorimage { %% def\n\ |
200 | pop pop %% remove 'false 3' operands\n\ | |
ed880dd4 RR |
201 | {colortogray} mergeprocs\n\ |
202 | image\n\ | |
203 | } bind def\n\ | |
d7657f75 | 204 | } ifelse %% end of 'false' case\n\ |
ed880dd4 RR |
205 | "; |
206 | ||
c31c771b | 207 | #ifndef __WXGTK20__ |
ed880dd4 RR |
208 | static char wxPostScriptHeaderReencodeISO1[] = |
209 | "\n/reencodeISO {\n" | |
210 | "dup dup findfont dup length dict begin\n" | |
211 | "{ 1 index /FID ne { def }{ pop pop } ifelse } forall\n" | |
212 | "/Encoding ISOLatin1Encoding def\n" | |
213 | "currentdict end definefont\n" | |
214 | "} def\n" | |
215 | "/ISOLatin1Encoding [\n" | |
216 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
217 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
218 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
219 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
220 | "/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright\n" | |
221 | "/parenleft/parenright/asterisk/plus/comma/minus/period/slash\n" | |
222 | "/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon\n" | |
223 | "/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N\n" | |
224 | "/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright\n" | |
225 | "/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m\n" | |
226 | "/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde\n" | |
227 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
228 | "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n" | |
229 | "/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve\n" | |
230 | "/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut\n"; | |
231 | ||
232 | static char wxPostScriptHeaderReencodeISO2[] = | |
233 | "/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar\n" | |
234 | "/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot\n" | |
235 | "/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior\n" | |
236 | "/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine\n" | |
237 | "/guillemotright/onequarter/onehalf/threequarters/questiondown\n" | |
238 | "/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla\n" | |
239 | "/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex\n" | |
240 | "/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis\n" | |
241 | "/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute\n" | |
242 | "/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis\n" | |
243 | "/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave\n" | |
244 | "/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex\n" | |
245 | "/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis\n" | |
246 | "/yacute/thorn/ydieresis\n" | |
247 | "] def\n\n"; | |
c31c771b | 248 | #endif |
ed880dd4 | 249 | |
ed880dd4 RR |
250 | //------------------------------------------------------------------------------- |
251 | // wxPostScriptDC | |
252 | //------------------------------------------------------------------------------- | |
253 | ||
eba33006 RR |
254 | IMPLEMENT_DYNAMIC_CLASS(wxPostScriptDC, wxDC) |
255 | ||
b64de916 VS |
256 | float wxPostScriptDC::ms_PSScaleFactor = 10.0; |
257 | ||
258 | void wxPostScriptDC::SetResolution(int ppi) | |
259 | { | |
260 | ms_PSScaleFactor = (float)ppi / 72.0; | |
261 | } | |
262 | ||
263 | int wxPostScriptDC::GetResolution() | |
264 | { | |
265 | return (int)(ms_PSScaleFactor * 72.0); | |
266 | } | |
48c31b28 | 267 | |
eba33006 | 268 | //------------------------------------------------------------------------------- |
b64de916 | 269 | |
ed880dd4 RR |
270 | wxPostScriptDC::wxPostScriptDC () |
271 | { | |
d7657f75 | 272 | m_pstream = (FILE*) NULL; |
afce4c03 | 273 | |
ed880dd4 RR |
274 | m_currentRed = 0; |
275 | m_currentGreen = 0; | |
276 | m_currentBlue = 0; | |
afce4c03 | 277 | |
ed880dd4 | 278 | m_pageNumber = 0; |
afce4c03 | 279 | |
ed880dd4 | 280 | m_clipping = FALSE; |
afce4c03 | 281 | |
ed880dd4 RR |
282 | m_underlinePosition = 0.0; |
283 | m_underlineThickness = 0.0; | |
284 | ||
285 | m_signX = 1; // default x-axis left to right | |
286 | m_signY = -1; // default y-axis bottom up -> top down | |
ed880dd4 RR |
287 | } |
288 | ||
7bcb11d3 JS |
289 | wxPostScriptDC::wxPostScriptDC (const wxPrintData& printData) |
290 | { | |
d7657f75 | 291 | m_pstream = (FILE*) NULL; |
7bcb11d3 JS |
292 | |
293 | m_currentRed = 0; | |
294 | m_currentGreen = 0; | |
295 | m_currentBlue = 0; | |
296 | ||
297 | m_pageNumber = 0; | |
298 | ||
299 | m_clipping = FALSE; | |
300 | ||
301 | m_underlinePosition = 0.0; | |
302 | m_underlineThickness = 0.0; | |
303 | ||
304 | m_signX = 1; // default x-axis left to right | |
305 | m_signY = -1; // default y-axis bottom up -> top down | |
306 | ||
307 | m_printData = printData; | |
75737d05 JS |
308 | |
309 | m_ok = TRUE; | |
7bcb11d3 JS |
310 | } |
311 | ||
ed880dd4 RR |
312 | wxPostScriptDC::~wxPostScriptDC () |
313 | { | |
d7657f75 RR |
314 | if (m_pstream) |
315 | { | |
316 | fclose( m_pstream ); | |
72cdf4c9 | 317 | m_pstream = (FILE*) NULL; |
d7657f75 | 318 | } |
ed880dd4 RR |
319 | } |
320 | ||
4bc67cc5 RR |
321 | bool wxPostScriptDC::Ok() const |
322 | { | |
ef539066 | 323 | return m_ok; |
4bc67cc5 | 324 | } |
afce4c03 | 325 | |
72cdf4c9 | 326 | void wxPostScriptDC::DoSetClippingRegion (wxCoord x, wxCoord y, wxCoord w, wxCoord h) |
ed880dd4 | 327 | { |
223d09f6 | 328 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 329 | |
7087444f | 330 | if (m_clipping) DestroyClippingRegion(); |
ed880dd4 | 331 | |
7087444f | 332 | wxDC::DoSetClippingRegion(x, y, w, h); |
afce4c03 | 333 | |
ed880dd4 | 334 | m_clipping = TRUE; |
72cdf4c9 | 335 | fprintf( m_pstream, |
d7657f75 | 336 | "gsave\n newpath\n" |
72cdf4c9 VZ |
337 | "%d %d moveto\n" |
338 | "%d %d lineto\n" | |
339 | "%d %d lineto\n" | |
340 | "%d %d lineto\n" | |
341 | "closepath clip newpath\n", | |
6a7b1d6e RD |
342 | LogicalToDeviceX(x), LogicalToDeviceY(y), |
343 | LogicalToDeviceX(x+w), LogicalToDeviceY(y), | |
344 | LogicalToDeviceX(x+w), LogicalToDeviceY(y+h), | |
345 | LogicalToDeviceX(x), LogicalToDeviceY(y+h) ); | |
ed880dd4 RR |
346 | } |
347 | ||
ed880dd4 RR |
348 | |
349 | void wxPostScriptDC::DestroyClippingRegion() | |
350 | { | |
223d09f6 | 351 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 352 | |
ed880dd4 RR |
353 | if (m_clipping) |
354 | { | |
355 | m_clipping = FALSE; | |
72cdf4c9 | 356 | fprintf( m_pstream, "grestore\n" ); |
ed880dd4 | 357 | } |
004fd0c8 | 358 | |
7087444f | 359 | wxDC::DestroyClippingRegion(); |
ed880dd4 RR |
360 | } |
361 | ||
362 | void wxPostScriptDC::Clear() | |
363 | { | |
223d09f6 | 364 | wxFAIL_MSG( wxT("wxPostScriptDC::Clear not implemented.") ); |
ed880dd4 RR |
365 | } |
366 | ||
387ebd3e | 367 | bool wxPostScriptDC::DoFloodFill (wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), const wxColour &WXUNUSED(col), int WXUNUSED(style)) |
ed880dd4 | 368 | { |
223d09f6 | 369 | wxFAIL_MSG( wxT("wxPostScriptDC::FloodFill not implemented.") ); |
387ebd3e | 370 | return FALSE; |
ed880dd4 RR |
371 | } |
372 | ||
72cdf4c9 | 373 | bool wxPostScriptDC::DoGetPixel (wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), wxColour * WXUNUSED(col)) const |
ed880dd4 | 374 | { |
223d09f6 | 375 | wxFAIL_MSG( wxT("wxPostScriptDC::GetPixel not implemented.") ); |
ed880dd4 RR |
376 | return FALSE; |
377 | } | |
378 | ||
72cdf4c9 | 379 | void wxPostScriptDC::DoCrossHair (wxCoord WXUNUSED(x), wxCoord WXUNUSED(y)) |
ed880dd4 | 380 | { |
223d09f6 | 381 | wxFAIL_MSG( wxT("wxPostScriptDC::CrossHair not implemented.") ); |
ed880dd4 RR |
382 | } |
383 | ||
72cdf4c9 | 384 | void wxPostScriptDC::DoDrawLine (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) |
ed880dd4 | 385 | { |
223d09f6 | 386 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 387 | |
ed880dd4 | 388 | if (m_pen.GetStyle() == wxTRANSPARENT) return; |
afce4c03 | 389 | |
ed880dd4 | 390 | SetPen( m_pen ); |
afce4c03 | 391 | |
d7657f75 RR |
392 | fprintf( m_pstream, |
393 | "newpath\n" | |
72cdf4c9 VZ |
394 | "%d %d moveto\n" |
395 | "%d %d lineto\n" | |
396 | "stroke\n", | |
6a7b1d6e RD |
397 | LogicalToDeviceX(x1), LogicalToDeviceY(y1), |
398 | LogicalToDeviceX(x2), LogicalToDeviceY (y2) ); | |
afce4c03 | 399 | |
ed880dd4 RR |
400 | CalcBoundingBox( x1, y1 ); |
401 | CalcBoundingBox( x2, y2 ); | |
402 | } | |
403 | ||
404 | #define RAD2DEG 57.29577951308 | |
405 | ||
72cdf4c9 | 406 | void wxPostScriptDC::DoDrawArc (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc) |
ed880dd4 | 407 | { |
223d09f6 | 408 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 409 | |
72cdf4c9 VZ |
410 | wxCoord dx = x1 - xc; |
411 | wxCoord dy = y1 - yc; | |
412 | wxCoord radius = (wxCoord) sqrt( (double)(dx*dx+dy*dy) ); | |
ed880dd4 RR |
413 | double alpha1, alpha2; |
414 | ||
afce4c03 | 415 | if (x1 == x2 && y1 == y2) |
ed880dd4 | 416 | { |
d7657f75 RR |
417 | alpha1 = 0.0; |
418 | alpha2 = 360.0; | |
72cdf4c9 | 419 | } |
d7657f75 | 420 | else if (radius == 0.0) |
ed880dd4 | 421 | { |
d7657f75 | 422 | alpha1 = alpha2 = 0.0; |
72cdf4c9 | 423 | } |
d7657f75 | 424 | else |
ed880dd4 | 425 | { |
d7657f75 RR |
426 | alpha1 = (x1 - xc == 0) ? |
427 | (y1 - yc < 0) ? 90.0 : -90.0 : | |
428 | -atan2(double(y1-yc), double(x1-xc)) * RAD2DEG; | |
429 | alpha2 = (x2 - xc == 0) ? | |
430 | (y2 - yc < 0) ? 90.0 : -90.0 : | |
431 | -atan2(double(y2-yc), double(x2-xc)) * RAD2DEG; | |
ed880dd4 RR |
432 | } |
433 | while (alpha1 <= 0) alpha1 += 360; | |
434 | while (alpha2 <= 0) alpha2 += 360; // adjust angles to be between | |
435 | while (alpha1 > 360) alpha1 -= 360; // 0 and 360 degree | |
436 | while (alpha2 > 360) alpha2 -= 360; | |
437 | ||
afce4c03 | 438 | if (m_brush.GetStyle() != wxTRANSPARENT) |
ed880dd4 | 439 | { |
d7657f75 | 440 | SetBrush( m_brush ); |
72cdf4c9 VZ |
441 | |
442 | fprintf( m_pstream, | |
443 | "newpath\n" | |
444 | "%d %d %d %d %d %d ellipse\n" | |
445 | "%d %d lineto\n" | |
446 | "closepath\n" | |
447 | "fill\n", | |
6a7b1d6e RD |
448 | LogicalToDeviceX(xc), LogicalToDeviceY(yc), LogicalToDeviceXRel(radius), LogicalToDeviceYRel(radius), (wxCoord)alpha1, (wxCoord) alpha2, |
449 | LogicalToDeviceX(xc), LogicalToDeviceY(yc) ); | |
d7657f75 RR |
450 | |
451 | CalcBoundingBox( xc-radius, yc-radius ); | |
452 | CalcBoundingBox( xc+radius, yc+radius ); | |
ed880dd4 | 453 | } |
afce4c03 VZ |
454 | |
455 | if (m_pen.GetStyle() != wxTRANSPARENT) | |
ed880dd4 | 456 | { |
d7657f75 | 457 | SetPen( m_pen ); |
72cdf4c9 VZ |
458 | |
459 | fprintf( m_pstream, | |
460 | "newpath\n" | |
461 | "%d %d %d %d %d %d ellipse\n" | |
462 | "%d %d lineto\n" | |
463 | "stroke\n" | |
464 | "fill\n", | |
6a7b1d6e RD |
465 | LogicalToDeviceX(xc), LogicalToDeviceY(yc), LogicalToDeviceXRel(radius), LogicalToDeviceYRel(radius), (wxCoord)alpha1, (wxCoord) alpha2, |
466 | LogicalToDeviceX(xc), LogicalToDeviceY(yc) ); | |
d7657f75 RR |
467 | |
468 | CalcBoundingBox( xc-radius, yc-radius ); | |
469 | CalcBoundingBox( xc+radius, yc+radius ); | |
ed880dd4 | 470 | } |
ed880dd4 RR |
471 | } |
472 | ||
72cdf4c9 | 473 | void wxPostScriptDC::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea) |
ed880dd4 | 474 | { |
223d09f6 | 475 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 476 | |
ed880dd4 RR |
477 | if (sa>=360 || sa<=-360) sa=sa-int(sa/360)*360; |
478 | if (ea>=360 || ea<=-360) ea=ea-int(ea/360)*360; | |
479 | if (sa<0) sa+=360; | |
480 | if (ea<0) ea+=360; | |
afce4c03 | 481 | |
ed880dd4 RR |
482 | if (sa==ea) |
483 | { | |
484 | DrawEllipse(x,y,w,h); | |
485 | return; | |
486 | } | |
487 | ||
488 | if (m_brush.GetStyle () != wxTRANSPARENT) | |
489 | { | |
490 | SetBrush( m_brush ); | |
72cdf4c9 VZ |
491 | |
492 | fprintf( m_pstream, | |
493 | "newpath\n" | |
494 | "%d %d %d %d %d %d true ellipticarc\n", | |
6a7b1d6e | 495 | LogicalToDeviceX(x+w/2), LogicalToDeviceY(y+h/2), LogicalToDeviceXRel(w/2), LogicalToDeviceYRel(h/2), (wxCoord)sa, (wxCoord)ea ); |
72cdf4c9 | 496 | |
ed880dd4 RR |
497 | CalcBoundingBox( x ,y ); |
498 | CalcBoundingBox( x+w, y+h ); | |
72cdf4c9 VZ |
499 | } |
500 | ||
ed880dd4 RR |
501 | if (m_pen.GetStyle () != wxTRANSPARENT) |
502 | { | |
503 | SetPen( m_pen ); | |
504 | ||
72cdf4c9 VZ |
505 | fprintf(m_pstream, |
506 | "newpath\n" | |
507 | "%d %d %d %d %d %d false ellipticarc\n", | |
6a7b1d6e | 508 | LogicalToDeviceX(x+w/2), LogicalToDeviceY(y+h/2), LogicalToDeviceXRel(w/2), LogicalToDeviceYRel(h/2), (wxCoord)sa, (wxCoord)ea ); |
72cdf4c9 | 509 | |
d7657f75 | 510 | CalcBoundingBox( x ,y ); |
ed880dd4 RR |
511 | CalcBoundingBox( x+w, y+h ); |
512 | } | |
513 | } | |
514 | ||
72cdf4c9 | 515 | void wxPostScriptDC::DoDrawPoint (wxCoord x, wxCoord y) |
ed880dd4 | 516 | { |
223d09f6 | 517 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 518 | |
ed880dd4 | 519 | if (m_pen.GetStyle() == wxTRANSPARENT) return; |
afce4c03 | 520 | |
ed880dd4 | 521 | SetPen (m_pen); |
afce4c03 | 522 | |
d7657f75 RR |
523 | fprintf( m_pstream, |
524 | "newpath\n" | |
72cdf4c9 VZ |
525 | "%d %d moveto\n" |
526 | "%d %d lineto\n" | |
527 | "stroke\n", | |
6a7b1d6e RD |
528 | LogicalToDeviceX(x), LogicalToDeviceY(y), |
529 | LogicalToDeviceX(x+1), LogicalToDeviceY(y) ); | |
afce4c03 | 530 | |
ed880dd4 RR |
531 | CalcBoundingBox( x, y ); |
532 | } | |
533 | ||
72cdf4c9 | 534 | void wxPostScriptDC::DoDrawPolygon (int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int WXUNUSED(fillStyle)) |
ed880dd4 | 535 | { |
223d09f6 | 536 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 537 | |
ed880dd4 | 538 | if (n <= 0) return; |
afce4c03 | 539 | |
ed880dd4 RR |
540 | if (m_brush.GetStyle () != wxTRANSPARENT) |
541 | { | |
d7657f75 RR |
542 | SetBrush( m_brush ); |
543 | ||
544 | fprintf( m_pstream, "newpath\n" ); | |
afce4c03 | 545 | |
6a7b1d6e RD |
546 | wxCoord xx = LogicalToDeviceX(points[0].x + xoffset); |
547 | wxCoord yy = LogicalToDeviceY(points[0].y + yoffset); | |
72cdf4c9 VZ |
548 | |
549 | fprintf( m_pstream, "%d %d moveto\n", xx, yy ); | |
550 | ||
d7657f75 | 551 | CalcBoundingBox( points[0].x + xoffset, points[0].y + yoffset ); |
ed880dd4 | 552 | |
d7657f75 RR |
553 | for (int i = 1; i < n; i++) |
554 | { | |
6a7b1d6e RD |
555 | xx = LogicalToDeviceX(points[i].x + xoffset); |
556 | yy = LogicalToDeviceY(points[i].y + yoffset); | |
72cdf4c9 VZ |
557 | |
558 | fprintf( m_pstream, "%d %d lineto\n", xx, yy ); | |
ed880dd4 | 559 | |
d7657f75 RR |
560 | CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset); |
561 | } | |
72cdf4c9 VZ |
562 | |
563 | fprintf( m_pstream, "fill\n" ); | |
ed880dd4 RR |
564 | } |
565 | ||
566 | if (m_pen.GetStyle () != wxTRANSPARENT) | |
567 | { | |
d7657f75 | 568 | SetPen( m_pen ); |
72cdf4c9 | 569 | |
d7657f75 | 570 | fprintf( m_pstream, "newpath\n" ); |
ed880dd4 | 571 | |
6a7b1d6e RD |
572 | wxCoord xx = LogicalToDeviceX(points[0].x + xoffset); |
573 | wxCoord yy = LogicalToDeviceY(points[0].y + yoffset); | |
72cdf4c9 VZ |
574 | |
575 | fprintf( m_pstream, "%d %d moveto\n", xx, yy ); | |
576 | ||
d7657f75 | 577 | CalcBoundingBox( points[0].x + xoffset, points[0].y + yoffset ); |
ed880dd4 | 578 | |
d7657f75 RR |
579 | for (int i = 1; i < n; i++) |
580 | { | |
6a7b1d6e RD |
581 | xx = LogicalToDeviceX(points[i].x + xoffset); |
582 | yy = LogicalToDeviceY(points[i].y + yoffset); | |
72cdf4c9 VZ |
583 | |
584 | fprintf( m_pstream, "%d %d lineto\n", xx, yy ); | |
585 | ||
d7657f75 RR |
586 | CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset); |
587 | } | |
ed880dd4 | 588 | |
733b25e1 | 589 | fprintf( m_pstream, "closepath\n" ); |
ceae98ef | 590 | fprintf( m_pstream, "stroke\n" ); |
ed880dd4 RR |
591 | } |
592 | } | |
593 | ||
72cdf4c9 | 594 | void wxPostScriptDC::DoDrawLines (int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset) |
ed880dd4 | 595 | { |
223d09f6 | 596 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 597 | |
d7657f75 | 598 | if (m_pen.GetStyle() == wxTRANSPARENT) return; |
72cdf4c9 | 599 | |
d7657f75 | 600 | if (n <= 0) return; |
afce4c03 | 601 | |
ed880dd4 | 602 | SetPen (m_pen); |
afce4c03 | 603 | |
9a6be59a VZ |
604 | int i; |
605 | for ( i =0; i<n ; i++ ) | |
ed880dd4 | 606 | { |
6a7b1d6e | 607 | CalcBoundingBox( LogicalToDeviceX(points[i].x+xoffset), LogicalToDeviceY(points[i].y+yoffset)); |
ed880dd4 RR |
608 | } |
609 | ||
d7657f75 RR |
610 | fprintf( m_pstream, |
611 | "newpath\n" | |
72cdf4c9 | 612 | "%d %d moveto\n", |
6a7b1d6e | 613 | LogicalToDeviceX(points[0].x+xoffset), LogicalToDeviceY(points[0].y+yoffset) ); |
afce4c03 VZ |
614 | |
615 | for (i = 1; i < n; i++) | |
ed880dd4 | 616 | { |
d7657f75 | 617 | fprintf( m_pstream, |
72cdf4c9 | 618 | "%d %d lineto\n", |
6a7b1d6e | 619 | LogicalToDeviceX(points[i].x+xoffset), LogicalToDeviceY(points[i].y+yoffset) ); |
ed880dd4 | 620 | } |
afce4c03 | 621 | |
d7657f75 | 622 | fprintf( m_pstream, "stroke\n" ); |
ed880dd4 RR |
623 | } |
624 | ||
72cdf4c9 | 625 | void wxPostScriptDC::DoDrawRectangle (wxCoord x, wxCoord y, wxCoord width, wxCoord height) |
ed880dd4 | 626 | { |
223d09f6 | 627 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 628 | |
ed880dd4 RR |
629 | if (m_brush.GetStyle () != wxTRANSPARENT) |
630 | { | |
631 | SetBrush( m_brush ); | |
72cdf4c9 VZ |
632 | |
633 | fprintf( m_pstream, | |
634 | "newpath\n" | |
635 | "%d %d moveto\n" | |
636 | "%d %d lineto\n" | |
637 | "%d %d lineto\n" | |
638 | "%d %d lineto\n" | |
d7657f75 RR |
639 | "closepath\n" |
640 | "fill\n", | |
6a7b1d6e RD |
641 | LogicalToDeviceX(x), LogicalToDeviceY(y), |
642 | LogicalToDeviceX(x + width), LogicalToDeviceY(y), | |
643 | LogicalToDeviceX(x + width), LogicalToDeviceY(y + height), | |
644 | LogicalToDeviceX(x), LogicalToDeviceY(y + height) ); | |
ed880dd4 RR |
645 | |
646 | CalcBoundingBox( x, y ); | |
647 | CalcBoundingBox( x + width, y + height ); | |
648 | } | |
afce4c03 | 649 | |
ed880dd4 RR |
650 | if (m_pen.GetStyle () != wxTRANSPARENT) |
651 | { | |
652 | SetPen (m_pen); | |
653 | ||
72cdf4c9 VZ |
654 | fprintf( m_pstream, |
655 | "newpath\n" | |
656 | "%d %d moveto\n" | |
657 | "%d %d lineto\n" | |
658 | "%d %d lineto\n" | |
659 | "%d %d lineto\n" | |
d7657f75 RR |
660 | "closepath\n" |
661 | "stroke\n", | |
6a7b1d6e RD |
662 | LogicalToDeviceX(x), LogicalToDeviceY(y), |
663 | LogicalToDeviceX(x + width), LogicalToDeviceY(y), | |
664 | LogicalToDeviceX(x + width), LogicalToDeviceY(y + height), | |
665 | LogicalToDeviceX(x), LogicalToDeviceY(y + height) ); | |
72cdf4c9 | 666 | |
ed880dd4 RR |
667 | CalcBoundingBox( x, y ); |
668 | CalcBoundingBox( x + width, y + height ); | |
669 | } | |
670 | } | |
671 | ||
72cdf4c9 | 672 | void wxPostScriptDC::DoDrawRoundedRectangle (wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius) |
ed880dd4 | 673 | { |
223d09f6 | 674 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 675 | |
ed880dd4 RR |
676 | if (radius < 0.0) |
677 | { | |
678 | // Now, a negative radius is interpreted to mean | |
679 | // 'the proportion of the smallest X or Y dimension' | |
680 | double smallest = 0.0; | |
681 | if (width < height) | |
9a6be59a | 682 | smallest = width; |
ed880dd4 | 683 | else |
9a6be59a | 684 | smallest = height; |
ed880dd4 RR |
685 | radius = (-radius * smallest); |
686 | } | |
afce4c03 | 687 | |
72cdf4c9 | 688 | wxCoord rad = (wxCoord) radius; |
ed880dd4 RR |
689 | |
690 | if (m_brush.GetStyle () != wxTRANSPARENT) | |
691 | { | |
692 | SetBrush( m_brush ); | |
afce4c03 | 693 | |
d7657f75 | 694 | /* Draw rectangle anticlockwise */ |
72cdf4c9 VZ |
695 | fprintf( m_pstream, |
696 | "newpath\n" | |
697 | "%d %d %d 90 180 arc\n" | |
698 | "%d %d moveto\n" | |
699 | "%d %d %d 180 270 arc\n" | |
700 | "%d %d lineto\n" | |
701 | "%d %d %d 270 0 arc\n" | |
702 | "%d %d lineto\n" | |
703 | "%d %d %d 0 90 arc\n" | |
704 | "%d %d lineto\n" | |
d7657f75 RR |
705 | "closepath\n" |
706 | "fill\n", | |
6a7b1d6e RD |
707 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y + rad), LogicalToDeviceXRel(rad), |
708 | LogicalToDeviceX(x), LogicalToDeviceY(y + rad), | |
709 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y + height - rad), LogicalToDeviceXRel(rad), | |
710 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + height), | |
711 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + height - rad), LogicalToDeviceXRel(rad), | |
712 | LogicalToDeviceX(x + width), LogicalToDeviceY(y + rad), | |
713 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + rad), LogicalToDeviceXRel(rad), | |
714 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y) ); | |
ed880dd4 RR |
715 | |
716 | CalcBoundingBox( x, y ); | |
717 | CalcBoundingBox( x + width, y + height ); | |
718 | } | |
afce4c03 | 719 | |
ed880dd4 RR |
720 | if (m_pen.GetStyle () != wxTRANSPARENT) |
721 | { | |
722 | SetPen (m_pen); | |
afce4c03 | 723 | |
d7657f75 | 724 | /* Draw rectangle anticlockwise */ |
72cdf4c9 VZ |
725 | fprintf( m_pstream, |
726 | "newpath\n" | |
727 | "%d %d %d 90 180 arc\n" | |
728 | "%d %d moveto\n" | |
729 | "%d %d %d 180 270 arc\n" | |
730 | "%d %d lineto\n" | |
731 | "%d %d %d 270 0 arc\n" | |
732 | "%d %d lineto\n" | |
733 | "%d %d %d 0 90 arc\n" | |
734 | "%d %d lineto\n" | |
d7657f75 RR |
735 | "closepath\n" |
736 | "stroke\n", | |
6a7b1d6e RD |
737 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y + rad), LogicalToDeviceXRel(rad), |
738 | LogicalToDeviceX(x), LogicalToDeviceY(y + rad), | |
739 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y + height - rad), LogicalToDeviceXRel(rad), | |
740 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + height), | |
741 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + height - rad), LogicalToDeviceXRel(rad), | |
742 | LogicalToDeviceX(x + width), LogicalToDeviceY(y + rad), | |
743 | LogicalToDeviceX(x + width - rad), LogicalToDeviceY(y + rad), LogicalToDeviceXRel(rad), | |
744 | LogicalToDeviceX(x + rad), LogicalToDeviceY(y) ); | |
ed880dd4 RR |
745 | |
746 | CalcBoundingBox( x, y ); | |
747 | CalcBoundingBox( x + width, y + height ); | |
748 | } | |
749 | } | |
750 | ||
72cdf4c9 | 751 | void wxPostScriptDC::DoDrawEllipse (wxCoord x, wxCoord y, wxCoord width, wxCoord height) |
ed880dd4 | 752 | { |
223d09f6 | 753 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 754 | |
ed880dd4 RR |
755 | if (m_brush.GetStyle () != wxTRANSPARENT) |
756 | { | |
757 | SetBrush (m_brush); | |
758 | ||
72cdf4c9 VZ |
759 | fprintf( m_pstream, |
760 | "newpath\n" | |
761 | "%d %d %d %d 0 360 ellipse\n" | |
762 | "fill\n", | |
6a7b1d6e RD |
763 | LogicalToDeviceX(x + width / 2), LogicalToDeviceY(y + height / 2), |
764 | LogicalToDeviceXRel(width / 2), LogicalToDeviceYRel(height / 2) ); | |
ed880dd4 RR |
765 | |
766 | CalcBoundingBox( x - width, y - height ); | |
767 | CalcBoundingBox( x + width, y + height ); | |
768 | } | |
afce4c03 | 769 | |
d7657f75 | 770 | if (m_pen.GetStyle () != wxTRANSPARENT) |
ed880dd4 RR |
771 | { |
772 | SetPen (m_pen); | |
773 | ||
72cdf4c9 VZ |
774 | fprintf( m_pstream, |
775 | "newpath\n" | |
776 | "%d %d %d %d 0 360 ellipse\n" | |
777 | "stroke\n", | |
6a7b1d6e RD |
778 | LogicalToDeviceX(x + width / 2), LogicalToDeviceY(y + height / 2), |
779 | LogicalToDeviceXRel(width / 2), LogicalToDeviceYRel(height / 2) ); | |
ed880dd4 RR |
780 | |
781 | CalcBoundingBox( x - width, y - height ); | |
782 | CalcBoundingBox( x + width, y + height ); | |
783 | } | |
784 | } | |
785 | ||
72cdf4c9 | 786 | void wxPostScriptDC::DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y ) |
ed880dd4 | 787 | { |
ef539066 | 788 | DrawBitmap( icon, x, y, TRUE ); |
ed880dd4 RR |
789 | } |
790 | ||
d7657f75 RR |
791 | /* this has to be char, not wxChar */ |
792 | static char hexArray[] = "0123456789ABCDEF"; | |
793 | static void LocalDecToHex( int dec, char *buf ) | |
794 | { | |
795 | int firstDigit = (int)(dec/16.0); | |
796 | int secondDigit = (int)(dec - (firstDigit*16.0)); | |
797 | buf[0] = hexArray[firstDigit]; | |
798 | buf[1] = hexArray[secondDigit]; | |
799 | buf[2] = 0; | |
800 | } | |
801 | ||
72cdf4c9 | 802 | void wxPostScriptDC::DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool WXUNUSED(useMask) ) |
ed880dd4 | 803 | { |
223d09f6 | 804 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
ef539066 RR |
805 | |
806 | if (!bitmap.Ok()) return; | |
afce4c03 | 807 | |
368d59f0 | 808 | wxImage image = bitmap.ConvertToImage(); |
afce4c03 | 809 | |
ef539066 | 810 | if (!image.Ok()) return; |
afce4c03 | 811 | |
b64de916 VS |
812 | wxCoord w = image.GetWidth(); |
813 | wxCoord h = image.GetHeight(); | |
814 | ||
6a7b1d6e RD |
815 | wxCoord ww = LogicalToDeviceXRel(image.GetWidth()); |
816 | wxCoord hh = LogicalToDeviceYRel(image.GetHeight()); | |
afce4c03 | 817 | |
6a7b1d6e RD |
818 | wxCoord xx = LogicalToDeviceX(x); |
819 | wxCoord yy = LogicalToDeviceY(y + bitmap.GetHeight()); | |
d7657f75 RR |
820 | |
821 | fprintf( m_pstream, | |
822 | "/origstate save def\n" | |
72cdf4c9 VZ |
823 | "20 dict begin\n" |
824 | "/pix %d string def\n" | |
825 | "/grays %d string def\n" | |
d7657f75 RR |
826 | "/npixels 0 def\n" |
827 | "/rgbindx 0 def\n" | |
72cdf4c9 VZ |
828 | "%d %d translate\n" |
829 | "%d %d scale\n" | |
830 | "%d %d 8\n" | |
831 | "[%d 0 0 %d 0 %d]\n" | |
832 | "{currentfile pix readhexstring pop}\n" | |
833 | "false 3 colorimage\n", | |
b64de916 VS |
834 | w, w, xx, yy, ww, hh, w, h, w, -h, h ); |
835 | ||
afce4c03 | 836 | |
b64de916 | 837 | for (int j = 0; j < h; j++) |
ef539066 | 838 | { |
b64de916 | 839 | for (int i = 0; i < w; i++) |
ef539066 | 840 | { |
d7657f75 RR |
841 | char buffer[5]; |
842 | LocalDecToHex( image.GetRed(i,j), buffer ); | |
72cdf4c9 | 843 | fprintf( m_pstream, buffer ); |
d7657f75 | 844 | LocalDecToHex( image.GetGreen(i,j), buffer ); |
72cdf4c9 VZ |
845 | fprintf( m_pstream, buffer ); |
846 | LocalDecToHex( image.GetBlue(i,j), buffer ); | |
847 | fprintf( m_pstream, buffer ); | |
d7657f75 RR |
848 | } |
849 | fprintf( m_pstream, "\n" ); | |
ef539066 RR |
850 | } |
851 | ||
d7657f75 RR |
852 | fprintf( m_pstream, "end\n" ); |
853 | fprintf( m_pstream, "origstate restore\n" ); | |
ed880dd4 RR |
854 | } |
855 | ||
36b3b54a | 856 | void wxPostScriptDC::SetFont( const wxFont& font ) |
ed880dd4 | 857 | { |
223d09f6 | 858 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 859 | |
ed880dd4 | 860 | if (!font.Ok()) return; |
afce4c03 | 861 | |
ed880dd4 | 862 | m_font = font; |
57c208c5 | 863 | |
c31c771b | 864 | #ifndef __WXGTK20__ |
36b3b54a RR |
865 | int Style = m_font.GetStyle(); |
866 | int Weight = m_font.GetWeight(); | |
867 | ||
733b25e1 | 868 | const char *name; |
d7657f75 | 869 | switch (m_font.GetFamily()) |
36b3b54a RR |
870 | { |
871 | case wxTELETYPE: | |
872 | case wxMODERN: | |
733b25e1 RR |
873 | { |
874 | if (Style == wxITALIC) | |
875 | { | |
876 | if (Weight == wxBOLD) | |
877 | name = "/Courier-BoldOblique"; | |
878 | else | |
879 | name = "/Courier-Oblique"; | |
880 | } | |
881 | else | |
882 | { | |
883 | if (Weight == wxBOLD) | |
884 | name = "/Courier-Bold"; | |
885 | else | |
886 | name = "/Courier"; | |
887 | } | |
36b3b54a | 888 | break; |
733b25e1 | 889 | } |
36b3b54a | 890 | case wxROMAN: |
733b25e1 RR |
891 | { |
892 | if (Style == wxITALIC) | |
893 | { | |
894 | if (Weight == wxBOLD) | |
895 | name = "/Times-BoldItalic"; | |
896 | else | |
897 | name = "/Times-Italic"; | |
898 | } | |
899 | else | |
900 | { | |
901 | if (Weight == wxBOLD) | |
902 | name = "/Times-Bold"; | |
903 | else | |
904 | name = "/Times-Roman"; | |
905 | } | |
36b3b54a | 906 | break; |
733b25e1 | 907 | } |
36b3b54a | 908 | case wxSCRIPT: |
733b25e1 RR |
909 | { |
910 | name = "/ZapfChancery-MediumItalic"; | |
36b3b54a RR |
911 | Style = wxNORMAL; |
912 | Weight = wxNORMAL; | |
913 | break; | |
733b25e1 RR |
914 | } |
915 | case wxSWISS: | |
36b3b54a | 916 | default: |
733b25e1 RR |
917 | { |
918 | if (Style == wxITALIC) | |
919 | { | |
920 | if (Weight == wxBOLD) | |
921 | name = "/Helvetica-BoldOblique"; | |
922 | else | |
923 | name = "/Helvetica-Oblique"; | |
924 | } | |
925 | else | |
926 | { | |
927 | if (Weight == wxBOLD) | |
928 | name = "/Helvetica-Bold"; | |
929 | else | |
930 | name = "/Helvetica"; | |
931 | } | |
932 | break; | |
933 | } | |
36b3b54a | 934 | } |
57c208c5 | 935 | |
733b25e1 | 936 | fprintf( m_pstream, name ); |
d7657f75 | 937 | fprintf( m_pstream, " reencodeISO def\n" ); |
733b25e1 | 938 | fprintf( m_pstream, name ); |
d7657f75 | 939 | fprintf( m_pstream, " findfont\n" ); |
ce7f10f2 | 940 | |
733b25e1 | 941 | char buffer[100]; |
6a7b1d6e | 942 | sprintf( buffer, "%f scalefont setfont\n", LogicalToDeviceYRel(m_font.GetPointSize() * 1000) / 1000.0F); |
ce7f10f2 | 943 | // this is a hack - we must scale font size (in pts) according to m_scaleY but |
6a7b1d6e | 944 | // LogicalToDeviceYRel works with wxCoord type (int or longint). Se we first convert font size |
479cd5de | 945 | // to 1/1000th of pt and then back. |
b64de916 VS |
946 | for (int i = 0; i < 100; i++) |
947 | if (buffer[i] == ',') buffer[i] = '.'; | |
948 | fprintf( m_pstream, buffer ); | |
c31c771b | 949 | #endif |
ed880dd4 RR |
950 | } |
951 | ||
952 | void wxPostScriptDC::SetPen( const wxPen& pen ) | |
953 | { | |
223d09f6 | 954 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 955 | |
ed880dd4 | 956 | if (!pen.Ok()) return; |
afce4c03 | 957 | |
ed880dd4 RR |
958 | int oldStyle = m_pen.GetStyle(); |
959 | ||
960 | m_pen = pen; | |
961 | ||
f6bcfd97 BP |
962 | { |
963 | char buffer[100]; | |
964 | #ifdef __WXMSW__ | |
6a7b1d6e | 965 | sprintf( buffer, "%f setlinewidth\n", LogicalToDeviceXRel(1000 * m_pen.GetWidth()) / 1000.0f ); |
f6bcfd97 | 966 | #else |
6a7b1d6e | 967 | sprintf( buffer, "%f setlinewidth\n", LogicalToDeviceXRel(1000 * m_pen.GetWidth()) / 1000.0f ); |
f6bcfd97 BP |
968 | #endif |
969 | for (int i = 0; i < 100; i++) | |
3ca6a5f0 | 970 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 BP |
971 | fprintf( m_pstream, buffer ); |
972 | } | |
973 | ||
ed880dd4 RR |
974 | /* |
975 | Line style - WRONG: 2nd arg is OFFSET | |
afce4c03 | 976 | |
ed880dd4 RR |
977 | Here, I'm afraid you do not conceive meaning of parameters of 'setdash' |
978 | operator correctly. You should look-up this in the Red Book: the 2nd parame- | |
979 | ter is not number of values in the array of the first one, but an offset | |
980 | into this description of the pattern. I mean a real *offset* not index | |
981 | into array. I.e. If the command is [3 4] 1 setdash is used, then there | |
72cdf4c9 | 982 | will be first black line *2* units wxCoord, then space 4 units, then the |
ed880dd4 RR |
983 | pattern of *3* units black, 4 units space will be repeated. |
984 | */ | |
985 | ||
986 | static const char *dotted = "[2 5] 2"; | |
987 | static const char *short_dashed = "[4 4] 2"; | |
72cdf4c9 | 988 | static const char *wxCoord_dashed = "[4 8] 2"; |
ed880dd4 RR |
989 | static const char *dotted_dashed = "[6 6 2 6] 4"; |
990 | ||
991 | const char *psdash = (char *) NULL; | |
d7657f75 | 992 | switch (m_pen.GetStyle()) |
ed880dd4 RR |
993 | { |
994 | case wxDOT: psdash = dotted; break; | |
995 | case wxSHORT_DASH: psdash = short_dashed; break; | |
72cdf4c9 | 996 | case wxLONG_DASH: psdash = wxCoord_dashed; break; |
ed880dd4 RR |
997 | case wxDOT_DASH: psdash = dotted_dashed; break; |
998 | case wxSOLID: | |
999 | case wxTRANSPARENT: | |
1000 | default: psdash = "[] 0"; break; | |
1001 | } | |
afce4c03 | 1002 | |
ed880dd4 RR |
1003 | if (oldStyle != m_pen.GetStyle()) |
1004 | { | |
d7657f75 | 1005 | fprintf( m_pstream, psdash ); |
72cdf4c9 | 1006 | fprintf( m_pstream," setdash\n" ); |
ed880dd4 RR |
1007 | } |
1008 | ||
1009 | // Line colour | |
1010 | unsigned char red = m_pen.GetColour().Red(); | |
1011 | unsigned char blue = m_pen.GetColour().Blue(); | |
1012 | unsigned char green = m_pen.GetColour().Green(); | |
1013 | ||
1014 | if (!m_colour) | |
1015 | { | |
1016 | // Anything not white is black | |
72cdf4c9 VZ |
1017 | if (! (red == (unsigned char) 255 && |
1018 | blue == (unsigned char) 255 && | |
d7657f75 RR |
1019 | green == (unsigned char) 255) ) |
1020 | { | |
1021 | red = (unsigned char) 0; | |
1022 | green = (unsigned char) 0; | |
1023 | blue = (unsigned char) 0; | |
72cdf4c9 | 1024 | } |
d7657f75 | 1025 | // setgray here ? |
ed880dd4 RR |
1026 | } |
1027 | ||
1028 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) | |
1029 | { | |
d7657f75 RR |
1030 | double redPS = (double)(red) / 255.0; |
1031 | double bluePS = (double)(blue) / 255.0; | |
1032 | double greenPS = (double)(green) / 255.0; | |
3ca6a5f0 | 1033 | |
f6bcfd97 BP |
1034 | char buffer[100]; |
1035 | sprintf( buffer, | |
72cdf4c9 VZ |
1036 | "%.8f %.8f %.8f setrgbcolor\n", |
1037 | redPS, greenPS, bluePS ); | |
f6bcfd97 | 1038 | for (int i = 0; i < 100; i++) |
3ca6a5f0 | 1039 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1040 | fprintf( m_pstream, buffer ); |
72cdf4c9 | 1041 | |
d7657f75 RR |
1042 | m_currentRed = red; |
1043 | m_currentBlue = blue; | |
1044 | m_currentGreen = green; | |
ed880dd4 RR |
1045 | } |
1046 | } | |
1047 | ||
1048 | void wxPostScriptDC::SetBrush( const wxBrush& brush ) | |
1049 | { | |
223d09f6 | 1050 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1051 | |
ed880dd4 | 1052 | if (!brush.Ok()) return; |
afce4c03 | 1053 | |
ed880dd4 RR |
1054 | m_brush = brush; |
1055 | ||
1056 | // Brush colour | |
3c1b65a4 RR |
1057 | unsigned char red = m_brush.GetColour().Red(); |
1058 | unsigned char blue = m_brush.GetColour().Blue(); | |
1059 | unsigned char green = m_brush.GetColour().Green(); | |
ed880dd4 RR |
1060 | |
1061 | if (!m_colour) | |
1062 | { | |
d7657f75 | 1063 | // Anything not white is black |
72cdf4c9 VZ |
1064 | if (! (red == (unsigned char) 255 && |
1065 | blue == (unsigned char) 255 && | |
d7657f75 RR |
1066 | green == (unsigned char) 255) ) |
1067 | { | |
1068 | red = (unsigned char) 0; | |
1069 | green = (unsigned char) 0; | |
1070 | blue = (unsigned char) 0; | |
72cdf4c9 | 1071 | } |
d7657f75 | 1072 | // setgray here ? |
ed880dd4 | 1073 | } |
72cdf4c9 | 1074 | |
ed880dd4 RR |
1075 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) |
1076 | { | |
d7657f75 RR |
1077 | double redPS = (double)(red) / 255.0; |
1078 | double bluePS = (double)(blue) / 255.0; | |
1079 | double greenPS = (double)(green) / 255.0; | |
72cdf4c9 | 1080 | |
f6bcfd97 BP |
1081 | char buffer[100]; |
1082 | sprintf( buffer, | |
72cdf4c9 VZ |
1083 | "%.8f %.8f %.8f setrgbcolor\n", |
1084 | redPS, greenPS, bluePS ); | |
f6bcfd97 | 1085 | for (int i = 0; i < 100; i++) |
3ca6a5f0 | 1086 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1087 | fprintf( m_pstream, buffer ); |
72cdf4c9 | 1088 | |
d7657f75 RR |
1089 | m_currentRed = red; |
1090 | m_currentBlue = blue; | |
1091 | m_currentGreen = green; | |
ed880dd4 RR |
1092 | } |
1093 | } | |
1094 | ||
46eed000 RR |
1095 | #ifdef __WXGTK20__ |
1096 | ||
eba33006 RR |
1097 | #define PANGO_ENABLE_ENGINE |
1098 | ||
46eed000 RR |
1099 | #include "wx/gtk/private.h" |
1100 | #include "wx/fontutil.h" | |
1101 | #include "gtk/gtk.h" | |
eba33006 RR |
1102 | //#include "gtk/gdk/gdkx.h" |
1103 | //#include <pango/pangoxft.h> | |
46eed000 | 1104 | #include <pango/pangoft2.h> |
c31c771b RR |
1105 | #include <freetype/ftglyph.h> |
1106 | ||
1107 | #ifndef FT_Outline_Decompose | |
1108 | FT_EXPORT( FT_Error ) FT_Outline_Decompose( | |
1109 | FT_Outline* outline, | |
1110 | const FT_Outline_Funcs* interface, | |
1111 | void* user ); | |
1112 | #endif | |
1113 | ||
1114 | typedef struct _OutlineInfo OutlineInfo; | |
1115 | struct _OutlineInfo { | |
1116 | FILE *OUT; | |
1117 | FT_Vector glyph_origin; | |
1118 | int dpi; | |
1119 | }; | |
1120 | ||
1121 | static int paps_move_to( FT_Vector* to, | |
1122 | void *user_data) | |
1123 | { | |
1124 | OutlineInfo *outline_info = (OutlineInfo*)user_data; | |
1125 | fprintf(outline_info->OUT, "%d %d moveto\n", | |
1126 | (int)to->x , | |
1127 | (int)to->y ); | |
1128 | return 0; | |
1129 | } | |
1130 | ||
1131 | static int paps_line_to( FT_Vector* to, | |
1132 | void *user_data) | |
1133 | { | |
1134 | OutlineInfo *outline_info = (OutlineInfo*)user_data; | |
1135 | fprintf(outline_info->OUT, "%d %d lineto\n", | |
1136 | (int)to->x , | |
1137 | (int)to->y ); | |
1138 | return 0; | |
1139 | } | |
1140 | ||
1141 | static int paps_conic_to( FT_Vector* control, | |
1142 | FT_Vector* to, | |
1143 | void *user_data) | |
1144 | { | |
1145 | OutlineInfo *outline_info = (OutlineInfo*)user_data; | |
1146 | fprintf(outline_info->OUT, "%d %d %d %d conicto\n", | |
1147 | (int)control->x , | |
1148 | (int)control->y , | |
1149 | (int)to->x , | |
1150 | (int)to->y ); | |
1151 | return 0; | |
1152 | } | |
1153 | ||
1154 | static int paps_cubic_to( FT_Vector* control1, | |
1155 | FT_Vector* control2, | |
1156 | FT_Vector* to, | |
1157 | void *user_data) | |
1158 | { | |
1159 | OutlineInfo *outline_info = (OutlineInfo*)user_data; | |
1160 | fprintf(outline_info->OUT, | |
1161 | "%d %d %d %d %d %d curveto\n", | |
1162 | (int)control1->x , | |
1163 | (int)control1->y , | |
1164 | (int)control2->x , | |
1165 | (int)control2->y , | |
1166 | (int)to->x , | |
1167 | (int)to->y ); | |
1168 | return 0; | |
1169 | } | |
1170 | ||
eba33006 | 1171 | void draw_bezier_outline(FILE *OUT, |
c31c771b RR |
1172 | int dpi, |
1173 | FT_Face face, | |
1174 | FT_UInt glyph_index, | |
1175 | wxCoord pos_x, | |
1176 | wxCoord pos_y | |
1177 | ) | |
1178 | { | |
1179 | FT_Int load_flags = FT_LOAD_DEFAULT; | |
1180 | FT_Glyph glyph; | |
1181 | ||
1182 | /* Output outline */ | |
1183 | FT_Outline_Funcs outlinefunc = | |
1184 | { | |
1185 | paps_move_to, | |
1186 | paps_line_to, | |
1187 | paps_conic_to, | |
1188 | paps_cubic_to | |
1189 | }; | |
1190 | OutlineInfo outline_info; | |
1191 | ||
1192 | outline_info.glyph_origin.x = (FT_Pos) pos_x; | |
1193 | outline_info.glyph_origin.y = (FT_Pos) pos_y; | |
1194 | outline_info.dpi = dpi; | |
1195 | outline_info.OUT = OUT; | |
1196 | ||
eba33006 | 1197 | fprintf(OUT, "gsave %d %d translate 1.0 72.0 div dup scale 0 0 0 setrgbcolor\n", pos_x, pos_y ); |
c31c771b RR |
1198 | |
1199 | FT_Load_Glyph(face, glyph_index, load_flags); | |
1200 | FT_Get_Glyph (face->glyph, &glyph); | |
1201 | FT_Outline_Decompose (&(((FT_OutlineGlyph)glyph)->outline), | |
1202 | &outlinefunc, &outline_info); | |
eba33006 | 1203 | fprintf(OUT, "closepath fill grestore \n"); |
c31c771b RR |
1204 | |
1205 | FT_Done_Glyph (glyph); | |
1206 | } | |
1207 | ||
46eed000 RR |
1208 | #endif |
1209 | ||
72cdf4c9 | 1210 | void wxPostScriptDC::DoDrawText( const wxString& text, wxCoord x, wxCoord y ) |
ed880dd4 | 1211 | { |
223d09f6 | 1212 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
479cd5de | 1213 | |
4e8e547c | 1214 | #ifdef __WXGTK20__ |
46eed000 | 1215 | |
eba33006 | 1216 | int dpi = GetResolution(); |
b1ac3b56 | 1217 | |
c31c771b | 1218 | PangoContext *context = pango_ft2_get_context ( dpi, dpi ); |
46eed000 RR |
1219 | |
1220 | // What are these for? | |
1221 | pango_context_set_language (context, pango_language_from_string ("en_US")); | |
1222 | pango_context_set_base_dir (context, PANGO_DIRECTION_LTR ); | |
1223 | ||
1224 | // Set the font | |
1225 | pango_context_set_font_description (context, m_font.GetNativeFontInfo()->description ); | |
1226 | ||
1227 | // Create layout | |
eba33006 | 1228 | PangoLayout *layout = pango_layout_new (context); |
46eed000 RR |
1229 | #if wxUSE_UNICODE |
1230 | wxCharBuffer buffer = wxConvUTF8.cWC2MB( text ); | |
1231 | #else | |
1232 | wxCharBuffer buffer = wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ); | |
1233 | #endif | |
1234 | pango_layout_set_text( layout, (const char*) buffer, strlen(buffer) ); | |
c31c771b | 1235 | |
eba33006 RR |
1236 | #if 1 |
1237 | int xx = LogicalToDeviceX(x); | |
1238 | int yy = LogicalToDeviceY(y /*+ bitmap.GetHeight()*/ ); | |
1239 | ||
1240 | xx *= PANGO_SCALE; | |
1241 | yy *= PANGO_SCALE; | |
c31c771b RR |
1242 | |
1243 | // Loop over lines in layout | |
1244 | int num_lines = pango_layout_get_line_count( layout ); | |
1245 | for (int i = 0; i < num_lines; i++) | |
1246 | { | |
1247 | PangoLayoutLine *line = pango_layout_get_line( layout, i ); | |
1248 | ||
1249 | // Loop over runs in line | |
1250 | GSList *runs_list = line->runs; | |
1251 | while (runs_list) | |
1252 | { | |
1253 | PangoLayoutRun *run = (PangoLayoutRun*) runs_list->data; | |
1254 | PangoItem *item = run->item; | |
1255 | PangoGlyphString *glyphs = run->glyphs; | |
1256 | PangoAnalysis *analysis = &item->analysis; | |
1257 | PangoFont *font = analysis->font; | |
1258 | FT_Face ft_face = pango_ft2_font_get_face(font); | |
1259 | ||
1260 | int num_glyphs = glyphs->num_glyphs; | |
1261 | for (int glyph_idx = 0; glyph_idx < num_glyphs; glyph_idx++) | |
1262 | { | |
1263 | PangoGlyphGeometry geometry = glyphs->glyphs[glyph_idx].geometry; | |
eba33006 RR |
1264 | int pos_x = xx + geometry.x_offset; |
1265 | int pos_y = yy - geometry.y_offset; | |
1266 | xx += geometry.width; | |
1267 | ||
c31c771b RR |
1268 | draw_bezier_outline( m_pstream, dpi, ft_face, |
1269 | (FT_UInt)(glyphs->glyphs[glyph_idx].glyph), | |
eba33006 | 1270 | (wxCoord)(pos_x / PANGO_SCALE), (wxCoord)(pos_y / PANGO_SCALE) ); |
c31c771b RR |
1271 | } |
1272 | runs_list = runs_list->next; | |
1273 | } | |
1274 | } | |
1275 | #else | |
46eed000 RR |
1276 | // Find out extent for the bitmap |
1277 | int height = 0; | |
1278 | int width = 0; | |
1279 | PangoRectangle logical_rect; | |
1280 | pango_layout_get_extents (layout, NULL, &logical_rect); | |
1281 | height = PANGO_PIXELS (logical_rect.height); | |
1282 | width = PANGO_PIXELS (logical_rect.width); | |
4e8e547c RR |
1283 | |
1284 | // printf( "h %d w %d lh %d lw %d\n", height, width, logical_rect.height, logical_rect.width ); | |
46eed000 RR |
1285 | |
1286 | // Allocate FreeType 2 bitmap | |
1287 | int byte_width = (width + 7)/8 * 8; | |
1288 | FT_Bitmap bitmap; | |
1289 | guchar *buf = (guchar*) g_malloc (byte_width * height); | |
1290 | memset (buf, 0x00, byte_width * height); | |
1291 | bitmap.rows = height; | |
1292 | bitmap.width = byte_width; | |
1293 | bitmap.pitch = byte_width; | |
1294 | bitmap.buffer = buf; | |
1295 | bitmap.num_grays = 256; | |
1296 | bitmap.pixel_mode = ft_pixel_mode_grays; | |
1297 | ||
1298 | // Render bitmap | |
1299 | pango_ft2_render_layout (&bitmap, layout, 0, 0); | |
1300 | ||
1301 | // Invert bitmap to get black text on white background | |
1302 | for (int pix_idx = 0; pix_idx < width * height; pix_idx++) | |
1303 | buf[pix_idx] = 255-buf[pix_idx]; | |
1304 | ||
1305 | // Write PS output | |
1306 | wxCoord xx = LogicalToDeviceX(x); | |
1307 | wxCoord yy = LogicalToDeviceY(y /*+ bitmap.GetHeight()*/ ); | |
1308 | ||
1309 | fprintf(m_pstream, "gsave\n"); | |
1310 | fprintf(m_pstream, "%d %d translate\n", xx, yy); | |
1311 | fprintf(m_pstream, "/img_width %d def\n", bitmap.width); | |
1312 | fprintf(m_pstream, "/img_height %d def\n", bitmap.rows); | |
1313 | fprintf(m_pstream, "/picstr img_width 8 idiv string def\n"); | |
1314 | ||
1315 | fprintf(m_pstream, | |
4e8e547c RR |
1316 | " img_width 72 15 div mul\n" |
1317 | " img_height 72 15 div mul scale\n" | |
46eed000 RR |
1318 | " 0 setgray\n" |
1319 | " img_width img_height\n" | |
1320 | " true\n" | |
1321 | " [img_width 0 0 img_height neg 0 img_height 0.67 mul]\n" | |
1322 | " { currentfile\n" | |
1323 | " picstr readhexstring pop }\n" | |
1324 | " imagemask" | |
1325 | ); | |
1326 | ||
1327 | ||
1328 | for (int b_idx= 0; b_idx < bitmap.width/8 * bitmap.rows; b_idx++) | |
1329 | { | |
1330 | guchar packed_b = 0; | |
1331 | int bit_idx; | |
1332 | ||
1333 | if (b_idx % (bitmap.width/8) == 0) | |
1334 | fprintf(m_pstream, "\n"); | |
1335 | ||
1336 | for (bit_idx = 0; bit_idx < 8; bit_idx++) | |
1337 | { | |
4e8e547c | 1338 | guchar this_bit = bitmap.buffer[b_idx * 8+bit_idx]<128; |
46eed000 RR |
1339 | packed_b = (packed_b << 1) + this_bit; |
1340 | } | |
46eed000 RR |
1341 | fprintf(m_pstream, "%02x", packed_b); |
1342 | } | |
1343 | ||
1344 | fprintf(m_pstream, "\ngrestore\n" ); | |
1345 | ||
46eed000 RR |
1346 | // Free memory |
1347 | g_free( buf ); | |
c31c771b | 1348 | #endif |
46eed000 RR |
1349 | |
1350 | #else | |
6c3d9ced | 1351 | wxCoord text_w, text_h, text_descent; |
479cd5de | 1352 | |
6c3d9ced | 1353 | GetTextExtent(text, &text_w, &text_h, &text_descent); |
afce4c03 | 1354 | |
080b749f VZ |
1355 | // VZ: this seems to be unnecessary, so taking it out for now, if it |
1356 | // doesn't create any problems, remove this comment entirely | |
1357 | //SetFont( m_font ); | |
ed880dd4 | 1358 | |
d7657f75 | 1359 | if (m_textForegroundColour.Ok()) |
ed880dd4 | 1360 | { |
d7657f75 RR |
1361 | unsigned char red = m_textForegroundColour.Red(); |
1362 | unsigned char blue = m_textForegroundColour.Blue(); | |
1363 | unsigned char green = m_textForegroundColour.Green(); | |
ed880dd4 RR |
1364 | |
1365 | if (!m_colour) | |
9a6be59a | 1366 | { |
d7657f75 | 1367 | // Anything not white is black |
72cdf4c9 VZ |
1368 | if (! (red == (unsigned char) 255 && |
1369 | blue == (unsigned char) 255 && | |
1370 | green == (unsigned char) 255)) | |
d7657f75 RR |
1371 | { |
1372 | red = (unsigned char) 0; | |
1373 | green = (unsigned char) 0; | |
1374 | blue = (unsigned char) 0; | |
1375 | } | |
9a6be59a | 1376 | } |
afce4c03 | 1377 | |
d7657f75 | 1378 | // maybe setgray here ? |
ed880dd4 RR |
1379 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) |
1380 | { | |
d7657f75 RR |
1381 | double redPS = (double)(red) / 255.0; |
1382 | double bluePS = (double)(blue) / 255.0; | |
1383 | double greenPS = (double)(green) / 255.0; | |
72cdf4c9 | 1384 | |
f6bcfd97 BP |
1385 | char buffer[100]; |
1386 | sprintf( buffer, | |
1387 | "%.8f %.8f %.8f setrgbcolor\n", | |
1388 | redPS, greenPS, bluePS ); | |
1389 | for (int i = 0; i < 100; i++) | |
3ca6a5f0 | 1390 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1391 | fprintf( m_pstream, buffer ); |
72cdf4c9 | 1392 | |
ed880dd4 RR |
1393 | m_currentRed = red; |
1394 | m_currentBlue = blue; | |
1395 | m_currentGreen = green; | |
1396 | } | |
1397 | } | |
1398 | ||
1399 | int size = m_font.GetPointSize(); | |
1400 | ||
6c3d9ced VS |
1401 | // wxCoord by = y + (wxCoord)floor( double(size) * 2.0 / 3.0 ); // approximate baseline |
1402 | // commented by V. Slavik and replaced by accurate version | |
1403 | // - note that there is still rounding error in text_descent! | |
1404 | wxCoord by = y + size - text_descent; // baseline | |
6a7b1d6e | 1405 | fprintf( m_pstream, "%d %d moveto\n", LogicalToDeviceX(x), LogicalToDeviceY(by) ); |
afce4c03 | 1406 | |
d7657f75 | 1407 | fprintf( m_pstream, "(" ); |
9626e0bf | 1408 | const wxWX2MBbuf textbuf = text.mb_str(); |
b2abc293 VS |
1409 | size_t len = strlen(textbuf); |
1410 | size_t i; | |
ed880dd4 RR |
1411 | for (i = 0; i < len; i++) |
1412 | { | |
87138c52 | 1413 | int c = (unsigned char) textbuf[i]; |
d7657f75 | 1414 | if (c == ')' || c == '(' || c == '\\') |
ed880dd4 | 1415 | { |
d7657f75 | 1416 | /* Cope with special characters */ |
72cdf4c9 | 1417 | fprintf( m_pstream, "\\" ); |
2d5e89e1 | 1418 | fputc(c, m_pstream); |
ed880dd4 RR |
1419 | } |
1420 | else if ( c >= 128 ) | |
1421 | { | |
d7657f75 | 1422 | /* Cope with character codes > 127 */ |
72cdf4c9 | 1423 | fprintf(m_pstream, "\\%o", c); |
ed880dd4 RR |
1424 | } |
1425 | else | |
72cdf4c9 | 1426 | { |
2d5e89e1 | 1427 | fputc(c, m_pstream); |
72cdf4c9 | 1428 | } |
ed880dd4 | 1429 | } |
72cdf4c9 | 1430 | |
d7657f75 | 1431 | fprintf( m_pstream, ") show\n" ); |
ed880dd4 RR |
1432 | |
1433 | if (m_font.GetUnderlined()) | |
1434 | { | |
72cdf4c9 | 1435 | wxCoord uy = (wxCoord)(y + size - m_underlinePosition); |
f6bcfd97 | 1436 | char buffer[100]; |
afce4c03 | 1437 | |
f6bcfd97 | 1438 | sprintf( buffer, |
72cdf4c9 VZ |
1439 | "gsave\n" |
1440 | "%d %d moveto\n" | |
f6bcfd97 | 1441 | "%f setlinewidth\n" |
72cdf4c9 VZ |
1442 | "%d %d lineto\n" |
1443 | "stroke\n" | |
1444 | "grestore\n", | |
6a7b1d6e | 1445 | LogicalToDeviceX(x), LogicalToDeviceY(uy), |
f6bcfd97 | 1446 | m_underlineThickness, |
6a7b1d6e | 1447 | LogicalToDeviceX(x + text_w), LogicalToDeviceY(uy) ); |
f6bcfd97 | 1448 | for (i = 0; i < 100; i++) |
3ca6a5f0 | 1449 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1450 | fprintf( m_pstream, buffer ); |
ed880dd4 | 1451 | } |
afce4c03 | 1452 | |
ed880dd4 RR |
1453 | CalcBoundingBox( x, y ); |
1454 | CalcBoundingBox( x + size * text.Length() * 2/3 , y ); | |
46eed000 | 1455 | #endif |
ed880dd4 RR |
1456 | } |
1457 | ||
95724b1a VZ |
1458 | void wxPostScriptDC::DoDrawRotatedText( const wxString& text, wxCoord x, wxCoord y, double angle ) |
1459 | { | |
1460 | if (angle == 0.0) | |
1461 | { | |
1462 | DoDrawText(text, x, y); | |
1463 | return; | |
1464 | } | |
1465 | ||
1466 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); | |
1467 | ||
1468 | SetFont( m_font ); | |
1469 | ||
1470 | if (m_textForegroundColour.Ok()) | |
1471 | { | |
1472 | unsigned char red = m_textForegroundColour.Red(); | |
1473 | unsigned char blue = m_textForegroundColour.Blue(); | |
1474 | unsigned char green = m_textForegroundColour.Green(); | |
1475 | ||
1476 | if (!m_colour) | |
1477 | { | |
1478 | // Anything not white is black | |
479cd5de VZ |
1479 | if (! (red == (unsigned char) 255 && |
1480 | blue == (unsigned char) 255 && | |
1481 | green == (unsigned char) 255)) | |
95724b1a VZ |
1482 | { |
1483 | red = (unsigned char) 0; | |
1484 | green = (unsigned char) 0; | |
1485 | blue = (unsigned char) 0; | |
1486 | } | |
1487 | } | |
1488 | ||
1489 | // maybe setgray here ? | |
1490 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) | |
1491 | { | |
1492 | double redPS = (double)(red) / 255.0; | |
1493 | double bluePS = (double)(blue) / 255.0; | |
1494 | double greenPS = (double)(green) / 255.0; | |
479cd5de | 1495 | |
f6bcfd97 BP |
1496 | char buffer[100]; |
1497 | sprintf( buffer, | |
1498 | "%.8f %.8f %.8f setrgbcolor\n", | |
1499 | redPS, greenPS, bluePS ); | |
1500 | for (int i = 0; i < 100; i++) | |
3ca6a5f0 | 1501 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1502 | fprintf( m_pstream, buffer ); |
479cd5de | 1503 | |
95724b1a VZ |
1504 | m_currentRed = red; |
1505 | m_currentBlue = blue; | |
1506 | m_currentGreen = green; | |
1507 | } | |
1508 | } | |
1509 | ||
1510 | int size = m_font.GetPointSize(); | |
1511 | ||
1512 | long by = y + (long)floor( double(size) * 2.0 / 3.0 ); // approximate baseline | |
1513 | ||
70846f0a | 1514 | // FIXME only correct for 90 degrees |
06b466c7 | 1515 | fprintf(m_pstream, "%d %d moveto\n", |
6a7b1d6e | 1516 | LogicalToDeviceX((wxCoord)(x + size)), LogicalToDeviceY((wxCoord)by) ); |
3ca6a5f0 | 1517 | |
f6bcfd97 BP |
1518 | char buffer[100]; |
1519 | sprintf(buffer, "%.8f rotate\n", angle); | |
b2abc293 | 1520 | size_t i; |
f6bcfd97 | 1521 | for (i = 0; i < 100; i++) |
3ca6a5f0 | 1522 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1523 | fprintf(m_pstream, buffer); |
95724b1a | 1524 | |
95724b1a VZ |
1525 | fprintf( m_pstream, "(" ); |
1526 | const wxWX2MBbuf textbuf = text.mb_str(); | |
b2abc293 | 1527 | size_t len = strlen(textbuf); |
95724b1a VZ |
1528 | for (i = 0; i < len; i++) |
1529 | { | |
1530 | int c = (unsigned char) textbuf[i]; | |
1531 | if (c == ')' || c == '(' || c == '\\') | |
1532 | { | |
1533 | /* Cope with special characters */ | |
479cd5de | 1534 | fprintf( m_pstream, "\\" ); |
2d5e89e1 | 1535 | fputc(c, m_pstream); |
95724b1a VZ |
1536 | } |
1537 | else if ( c >= 128 ) | |
1538 | { | |
1539 | /* Cope with character codes > 127 */ | |
479cd5de | 1540 | fprintf(m_pstream, "\\%o", c); |
95724b1a VZ |
1541 | } |
1542 | else | |
479cd5de | 1543 | { |
2d5e89e1 | 1544 | fputc(c, m_pstream); |
479cd5de | 1545 | } |
95724b1a | 1546 | } |
479cd5de | 1547 | |
95724b1a | 1548 | fprintf( m_pstream, ") show\n" ); |
3ca6a5f0 | 1549 | |
f6bcfd97 BP |
1550 | sprintf( buffer, "%.8f rotate\n", -angle ); |
1551 | for (i = 0; i < 100; i++) | |
3ca6a5f0 | 1552 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1553 | fprintf( m_pstream, buffer ); |
95724b1a VZ |
1554 | |
1555 | if (m_font.GetUnderlined()) | |
1556 | { | |
06b466c7 VZ |
1557 | wxCoord uy = (wxCoord)(y + size - m_underlinePosition); |
1558 | wxCoord w, h; | |
f6bcfd97 | 1559 | char buffer[100]; |
95724b1a VZ |
1560 | GetTextExtent(text, &w, &h); |
1561 | ||
f6bcfd97 | 1562 | sprintf( buffer, |
70846f0a | 1563 | "gsave\n" |
479cd5de | 1564 | "%d %d moveto\n" |
f6bcfd97 | 1565 | "%f setlinewidth\n" |
70846f0a VZ |
1566 | "%d %d lineto\n" |
1567 | "stroke\n" | |
479cd5de | 1568 | "grestore\n", |
6a7b1d6e | 1569 | LogicalToDeviceX(x), LogicalToDeviceY(uy), |
f6bcfd97 | 1570 | m_underlineThickness, |
6a7b1d6e | 1571 | LogicalToDeviceX(x + w), LogicalToDeviceY(uy) ); |
f6bcfd97 | 1572 | for (i = 0; i < 100; i++) |
3ca6a5f0 | 1573 | if (buffer[i] == ',') buffer[i] = '.'; |
f6bcfd97 | 1574 | fprintf( m_pstream, buffer ); |
95724b1a VZ |
1575 | } |
1576 | ||
1577 | CalcBoundingBox( x, y ); | |
1578 | CalcBoundingBox( x + size * text.Length() * 2/3 , y ); | |
1579 | } | |
ed880dd4 RR |
1580 | |
1581 | void wxPostScriptDC::SetBackground (const wxBrush& brush) | |
1582 | { | |
1583 | m_backgroundBrush = brush; | |
1584 | } | |
1585 | ||
1586 | void wxPostScriptDC::SetLogicalFunction (int WXUNUSED(function)) | |
1587 | { | |
223d09f6 | 1588 | wxFAIL_MSG( wxT("wxPostScriptDC::SetLogicalFunction not implemented.") ); |
ed880dd4 RR |
1589 | } |
1590 | ||
64698f9a | 1591 | void wxPostScriptDC::DoDrawSpline( wxList *points ) |
ed880dd4 | 1592 | { |
223d09f6 | 1593 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1594 | |
ed880dd4 RR |
1595 | SetPen( m_pen ); |
1596 | ||
1597 | double a, b, c, d, x1, y1, x2, y2, x3, y3; | |
1598 | wxPoint *p, *q; | |
1599 | ||
1600 | wxNode *node = points->First(); | |
1601 | p = (wxPoint *)node->Data(); | |
afce4c03 | 1602 | x1 = p->x; |
ed880dd4 RR |
1603 | y1 = p->y; |
1604 | ||
1605 | node = node->Next(); | |
1606 | p = (wxPoint *)node->Data(); | |
afce4c03 | 1607 | c = p->x; |
ed880dd4 RR |
1608 | d = p->y; |
1609 | x3 = a = (double)(x1 + c) / 2; | |
1610 | y3 = b = (double)(y1 + d) / 2; | |
1611 | ||
72cdf4c9 | 1612 | fprintf( m_pstream, |
d7657f75 | 1613 | "newpath\n" |
72cdf4c9 VZ |
1614 | "%d %d moveto\n" |
1615 | "%d %d lineto\n", | |
6a7b1d6e RD |
1616 | LogicalToDeviceX((wxCoord)x1), LogicalToDeviceY((wxCoord)y1), |
1617 | LogicalToDeviceX((wxCoord)x3), LogicalToDeviceY((wxCoord)y3) ); | |
afce4c03 | 1618 | |
72cdf4c9 VZ |
1619 | CalcBoundingBox( (wxCoord)x1, (wxCoord)y1 ); |
1620 | CalcBoundingBox( (wxCoord)x3, (wxCoord)y3 ); | |
ed880dd4 RR |
1621 | |
1622 | while ((node = node->Next()) != NULL) | |
1623 | { | |
1624 | q = (wxPoint *)node->Data(); | |
1625 | ||
d7657f75 RR |
1626 | x1 = x3; |
1627 | y1 = y3; | |
1628 | x2 = c; | |
1629 | y2 = d; | |
1630 | c = q->x; | |
1631 | d = q->y; | |
ed880dd4 RR |
1632 | x3 = (double)(x2 + c) / 2; |
1633 | y3 = (double)(y2 + d) / 2; | |
72cdf4c9 VZ |
1634 | |
1635 | fprintf( m_pstream, | |
1636 | "%d %d %d %d %d %d DrawSplineSection\n", | |
6a7b1d6e RD |
1637 | LogicalToDeviceX((wxCoord)x1), LogicalToDeviceY((wxCoord)y1), |
1638 | LogicalToDeviceX((wxCoord)x2), LogicalToDeviceY((wxCoord)y2), | |
1639 | LogicalToDeviceX((wxCoord)x3), LogicalToDeviceY((wxCoord)y3) ); | |
72cdf4c9 VZ |
1640 | |
1641 | CalcBoundingBox( (wxCoord)x1, (wxCoord)y1 ); | |
1642 | CalcBoundingBox( (wxCoord)x3, (wxCoord)y3 ); | |
ed880dd4 | 1643 | } |
afce4c03 | 1644 | |
72cdf4c9 VZ |
1645 | /* |
1646 | At this point, (x2,y2) and (c,d) are the position of the | |
1647 | next-to-last and last point respectively, in the point list | |
1648 | */ | |
ed880dd4 | 1649 | |
d7657f75 | 1650 | fprintf( m_pstream, |
72cdf4c9 VZ |
1651 | "%d %d lineto\n" |
1652 | "stroke\n", | |
6a7b1d6e | 1653 | LogicalToDeviceX((wxCoord)c), LogicalToDeviceY((wxCoord)d) ); |
ed880dd4 RR |
1654 | } |
1655 | ||
72cdf4c9 | 1656 | wxCoord wxPostScriptDC::GetCharWidth() const |
ed880dd4 RR |
1657 | { |
1658 | // Chris Breeze: reasonable approximation using wxMODERN/Courier | |
72cdf4c9 | 1659 | return (wxCoord) (GetCharHeight() * 72.0 / 120.0); |
ed880dd4 RR |
1660 | } |
1661 | ||
1662 | ||
1663 | void wxPostScriptDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp ) | |
1664 | { | |
223d09f6 | 1665 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1666 | |
ed880dd4 RR |
1667 | m_signX = (xLeftRight ? 1 : -1); |
1668 | m_signY = (yBottomUp ? 1 : -1); | |
afce4c03 | 1669 | |
004fd0c8 DW |
1670 | // FIXME there is no such function in MSW nor in OS2/PM |
1671 | #if !defined(__WXMSW__) && !defined(__WXPM__) | |
ed880dd4 | 1672 | ComputeScaleAndOrigin(); |
9a6be59a | 1673 | #endif |
ed880dd4 RR |
1674 | } |
1675 | ||
72cdf4c9 | 1676 | void wxPostScriptDC::SetDeviceOrigin( wxCoord x, wxCoord y ) |
ed880dd4 | 1677 | { |
223d09f6 | 1678 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1679 | |
4bc67cc5 RR |
1680 | int h = 0; |
1681 | int w = 0; | |
1682 | GetSize( &w, &h ); | |
afce4c03 | 1683 | |
4bc67cc5 | 1684 | wxDC::SetDeviceOrigin( x, h-y ); |
ed880dd4 RR |
1685 | } |
1686 | ||
4e4ea166 | 1687 | void wxPostScriptDC::DoGetSize(int* width, int* height) const |
ed880dd4 | 1688 | { |
7bcb11d3 | 1689 | wxPaperSize id = m_printData.GetPaperId(); |
ed880dd4 | 1690 | |
7bcb11d3 | 1691 | wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(id); |
afce4c03 | 1692 | |
7bcb11d3 | 1693 | if (!paper) paper = wxThePrintPaperDatabase->FindPaperType(wxPAPER_A4); |
afce4c03 | 1694 | |
ac2def68 RR |
1695 | int w = 595; |
1696 | int h = 842; | |
ed880dd4 RR |
1697 | if (paper) |
1698 | { | |
ac2def68 RR |
1699 | w = paper->GetSizeDeviceUnits().x; |
1700 | h = paper->GetSizeDeviceUnits().y; | |
ed880dd4 | 1701 | } |
72cdf4c9 | 1702 | |
ac2def68 | 1703 | if (m_printData.GetOrientation() == wxLANDSCAPE) |
ed880dd4 | 1704 | { |
ac2def68 | 1705 | int tmp = w; |
72cdf4c9 VZ |
1706 | w = h; |
1707 | h = tmp; | |
ed880dd4 | 1708 | } |
72cdf4c9 | 1709 | |
b64de916 VS |
1710 | if (width) *width = (int)(w * ms_PSScaleFactor); |
1711 | if (height) *height = (int)(h * ms_PSScaleFactor); | |
ed880dd4 RR |
1712 | } |
1713 | ||
4e4ea166 | 1714 | void wxPostScriptDC::DoGetSizeMM(int *width, int *height) const |
ed880dd4 | 1715 | { |
7bcb11d3 JS |
1716 | wxPaperSize id = m_printData.GetPaperId(); |
1717 | ||
1718 | wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(id); | |
afce4c03 | 1719 | |
7bcb11d3 JS |
1720 | if (!paper) paper = wxThePrintPaperDatabase->FindPaperType(wxPAPER_A4); |
1721 | ||
ac2def68 RR |
1722 | int w = 210; |
1723 | int h = 297; | |
7bcb11d3 | 1724 | if (paper) |
ed880dd4 | 1725 | { |
ac2def68 RR |
1726 | w = paper->GetWidth() / 10; |
1727 | h = paper->GetHeight() / 10; | |
ed880dd4 | 1728 | } |
72cdf4c9 | 1729 | |
ac2def68 | 1730 | if (m_printData.GetOrientation() == wxLANDSCAPE) |
ed880dd4 | 1731 | { |
ac2def68 | 1732 | int tmp = w; |
72cdf4c9 VZ |
1733 | w = h; |
1734 | h = tmp; | |
ed880dd4 | 1735 | } |
72cdf4c9 | 1736 | |
ac2def68 RR |
1737 | if (width) *width = w; |
1738 | if (height) *height = h; | |
7bcb11d3 JS |
1739 | } |
1740 | ||
1741 | // Resolution in pixels per logical inch | |
1742 | wxSize wxPostScriptDC::GetPPI(void) const | |
1743 | { | |
48c31b28 | 1744 | return wxSize((int)(72 * ms_PSScaleFactor), |
b64de916 | 1745 | (int)(72 * ms_PSScaleFactor)); |
7bcb11d3 | 1746 | } |
ed880dd4 | 1747 | |
7bcb11d3 | 1748 | |
d7657f75 | 1749 | bool wxPostScriptDC::StartDoc( const wxString& message ) |
7bcb11d3 | 1750 | { |
223d09f6 | 1751 | wxCHECK_MSG( m_ok, FALSE, wxT("invalid postscript dc") ); |
7bcb11d3 JS |
1752 | |
1753 | if (m_printData.GetFilename() == "") | |
1754 | { | |
1755 | wxString filename = wxGetTempFileName("ps"); | |
1756 | m_printData.SetFilename(filename); | |
7bcb11d3 | 1757 | } |
72cdf4c9 | 1758 | |
401eb3de | 1759 | m_pstream = wxFopen( m_printData.GetFilename().c_str(), wxT("w+") ); // FIXME: use fn_str() here under Unicode? |
7bcb11d3 | 1760 | |
d7657f75 | 1761 | if (!m_pstream) |
ed880dd4 | 1762 | { |
f6bcfd97 | 1763 | wxLogError( _("Cannot open file for PostScript printing!")); |
7bcb11d3 JS |
1764 | m_ok = FALSE; |
1765 | return FALSE; | |
ed880dd4 | 1766 | } |
afce4c03 | 1767 | |
ed880dd4 RR |
1768 | m_ok = TRUE; |
1769 | ||
eba33006 RR |
1770 | fprintf( m_pstream, "%%!PS-Adobe-2.0\n" ); |
1771 | fprintf( m_pstream, "%%%%Title: %s\n", (const char *) m_title.ToAscii() ); | |
1772 | fprintf( m_pstream, "%%%%Creator: wxWindows PostScript renderer\n" ); | |
1773 | fprintf( m_pstream, "%%%%CreationDate: %s\n", (const char *) wxNow().ToAscii() ); | |
1774 | if (m_printData.GetOrientation() == wxLANDSCAPE) | |
1775 | fprintf( m_pstream, "%%%%Orientation: Landscape\n" ); | |
1776 | else | |
1777 | fprintf( m_pstream, "%%%%Orientation: Portrait\n" ); | |
1778 | ||
09c9194a RR |
1779 | // fprintf( m_pstream, "%%%%Pages: %d\n", (wxPageNumber - 1) ); |
1780 | ||
eba33006 RR |
1781 | // wxPaperSize ps = m_printData.GetPaperId(); |
1782 | // if (ps == ...) | |
1783 | fprintf( m_pstream, "%%%%DocumentPaperSizes: %s\n", "A4" ); | |
1784 | fprintf( m_pstream, "%%%%EndComments\n\n" ); | |
1785 | ||
d7657f75 | 1786 | fprintf( m_pstream, "%%%%BeginProlog\n" ); |
c31c771b | 1787 | fprintf( m_pstream, wxPostScriptHeaderConicTo ); |
d7657f75 RR |
1788 | fprintf( m_pstream, wxPostScriptHeaderEllipse ); |
1789 | fprintf( m_pstream, wxPostScriptHeaderEllipticArc ); | |
1790 | fprintf( m_pstream, wxPostScriptHeaderColourImage ); | |
c31c771b | 1791 | #ifndef __WXGTK20__ |
d7657f75 RR |
1792 | fprintf( m_pstream, wxPostScriptHeaderReencodeISO1 ); |
1793 | fprintf( m_pstream, wxPostScriptHeaderReencodeISO2 ); | |
c31c771b | 1794 | #endif |
d7657f75 RR |
1795 | if (wxPostScriptHeaderSpline) |
1796 | fprintf( m_pstream, wxPostScriptHeaderSpline ); | |
1797 | fprintf( m_pstream, "%%%%EndProlog\n" ); | |
1798 | ||
ed880dd4 RR |
1799 | SetBrush( *wxBLACK_BRUSH ); |
1800 | SetPen( *wxBLACK_PEN ); | |
1801 | SetBackground( *wxWHITE_BRUSH ); | |
1802 | SetTextForeground( *wxBLACK ); | |
1803 | ||
1804 | // set origin according to paper size | |
1805 | SetDeviceOrigin( 0,0 ); | |
afce4c03 | 1806 | |
ed880dd4 RR |
1807 | wxPageNumber = 1; |
1808 | m_pageNumber = 1; | |
1809 | m_title = message; | |
1810 | return TRUE; | |
1811 | } | |
1812 | ||
1813 | void wxPostScriptDC::EndDoc () | |
1814 | { | |
223d09f6 | 1815 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1816 | |
ed880dd4 RR |
1817 | if (m_clipping) |
1818 | { | |
1819 | m_clipping = FALSE; | |
72cdf4c9 | 1820 | fprintf( m_pstream, "grestore\n" ); |
ed880dd4 RR |
1821 | } |
1822 | ||
d7657f75 RR |
1823 | fclose( m_pstream ); |
1824 | m_pstream = (FILE *) NULL; | |
ed880dd4 | 1825 | |
eba33006 | 1826 | #if 0 |
ed880dd4 | 1827 | // THE FOLLOWING HAS BEEN CONTRIBUTED BY Andy Fyfe <andy@hyperparallel.com> |
72cdf4c9 | 1828 | wxCoord wx_printer_translate_x, wx_printer_translate_y; |
ed880dd4 | 1829 | double wx_printer_scale_x, wx_printer_scale_y; |
ed880dd4 | 1830 | |
479cd5de VZ |
1831 | wx_printer_translate_x = (wxCoord)m_printData.GetPrinterTranslateX(); |
1832 | wx_printer_translate_y = (wxCoord)m_printData.GetPrinterTranslateY(); | |
7bcb11d3 JS |
1833 | |
1834 | wx_printer_scale_x = m_printData.GetPrinterScaleX(); | |
1835 | wx_printer_scale_y = m_printData.GetPrinterScaleY(); | |
1836 | ||
ed880dd4 RR |
1837 | // Compute the bounding box. Note that it is in the default user |
1838 | // coordinate system, thus we have to convert the values. | |
6a7b1d6e RD |
1839 | wxCoord minX = (wxCoord) LogicalToDeviceX(m_minX); |
1840 | wxCoord minY = (wxCoord) LogicalToDeviceY(m_minY); | |
1841 | wxCoord maxX = (wxCoord) LogicalToDeviceX(m_maxX); | |
1842 | wxCoord maxY = (wxCoord) LogicalToDeviceY(m_maxY); | |
48c31b28 | 1843 | |
a30f8da8 VS |
1844 | // LOG2DEV may have changed the minimum to maximum vice versa |
1845 | if ( minX > maxX ) { wxCoord tmp = minX; minX = maxX; maxX = tmp; } | |
1846 | if ( minY > maxY ) { wxCoord tmp = minY; minY = maxY; maxY = tmp; } | |
48c31b28 | 1847 | |
a30f8da8 VS |
1848 | // account for used scaling (boundingbox is before scaling in ps-file) |
1849 | double scale_x = m_printData.GetPrinterScaleX() / ms_PSScaleFactor; | |
1850 | double scale_y = m_printData.GetPrinterScaleY() / ms_PSScaleFactor; | |
48c31b28 VZ |
1851 | |
1852 | wxCoord llx, lly, urx, ury; | |
a30f8da8 VS |
1853 | llx = (wxCoord) ((minX+wx_printer_translate_x)*scale_x); |
1854 | lly = (wxCoord) ((minY+wx_printer_translate_y)*scale_y); | |
1855 | urx = (wxCoord) ((maxX+wx_printer_translate_x)*scale_x); | |
1856 | ury = (wxCoord) ((maxY+wx_printer_translate_y)*scale_y); | |
1857 | // (end of bounding box computation) | |
1858 | ||
ed880dd4 RR |
1859 | |
1860 | // If we're landscape, our sense of "x" and "y" is reversed. | |
7bcb11d3 | 1861 | if (m_printData.GetOrientation() == wxLANDSCAPE) |
ed880dd4 | 1862 | { |
72cdf4c9 | 1863 | wxCoord tmp; |
ed880dd4 RR |
1864 | tmp = llx; llx = lly; lly = tmp; |
1865 | tmp = urx; urx = ury; ury = tmp; | |
1866 | ||
1867 | // We need either the two lines that follow, or we need to subtract | |
1868 | // min_x from real_translate_y, which is commented out below. | |
72cdf4c9 VZ |
1869 | llx = llx - (wxCoord)(m_minX*wx_printer_scale_y); |
1870 | urx = urx - (wxCoord)(m_minX*wx_printer_scale_y); | |
ed880dd4 RR |
1871 | } |
1872 | ||
1873 | // The Adobe specifications call for integers; we round as to make | |
1874 | // the bounding larger. | |
72cdf4c9 VZ |
1875 | fprintf( m_pstream, |
1876 | "%%%%BoundingBox: %d %d %d %d\n", | |
1877 | (wxCoord)floor((double)llx), (wxCoord)floor((double)lly), | |
1878 | (wxCoord)ceil((double)urx), (wxCoord)ceil((double)ury) ); | |
ed880dd4 RR |
1879 | |
1880 | // To check the correctness of the bounding box, postscript commands | |
1881 | // to draw a box corresponding to the bounding box are generated below. | |
1882 | // But since we typically don't want to print such a box, the postscript | |
1883 | // commands are generated within comments. These lines appear before any | |
1884 | // adjustment of scale, rotation, or translation, and hence are in the | |
1885 | // default user coordinates. | |
d7657f75 | 1886 | fprintf( m_pstream, "%% newpath\n" ); |
72cdf4c9 VZ |
1887 | fprintf( m_pstream, "%% %d %d moveto\n", llx, lly ); |
1888 | fprintf( m_pstream, "%% %d %d lineto\n", urx, lly ); | |
1889 | fprintf( m_pstream, "%% %d %d lineto\n", urx, ury ); | |
1890 | fprintf( m_pstream, "%% %d %d lineto closepath stroke\n", llx, ury ); | |
09c9194a | 1891 | #endif |
ed880dd4 | 1892 | |
ed880dd4 | 1893 | #if defined(__X__) || defined(__WXGTK__) |
d7657f75 | 1894 | if (m_ok) |
ed880dd4 | 1895 | { |
09c9194a RR |
1896 | wxString command; |
1897 | command += m_printData.GetPrinterCommand(); | |
1898 | command += wxT(" "); | |
1899 | command += m_printData.GetFilename(); | |
ed880dd4 | 1900 | |
09c9194a RR |
1901 | wxExecute( command, TRUE ); |
1902 | wxRemoveFile( m_printData.GetFilename() ); | |
ed880dd4 RR |
1903 | } |
1904 | #endif | |
1905 | } | |
1906 | ||
d7657f75 | 1907 | void wxPostScriptDC::StartPage() |
ed880dd4 | 1908 | { |
223d09f6 | 1909 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1910 | |
d7657f75 | 1911 | fprintf( m_pstream, "%%%%Page: %d\n", wxPageNumber++ ); |
afce4c03 | 1912 | |
ac2def68 | 1913 | // What is this one supposed to do? RR. |
ed880dd4 RR |
1914 | // *m_pstream << "matrix currentmatrix\n"; |
1915 | ||
1916 | // Added by Chris Breeze | |
1917 | ||
9a6be59a VZ |
1918 | // Each page starts with an "initgraphics" which resets the |
1919 | // transformation and so we need to reset the origin | |
1920 | // (and rotate the page for landscape printing) | |
afce4c03 | 1921 | |
afce4c03 | 1922 | // Output scaling |
72cdf4c9 | 1923 | wxCoord translate_x, translate_y; |
afce4c03 | 1924 | double scale_x, scale_y; |
afce4c03 | 1925 | |
479cd5de VZ |
1926 | translate_x = (wxCoord)m_printData.GetPrinterTranslateX(); |
1927 | translate_y = (wxCoord)m_printData.GetPrinterTranslateY(); | |
7bcb11d3 JS |
1928 | |
1929 | scale_x = m_printData.GetPrinterScaleX(); | |
1930 | scale_y = m_printData.GetPrinterScaleY(); | |
1931 | ||
1932 | if (m_printData.GetOrientation() == wxLANDSCAPE) | |
afce4c03 | 1933 | { |
ac2def68 RR |
1934 | int h; |
1935 | GetSize( (int*) NULL, &h ); | |
1936 | translate_y -= h; | |
1937 | fprintf( m_pstream, "90 rotate\n" ); | |
72cdf4c9 | 1938 | |
ac2def68 | 1939 | // I copied this one from a PostScript tutorial, but to no avail. RR. |
72cdf4c9 | 1940 | // fprintf( m_pstream, "90 rotate llx neg ury nef translate\n" ); |
afce4c03 VZ |
1941 | } |
1942 | ||
f6bcfd97 | 1943 | char buffer[100]; |
48c31b28 | 1944 | sprintf( buffer, "%.8f %.8f scale\n", scale_x / ms_PSScaleFactor, |
b64de916 | 1945 | scale_y / ms_PSScaleFactor); |
f6bcfd97 BP |
1946 | for (int i = 0; i < 100; i++) |
1947 | if (buffer[i] == ',') buffer[i] = '.'; | |
1948 | fprintf( m_pstream, buffer ); | |
3ca6a5f0 | 1949 | |
72cdf4c9 | 1950 | fprintf( m_pstream, "%d %d translate\n", translate_x, translate_y ); |
ed880dd4 RR |
1951 | } |
1952 | ||
1953 | void wxPostScriptDC::EndPage () | |
1954 | { | |
223d09f6 | 1955 | wxCHECK_RET( m_ok && m_pstream, wxT("invalid postscript dc") ); |
afce4c03 | 1956 | |
d7657f75 | 1957 | fprintf( m_pstream, "showpage\n" ); |
ed880dd4 RR |
1958 | } |
1959 | ||
72cdf4c9 VZ |
1960 | bool wxPostScriptDC::DoBlit( wxCoord xdest, wxCoord ydest, |
1961 | wxCoord fwidth, wxCoord fheight, | |
afce4c03 | 1962 | wxDC *source, |
72cdf4c9 | 1963 | wxCoord xsrc, wxCoord ysrc, |
f0a6b1cd | 1964 | int rop, bool WXUNUSED(useMask), wxCoord WXUNUSED(xsrcMask), wxCoord WXUNUSED(ysrcMask) ) |
ed880dd4 | 1965 | { |
223d09f6 | 1966 | wxCHECK_MSG( m_ok && m_pstream, FALSE, wxT("invalid postscript dc") ); |
afce4c03 | 1967 | |
223d09f6 | 1968 | wxCHECK_MSG( source, FALSE, wxT("invalid source dc") ); |
afce4c03 | 1969 | |
342b6a2f | 1970 | /* blit into a bitmap */ |
afce4c03 | 1971 | wxBitmap bitmap( (int)fwidth, (int)fheight ); |
45b776d4 JS |
1972 | wxMemoryDC memDC; |
1973 | memDC.SelectObject(bitmap); | |
342b6a2f | 1974 | memDC.Blit(0, 0, fwidth, fheight, source, xsrc, ysrc, rop); /* TODO: Blit transparently? */ |
45b776d4 | 1975 | memDC.SelectObject(wxNullBitmap); |
ea6f44b5 RR |
1976 | |
1977 | /* draw bitmap. scaling and positioning is done there */ | |
ea6f44b5 | 1978 | DrawBitmap( bitmap, xdest, ydest ); |
afce4c03 | 1979 | |
ed880dd4 RR |
1980 | return TRUE; |
1981 | } | |
1982 | ||
72cdf4c9 | 1983 | wxCoord wxPostScriptDC::GetCharHeight() const |
ed880dd4 RR |
1984 | { |
1985 | if (m_font.Ok()) | |
b64de916 | 1986 | return m_font.GetPointSize(); |
ed880dd4 RR |
1987 | else |
1988 | return 12; | |
1989 | } | |
1990 | ||
72cdf4c9 VZ |
1991 | void wxPostScriptDC::DoGetTextExtent(const wxString& string, |
1992 | wxCoord *x, wxCoord *y, | |
1993 | wxCoord *descent, wxCoord *externalLeading, | |
1994 | wxFont *theFont ) const | |
ed880dd4 | 1995 | { |
36b3b54a | 1996 | wxFont *fontToUse = theFont; |
afce4c03 | 1997 | |
36b3b54a RR |
1998 | if (!fontToUse) fontToUse = (wxFont*) &m_font; |
1999 | ||
223d09f6 | 2000 | wxCHECK_RET( fontToUse, wxT("GetTextExtent: no font defined") ); |
87138c52 | 2001 | |
9626e0bf | 2002 | const wxWX2MBbuf strbuf = string.mb_str(); |
ed880dd4 | 2003 | |
f036b31c | 2004 | #if !wxUSE_AFM_FOR_POSTSCRIPT |
36b3b54a RR |
2005 | /* Provide a VERY rough estimate (avoid using it). |
2006 | * Produces accurate results for mono-spaced font | |
2007 | * such as Courier (aka wxMODERN) */ | |
afce4c03 | 2008 | |
9a6be59a VZ |
2009 | int height = 12; |
2010 | if (fontToUse) | |
2011 | { | |
afce4c03 | 2012 | height = fontToUse->GetPointSize(); |
9a6be59a | 2013 | } |
72cdf4c9 VZ |
2014 | if ( x ) |
2015 | *x = strlen (strbuf) * height * 72 / 120; | |
2016 | if ( y ) | |
2017 | *y = (wxCoord) (height * 1.32); /* allow for descender */ | |
36b3b54a RR |
2018 | if (descent) *descent = 0; |
2019 | if (externalLeading) *externalLeading = 0; | |
ed880dd4 | 2020 | #else |
ed880dd4 | 2021 | |
afce4c03 VZ |
2022 | /* method for calculating string widths in postscript: |
2023 | / read in the AFM (adobe font metrics) file for the | |
2024 | / actual font, parse it and extract the character widths | |
2025 | / and also the descender. this may be improved, but for now | |
2026 | / it works well. the AFM file is only read in if the | |
2027 | / font is changed. this may be chached in the future. | |
2028 | / calls to GetTextExtent with the font unchanged are rather | |
2029 | / efficient!!! | |
2030 | / | |
2031 | / for each font and style used there is an AFM file necessary. | |
2032 | / currently i have only files for the roman font family. | |
2033 | / I try to get files for the other ones! | |
2034 | / | |
2035 | / CAVE: the size of the string is currently always calculated | |
2036 | / in 'points' (1/72 of an inch). this should later on be | |
2037 | / changed to depend on the mapping mode. | |
2038 | / CAVE: the path to the AFM files must be set before calling this | |
2039 | / function. this is usually done by a call like the following: | |
2040 | / wxSetAFMPath("d:\\wxw161\\afm\\"); | |
2041 | / | |
2042 | / example: | |
2043 | / | |
2044 | / wxPostScriptDC dc(NULL, TRUE); | |
2045 | / if (dc.Ok()){ | |
2046 | / wxSetAFMPath("d:\\wxw161\\afm\\"); | |
2047 | / dc.StartDoc("Test"); | |
2048 | / dc.StartPage(); | |
72cdf4c9 | 2049 | / wxCoord w,h; |
afce4c03 VZ |
2050 | / dc.SetFont(new wxFont(10, wxROMAN, wxNORMAL, wxNORMAL)); |
2051 | / dc.GetTextExtent("Hallo",&w,&h); | |
2052 | / dc.EndPage(); | |
2053 | / dc.EndDoc(); | |
2054 | / } | |
2055 | / | |
2056 | / by steve (stefan.hammes@urz.uni-heidelberg.de) | |
2057 | / created: 10.09.94 | |
2058 | / updated: 14.05.95 */ | |
36b3b54a RR |
2059 | |
2060 | /* these static vars are for storing the state between calls */ | |
2061 | static int lastFamily= INT_MIN; | |
2062 | static int lastSize= INT_MIN; | |
2063 | static int lastStyle= INT_MIN; | |
2064 | static int lastWeight= INT_MIN; | |
2065 | static int lastDescender = INT_MIN; | |
2066 | static int lastWidths[256]; /* widths of the characters */ | |
72cdf4c9 | 2067 | |
a439ecef VS |
2068 | double UnderlinePosition = 0.0; |
2069 | double UnderlineThickness = 0.0; | |
36b3b54a | 2070 | |
eba33006 | 2071 | // Get actual parameters |
733b25e1 RR |
2072 | int Family = fontToUse->GetFamily(); |
2073 | int Size = fontToUse->GetPointSize(); | |
2074 | int Style = fontToUse->GetStyle(); | |
2075 | int Weight = fontToUse->GetWeight(); | |
36b3b54a | 2076 | |
eba33006 | 2077 | // If we have another font, read the font-metrics |
36b3b54a RR |
2078 | if (Family!=lastFamily || Size!=lastSize || Style!=lastStyle || Weight!=lastWeight) |
2079 | { | |
eba33006 | 2080 | // Store actual values |
36b3b54a RR |
2081 | lastFamily = Family; |
2082 | lastSize = Size; | |
2083 | lastStyle = Style; | |
2084 | lastWeight = Weight; | |
2085 | ||
08a9473b | 2086 | const char *name = NULL; |
36b3b54a RR |
2087 | |
2088 | switch (Family) | |
afce4c03 VZ |
2089 | { |
2090 | case wxMODERN: | |
733b25e1 RR |
2091 | case wxTELETYPE: |
2092 | { | |
2093 | if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "CourBoO.afm"; | |
2094 | else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "CourBo.afm"; | |
2095 | else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "CourO.afm"; | |
2096 | else name = "Cour.afm"; | |
afce4c03 | 2097 | break; |
733b25e1 | 2098 | } |
afce4c03 | 2099 | case wxROMAN: |
733b25e1 RR |
2100 | { |
2101 | if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "TimesBoO.afm"; | |
2102 | else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "TimesBo.afm"; | |
2103 | else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "TimesO.afm"; | |
2104 | else name = "TimesRo.afm"; | |
afce4c03 | 2105 | break; |
733b25e1 RR |
2106 | } |
2107 | case wxSCRIPT: | |
2108 | { | |
2109 | name = "Zapf.afm"; | |
2110 | Style = wxNORMAL; | |
2111 | Weight = wxNORMAL; | |
2112 | } | |
2113 | case wxSWISS: | |
afce4c03 | 2114 | default: |
733b25e1 RR |
2115 | { |
2116 | if ((Style == wxITALIC) && (Weight == wxBOLD)) name = "HelvBoO.afm"; | |
2117 | else if ((Style != wxITALIC) && (Weight == wxBOLD)) name = "HelvBo.afm"; | |
2118 | else if ((Style == wxITALIC) && (Weight != wxBOLD)) name = "HelvO.afm"; | |
2119 | else name = "Helv.afm"; | |
afce4c03 | 2120 | break; |
733b25e1 | 2121 | } |
afce4c03 | 2122 | } |
36b3b54a | 2123 | |
eba33006 RR |
2124 | FILE *afmFile = NULL; |
2125 | ||
2126 | // Get the directory of the AFM files | |
2127 | wxString afmName; | |
72cdf4c9 VZ |
2128 | if (!m_printData.GetFontMetricPath().IsEmpty()) |
2129 | { | |
021e0f21 | 2130 | afmName = m_printData.GetFontMetricPath(); |
eba33006 RR |
2131 | afmName << wxFILE_SEP_PATH << name; |
2132 | afmFile = wxFopen(afmName,wxT("r")); | |
d361e74e | 2133 | } |
72cdf4c9 | 2134 | |
733b25e1 | 2135 | #if defined(__UNIX__) && !defined(__VMS__) |
eba33006 | 2136 | if (afmFile==NULL) |
3e469ea3 | 2137 | { |
2c18f21d | 2138 | afmName = wxGetDataDir(); |
3e469ea3 | 2139 | afmName << wxFILE_SEP_PATH |
733b25e1 RR |
2140 | #if defined(__LINUX__) || defined(__FREEBSD__) |
2141 | << wxT("gs_afm") << wxFILE_SEP_PATH | |
2142 | #else | |
021e0f21 | 2143 | << wxT("afm") << wxFILE_SEP_PATH |
733b25e1 RR |
2144 | #endif |
2145 | << name; | |
021e0f21 | 2146 | afmFile = wxFopen(afmName,wxT("r")); |
3e469ea3 | 2147 | } |
3e469ea3 | 2148 | #endif |
479cd5de | 2149 | |
eba33006 RR |
2150 | /* 2. open and process the file |
2151 | / a short explanation of the AFM format: | |
2152 | / we have for each character a line, which gives its size | |
2153 | / e.g.: | |
2154 | / | |
2155 | / C 63 ; WX 444 ; N question ; B 49 -14 395 676 ; | |
2156 | / | |
2157 | / that means, we have a character with ascii code 63, and width | |
2158 | / (444/1000 * fontSize) points. | |
2159 | / the other data is ignored for now! | |
2160 | / | |
2161 | / when the font has changed, we read in the right AFM file and store the | |
2162 | / character widths in an array, which is processed below (see point 3.). */ | |
385bcb35 | 2163 | if (afmFile==NULL) |
36b3b54a | 2164 | { |
ccbfa8ec | 2165 | wxLogDebug( wxT("GetTextExtent: can't open AFM file '%s'"), afmName.c_str() ); |
48c31b28 | 2166 | wxLogDebug( wxT(" using approximate values")); |
36b3b54a RR |
2167 | for (int i=0; i<256; i++) lastWidths[i] = 500; /* an approximate value */ |
2168 | lastDescender = -150; /* dito. */ | |
ed880dd4 | 2169 | } |
afce4c03 VZ |
2170 | else |
2171 | { | |
36b3b54a RR |
2172 | /* init the widths array */ |
2173 | for(int i=0; i<256; i++) lastWidths[i] = INT_MIN; | |
2174 | /* some variables for holding parts of a line */ | |
2175 | char cString[10],semiString[10],WXString[10],descString[20]; | |
2176 | char upString[30], utString[30], encString[50]; | |
2177 | char line[256]; | |
2178 | int ascii,cWidth; | |
2179 | /* read in the file and parse it */ | |
2180 | while(fgets(line,sizeof(line),afmFile)!=NULL) | |
afce4c03 | 2181 | { |
36b3b54a | 2182 | /* A.) check for descender definition */ |
021e0f21 | 2183 | if (strncmp(line,"Descender",9)==0) |
afce4c03 | 2184 | { |
36b3b54a | 2185 | if ((sscanf(line,"%s%d",descString,&lastDescender)!=2) || |
021e0f21 | 2186 | (strcmp(descString,"Descender")!=0)) |
afce4c03 | 2187 | { |
ccbfa8ec | 2188 | wxLogDebug( wxT("AFM-file '%s': line '%s' has error (bad descender)"), afmName.c_str(),line ); |
36b3b54a RR |
2189 | } |
2190 | } | |
2191 | /* JC 1.) check for UnderlinePosition */ | |
021e0f21 | 2192 | else if(strncmp(line,"UnderlinePosition",17)==0) |
afce4c03 | 2193 | { |
36b3b54a | 2194 | if ((sscanf(line,"%s%lf",upString,&UnderlinePosition)!=2) || |
021e0f21 | 2195 | (strcmp(upString,"UnderlinePosition")!=0)) |
afce4c03 | 2196 | { |
ccbfa8ec | 2197 | wxLogDebug( wxT("AFM-file '%s': line '%s' has error (bad UnderlinePosition)"), afmName.c_str(), line ); |
36b3b54a RR |
2198 | } |
2199 | } | |
afce4c03 | 2200 | /* JC 2.) check for UnderlineThickness */ |
021e0f21 | 2201 | else if(strncmp(line,"UnderlineThickness",18)==0) |
afce4c03 | 2202 | { |
36b3b54a | 2203 | if ((sscanf(line,"%s%lf",utString,&UnderlineThickness)!=2) || |
021e0f21 | 2204 | (strcmp(utString,"UnderlineThickness")!=0)) |
afce4c03 | 2205 | { |
ccbfa8ec | 2206 | wxLogDebug( wxT("AFM-file '%s': line '%s' has error (bad UnderlineThickness)"), afmName.c_str(), line ); |
36b3b54a RR |
2207 | } |
2208 | } | |
afce4c03 | 2209 | /* JC 3.) check for EncodingScheme */ |
021e0f21 | 2210 | else if(strncmp(line,"EncodingScheme",14)==0) |
afce4c03 | 2211 | { |
36b3b54a | 2212 | if ((sscanf(line,"%s%s",utString,encString)!=2) || |
021e0f21 | 2213 | (strcmp(utString,"EncodingScheme")!=0)) |
afce4c03 | 2214 | { |
ccbfa8ec | 2215 | wxLogDebug( wxT("AFM-file '%s': line '%s' has error (bad EncodingScheme)"), afmName.c_str(), line ); |
36b3b54a | 2216 | } |
021e0f21 | 2217 | else if (strncmp(encString, "AdobeStandardEncoding", 21)) |
36b3b54a | 2218 | { |
ccbfa8ec | 2219 | wxLogDebug( wxT("AFM-file '%s': line '%s' has error (unsupported EncodingScheme %s)"), |
3e469ea3 | 2220 | afmName.c_str(),line, encString); |
36b3b54a RR |
2221 | } |
2222 | } | |
2223 | /* B.) check for char-width */ | |
021e0f21 | 2224 | else if(strncmp(line,"C ",2)==0) |
afce4c03 | 2225 | { |
36b3b54a | 2226 | if (sscanf(line,"%s%d%s%s%d",cString,&ascii,semiString,WXString,&cWidth)!=5) |
afce4c03 | 2227 | { |
ccbfa8ec | 2228 | wxLogDebug(wxT("AFM-file '%s': line '%s' has an error (bad character width)"),afmName.c_str(),line); |
36b3b54a | 2229 | } |
021e0f21 | 2230 | if(strcmp(cString,"C")!=0 || strcmp(semiString,";")!=0 || strcmp(WXString,"WX")!=0) |
afce4c03 | 2231 | { |
ccbfa8ec | 2232 | wxLogDebug(wxT("AFM-file '%s': line '%s' has a format error"),afmName.c_str(),line); |
36b3b54a RR |
2233 | } |
2234 | /* printf(" char '%c'=%d has width '%d'\n",ascii,ascii,cWidth); */ | |
2235 | if (ascii>=0 && ascii<256) | |
afce4c03 | 2236 | { |
36b3b54a RR |
2237 | lastWidths[ascii] = cWidth; /* store width */ |
2238 | } | |
afce4c03 VZ |
2239 | else |
2240 | { | |
2241 | /* MATTHEW: this happens a lot; don't print an error */ | |
48c31b28 | 2242 | /* wxLogDebug("AFM-file '%s': ASCII value %d out of range",afmName.c_str(),ascii); */ |
36b3b54a RR |
2243 | } |
2244 | } | |
2245 | /* C.) ignore other entries. */ | |
2246 | } | |
2247 | fclose(afmFile); | |
ed880dd4 | 2248 | } |
36b3b54a | 2249 | /* hack to compute correct values for german 'Umlaute' |
afce4c03 VZ |
2250 | / the correct way would be to map the character names |
2251 | / like 'adieresis' to corresp. positions of ISOEnc and read | |
2252 | / these values from AFM files, too. Maybe later ... */ | |
36b3b54a RR |
2253 |