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