See last changelog
[wxWidgets.git] / src / gtk / dcclient.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcclient.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // RCS-ID: $Id$
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifdef __GNUG__
12 #pragma implementation "dcclient.h"
13 #endif
14
15 #include "wx/dcclient.h"
16 #include "wx/dcmemory.h"
17
18 //-----------------------------------------------------------------------------
19 // local data
20 //-----------------------------------------------------------------------------
21
22 #include "bdiag.xbm"
23 #include "fdiag.xbm"
24 #include "cdiag.xbm"
25 #include "horiz.xbm"
26 #include "verti.xbm"
27 #include "cross.xbm"
28 #define num_hatches 6
29
30 static GdkPixmap *hatches[num_hatches];
31 static GdkPixmap **hatch_bitmap = NULL;
32
33 //-----------------------------------------------------------------------------
34 // constants
35 //-----------------------------------------------------------------------------
36
37 #define RAD2DEG 57.2957795131
38
39 //-----------------------------------------------------------------------------
40 // temporary implementation of the missing GDK function
41 //-----------------------------------------------------------------------------
42 #include "gdk/gdkprivate.h"
43 void gdk_draw_bitmap (GdkDrawable *drawable,
44 GdkGC *gc,
45 GdkDrawable *src,
46 gint xsrc,
47 gint ysrc,
48 gint xdest,
49 gint ydest,
50 gint width,
51 gint height)
52 {
53 GdkWindowPrivate *drawable_private;
54 GdkWindowPrivate *src_private;
55 GdkGCPrivate *gc_private;
56
57 g_return_if_fail (drawable != NULL);
58 g_return_if_fail (src != NULL);
59 g_return_if_fail (gc != NULL);
60
61 drawable_private = (GdkWindowPrivate*) drawable;
62 src_private = (GdkWindowPrivate*) src;
63 if (drawable_private->destroyed || src_private->destroyed)
64 return;
65 gc_private = (GdkGCPrivate*) gc;
66
67 if (width == -1)
68 width = src_private->width;
69 if (height == -1)
70 height = src_private->height;
71
72 XCopyPlane (drawable_private->xdisplay,
73 src_private->xwindow,
74 drawable_private->xwindow,
75 gc_private->xgc,
76 xsrc, ysrc,
77 width, height,
78 xdest, ydest,
79 1);
80 }
81
82 //-----------------------------------------------------------------------------
83 // wxPaintDC
84 //-----------------------------------------------------------------------------
85
86 IMPLEMENT_DYNAMIC_CLASS(wxPaintDC,wxDC)
87
88 wxPaintDC::wxPaintDC(void)
89 {
90 m_penGC = NULL;
91 m_brushGC = NULL;
92 m_textGC = NULL;
93 m_bgGC = NULL;
94 m_cmap = NULL;
95 }
96
97 wxPaintDC::wxPaintDC( wxWindow *window )
98 {
99 m_penGC = NULL;
100 m_brushGC = NULL;
101 m_textGC = NULL;
102 m_bgGC = NULL;
103 m_cmap = NULL;
104
105 if (!window) return;
106 GtkWidget *widget = window->m_wxwindow;
107 if (!widget) return;
108 m_window = widget->window;
109 if (!m_window) return;
110 if (window->m_wxwindow)
111 m_cmap = gtk_widget_get_colormap( window->m_wxwindow );
112 else
113 m_cmap = gtk_widget_get_colormap( window->m_widget );
114
115 m_isDrawable = TRUE;
116
117 SetUpDC();
118
119 long x = 0;
120 long y = 0;
121 window->GetDrawingOffset( &x, &y );
122 SetInternalDeviceOrigin( -x, -y );
123 }
124
125 wxPaintDC::~wxPaintDC(void)
126 {
127 }
128
129 void wxPaintDC::FloodFill( long WXUNUSED(x1), long WXUNUSED(y1),
130 wxColour *WXUNUSED(col), int WXUNUSED(style) )
131 {
132 }
133
134 bool wxPaintDC::GetPixel( long WXUNUSED(x1), long WXUNUSED(y1), wxColour *WXUNUSED(col) ) const
135 {
136 return FALSE;
137 }
138
139 void wxPaintDC::DrawLine( long x1, long y1, long x2, long y2 )
140 {
141 if (!Ok()) return;
142
143 if (m_pen.GetStyle() != wxTRANSPARENT)
144 {
145 gdk_draw_line( m_window, m_penGC,
146 XLOG2DEV(x1), YLOG2DEV(y1), XLOG2DEV(x2), YLOG2DEV(y2) );
147 }
148 }
149
150 void wxPaintDC::CrossHair( long x, long y )
151 {
152 if (!Ok()) return;
153
154 if (m_pen.GetStyle() != wxTRANSPARENT)
155 {
156 int w = 0;
157 int h = 0;
158 GetSize( &w, &h );
159 long xx = XLOG2DEV(x);
160 long yy = YLOG2DEV(y);
161 gdk_draw_line( m_window, m_penGC,
162 0, yy, XLOG2DEVREL(w), yy );
163 gdk_draw_line( m_window, m_penGC,
164 xx, 0, xx, YLOG2DEVREL(h) );
165 }
166 }
167
168 void wxPaintDC::DrawArc( long x1, long y1, long x2, long y2, double xc, double yc )
169 {
170 if (!Ok()) return;
171
172 long xx1 = XLOG2DEV(x1);
173 long yy1 = YLOG2DEV(y1);
174 long xx2 = XLOG2DEV(x2);
175 long yy2 = YLOG2DEV(y2);
176 long xxc = XLOG2DEV((long)xc);
177 long yyc = YLOG2DEV((long)yc);
178 double dx = xx1 - xxc;
179 double dy = yy1 - yyc;
180 double radius = sqrt(dx*dx+dy*dy);
181 long r = (long)radius;
182 double radius1, radius2;
183
184 if (xx1 == xx2 && yy1 == yy2)
185 {
186 radius1 = 0.0;
187 radius2 = 360.0;
188 }
189 else
190 if (radius == 0.0)
191 {
192 radius1 = radius2 = 0.0;
193 }
194 else
195 {
196 radius1 = (xx1 - xxc == 0) ?
197 (yy1 - yyc < 0) ? 90.0 : -90.0 :
198 -atan2(double(yy1-yyc), double(xx1-xxc)) * RAD2DEG;
199 radius2 = (xx2 - xxc == 0) ?
200 (yy2 - yyc < 0) ? 90.0 : -90.0 :
201 -atan2(double(yy2-yyc), double(xx2-xxc)) * RAD2DEG;
202 }
203 long alpha1 = long(radius1 * 64.0);
204 long alpha2 = long((radius2 - radius1) * 64.0);
205 while (alpha2 <= 0) alpha2 += 360*64;
206 while (alpha1 > 360*64) alpha1 -= 360*64;
207
208 if (m_brush.GetStyle() != wxTRANSPARENT)
209 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
210
211 if (m_pen.GetStyle() != wxTRANSPARENT)
212 gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
213
214 }
215
216 void wxPaintDC::DrawEllipticArc( long x, long y, long width, long height, double sa, double ea )
217 {
218 if (!Ok()) return;
219
220 long xx = XLOG2DEV(x);
221 long yy = YLOG2DEV(y);
222 long ww = m_signX * XLOG2DEVREL(width);
223 long hh = m_signY * YLOG2DEVREL(height);
224
225 // CMB: handle -ve width and/or height
226 if (ww < 0) { ww = -ww; xx = xx - ww; }
227 if (hh < 0) { hh = -hh; yy = yy - hh; }
228
229 long start = long(sa * 64.0);
230 long end = long(ea * 64.0);
231 if (m_brush.GetStyle() != wxTRANSPARENT)
232 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
233
234 if (m_pen.GetStyle() != wxTRANSPARENT)
235 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, start, end );
236 }
237
238 void wxPaintDC::DrawPoint( long x, long y )
239 {
240 if (!Ok()) return;
241
242 if (m_pen.GetStyle() != wxTRANSPARENT)
243 gdk_draw_point( m_window, m_penGC, XLOG2DEV(x), YLOG2DEV(y) );
244 }
245
246 void wxPaintDC::DrawLines( int n, wxPoint points[], long xoffset, long yoffset )
247 {
248 if (!Ok()) return;
249
250 if (m_pen.GetStyle() == wxTRANSPARENT) return;
251
252 for (int i = 0; i < n-1; i++)
253 {
254 long x1 = XLOG2DEV(points[i].x + xoffset);
255 long x2 = XLOG2DEV(points[i+1].x + xoffset);
256 long y1 = YLOG2DEV(points[i].y + yoffset); // oh, what a waste
257 long y2 = YLOG2DEV(points[i+1].y + yoffset);
258 gdk_draw_line( m_window, m_penGC, x1, y1, x2, y2 );
259 }
260 }
261
262 void wxPaintDC::DrawLines( wxList *points, long xoffset, long yoffset )
263 {
264 if (!Ok()) return;
265
266 if (m_pen.GetStyle() == wxTRANSPARENT) return;
267
268 wxNode *node = points->First();
269 while (node->Next())
270 {
271 wxPoint *point = (wxPoint*)node->Data();
272 wxPoint *npoint = (wxPoint*)node->Next()->Data();
273 long x1 = XLOG2DEV(point->x + xoffset);
274 long x2 = XLOG2DEV(npoint->x + xoffset);
275 long y1 = YLOG2DEV(point->y + yoffset); // and again...
276 long y2 = YLOG2DEV(npoint->y + yoffset);
277 gdk_draw_line( m_window, m_penGC, x1, y1, x2, y2 );
278 node = node->Next();
279 }
280 }
281
282 void wxPaintDC::DrawPolygon( int n, wxPoint points[],
283 long xoffset, long yoffset, int WXUNUSED(fillStyle) )
284 {
285 if (!Ok()) return;
286 if (!n) return; // Nothing to draw
287 GdkPoint *gdkpoints = new GdkPoint[n+1];
288 int i;
289 for (i = 0 ; i < n ; i++)
290 {
291 gdkpoints[i].x = XLOG2DEV(points[i].x + xoffset);
292 gdkpoints[i].y = YLOG2DEV(points[i].y + yoffset);
293 }
294 if (m_brush.GetStyle() != wxTRANSPARENT)
295 gdk_draw_polygon (m_window, m_brushGC, TRUE, gdkpoints, n);
296 // To do: Fillstyle
297 if (m_pen.GetStyle() != wxTRANSPARENT)
298 for (i = 0 ; i < n ; i++)
299 gdk_draw_line( m_window, m_penGC,
300 gdkpoints[i%n].x,
301 gdkpoints[i%n].y,
302 gdkpoints[(i+1)%n].x,
303 gdkpoints[(i+1)%n].y);
304 delete[] gdkpoints;
305 }
306
307 void wxPaintDC::DrawPolygon( wxList *lines, long xoffset,
308 long yoffset, int WXUNUSED(fillStyle))
309 {
310 int n = lines->Number();
311
312 if (!Ok()) return;
313 GdkPoint *gdkpoints = new GdkPoint[n];
314 wxNode *node = lines->First();
315 int cnt=0;
316 while (node)
317 {
318 wxPoint *p = (wxPoint *) node->Data();
319 gdkpoints[cnt].x = XLOG2DEV(p->x + xoffset);
320 gdkpoints[cnt].y = YLOG2DEV(p->y + yoffset);
321 node = node->Next();
322 cnt++;
323 }
324 if (m_brush.GetStyle() != wxTRANSPARENT)
325 gdk_draw_polygon (m_window, m_brushGC, TRUE, gdkpoints, n);
326 // To do: Fillstyle
327 if (m_pen.GetStyle() != wxTRANSPARENT)
328 {
329 int i;
330 for (i = 0 ; i < n ; i++)
331 gdk_draw_line( m_window, m_penGC,
332 gdkpoints[i%n].x,
333 gdkpoints[i%n].y,
334 gdkpoints[(i+1)%n].x,
335 gdkpoints[(i+1)%n].y);
336 }
337 delete[] gdkpoints;
338 }
339
340 void wxPaintDC::DrawRectangle( long x, long y, long width, long height )
341 {
342 if (!Ok()) return;
343
344 long xx = XLOG2DEV(x);
345 long yy = YLOG2DEV(y);
346 long ww = m_signX * XLOG2DEVREL(width);
347 long hh = m_signY * YLOG2DEVREL(height);
348
349 // CMB: draw nothing if transformed w or h is 0
350 if (ww == 0 || hh == 0) return;
351
352 // CMB: handle -ve width and/or height
353 if (ww < 0) { ww = -ww; xx = xx - ww; }
354 if (hh < 0) { hh = -hh; yy = yy - hh; }
355
356 if (m_brush.GetStyle() != wxTRANSPARENT)
357 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
358
359 if (m_pen.GetStyle() != wxTRANSPARENT)
360 gdk_draw_rectangle( m_window, m_penGC, FALSE, xx, yy, ww-1, hh-1 );
361 }
362
363 void wxPaintDC::DrawRoundedRectangle( long x, long y, long width, long height, double radius )
364 {
365 if (!Ok()) return;
366
367 if (radius < 0.0) radius = - radius * ((width < height) ? width : height);
368
369 long xx = XLOG2DEV(x);
370 long yy = YLOG2DEV(y);
371 long ww = m_signX * XLOG2DEVREL(width);
372 long hh = m_signY * YLOG2DEVREL(height);
373 long rr = XLOG2DEVREL((long)radius);
374
375 // CMB: handle -ve width and/or height
376 if (ww < 0) { ww = -ww; xx = xx - ww; }
377 if (hh < 0) { hh = -hh; yy = yy - hh; }
378
379 // CMB: if radius is zero use DrawRectangle() instead to avoid
380 // X drawing errors with small radii
381 if (rr == 0)
382 {
383 DrawRectangle( x, y, width, height );
384 return;
385 }
386
387 // CMB: draw nothing if transformed w or h is 0
388 if (ww == 0 || hh == 0) return;
389
390 // CMB: adjust size if outline is drawn otherwise the result is
391 // 1 pixel too wide and high
392 if (m_pen.GetStyle() != wxTRANSPARENT)
393 {
394 ww--;
395 hh--;
396 }
397
398 // CMB: ensure dd is not larger than rectangle otherwise we
399 // get an hour glass shape
400 long dd = 2 * rr;
401 if (dd > ww) dd = ww;
402 if (dd > hh) dd = hh;
403 rr = dd / 2;
404
405 if (m_brush.GetStyle() != wxTRANSPARENT)
406 {
407 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
408 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
409 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
410 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
411 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
412 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
413 }
414
415 if (m_pen.GetStyle() != wxTRANSPARENT)
416 {
417 gdk_draw_line( m_window, m_penGC, xx+rr, yy, xx+ww-rr, yy );
418 gdk_draw_line( m_window, m_penGC, xx+rr, yy+hh, xx+ww-rr, yy+hh );
419 gdk_draw_line( m_window, m_penGC, xx, yy+rr, xx, yy+hh-rr );
420 gdk_draw_line( m_window, m_penGC, xx+ww, yy+rr, xx+ww, yy+hh-rr );
421 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, dd, dd, 90*64, 90*64 );
422 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
423 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
424 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
425 }
426 }
427
428 void wxPaintDC::DrawEllipse( long x, long y, long width, long height )
429 {
430 if (!Ok()) return;
431
432 long xx = XLOG2DEV(x);
433 long yy = YLOG2DEV(y);
434 long ww = m_signX * XLOG2DEVREL(width);
435 long hh = m_signY * YLOG2DEVREL(height);
436
437 // CMB: handle -ve width and/or height
438 if (ww < 0) { ww = -ww; xx = xx - ww; }
439 if (hh < 0) { hh = -hh; yy = yy - hh; }
440
441 if (m_brush.GetStyle() != wxTRANSPARENT)
442 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
443
444 if (m_pen.GetStyle() != wxTRANSPARENT)
445 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, 0, 360*64 );
446 }
447
448 bool wxPaintDC::CanDrawBitmap(void) const
449 {
450 return TRUE;
451 }
452
453 void wxPaintDC::DrawIcon( const wxIcon &icon, long x, long y, bool useMask )
454 {
455 if (!Ok()) return;
456
457 if (!icon.Ok()) return;
458
459 int xx = XLOG2DEV(x);
460 int yy = YLOG2DEV(y);
461
462 GdkBitmap *mask = NULL;
463 if (icon.GetMask()) mask = icon.GetMask()->GetBitmap();
464
465 if (useMask && mask)
466 {
467 gdk_gc_set_clip_mask( m_penGC, mask );
468 gdk_gc_set_clip_origin( m_penGC, xx, yy );
469 }
470
471 GdkPixmap *pm = icon.GetPixmap();
472 gdk_draw_pixmap( m_window, m_penGC, pm, 0, 0, xx, yy, -1, -1 );
473
474 if (useMask && mask)
475 {
476 gdk_gc_set_clip_mask( m_penGC, NULL );
477 gdk_gc_set_clip_origin( m_penGC, 0, 0 );
478 }
479 }
480
481 bool wxPaintDC::Blit( long xdest, long ydest, long width, long height,
482 wxDC *source, long xsrc, long ysrc, int WXUNUSED(logical_func), bool WXUNUSED(useMask) )
483 {
484 if (!Ok()) return FALSE;
485
486 // CMB 20/5/98: add blitting of bitmaps
487 if (source->IsKindOf(CLASSINFO(wxMemoryDC)))
488 {
489 wxMemoryDC* srcDC = (wxMemoryDC*)source;
490 GdkBitmap* bmap = srcDC->m_selected.GetBitmap();
491 if (bmap)
492 {
493 gdk_draw_bitmap (
494 m_window,
495 m_textGC,
496 bmap,
497 source->DeviceToLogicalX(xsrc), source->DeviceToLogicalY(ysrc),
498 XLOG2DEV(xdest), YLOG2DEV(ydest),
499 source->DeviceToLogicalXRel(width), source->DeviceToLogicalYRel(height)
500 );
501 return TRUE;
502 }
503 }
504
505 wxClientDC *csrc = (wxClientDC*)source;
506 gdk_window_copy_area ( m_window, m_penGC,
507 XLOG2DEV(xdest), YLOG2DEV(ydest),
508 csrc->GetWindow(),
509 source->DeviceToLogicalX(xsrc), source->DeviceToLogicalY(ysrc),
510 source->DeviceToLogicalXRel(width), source->DeviceToLogicalYRel(height) );
511
512 /*
513 gdk_window_copy_area ( m_window, m_penGC,
514 XLOG2DEV(xdest), YLOG2DEV(ydest),
515 csrc->GetWindow(),
516 xsrc, ysrc,
517 width, height );
518 */
519
520 return TRUE;
521 }
522
523 void wxPaintDC::DrawText( const wxString &text, long x, long y, bool WXUNUSED(use16) )
524 {
525 if (!Ok()) return;
526
527 GdkFont *font = m_font.GetInternalFont( m_scaleY );
528
529 x = XLOG2DEV(x);
530 y = YLOG2DEV(y);
531
532 // CMB 21/5/98: draw text background if mode is wxSOLID
533 if (m_backgroundMode == wxSOLID)
534 {
535 long width = gdk_string_width( font, text );
536 long height = font->ascent + font->descent;
537 gdk_gc_set_foreground( m_textGC, m_textBackgroundColour.GetColor() );
538 gdk_draw_rectangle( m_window, m_textGC, TRUE, x, y, width, height );
539 gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() );
540 }
541 gdk_draw_string( m_window, font, m_textGC, x, y + font->ascent, text );
542
543 // CMB 17/7/98: simple underline: ignores scaling and underlying
544 // X font's XA_UNDERLINE_POSITION and XA_UNDERLINE_THICKNESS
545 // properties (see wxXt implementation)
546 if (m_font.GetUnderlined())
547 {
548 long width = gdk_string_width( font, text );
549 long ul_y = y + font->ascent;
550 if (font->descent > 0) ul_y++;
551 gdk_draw_line( m_window, m_textGC, x, ul_y, x + width, ul_y);
552 }
553 }
554
555 bool wxPaintDC::CanGetTextExtent(void) const
556 {
557 return TRUE;
558 }
559
560 void wxPaintDC::GetTextExtent( const wxString &string, long *width, long *height,
561 long *descent, long *externalLeading,
562 wxFont *theFont, bool WXUNUSED(use16) )
563 {
564 if (!Ok()) return;
565
566 wxFont fontToUse = m_font;
567 if (theFont) fontToUse = *theFont;
568
569 GdkFont *font = fontToUse.GetInternalFont( m_scaleY );
570 if (width) (*width) = long(gdk_string_width( font, string ) / m_scaleX);
571 if (height) (*height) = long((font->ascent + font->descent) / m_scaleY);
572 if (descent) (*descent) = long(font->descent / m_scaleY);
573 if (externalLeading) (*externalLeading) = 0; // ??
574 }
575
576 long wxPaintDC::GetCharWidth(void)
577 {
578 if (!Ok()) return 0;
579
580 GdkFont *font = m_font.GetInternalFont( m_scaleY );
581 return long(gdk_string_width( font, "H" ) / m_scaleX);
582 }
583
584 long wxPaintDC::GetCharHeight(void)
585 {
586 if (!Ok()) return 0;
587
588 GdkFont *font = m_font.GetInternalFont( m_scaleY );
589 return long((font->ascent + font->descent) / m_scaleY);
590 }
591
592 void wxPaintDC::Clear(void)
593 {
594 if (!Ok()) return;
595
596 // DestroyClippingRegion();
597
598 if (m_isDrawable)
599 {
600 gdk_window_clear( m_window );
601 }
602 else
603 {
604 int width = 0;
605 int height = 0;
606 GetSize( &width, &height );
607 gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height );
608 }
609 }
610
611 void wxPaintDC::SetFont( const wxFont &font )
612 {
613 if (!Ok()) return;
614
615 m_font = font;
616 }
617
618 void wxPaintDC::SetPen( const wxPen &pen )
619 {
620 if (!Ok()) return;
621
622 if (m_pen == pen) return;
623
624 m_pen = pen;
625
626 if (!m_pen.Ok()) return;
627
628 gint width = m_pen.GetWidth();
629 // CMB: if width is non-zero scale it with the dc
630 if (width <= 0)
631 {
632 width = 1;
633 }
634 else
635 {
636 // X doesn't allow different width in x and y and so we take
637 // the average
638 double w = 0.5 + (abs(XLOG2DEVREL(width)) + abs(YLOG2DEVREL(width))) / 2.0;
639 width = (int)w;
640 }
641
642 GdkLineStyle lineStyle = GDK_LINE_SOLID;
643 switch (m_pen.GetStyle())
644 {
645 case wxSOLID: { lineStyle = GDK_LINE_SOLID; break; }
646 case wxDOT: { lineStyle = GDK_LINE_ON_OFF_DASH; break; }
647 case wxLONG_DASH: { lineStyle = GDK_LINE_ON_OFF_DASH; break; }
648 case wxSHORT_DASH: { lineStyle = GDK_LINE_ON_OFF_DASH; break; }
649 case wxDOT_DASH: { lineStyle = GDK_LINE_DOUBLE_DASH; break; }
650 }
651
652 GdkCapStyle capStyle = GDK_CAP_ROUND;
653 switch (m_pen.GetCap())
654 {
655 case wxCAP_ROUND: { capStyle = (width <= 1) ? GDK_CAP_NOT_LAST : GDK_CAP_ROUND; break; }
656 case wxCAP_PROJECTING: { capStyle = GDK_CAP_PROJECTING; break; }
657 case wxCAP_BUTT: { capStyle = GDK_CAP_BUTT; break; }
658 }
659
660 GdkJoinStyle joinStyle = GDK_JOIN_ROUND;
661 switch (m_pen.GetJoin())
662 {
663 case wxJOIN_BEVEL: { joinStyle = GDK_JOIN_BEVEL; break; }
664 case wxJOIN_ROUND: { joinStyle = GDK_JOIN_ROUND; break; }
665 case wxJOIN_MITER: { joinStyle = GDK_JOIN_MITER; break; }
666 }
667
668 gdk_gc_set_line_attributes( m_penGC, width, lineStyle, capStyle, joinStyle );
669
670 m_pen.GetColour().CalcPixel( m_cmap );
671 gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() );
672 }
673
674 void wxPaintDC::SetBrush( const wxBrush &brush )
675 {
676 if (!Ok()) return;
677
678 if (m_brush == brush) return;
679
680 m_brush = brush;
681
682 if (!m_brush.Ok()) return;
683
684 m_brush.GetColour().CalcPixel( m_cmap );
685 gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() );
686
687 GdkFill fillStyle = GDK_SOLID;
688 switch (m_brush.GetStyle())
689 {
690 case wxSOLID:
691 case wxTRANSPARENT:
692 break;
693 default:
694 fillStyle = GDK_STIPPLED;
695 }
696
697 gdk_gc_set_fill( m_brushGC, fillStyle );
698
699 if (m_brush.GetStyle() == wxSTIPPLE)
700 {
701 gdk_gc_set_stipple( m_brushGC, m_brush.GetStipple()->GetPixmap() );
702 }
703
704 if (IS_HATCH(m_brush.GetStyle()))
705 {
706 int num = m_brush.GetStyle() - wxBDIAGONAL_HATCH;
707 gdk_gc_set_stipple( m_brushGC, hatches[num] );
708 }
709 }
710
711 // CMB 21/7/98: Added SetBackground. Sets background brush
712 // for Clear() and bg colour for shapes filled with cross-hatch brush
713 void wxPaintDC::SetBackground( const wxBrush &brush )
714 {
715 if (!Ok()) return;
716
717 if (m_backgroundBrush == brush) return;
718
719 m_backgroundBrush = brush;
720
721 if (!m_backgroundBrush.Ok()) return;
722
723 m_backgroundBrush.GetColour().CalcPixel( m_cmap );
724 gdk_gc_set_background( m_brushGC, m_backgroundBrush.GetColour().GetColor() );
725 gdk_gc_set_foreground( m_bgGC, m_backgroundBrush.GetColour().GetColor() );
726
727 GdkFill fillStyle = GDK_SOLID;
728 switch (m_backgroundBrush.GetStyle())
729 {
730 case wxSOLID:
731 case wxTRANSPARENT:
732 break;
733 default:
734 fillStyle = GDK_STIPPLED;
735 }
736
737 gdk_gc_set_fill( m_bgGC, fillStyle );
738
739 if (m_backgroundBrush.GetStyle() == wxSTIPPLE)
740 {
741 gdk_gc_set_stipple( m_bgGC, m_backgroundBrush.GetStipple()->GetPixmap() );
742 }
743
744 if (IS_HATCH(m_backgroundBrush.GetStyle()))
745 {
746 int num = m_backgroundBrush.GetStyle() - wxBDIAGONAL_HATCH;
747 gdk_gc_set_stipple( m_bgGC, hatches[num] );
748 }
749 }
750
751 void wxPaintDC::SetLogicalFunction( int function )
752 {
753 if (m_logicalFunction == function) return;
754 GdkFunction mode = GDK_COPY;
755 switch (function)
756 {
757 case wxXOR: mode = GDK_INVERT; break;
758 case wxINVERT: mode = GDK_INVERT; break;
759 default: break;
760 }
761 m_logicalFunction = function;
762 gdk_gc_set_function( m_penGC, mode );
763 gdk_gc_set_function( m_brushGC, mode );
764 }
765
766 void wxPaintDC::SetTextForeground( const wxColour &col )
767 {
768 if (!Ok()) return;
769
770 if (m_textForegroundColour == col) return;
771
772 m_textForegroundColour = col;
773 if (!m_textForegroundColour.Ok()) return;
774
775 m_textForegroundColour.CalcPixel( m_cmap );
776 gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() );
777 }
778
779 void wxPaintDC::SetTextBackground( const wxColour &col )
780 {
781 if (!Ok()) return;
782
783 if (m_textBackgroundColour == col) return;
784
785 m_textBackgroundColour = col;
786 if (!m_textBackgroundColour.Ok()) return;
787
788 m_textBackgroundColour.CalcPixel( m_cmap );
789 gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() );
790 }
791
792 void wxPaintDC::SetBackgroundMode( int mode )
793 {
794 m_backgroundMode = mode;
795
796 // CMB 21/7/98: fill style of cross-hatch brushes is affected by
797 // transparent/solid background mode
798 if (m_brush.GetStyle() != wxSOLID && m_brush.GetStyle() != wxTRANSPARENT)
799 {
800 gdk_gc_set_fill( m_brushGC,
801 (m_backgroundMode == wxTRANSPARENT) ? GDK_STIPPLED : GDK_OPAQUE_STIPPLED);
802 }
803 }
804
805 void wxPaintDC::SetPalette( const wxPalette& WXUNUSED(palette) )
806 {
807 }
808
809 void wxPaintDC::SetClippingRegion( long x, long y, long width, long height )
810 {
811 wxDC::SetClippingRegion( x, y, width, height );
812
813 GdkRectangle rect;
814 rect.x = XLOG2DEV(x);
815 rect.y = YLOG2DEV(y);
816 rect.width = XLOG2DEVREL(width);
817 rect.height = YLOG2DEVREL(height);
818 gdk_gc_set_clip_rectangle( m_penGC, &rect );
819 gdk_gc_set_clip_rectangle( m_brushGC, &rect );
820 gdk_gc_set_clip_rectangle( m_textGC, &rect );
821 gdk_gc_set_clip_rectangle( m_bgGC, &rect );
822
823 }
824
825 void wxPaintDC::DestroyClippingRegion(void)
826 {
827 wxDC::DestroyClippingRegion();
828
829 gdk_gc_set_clip_rectangle( m_penGC, NULL );
830 gdk_gc_set_clip_rectangle( m_brushGC, NULL );
831 gdk_gc_set_clip_rectangle( m_textGC, NULL );
832 gdk_gc_set_clip_rectangle( m_bgGC, NULL );
833 }
834
835 void wxPaintDC::SetUpDC(void)
836 {
837 m_ok = TRUE;
838 m_logicalFunction = wxCOPY;
839 if (m_penGC) gdk_gc_unref( m_penGC );
840 m_penGC = gdk_gc_new( m_window );
841 if (m_brushGC) gdk_gc_unref( m_brushGC );
842 m_brushGC = gdk_gc_new( m_window );
843 if (m_textGC) gdk_gc_unref( m_textGC );
844 m_textGC = gdk_gc_new( m_window );
845 if (m_bgGC) gdk_gc_unref( m_bgGC );
846 m_bgGC = gdk_gc_new( m_window );
847 SetTextForeground( m_textForegroundColour );
848 SetTextBackground( m_textBackgroundColour );
849 SetPen( m_pen );
850 SetFont( m_font );
851 SetBrush( m_brush );
852
853 gdk_gc_set_background( m_penGC, wxWHITE->GetColor() );
854
855 if (!hatch_bitmap)
856 {
857 hatch_bitmap = hatches;
858 hatch_bitmap[0] = gdk_bitmap_create_from_data( NULL, bdiag_bits, bdiag_width, bdiag_height );
859 hatch_bitmap[1] = gdk_bitmap_create_from_data( NULL, cdiag_bits, cdiag_width, cdiag_height );
860 hatch_bitmap[2] = gdk_bitmap_create_from_data( NULL, fdiag_bits, fdiag_width, fdiag_height );
861 hatch_bitmap[3] = gdk_bitmap_create_from_data( NULL, cross_bits, cross_width, cross_height );
862 hatch_bitmap[4] = gdk_bitmap_create_from_data( NULL, horiz_bits, horiz_width, horiz_height );
863 hatch_bitmap[5] = gdk_bitmap_create_from_data( NULL, verti_bits, verti_width, verti_height );
864 }
865 }
866
867 GdkWindow *wxPaintDC::GetWindow(void)
868 {
869 return m_window;
870 }
871
872 // ----------------------------------- spline code ----------------------------------------
873
874 void wx_quadratic_spline(double a1, double b1, double a2, double b2,
875 double a3, double b3, double a4, double b4);
876 void wx_clear_stack(void);
877 int wx_spline_pop(double *x1, double *y1, double *x2, double *y2, double *x3,
878 double *y3, double *x4, double *y4);
879 void wx_spline_push(double x1, double y1, double x2, double y2, double x3, double y3,
880 double x4, double y4);
881 static bool wx_spline_add_point(double x, double y);
882 static void wx_spline_draw_point_array(wxDC *dc);
883
884 wxList wx_spline_point_list;
885
886 #define half(z1, z2) ((z1+z2)/2.0)
887 #define THRESHOLD 5
888
889 /* iterative version */
890
891 void wx_quadratic_spline(double a1, double b1, double a2, double b2, double a3, double b3, double a4,
892 double b4)
893 {
894 register double xmid, ymid;
895 double x1, y1, x2, y2, x3, y3, x4, y4;
896
897 wx_clear_stack();
898 wx_spline_push(a1, b1, a2, b2, a3, b3, a4, b4);
899
900 while (wx_spline_pop(&x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4)) {
901 xmid = (double)half(x2, x3);
902 ymid = (double)half(y2, y3);
903 if (fabs(x1 - xmid) < THRESHOLD && fabs(y1 - ymid) < THRESHOLD &&
904 fabs(xmid - x4) < THRESHOLD && fabs(ymid - y4) < THRESHOLD) {
905 wx_spline_add_point( x1, y1 );
906 wx_spline_add_point( xmid, ymid );
907 } else {
908 wx_spline_push(xmid, ymid, (double)half(xmid, x3), (double)half(ymid, y3),
909 (double)half(x3, x4), (double)half(y3, y4), x4, y4);
910 wx_spline_push(x1, y1, (double)half(x1, x2), (double)half(y1, y2),
911 (double)half(x2, xmid), (double)half(y2, ymid), xmid, ymid);
912 }
913 }
914 }
915
916 /* utilities used by spline drawing routines */
917
918 typedef struct wx_spline_stack_struct {
919 double x1, y1, x2, y2, x3, y3, x4, y4;
920 } Stack;
921
922 #define SPLINE_STACK_DEPTH 20
923 static Stack wx_spline_stack[SPLINE_STACK_DEPTH];
924 static Stack *wx_stack_top;
925 static int wx_stack_count;
926
927 void wx_clear_stack(void)
928 {
929 wx_stack_top = wx_spline_stack;
930 wx_stack_count = 0;
931 }
932
933 void wx_spline_push(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4)
934 {
935 wx_stack_top->x1 = x1;
936 wx_stack_top->y1 = y1;
937 wx_stack_top->x2 = x2;
938 wx_stack_top->y2 = y2;
939 wx_stack_top->x3 = x3;
940 wx_stack_top->y3 = y3;
941 wx_stack_top->x4 = x4;
942 wx_stack_top->y4 = y4;
943 wx_stack_top++;
944 wx_stack_count++;
945 }
946
947 int wx_spline_pop(double *x1, double *y1, double *x2, double *y2,
948 double *x3, double *y3, double *x4, double *y4)
949 {
950 if (wx_stack_count == 0)
951 return (0);
952 wx_stack_top--;
953 wx_stack_count--;
954 *x1 = wx_stack_top->x1;
955 *y1 = wx_stack_top->y1;
956 *x2 = wx_stack_top->x2;
957 *y2 = wx_stack_top->y2;
958 *x3 = wx_stack_top->x3;
959 *y3 = wx_stack_top->y3;
960 *x4 = wx_stack_top->x4;
961 *y4 = wx_stack_top->y4;
962 return (1);
963 }
964
965 static bool wx_spline_add_point(double x, double y)
966 {
967 wxPoint *point = new wxPoint ;
968 point->x = (int) x;
969 point->y = (int) y;
970 wx_spline_point_list.Append((wxObject*)point);
971 return TRUE;
972 }
973
974 static void wx_spline_draw_point_array(wxDC *dc)
975 {
976 dc->DrawLines(&wx_spline_point_list, 0, 0 );
977 wxNode *node = wx_spline_point_list.First();
978 while (node)
979 {
980 wxPoint *point = (wxPoint *)node->Data();
981 delete point;
982 delete node;
983 node = wx_spline_point_list.First();
984 }
985 }
986
987 void wxPaintDC::DrawOpenSpline( wxList *points )
988 {
989 wxPoint *p;
990 double cx1, cy1, cx2, cy2, cx3, cy3, cx4, cy4;
991 double x1, y1, x2, y2;
992
993 wxNode *node = points->First();
994 p = (wxPoint *)node->Data();
995
996 x1 = p->x;
997 y1 = p->y;
998
999 node = node->Next();
1000 p = (wxPoint *)node->Data();
1001
1002 x2 = p->x;
1003 y2 = p->y;
1004 cx1 = (double)((x1 + x2) / 2);
1005 cy1 = (double)((y1 + y2) / 2);
1006 cx2 = (double)((cx1 + x2) / 2);
1007 cy2 = (double)((cy1 + y2) / 2);
1008
1009 wx_spline_add_point(x1, y1);
1010
1011 while ((node = node->Next()) != NULL)
1012 {
1013 p = (wxPoint *)node->Data();
1014 x1 = x2;
1015 y1 = y2;
1016 x2 = p->x;
1017 y2 = p->y;
1018 cx4 = (double)(x1 + x2) / 2;
1019 cy4 = (double)(y1 + y2) / 2;
1020 cx3 = (double)(x1 + cx4) / 2;
1021 cy3 = (double)(y1 + cy4) / 2;
1022
1023 wx_quadratic_spline(cx1, cy1, cx2, cy2, cx3, cy3, cx4, cy4);
1024
1025 cx1 = cx4;
1026 cy1 = cy4;
1027 cx2 = (double)(cx1 + x2) / 2;
1028 cy2 = (double)(cy1 + y2) / 2;
1029 }
1030
1031 wx_spline_add_point( cx1, cy1 );
1032 wx_spline_add_point( x2, y2 );
1033
1034 wx_spline_draw_point_array( this );
1035 }