]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
e5131165 | 2 | // Name: gtk/dcclient.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
6f65e337 | 5 | // RCS-ID: $Id$ |
6c9a19aa | 6 | // Copyright: (c) 1998 Robert Roebling, Chris Breeze |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
d02af7bb JJ |
13 | #ifdef __VMS |
14 | #define XCopyPlane XCOPYPLANE | |
15 | #endif | |
16 | ||
c801d85f | 17 | #include "wx/dcclient.h" |
6f65e337 | 18 | #include "wx/dcmemory.h" |
4bc67cc5 | 19 | #include "wx/image.h" |
e5131165 | 20 | #include "wx/module.h" |
b1699cd3 | 21 | #include "wx/log.h" |
db16cab4 | 22 | #include "wx/fontutil.h" |
e5131165 | 23 | |
3cbab641 | 24 | #include "wx/gtk1/win_gtk.h" |
c801d85f | 25 | |
463c4d71 | 26 | #include "wx/math.h" // for floating-point functions |
e5131165 | 27 | |
071a2d78 | 28 | #include <gdk/gdk.h> |
993f97ee | 29 | #include <gdk/gdkx.h> |
8943b403 | 30 | #include <gdk/gdkprivate.h> |
071a2d78 | 31 | #include <gtk/gtk.h> |
83624f79 | 32 | |
809934d2 RR |
33 | //----------------------------------------------------------------------------- |
34 | // local defines | |
35 | //----------------------------------------------------------------------------- | |
36 | ||
e1208c31 | 37 | #define USE_PAINT_REGION 1 |
809934d2 | 38 | |
c801d85f KB |
39 | //----------------------------------------------------------------------------- |
40 | // local data | |
41 | //----------------------------------------------------------------------------- | |
42 | ||
43 | #include "bdiag.xbm" | |
44 | #include "fdiag.xbm" | |
45 | #include "cdiag.xbm" | |
46 | #include "horiz.xbm" | |
47 | #include "verti.xbm" | |
48 | #include "cross.xbm" | |
49 | #define num_hatches 6 | |
50 | ||
3ca6a5f0 BP |
51 | #define IS_15_PIX_HATCH(s) ((s)==wxCROSSDIAG_HATCH || (s)==wxHORIZONTAL_HATCH || (s)==wxVERTICAL_HATCH) |
52 | #define IS_16_PIX_HATCH(s) ((s)!=wxCROSSDIAG_HATCH && (s)!=wxHORIZONTAL_HATCH && (s)!=wxVERTICAL_HATCH) | |
53 | ||
54 | ||
c801d85f | 55 | static GdkPixmap *hatches[num_hatches]; |
c67daf87 | 56 | static GdkPixmap **hatch_bitmap = (GdkPixmap **) NULL; |
c801d85f | 57 | |
c2fa61e8 | 58 | extern GtkWidget *wxGetRootWindow(); |
3d2d8da1 | 59 | |
c801d85f KB |
60 | //----------------------------------------------------------------------------- |
61 | // constants | |
62 | //----------------------------------------------------------------------------- | |
63 | ||
95724b1a | 64 | const double RAD2DEG = 180.0 / M_PI; |
c801d85f | 65 | |
9a8c7620 VZ |
66 | // ---------------------------------------------------------------------------- |
67 | // private functions | |
68 | // ---------------------------------------------------------------------------- | |
69 | ||
70 | static inline double dmax(double a, double b) { return a > b ? a : b; } | |
71 | static inline double dmin(double a, double b) { return a < b ? a : b; } | |
72 | ||
73 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
74 | ||
6f65e337 JS |
75 | //----------------------------------------------------------------------------- |
76 | // temporary implementation of the missing GDK function | |
77 | //----------------------------------------------------------------------------- | |
b0e0d661 | 78 | |
6f65e337 | 79 | #include "gdk/gdkprivate.h" |
b0e0d661 | 80 | |
1e6feb95 VZ |
81 | void gdk_wx_draw_bitmap(GdkDrawable *drawable, |
82 | GdkGC *gc, | |
83 | GdkDrawable *src, | |
84 | gint xsrc, | |
85 | gint ysrc, | |
86 | gint xdest, | |
87 | gint ydest, | |
88 | gint width, | |
89 | gint height) | |
6f65e337 | 90 | { |
17a1ebd1 VZ |
91 | wxCHECK_RET( drawable, _T("NULL drawable in gdk_wx_draw_bitmap") ); |
92 | wxCHECK_RET( src, _T("NULL src in gdk_wx_draw_bitmap") ); | |
93 | wxCHECK_RET( gc, _T("NULL gc in gdk_wx_draw_bitmap") ); | |
ab9d0a8c | 94 | |
d90c9596 RR |
95 | GdkWindowPrivate *drawable_private; |
96 | GdkWindowPrivate *src_private; | |
97 | GdkGCPrivate *gc_private; | |
ab9d0a8c | 98 | |
d90c9596 RR |
99 | drawable_private = (GdkWindowPrivate*) drawable; |
100 | src_private = (GdkWindowPrivate*) src; | |
101 | if (drawable_private->destroyed || src_private->destroyed) | |
102 | return; | |
103 | ||
104 | gint src_width = src_private->width; | |
105 | gint src_height = src_private->height; | |
106 | ||
107 | gc_private = (GdkGCPrivate*) gc; | |
ab9d0a8c | 108 | |
d90c9596 RR |
109 | if (width == -1) width = src_width; |
110 | if (height == -1) height = src_height; | |
ab9d0a8c | 111 | |
265898fd | 112 | XCopyPlane( drawable_private->xdisplay, |
b0e0d661 VZ |
113 | src_private->xwindow, |
114 | drawable_private->xwindow, | |
115 | gc_private->xgc, | |
116 | xsrc, ysrc, | |
117 | width, height, | |
118 | xdest, ydest, | |
119 | 1 ); | |
6f65e337 JS |
120 | } |
121 | ||
3d2d8da1 RR |
122 | //----------------------------------------------------------------------------- |
123 | // Implement Pool of Graphic contexts. Creating them takes too much time. | |
124 | //----------------------------------------------------------------------------- | |
125 | ||
0e09f76e RR |
126 | enum wxPoolGCType |
127 | { | |
128 | wxGC_ERROR = 0, | |
129 | wxTEXT_MONO, | |
130 | wxBG_MONO, | |
131 | wxPEN_MONO, | |
132 | wxBRUSH_MONO, | |
133 | wxTEXT_COLOUR, | |
134 | wxBG_COLOUR, | |
135 | wxPEN_COLOUR, | |
f6bcfd97 BP |
136 | wxBRUSH_COLOUR, |
137 | wxTEXT_SCREEN, | |
138 | wxBG_SCREEN, | |
139 | wxPEN_SCREEN, | |
140 | wxBRUSH_SCREEN | |
0e09f76e RR |
141 | }; |
142 | ||
3d2d8da1 RR |
143 | struct wxGC |
144 | { | |
0e09f76e RR |
145 | GdkGC *m_gc; |
146 | wxPoolGCType m_type; | |
147 | bool m_used; | |
3d2d8da1 RR |
148 | }; |
149 | ||
696f36b7 JS |
150 | #define GC_POOL_ALLOC_SIZE 100 |
151 | ||
152 | static int wxGCPoolSize = 0; | |
153 | ||
154 | static wxGC *wxGCPool = NULL; | |
3d2d8da1 RR |
155 | |
156 | static void wxInitGCPool() | |
157 | { | |
696f36b7 JS |
158 | // This really could wait until the first call to |
159 | // wxGetPoolGC, but we will make the first allocation | |
160 | // now when other initialization is being performed. | |
ab9d0a8c | 161 | |
696f36b7 JS |
162 | // Set initial pool size. |
163 | wxGCPoolSize = GC_POOL_ALLOC_SIZE; | |
ab9d0a8c | 164 | |
696f36b7 JS |
165 | // Allocate initial pool. |
166 | wxGCPool = (wxGC *)malloc(wxGCPoolSize * sizeof(wxGC)); | |
167 | if (wxGCPool == NULL) | |
168 | { | |
169 | // If we cannot malloc, then fail with error | |
170 | // when debug is enabled. If debug is not enabled, | |
171 | // the problem will eventually get caught | |
551b5391 | 172 | // in wxGetPoolGC. |
696f36b7 JS |
173 | wxFAIL_MSG( wxT("Cannot allocate GC pool") ); |
174 | return; | |
175 | } | |
ab9d0a8c | 176 | |
696f36b7 JS |
177 | // Zero initial pool. |
178 | memset(wxGCPool, 0, wxGCPoolSize * sizeof(wxGC)); | |
3d2d8da1 RR |
179 | } |
180 | ||
181 | static void wxCleanUpGCPool() | |
182 | { | |
f6116855 | 183 | for (int i = 0; i < wxGCPoolSize; i++) |
3d2d8da1 RR |
184 | { |
185 | if (wxGCPool[i].m_gc) | |
186 | gdk_gc_unref( wxGCPool[i].m_gc ); | |
187 | } | |
696f36b7 JS |
188 | |
189 | free(wxGCPool); | |
190 | wxGCPool = NULL; | |
191 | wxGCPoolSize = 0; | |
3d2d8da1 RR |
192 | } |
193 | ||
0e09f76e | 194 | static GdkGC* wxGetPoolGC( GdkWindow *window, wxPoolGCType type ) |
3d2d8da1 | 195 | { |
696f36b7 | 196 | wxGC *pptr; |
ab9d0a8c | 197 | |
696f36b7 JS |
198 | // Look for an available GC. |
199 | for (int i = 0; i < wxGCPoolSize; i++) | |
3d2d8da1 RR |
200 | { |
201 | if (!wxGCPool[i].m_gc) | |
202 | { | |
203 | wxGCPool[i].m_gc = gdk_gc_new( window ); | |
204 | gdk_gc_set_exposures( wxGCPool[i].m_gc, FALSE ); | |
0e09f76e | 205 | wxGCPool[i].m_type = type; |
ab9d0a8c | 206 | wxGCPool[i].m_used = false; |
3d2d8da1 | 207 | } |
0e09f76e | 208 | if ((!wxGCPool[i].m_used) && (wxGCPool[i].m_type == type)) |
3d2d8da1 | 209 | { |
ab9d0a8c | 210 | wxGCPool[i].m_used = true; |
3d2d8da1 RR |
211 | return wxGCPool[i].m_gc; |
212 | } | |
213 | } | |
5f170f33 | 214 | |
696f36b7 JS |
215 | // We did not find an available GC. |
216 | // We need to grow the GC pool. | |
217 | pptr = (wxGC *)realloc(wxGCPool, | |
551b5391 | 218 | (wxGCPoolSize + GC_POOL_ALLOC_SIZE)*sizeof(wxGC)); |
696f36b7 JS |
219 | if (pptr != NULL) |
220 | { | |
221 | // Initialize newly allocated pool. | |
222 | wxGCPool = pptr; | |
551b5391 RR |
223 | memset(&wxGCPool[wxGCPoolSize], 0, |
224 | GC_POOL_ALLOC_SIZE*sizeof(wxGC)); | |
ab9d0a8c WS |
225 | |
226 | // Initialize entry we will return. | |
696f36b7 JS |
227 | wxGCPool[wxGCPoolSize].m_gc = gdk_gc_new( window ); |
228 | gdk_gc_set_exposures( wxGCPool[wxGCPoolSize].m_gc, FALSE ); | |
229 | wxGCPool[wxGCPoolSize].m_type = type; | |
ab9d0a8c WS |
230 | wxGCPool[wxGCPoolSize].m_used = true; |
231 | ||
696f36b7 JS |
232 | // Set new value of pool size. |
233 | wxGCPoolSize += GC_POOL_ALLOC_SIZE; | |
ab9d0a8c | 234 | |
696f36b7 JS |
235 | // Return newly allocated entry. |
236 | return wxGCPool[wxGCPoolSize-GC_POOL_ALLOC_SIZE].m_gc; | |
237 | } | |
ab9d0a8c | 238 | |
696f36b7 | 239 | // The realloc failed. Fall through to error. |
3d2d8da1 | 240 | wxFAIL_MSG( wxT("No GC available") ); |
5f170f33 | 241 | |
3d2d8da1 RR |
242 | return (GdkGC*) NULL; |
243 | } | |
244 | ||
245 | static void wxFreePoolGC( GdkGC *gc ) | |
246 | { | |
696f36b7 | 247 | for (int i = 0; i < wxGCPoolSize; i++) |
3d2d8da1 RR |
248 | { |
249 | if (wxGCPool[i].m_gc == gc) | |
250 | { | |
ab9d0a8c | 251 | wxGCPool[i].m_used = false; |
3d2d8da1 RR |
252 | return; |
253 | } | |
254 | } | |
5f170f33 | 255 | |
3d2d8da1 RR |
256 | wxFAIL_MSG( wxT("Wrong GC") ); |
257 | } | |
258 | ||
c801d85f | 259 | //----------------------------------------------------------------------------- |
ec758a20 | 260 | // wxWindowDC |
c801d85f KB |
261 | //----------------------------------------------------------------------------- |
262 | ||
b0e0d661 | 263 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) |
c801d85f | 264 | |
4bc67cc5 | 265 | wxWindowDC::wxWindowDC() |
c801d85f | 266 | { |
265898fd RR |
267 | m_penGC = (GdkGC *) NULL; |
268 | m_brushGC = (GdkGC *) NULL; | |
269 | m_textGC = (GdkGC *) NULL; | |
270 | m_bgGC = (GdkGC *) NULL; | |
271 | m_cmap = (GdkColormap *) NULL; | |
ab9d0a8c WS |
272 | m_isMemDC = false; |
273 | m_isScreenDC = false; | |
bbbbe360 | 274 | m_owner = (wxWindow *)NULL; |
903f689b | 275 | } |
c801d85f | 276 | |
ec758a20 | 277 | wxWindowDC::wxWindowDC( wxWindow *window ) |
c801d85f | 278 | { |
3cd0b8c5 RR |
279 | wxASSERT_MSG( window, wxT("DC needs a window") ); |
280 | ||
265898fd RR |
281 | m_penGC = (GdkGC *) NULL; |
282 | m_brushGC = (GdkGC *) NULL; | |
283 | m_textGC = (GdkGC *) NULL; | |
284 | m_bgGC = (GdkGC *) NULL; | |
285 | m_cmap = (GdkColormap *) NULL; | |
bbbbe360 | 286 | m_owner = (wxWindow *)NULL; |
ab9d0a8c WS |
287 | m_isMemDC = false; |
288 | m_isScreenDC = false; | |
3b245d60 | 289 | m_font = window->GetFont(); |
7d5af6fa | 290 | |
a2053b27 | 291 | GtkWidget *widget = window->m_wxwindow; |
7d5af6fa | 292 | |
cfcc3932 | 293 | // Some controls don't have m_wxwindow - like wxStaticBox, but the user |
b7f1f77f | 294 | // code should still be able to create wxClientDCs for them, so we will |
cfcc3932 | 295 | // use the parent window here then. |
b7f1f77f VZ |
296 | if ( !widget ) |
297 | { | |
298 | window = window->GetParent(); | |
299 | widget = window->m_wxwindow; | |
300 | } | |
301 | ||
223d09f6 | 302 | wxASSERT_MSG( widget, wxT("DC needs a widget") ); |
7d5af6fa | 303 | |
da048e3d RR |
304 | GtkPizza *pizza = GTK_PIZZA( widget ); |
305 | m_window = pizza->bin_window; | |
7d5af6fa | 306 | |
cfcc3932 | 307 | // Window not realized ? |
1e133b7d RR |
308 | if (!m_window) |
309 | { | |
cfcc3932 | 310 | // Don't report problems as per MSW. |
ab9d0a8c | 311 | m_ok = true; |
7d5af6fa VZ |
312 | |
313 | return; | |
1e133b7d | 314 | } |
7d5af6fa | 315 | |
b7f1f77f | 316 | m_cmap = gtk_widget_get_colormap( widget ? widget : window->m_widget ); |
7d5af6fa | 317 | |
265898fd | 318 | SetUpDC(); |
bbbbe360 RR |
319 | |
320 | /* this must be done after SetUpDC, bacause SetUpDC calls the | |
321 | repective SetBrush, SetPen, SetBackground etc functions | |
322 | to set up the DC. SetBackground call m_owner->SetBackground | |
323 | and this might not be desired as the standard dc background | |
324 | is white whereas a window might assume gray to be the | |
325 | standard (as e.g. wxStatusBar) */ | |
7d5af6fa | 326 | |
bbbbe360 | 327 | m_owner = window; |
903f689b | 328 | } |
c801d85f | 329 | |
4bc67cc5 | 330 | wxWindowDC::~wxWindowDC() |
c801d85f | 331 | { |
265898fd | 332 | Destroy(); |
903f689b | 333 | } |
c801d85f | 334 | |
809934d2 RR |
335 | void wxWindowDC::SetUpDC() |
336 | { | |
ab9d0a8c | 337 | m_ok = true; |
5f170f33 | 338 | |
809934d2 | 339 | wxASSERT_MSG( !m_penGC, wxT("GCs already created") ); |
5f170f33 | 340 | |
f6bcfd97 BP |
341 | if (m_isScreenDC) |
342 | { | |
343 | m_penGC = wxGetPoolGC( m_window, wxPEN_SCREEN ); | |
344 | m_brushGC = wxGetPoolGC( m_window, wxBRUSH_SCREEN ); | |
345 | m_textGC = wxGetPoolGC( m_window, wxTEXT_SCREEN ); | |
346 | m_bgGC = wxGetPoolGC( m_window, wxBG_SCREEN ); | |
347 | } | |
348 | else | |
809934d2 RR |
349 | if (m_isMemDC && (((wxMemoryDC*)this)->m_selected.GetDepth() == 1)) |
350 | { | |
351 | m_penGC = wxGetPoolGC( m_window, wxPEN_MONO ); | |
352 | m_brushGC = wxGetPoolGC( m_window, wxBRUSH_MONO ); | |
353 | m_textGC = wxGetPoolGC( m_window, wxTEXT_MONO ); | |
354 | m_bgGC = wxGetPoolGC( m_window, wxBG_MONO ); | |
355 | } | |
356 | else | |
357 | { | |
358 | m_penGC = wxGetPoolGC( m_window, wxPEN_COLOUR ); | |
359 | m_brushGC = wxGetPoolGC( m_window, wxBRUSH_COLOUR ); | |
360 | m_textGC = wxGetPoolGC( m_window, wxTEXT_COLOUR ); | |
361 | m_bgGC = wxGetPoolGC( m_window, wxBG_COLOUR ); | |
362 | } | |
363 | ||
364 | /* background colour */ | |
365 | m_backgroundBrush = *wxWHITE_BRUSH; | |
366 | m_backgroundBrush.GetColour().CalcPixel( m_cmap ); | |
367 | GdkColor *bg_col = m_backgroundBrush.GetColour().GetColor(); | |
368 | ||
369 | /* m_textGC */ | |
370 | m_textForegroundColour.CalcPixel( m_cmap ); | |
371 | gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() ); | |
372 | ||
373 | m_textBackgroundColour.CalcPixel( m_cmap ); | |
374 | gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() ); | |
375 | ||
376 | gdk_gc_set_fill( m_textGC, GDK_SOLID ); | |
377 | ||
378 | /* m_penGC */ | |
379 | m_pen.GetColour().CalcPixel( m_cmap ); | |
380 | gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() ); | |
381 | gdk_gc_set_background( m_penGC, bg_col ); | |
5f170f33 | 382 | |
809934d2 | 383 | gdk_gc_set_line_attributes( m_penGC, 0, GDK_LINE_SOLID, GDK_CAP_NOT_LAST, GDK_JOIN_ROUND ); |
5f170f33 | 384 | |
809934d2 RR |
385 | /* m_brushGC */ |
386 | m_brush.GetColour().CalcPixel( m_cmap ); | |
387 | gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() ); | |
388 | gdk_gc_set_background( m_brushGC, bg_col ); | |
5f170f33 | 389 | |
809934d2 | 390 | gdk_gc_set_fill( m_brushGC, GDK_SOLID ); |
5f170f33 | 391 | |
809934d2 RR |
392 | /* m_bgGC */ |
393 | gdk_gc_set_background( m_bgGC, bg_col ); | |
394 | gdk_gc_set_foreground( m_bgGC, bg_col ); | |
395 | ||
396 | gdk_gc_set_fill( m_bgGC, GDK_SOLID ); | |
5f170f33 | 397 | |
809934d2 RR |
398 | /* ROPs */ |
399 | gdk_gc_set_function( m_textGC, GDK_COPY ); | |
400 | gdk_gc_set_function( m_brushGC, GDK_COPY ); | |
401 | gdk_gc_set_function( m_penGC, GDK_COPY ); | |
5f170f33 | 402 | |
809934d2 RR |
403 | /* clipping */ |
404 | gdk_gc_set_clip_rectangle( m_penGC, (GdkRectangle *) NULL ); | |
405 | gdk_gc_set_clip_rectangle( m_brushGC, (GdkRectangle *) NULL ); | |
406 | gdk_gc_set_clip_rectangle( m_textGC, (GdkRectangle *) NULL ); | |
407 | gdk_gc_set_clip_rectangle( m_bgGC, (GdkRectangle *) NULL ); | |
408 | ||
409 | if (!hatch_bitmap) | |
410 | { | |
411 | hatch_bitmap = hatches; | |
412 | hatch_bitmap[0] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, bdiag_bits, bdiag_width, bdiag_height ); | |
413 | hatch_bitmap[1] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cdiag_bits, cdiag_width, cdiag_height ); | |
414 | hatch_bitmap[2] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, fdiag_bits, fdiag_width, fdiag_height ); | |
415 | hatch_bitmap[3] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cross_bits, cross_width, cross_height ); | |
416 | hatch_bitmap[4] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, horiz_bits, horiz_width, horiz_height ); | |
417 | hatch_bitmap[5] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, verti_bits, verti_width, verti_height ); | |
418 | } | |
419 | } | |
420 | ||
376aa62a VZ |
421 | void wxWindowDC::DoGetSize( int* width, int* height ) const |
422 | { | |
423 | wxCHECK_RET( m_owner, _T("GetSize() doesn't work without window") ); | |
424 | ||
425 | m_owner->GetSize(width, height); | |
426 | } | |
427 | ||
ab9d0a8c | 428 | extern bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y, |
06cf7c08 | 429 | const wxColour & col, int style); |
b1699cd3 | 430 | |
387ebd3e | 431 | bool wxWindowDC::DoFloodFill(wxCoord x, wxCoord y, |
06cf7c08 VS |
432 | const wxColour& col, int style) |
433 | { | |
387ebd3e | 434 | return wxDoFloodFill(this, x, y, col, style); |
903f689b | 435 | } |
c801d85f | 436 | |
dc1efb1d | 437 | bool wxWindowDC::DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const |
c801d85f | 438 | { |
dc1efb1d JS |
439 | // Generic (and therefore rather inefficient) method. |
440 | // Could be improved. | |
441 | wxMemoryDC memdc; | |
442 | wxBitmap bitmap(1, 1); | |
443 | memdc.SelectObject(bitmap); | |
444 | memdc.Blit(0, 0, 1, 1, (wxDC*) this, x1, y1); | |
445 | memdc.SelectObject(wxNullBitmap); | |
c2fa61e8 | 446 | |
368d59f0 | 447 | wxImage image = bitmap.ConvertToImage(); |
dc1efb1d | 448 | col->Set(image.GetRed(0, 0), image.GetGreen(0, 0), image.GetBlue(0, 0)); |
ab9d0a8c | 449 | return true; |
903f689b | 450 | } |
c801d85f | 451 | |
72cdf4c9 | 452 | void wxWindowDC::DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 ) |
c801d85f | 453 | { |
223d09f6 | 454 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 455 | |
265898fd RR |
456 | if (m_pen.GetStyle() != wxTRANSPARENT) |
457 | { | |
6db90681 RR |
458 | if (m_window) |
459 | gdk_draw_line( m_window, m_penGC, XLOG2DEV(x1), YLOG2DEV(y1), XLOG2DEV(x2), YLOG2DEV(y2) ); | |
7d5af6fa | 460 | |
ed880dd4 RR |
461 | CalcBoundingBox(x1, y1); |
462 | CalcBoundingBox(x2, y2); | |
265898fd | 463 | } |
903f689b | 464 | } |
c801d85f | 465 | |
72cdf4c9 | 466 | void wxWindowDC::DoCrossHair( wxCoord x, wxCoord y ) |
c801d85f | 467 | { |
223d09f6 | 468 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 469 | |
265898fd RR |
470 | if (m_pen.GetStyle() != wxTRANSPARENT) |
471 | { | |
472 | int w = 0; | |
473 | int h = 0; | |
474 | GetSize( &w, &h ); | |
72cdf4c9 VZ |
475 | wxCoord xx = XLOG2DEV(x); |
476 | wxCoord yy = YLOG2DEV(y); | |
6db90681 | 477 | if (m_window) |
7d5af6fa | 478 | { |
6db90681 RR |
479 | gdk_draw_line( m_window, m_penGC, 0, yy, XLOG2DEVREL(w), yy ); |
480 | gdk_draw_line( m_window, m_penGC, xx, 0, xx, YLOG2DEVREL(h) ); | |
7d5af6fa | 481 | } |
265898fd | 482 | } |
903f689b | 483 | } |
c801d85f | 484 | |
72cdf4c9 VZ |
485 | void wxWindowDC::DoDrawArc( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, |
486 | wxCoord xc, wxCoord yc ) | |
c801d85f | 487 | { |
223d09f6 | 488 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 489 | |
72cdf4c9 VZ |
490 | wxCoord xx1 = XLOG2DEV(x1); |
491 | wxCoord yy1 = YLOG2DEV(y1); | |
492 | wxCoord xx2 = XLOG2DEV(x2); | |
493 | wxCoord yy2 = YLOG2DEV(y2); | |
494 | wxCoord xxc = XLOG2DEV(xc); | |
495 | wxCoord yyc = YLOG2DEV(yc); | |
7d5af6fa | 496 | double dx = xx1 - xxc; |
265898fd | 497 | double dy = yy1 - yyc; |
de87c353 | 498 | double radius = sqrt((double)(dx*dx+dy*dy)); |
72cdf4c9 | 499 | wxCoord r = (wxCoord)radius; |
265898fd RR |
500 | double radius1, radius2; |
501 | ||
7d5af6fa | 502 | if (xx1 == xx2 && yy1 == yy2) |
265898fd RR |
503 | { |
504 | radius1 = 0.0; | |
505 | radius2 = 360.0; | |
7d5af6fa | 506 | } |
c77a6796 | 507 | else if ( wxIsNullDouble(radius) ) |
265898fd | 508 | { |
c77a6796 VZ |
509 | radius1 = |
510 | radius2 = 0.0; | |
7d5af6fa VZ |
511 | } |
512 | else | |
265898fd RR |
513 | { |
514 | radius1 = (xx1 - xxc == 0) ? | |
b0e0d661 VZ |
515 | (yy1 - yyc < 0) ? 90.0 : -90.0 : |
516 | -atan2(double(yy1-yyc), double(xx1-xxc)) * RAD2DEG; | |
265898fd | 517 | radius2 = (xx2 - xxc == 0) ? |
b0e0d661 VZ |
518 | (yy2 - yyc < 0) ? 90.0 : -90.0 : |
519 | -atan2(double(yy2-yyc), double(xx2-xxc)) * RAD2DEG; | |
265898fd | 520 | } |
72cdf4c9 VZ |
521 | wxCoord alpha1 = wxCoord(radius1 * 64.0); |
522 | wxCoord alpha2 = wxCoord((radius2 - radius1) * 64.0); | |
265898fd RR |
523 | while (alpha2 <= 0) alpha2 += 360*64; |
524 | while (alpha1 > 360*64) alpha1 -= 360*64; | |
525 | ||
6db90681 RR |
526 | if (m_window) |
527 | { | |
528 | if (m_brush.GetStyle() != wxTRANSPARENT) | |
e9f88d04 VZ |
529 | { |
530 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) | |
531 | { | |
532 | gdk_gc_set_ts_origin( m_textGC, | |
533 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
534 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); | |
535 | gdk_draw_arc( m_window, m_textGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); | |
536 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
537 | } else | |
3ca6a5f0 BP |
538 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) |
539 | { | |
540 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
541 | gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); | |
542 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
543 | } else | |
544 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
545 | { | |
546 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
547 | gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); | |
548 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
549 | } else | |
e9f88d04 VZ |
550 | if (m_brush.GetStyle() == wxSTIPPLE) |
551 | { | |
552 | gdk_gc_set_ts_origin( m_brushGC, | |
553 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
554 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); | |
555 | gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); | |
556 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
557 | } | |
558 | else | |
559 | { | |
560 | gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); | |
561 | } | |
562 | } | |
7d5af6fa | 563 | |
6db90681 | 564 | if (m_pen.GetStyle() != wxTRANSPARENT) |
3d0c4d2e | 565 | { |
6db90681 | 566 | gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 ); |
f469b27c | 567 | |
3d0c4d2e RR |
568 | gdk_draw_line( m_window, m_penGC, xx1, yy1, xxc, yyc ); |
569 | gdk_draw_line( m_window, m_penGC, xxc, yyc, xx2, yy2 ); | |
570 | } | |
6db90681 | 571 | } |
7d5af6fa | 572 | |
265898fd RR |
573 | CalcBoundingBox (x1, y1); |
574 | CalcBoundingBox (x2, y2); | |
903f689b | 575 | } |
c801d85f | 576 | |
72cdf4c9 | 577 | void wxWindowDC::DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double sa, double ea ) |
c801d85f | 578 | { |
223d09f6 | 579 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 580 | |
72cdf4c9 VZ |
581 | wxCoord xx = XLOG2DEV(x); |
582 | wxCoord yy = YLOG2DEV(y); | |
583 | wxCoord ww = m_signX * XLOG2DEVREL(width); | |
584 | wxCoord hh = m_signY * YLOG2DEVREL(height); | |
7d5af6fa | 585 | |
265898fd RR |
586 | // CMB: handle -ve width and/or height |
587 | if (ww < 0) { ww = -ww; xx = xx - ww; } | |
588 | if (hh < 0) { hh = -hh; yy = yy - hh; } | |
7d5af6fa | 589 | |
6db90681 RR |
590 | if (m_window) |
591 | { | |
72cdf4c9 | 592 | wxCoord start = wxCoord(sa * 64.0); |
3d0c4d2e | 593 | wxCoord end = wxCoord((ea-sa) * 64.0); |
7d5af6fa | 594 | |
6db90681 | 595 | if (m_brush.GetStyle() != wxTRANSPARENT) |
e9f88d04 VZ |
596 | { |
597 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) | |
598 | { | |
599 | gdk_gc_set_ts_origin( m_textGC, | |
600 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
601 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); | |
602 | gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, start, end ); | |
603 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
604 | } else | |
3ca6a5f0 BP |
605 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) |
606 | { | |
607 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
608 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end ); | |
609 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
610 | } else | |
611 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
612 | { | |
613 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
614 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end ); | |
615 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
616 | } else | |
e9f88d04 VZ |
617 | if (m_brush.GetStyle() == wxSTIPPLE) |
618 | { | |
619 | gdk_gc_set_ts_origin( m_brushGC, | |
620 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
621 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); | |
622 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end ); | |
623 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
624 | } | |
625 | else | |
626 | { | |
627 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end ); | |
628 | } | |
629 | } | |
7d5af6fa | 630 | |
6db90681 RR |
631 | if (m_pen.GetStyle() != wxTRANSPARENT) |
632 | gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, start, end ); | |
633 | } | |
7d5af6fa | 634 | |
265898fd RR |
635 | CalcBoundingBox (x, y); |
636 | CalcBoundingBox (x + width, y + height); | |
903f689b | 637 | } |
c801d85f | 638 | |
72cdf4c9 | 639 | void wxWindowDC::DoDrawPoint( wxCoord x, wxCoord y ) |
c801d85f | 640 | { |
223d09f6 | 641 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 642 | |
6db90681 | 643 | if ((m_pen.GetStyle() != wxTRANSPARENT) && m_window) |
265898fd | 644 | gdk_draw_point( m_window, m_penGC, XLOG2DEV(x), YLOG2DEV(y) ); |
7d5af6fa | 645 | |
265898fd | 646 | CalcBoundingBox (x, y); |
903f689b | 647 | } |
c801d85f | 648 | |
72cdf4c9 | 649 | void wxWindowDC::DoDrawLines( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset ) |
c801d85f | 650 | { |
223d09f6 | 651 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 652 | |
265898fd RR |
653 | if (m_pen.GetStyle() == wxTRANSPARENT) return; |
654 | if (n <= 0) return; | |
7d5af6fa | 655 | |
e90411c2 JS |
656 | //Check, if scaling is necessary |
657 | bool doScale(true); | |
658 | long val(10); | |
659 | if (!xoffset) | |
660 | if (!yoffset) | |
661 | if (XLOG2DEV(val)==val) | |
662 | if (YLOG2DEV(val)==val) | |
663 | doScale = false; | |
664 | ||
665 | GdkPoint *gpts = NULL; | |
666 | ||
667 | if (doScale){ | |
668 | gpts = new GdkPoint[n]; | |
6eb37239 VZ |
669 | if (! gpts) |
670 | { | |
671 | wxFAIL_MSG( wxT("Cannot allocate PolyLine") ); | |
672 | return; | |
673 | } | |
7d5af6fa | 674 | |
ab9d0a8c | 675 | for (int i = 0; i < n; i++) |
265898fd | 676 | { |
72cdf4c9 | 677 | wxCoord x1 = XLOG2DEV(points[i].x + xoffset); |
6eb37239 | 678 | wxCoord y1 = YLOG2DEV(points[i].y + yoffset); |
7d5af6fa | 679 | |
6eb37239 | 680 | CalcBoundingBox( x1 + xoffset, y1 + yoffset ); |
7d5af6fa | 681 | |
6eb37239 VZ |
682 | gpts[i].x = x1; |
683 | gpts[i].y = y1; | |
265898fd | 684 | } |
e90411c2 JS |
685 | } |
686 | else { | |
687 | for (int i = 0; i < n; i++) { | |
688 | CalcBoundingBox( points[i].x, points[i].y ); | |
689 | } | |
690 | ||
691 | //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another | |
692 | gpts = reinterpret_cast<GdkPoint*>(points); | |
693 | } | |
6eb37239 VZ |
694 | |
695 | if (m_window) | |
696 | gdk_draw_lines( m_window, m_penGC, gpts, n); | |
697 | ||
e90411c2 | 698 | if (doScale) |
6eb37239 | 699 | delete[] gpts; |
903f689b | 700 | } |
c801d85f | 701 | |
72cdf4c9 | 702 | void wxWindowDC::DoDrawPolygon( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int WXUNUSED(fillStyle) ) |
cf7a7e13 | 703 | { |
223d09f6 | 704 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 705 | |
4bc67cc5 | 706 | if (n <= 0) return; |
7d5af6fa | 707 | |
e90411c2 JS |
708 | //Check, if scaling is necessary |
709 | bool doScale(true); | |
710 | long val(10); | |
711 | if (!xoffset) | |
712 | if (!yoffset) | |
713 | if (XLOG2DEV(val)==val) | |
714 | if (YLOG2DEV(val)==val){ | |
715 | doScale = false; | |
716 | } | |
717 | ||
718 | GdkPoint *gdkpoints = NULL; | |
719 | ||
720 | if (doScale){ | |
721 | gdkpoints = new GdkPoint[n+1]; //FIXME: Why the "+1" | |
722 | ||
265898fd RR |
723 | int i; |
724 | for (i = 0 ; i < n ; i++) | |
725 | { | |
726 | gdkpoints[i].x = XLOG2DEV(points[i].x + xoffset); | |
727 | gdkpoints[i].y = YLOG2DEV(points[i].y + yoffset); | |
7d5af6fa | 728 | |
265898fd RR |
729 | CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset ); |
730 | } | |
e90411c2 JS |
731 | } |
732 | else { | |
733 | int i(0); | |
734 | for (; i < n ; ++i) { | |
735 | CalcBoundingBox( points[i].x, points[i].y ); | |
736 | } | |
737 | //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another | |
738 | gdkpoints = reinterpret_cast<GdkPoint*> (points); | |
739 | } | |
7d5af6fa | 740 | |
de2d2cdc | 741 | if (m_window) |
72174350 | 742 | { |
e90411c2 JS |
743 | //I think wxSOLID is the most often used style (it is for me), |
744 | //so I put it in front of the if ... ifelse's | |
745 | if (m_brush.GetStyle() == wxSOLID) | |
746 | { | |
747 | gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n ); | |
748 | }else | |
e1208c31 | 749 | if (m_brush.GetStyle() != wxTRANSPARENT) |
72174350 | 750 | { |
e1208c31 RR |
751 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) |
752 | { | |
5f170f33 VZ |
753 | gdk_gc_set_ts_origin( m_textGC, |
754 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
e1208c31 RR |
755 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
756 | gdk_draw_polygon( m_window, m_textGC, TRUE, gdkpoints, n ); | |
757 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
758 | } else | |
3ca6a5f0 BP |
759 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) |
760 | { | |
761 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
762 | gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n ); | |
763 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
764 | } else | |
765 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
766 | { | |
767 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
768 | gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n ); | |
769 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
770 | } else | |
e1208c31 RR |
771 | if (m_brush.GetStyle() == wxSTIPPLE) |
772 | { | |
5f170f33 VZ |
773 | gdk_gc_set_ts_origin( m_brushGC, |
774 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
e1208c31 RR |
775 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
776 | gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n ); | |
777 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
778 | } | |
779 | else | |
780 | { | |
781 | gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n ); | |
782 | } | |
72174350 | 783 | } |
7d5af6fa | 784 | |
e1208c31 | 785 | if (m_pen.GetStyle() != wxTRANSPARENT) |
b0e0d661 | 786 | { |
bb56b0a8 | 787 | /* |
e1208c31 RR |
788 | for (i = 0 ; i < n ; i++) |
789 | { | |
790 | gdk_draw_line( m_window, m_penGC, | |
791 | gdkpoints[i%n].x, | |
792 | gdkpoints[i%n].y, | |
793 | gdkpoints[(i+1)%n].x, | |
794 | gdkpoints[(i+1)%n].y); | |
795 | } | |
bb56b0a8 JS |
796 | */ |
797 | gdk_draw_polygon( m_window, m_penGC, FALSE, gdkpoints, n ); | |
ab9d0a8c | 798 | |
265898fd | 799 | } |
6db90681 | 800 | } |
7d5af6fa | 801 | |
e90411c2 | 802 | if (doScale) |
265898fd | 803 | delete[] gdkpoints; |
903f689b | 804 | } |
c801d85f | 805 | |
72cdf4c9 | 806 | void wxWindowDC::DoDrawRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height ) |
c801d85f | 807 | { |
223d09f6 | 808 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
c801d85f | 809 | |
72cdf4c9 VZ |
810 | wxCoord xx = XLOG2DEV(x); |
811 | wxCoord yy = YLOG2DEV(y); | |
812 | wxCoord ww = m_signX * XLOG2DEVREL(width); | |
813 | wxCoord hh = m_signY * YLOG2DEVREL(height); | |
7d5af6fa | 814 | |
265898fd RR |
815 | // CMB: draw nothing if transformed w or h is 0 |
816 | if (ww == 0 || hh == 0) return; | |
6f65e337 | 817 | |
265898fd RR |
818 | // CMB: handle -ve width and/or height |
819 | if (ww < 0) { ww = -ww; xx = xx - ww; } | |
820 | if (hh < 0) { hh = -hh; yy = yy - hh; } | |
6f65e337 | 821 | |
6db90681 RR |
822 | if (m_window) |
823 | { | |
e1208c31 | 824 | if (m_brush.GetStyle() != wxTRANSPARENT) |
72174350 | 825 | { |
e1208c31 RR |
826 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) |
827 | { | |
5f170f33 VZ |
828 | gdk_gc_set_ts_origin( m_textGC, |
829 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
e1208c31 RR |
830 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
831 | gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy, ww, hh ); | |
832 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
3ca6a5f0 BP |
833 | } else |
834 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) | |
835 | { | |
836 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
837 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh ); | |
838 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
839 | } else | |
840 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
841 | { | |
842 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
843 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh ); | |
844 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
845 | } else | |
846 | if (m_brush.GetStyle() == wxSTIPPLE) | |
e1208c31 | 847 | { |
5f170f33 VZ |
848 | gdk_gc_set_ts_origin( m_brushGC, |
849 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
e1208c31 | 850 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
72174350 | 851 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh ); |
e1208c31 RR |
852 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); |
853 | } | |
854 | else | |
855 | { | |
856 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh ); | |
857 | } | |
72174350 | 858 | } |
e1208c31 RR |
859 | |
860 | if (m_pen.GetStyle() != wxTRANSPARENT) | |
861 | gdk_draw_rectangle( m_window, m_penGC, FALSE, xx, yy, ww-1, hh-1 ); | |
6db90681 | 862 | } |
7d5af6fa | 863 | |
265898fd RR |
864 | CalcBoundingBox( x, y ); |
865 | CalcBoundingBox( x + width, y + height ); | |
903f689b | 866 | } |
c801d85f | 867 | |
72cdf4c9 | 868 | void wxWindowDC::DoDrawRoundedRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius ) |
c801d85f | 869 | { |
223d09f6 | 870 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 871 | |
265898fd | 872 | if (radius < 0.0) radius = - radius * ((width < height) ? width : height); |
7d5af6fa | 873 | |
72cdf4c9 VZ |
874 | wxCoord xx = XLOG2DEV(x); |
875 | wxCoord yy = YLOG2DEV(y); | |
876 | wxCoord ww = m_signX * XLOG2DEVREL(width); | |
877 | wxCoord hh = m_signY * YLOG2DEVREL(height); | |
878 | wxCoord rr = XLOG2DEVREL((wxCoord)radius); | |
265898fd RR |
879 | |
880 | // CMB: handle -ve width and/or height | |
881 | if (ww < 0) { ww = -ww; xx = xx - ww; } | |
882 | if (hh < 0) { hh = -hh; yy = yy - hh; } | |
883 | ||
884 | // CMB: if radius is zero use DrawRectangle() instead to avoid | |
885 | // X drawing errors with small radii | |
886 | if (rr == 0) | |
887 | { | |
888 | DrawRectangle( x, y, width, height ); | |
889 | return; | |
890 | } | |
891 | ||
892 | // CMB: draw nothing if transformed w or h is 0 | |
893 | if (ww == 0 || hh == 0) return; | |
894 | ||
895 | // CMB: adjust size if outline is drawn otherwise the result is | |
896 | // 1 pixel too wide and high | |
897 | if (m_pen.GetStyle() != wxTRANSPARENT) | |
898 | { | |
899 | ww--; | |
900 | hh--; | |
901 | } | |
902 | ||
6db90681 | 903 | if (m_window) |
265898fd | 904 | { |
6db90681 RR |
905 | // CMB: ensure dd is not larger than rectangle otherwise we |
906 | // get an hour glass shape | |
72cdf4c9 | 907 | wxCoord dd = 2 * rr; |
6db90681 RR |
908 | if (dd > ww) dd = ww; |
909 | if (dd > hh) dd = hh; | |
910 | rr = dd / 2; | |
911 | ||
912 | if (m_brush.GetStyle() != wxTRANSPARENT) | |
913 | { | |
a56fcaaf RR |
914 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) |
915 | { | |
5f170f33 VZ |
916 | gdk_gc_set_ts_origin( m_textGC, |
917 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
a56fcaaf RR |
918 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
919 | gdk_draw_rectangle( m_window, m_textGC, TRUE, xx+rr, yy, ww-dd+1, hh ); | |
920 | gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy+rr, ww, hh-dd+1 ); | |
921 | gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 ); | |
922 | gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
923 | gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
924 | gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
925 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
3ca6a5f0 BP |
926 | } else |
927 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) | |
928 | { | |
929 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
930 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh ); | |
931 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 ); | |
932 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 ); | |
933 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
934 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
935 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
936 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
937 | } else | |
938 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
939 | { | |
940 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
941 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh ); | |
942 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 ); | |
943 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 ); | |
944 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
945 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
946 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
947 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
948 | } else | |
949 | if (m_brush.GetStyle() == wxSTIPPLE) | |
a56fcaaf | 950 | { |
5f170f33 VZ |
951 | gdk_gc_set_ts_origin( m_brushGC, |
952 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
a56fcaaf RR |
953 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
954 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh ); | |
955 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 ); | |
956 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 ); | |
957 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
958 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
959 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
960 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
961 | } | |
962 | else | |
963 | { | |
964 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh ); | |
965 | gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 ); | |
966 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 ); | |
967 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
968 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
969 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
970 | } | |
6db90681 | 971 | } |
7d5af6fa | 972 | |
6db90681 | 973 | if (m_pen.GetStyle() != wxTRANSPARENT) |
7d5af6fa | 974 | { |
3ca6a5f0 BP |
975 | gdk_draw_line( m_window, m_penGC, xx+rr+1, yy, xx+ww-rr, yy ); |
976 | gdk_draw_line( m_window, m_penGC, xx+rr+1, yy+hh, xx+ww-rr, yy+hh ); | |
977 | gdk_draw_line( m_window, m_penGC, xx, yy+rr+1, xx, yy+hh-rr ); | |
978 | gdk_draw_line( m_window, m_penGC, xx+ww, yy+rr+1, xx+ww, yy+hh-rr ); | |
6db90681 RR |
979 | gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, dd, dd, 90*64, 90*64 ); |
980 | gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy, dd, dd, 0, 90*64 ); | |
981 | gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 ); | |
982 | gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 ); | |
7d5af6fa | 983 | } |
265898fd | 984 | } |
7d5af6fa | 985 | |
265898fd RR |
986 | // this ignores the radius |
987 | CalcBoundingBox( x, y ); | |
988 | CalcBoundingBox( x + width, y + height ); | |
903f689b | 989 | } |
c801d85f | 990 | |
72cdf4c9 | 991 | void wxWindowDC::DoDrawEllipse( wxCoord x, wxCoord y, wxCoord width, wxCoord height ) |
c801d85f | 992 | { |
223d09f6 | 993 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 994 | |
72cdf4c9 VZ |
995 | wxCoord xx = XLOG2DEV(x); |
996 | wxCoord yy = YLOG2DEV(y); | |
997 | wxCoord ww = m_signX * XLOG2DEVREL(width); | |
998 | wxCoord hh = m_signY * YLOG2DEVREL(height); | |
6f65e337 | 999 | |
265898fd RR |
1000 | // CMB: handle -ve width and/or height |
1001 | if (ww < 0) { ww = -ww; xx = xx - ww; } | |
1002 | if (hh < 0) { hh = -hh; yy = yy - hh; } | |
7d5af6fa | 1003 | |
6db90681 RR |
1004 | if (m_window) |
1005 | { | |
1006 | if (m_brush.GetStyle() != wxTRANSPARENT) | |
a56fcaaf RR |
1007 | { |
1008 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) | |
1009 | { | |
5f170f33 VZ |
1010 | gdk_gc_set_ts_origin( m_textGC, |
1011 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
a56fcaaf RR |
1012 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
1013 | gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, 0, 360*64 ); | |
1014 | gdk_gc_set_ts_origin( m_textGC, 0, 0 ); | |
3ca6a5f0 BP |
1015 | } else |
1016 | if (IS_15_PIX_HATCH(m_brush.GetStyle())) | |
1017 | { | |
1018 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 ); | |
1019 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 ); | |
1020 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
1021 | } else | |
1022 | if (IS_16_PIX_HATCH(m_brush.GetStyle())) | |
1023 | { | |
1024 | gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 ); | |
1025 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 ); | |
1026 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
1027 | } else | |
1028 | if (m_brush.GetStyle() == wxSTIPPLE) | |
a56fcaaf | 1029 | { |
5f170f33 VZ |
1030 | gdk_gc_set_ts_origin( m_brushGC, |
1031 | m_deviceOriginX % m_brush.GetStipple()->GetWidth(), | |
a56fcaaf RR |
1032 | m_deviceOriginY % m_brush.GetStipple()->GetHeight() ); |
1033 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 ); | |
1034 | gdk_gc_set_ts_origin( m_brushGC, 0, 0 ); | |
1035 | } | |
1036 | else | |
1037 | { | |
1038 | gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 ); | |
1039 | } | |
1040 | } | |
7d5af6fa | 1041 | |
6db90681 RR |
1042 | if (m_pen.GetStyle() != wxTRANSPARENT) |
1043 | gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, 0, 360*64 ); | |
1044 | } | |
7d5af6fa | 1045 | |
44856297 | 1046 | CalcBoundingBox( x, y ); |
265898fd | 1047 | CalcBoundingBox( x + width, y + height ); |
903f689b | 1048 | } |
c801d85f | 1049 | |
72cdf4c9 | 1050 | void wxWindowDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y ) |
c801d85f | 1051 | { |
b0e0d661 | 1052 | // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why |
ab9d0a8c | 1053 | DoDrawBitmap( (const wxBitmap&)icon, x, y, true ); |
903f689b | 1054 | } |
c801d85f | 1055 | |
b0e0d661 | 1056 | void wxWindowDC::DoDrawBitmap( const wxBitmap &bitmap, |
72cdf4c9 | 1057 | wxCoord x, wxCoord y, |
b0e0d661 | 1058 | bool useMask ) |
4bc67cc5 | 1059 | { |
223d09f6 | 1060 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1061 | |
223d09f6 | 1062 | wxCHECK_RET( bitmap.Ok(), wxT("invalid bitmap") ); |
7d5af6fa | 1063 | |
cf214c35 | 1064 | bool is_mono = (bitmap.GetBitmap() != NULL); |
82ea63e6 | 1065 | |
d90c9596 | 1066 | // scale/translate size and position |
265898fd RR |
1067 | int xx = XLOG2DEV(x); |
1068 | int yy = YLOG2DEV(y); | |
7d5af6fa | 1069 | |
4bc67cc5 RR |
1070 | int w = bitmap.GetWidth(); |
1071 | int h = bitmap.GetHeight(); | |
7d5af6fa | 1072 | |
6453876e RR |
1073 | CalcBoundingBox( x, y ); |
1074 | CalcBoundingBox( x + w, y + h ); | |
7d5af6fa | 1075 | |
6453876e | 1076 | if (!m_window) return; |
7d5af6fa | 1077 | |
4bc67cc5 RR |
1078 | int ww = XLOG2DEVREL(w); |
1079 | int hh = YLOG2DEVREL(h); | |
7d5af6fa | 1080 | |
d90c9596 | 1081 | // compare to current clipping region |
e1208c31 | 1082 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 RR |
1083 | { |
1084 | wxRegion tmp( xx,yy,ww,hh ); | |
1085 | tmp.Intersect( m_currentClippingRegion ); | |
1086 | if (tmp.IsEmpty()) | |
1087 | return; | |
1088 | } | |
5f170f33 | 1089 | |
ab9d0a8c | 1090 | // scale bitmap if required |
d90c9596 | 1091 | wxBitmap use_bitmap = bitmap; |
4bc67cc5 | 1092 | if ((w != ww) || (h != hh)) |
d90c9596 | 1093 | use_bitmap = use_bitmap.Rescale( 0, 0, ww, hh, ww, hh ); |
ab9d0a8c | 1094 | |
1abedc32 VS |
1095 | // NB: We can't render pixbufs with GTK+ < 2.2, we need to use pixmaps code. |
1096 | // Pixbufs-based bitmaps with alpha channel don't have a mask, so we | |
1097 | // have to call GetPixmap() here -- it converts the pixbuf into pixmap | |
1098 | // and also creates the mask as a side-effect: | |
1099 | use_bitmap.GetPixmap(); | |
ab9d0a8c | 1100 | |
d90c9596 | 1101 | // apply mask if any |
463c1fa1 | 1102 | GdkBitmap *mask = (GdkBitmap *) NULL; |
4bc67cc5 | 1103 | if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap(); |
7d5af6fa | 1104 | |
d90c9596 | 1105 | GdkBitmap *new_mask = (GdkBitmap*) NULL; |
ab9d0a8c | 1106 | |
d90c9596 RR |
1107 | if (useMask && mask) |
1108 | { | |
1109 | if (!m_currentClippingRegion.IsNull()) | |
82ea63e6 | 1110 | { |
d90c9596 RR |
1111 | GdkColor col; |
1112 | new_mask = gdk_pixmap_new( wxGetRootWindow()->window, ww, hh, 1 ); | |
1113 | GdkGC *gc = gdk_gc_new( new_mask ); | |
1114 | col.pixel = 0; | |
1115 | gdk_gc_set_foreground( gc, &col ); | |
1116 | gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh ); | |
1117 | col.pixel = 0; | |
1118 | gdk_gc_set_background( gc, &col ); | |
1119 | col.pixel = 1; | |
1120 | gdk_gc_set_foreground( gc, &col ); | |
1121 | gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() ); | |
1122 | gdk_gc_set_clip_origin( gc, -xx, -yy ); | |
1123 | gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED ); | |
1124 | gdk_gc_set_stipple( gc, mask ); | |
1125 | gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh ); | |
1126 | gdk_gc_unref( gc ); | |
1127 | } | |
ab9d0a8c | 1128 | |
d90c9596 RR |
1129 | if (is_mono) |
1130 | { | |
1131 | if (new_mask) | |
1132 | gdk_gc_set_clip_mask( m_textGC, new_mask ); | |
3d2d8da1 | 1133 | else |
d90c9596 RR |
1134 | gdk_gc_set_clip_mask( m_textGC, mask ); |
1135 | gdk_gc_set_clip_origin( m_textGC, xx, yy ); | |
1136 | } | |
1137 | else | |
1138 | { | |
3d2d8da1 | 1139 | if (new_mask) |
d90c9596 RR |
1140 | gdk_gc_set_clip_mask( m_penGC, new_mask ); |
1141 | else | |
1142 | gdk_gc_set_clip_mask( m_penGC, mask ); | |
1143 | gdk_gc_set_clip_origin( m_penGC, xx, yy ); | |
b0e0d661 | 1144 | } |
d90c9596 | 1145 | } |
7d5af6fa | 1146 | |
d90c9596 RR |
1147 | // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For |
1148 | // drawing a mono-bitmap (XBitmap) we use the current text GC | |
82ea63e6 | 1149 | if (is_mono) |
d90c9596 | 1150 | { |
f6bcfd97 | 1151 | gdk_wx_draw_bitmap( m_window, m_textGC, use_bitmap.GetBitmap(), 0, 0, xx, yy, -1, -1 ); |
d90c9596 | 1152 | } |
82ea63e6 | 1153 | else |
d90c9596 | 1154 | { |
3cbab641 MR |
1155 | gdk_draw_pixmap(m_window, m_penGC, |
1156 | use_bitmap.GetPixmap(), | |
1157 | 0, 0, xx, yy, -1, -1); | |
d90c9596 | 1158 | } |
72174350 | 1159 | |
d90c9596 | 1160 | // remove mask again if any |
7d5af6fa | 1161 | if (useMask && mask) |
463c1fa1 | 1162 | { |
82ea63e6 RR |
1163 | if (is_mono) |
1164 | { | |
1165 | gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL ); | |
1166 | gdk_gc_set_clip_origin( m_textGC, 0, 0 ); | |
e1208c31 | 1167 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 | 1168 | gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() ); |
82ea63e6 RR |
1169 | } |
1170 | else | |
1171 | { | |
1172 | gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL ); | |
1173 | gdk_gc_set_clip_origin( m_penGC, 0, 0 ); | |
e1208c31 | 1174 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 | 1175 | gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() ); |
82ea63e6 | 1176 | } |
463c1fa1 | 1177 | } |
ab9d0a8c | 1178 | |
d90c9596 RR |
1179 | if (new_mask) |
1180 | gdk_bitmap_unref( new_mask ); | |
463c1fa1 RR |
1181 | } |
1182 | ||
1e6feb95 VZ |
1183 | bool wxWindowDC::DoBlit( wxCoord xdest, wxCoord ydest, |
1184 | wxCoord width, wxCoord height, | |
1185 | wxDC *source, | |
1186 | wxCoord xsrc, wxCoord ysrc, | |
1187 | int logical_func, | |
0cbff120 JS |
1188 | bool useMask, |
1189 | wxCoord xsrcMask, wxCoord ysrcMask ) | |
c801d85f | 1190 | { |
ab9d0a8c | 1191 | wxCHECK_MSG( Ok(), false, wxT("invalid window dc") ); |
7d5af6fa | 1192 | |
ab9d0a8c | 1193 | wxCHECK_MSG( source, false, wxT("invalid source dc") ); |
7d5af6fa | 1194 | |
ab9d0a8c | 1195 | if (!m_window) return false; |
7d5af6fa | 1196 | |
1e6feb95 | 1197 | // transform the source DC coords to the device ones |
06201c35 RR |
1198 | xsrc = source->XLOG2DEV(xsrc); |
1199 | ysrc = source->YLOG2DEV(ysrc); | |
1e6feb95 | 1200 | |
6e13c196 RR |
1201 | wxClientDC *srcDC = (wxClientDC*)source; |
1202 | wxMemoryDC *memDC = (wxMemoryDC*)source; | |
7d5af6fa | 1203 | |
ab9d0a8c WS |
1204 | bool use_bitmap_method = false; |
1205 | bool is_mono = false; | |
7d5af6fa | 1206 | |
0cbff120 JS |
1207 | if (xsrcMask == -1 && ysrcMask == -1) |
1208 | { | |
d90c9596 RR |
1209 | xsrcMask = xsrc; |
1210 | ysrcMask = ysrc; | |
0cbff120 JS |
1211 | } |
1212 | ||
6e13c196 RR |
1213 | if (srcDC->m_isMemDC) |
1214 | { | |
ab9d0a8c | 1215 | if (!memDC->m_selected.Ok()) return false; |
7d5af6fa | 1216 | |
d90c9596 RR |
1217 | is_mono = (memDC->m_selected.GetDepth() == 1); |
1218 | ||
1219 | // we use the "XCopyArea" way to copy a memory dc into | |
1220 | // a different window if the memory dc BOTH | |
1221 | // a) doesn't have any mask or its mask isn't used | |
1222 | // b) it is clipped | |
1223 | // c) is not 1-bit | |
7d5af6fa | 1224 | |
f234c60c | 1225 | if (useMask && (memDC->m_selected.GetMask())) |
b0e0d661 | 1226 | { |
d90c9596 RR |
1227 | // we HAVE TO use the direct way for memory dcs |
1228 | // that have mask since the XCopyArea doesn't know | |
1229 | // about masks | |
ab9d0a8c | 1230 | use_bitmap_method = true; |
b0e0d661 | 1231 | } |
d90c9596 | 1232 | else if (is_mono) |
b0e0d661 | 1233 | { |
d90c9596 RR |
1234 | // we HAVE TO use the direct way for memory dcs |
1235 | // that are bitmaps because XCopyArea doesn't cope | |
1236 | // with different bit depths | |
ab9d0a8c | 1237 | use_bitmap_method = true; |
b0e0d661 VZ |
1238 | } |
1239 | else if ((xsrc == 0) && (ysrc == 0) && | |
1240 | (width == memDC->m_selected.GetWidth()) && | |
1241 | (height == memDC->m_selected.GetHeight())) | |
1242 | { | |
d90c9596 RR |
1243 | // we SHOULD use the direct way if all of the bitmap |
1244 | // in the memory dc is copied in which case XCopyArea | |
1245 | // wouldn't be able able to boost performace by reducing | |
1246 | // the area to be scaled | |
ab9d0a8c | 1247 | use_bitmap_method = true; |
b0e0d661 VZ |
1248 | } |
1249 | else | |
1250 | { | |
ab9d0a8c | 1251 | use_bitmap_method = false; |
b0e0d661 | 1252 | } |
6e13c196 | 1253 | } |
7d5af6fa | 1254 | |
265898fd RR |
1255 | CalcBoundingBox( xdest, ydest ); |
1256 | CalcBoundingBox( xdest + width, ydest + height ); | |
7d5af6fa | 1257 | |
d90c9596 | 1258 | // scale/translate size and position |
3d2d8da1 RR |
1259 | wxCoord xx = XLOG2DEV(xdest); |
1260 | wxCoord yy = YLOG2DEV(ydest); | |
1261 | ||
1262 | wxCoord ww = XLOG2DEVREL(width); | |
1263 | wxCoord hh = YLOG2DEVREL(height); | |
1264 | ||
d90c9596 | 1265 | // compare to current clipping region |
e1208c31 | 1266 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 RR |
1267 | { |
1268 | wxRegion tmp( xx,yy,ww,hh ); | |
1269 | tmp.Intersect( m_currentClippingRegion ); | |
1270 | if (tmp.IsEmpty()) | |
ab9d0a8c | 1271 | return true; |
3d2d8da1 RR |
1272 | } |
1273 | ||
4bc67cc5 RR |
1274 | int old_logical_func = m_logicalFunction; |
1275 | SetLogicalFunction( logical_func ); | |
5f170f33 | 1276 | |
6e13c196 | 1277 | if (use_bitmap_method) |
6f65e337 | 1278 | { |
d90c9596 | 1279 | // scale/translate bitmap size |
72cdf4c9 VZ |
1280 | wxCoord bm_width = memDC->m_selected.GetWidth(); |
1281 | wxCoord bm_height = memDC->m_selected.GetHeight(); | |
7d5af6fa | 1282 | |
551b5391 RR |
1283 | // Get clip coords for the bitmap. If we don't |
1284 | // use wxBitmap::Rescale(), which can clip the | |
1285 | // bitmap, these are the same as the original | |
1286 | // coordinates | |
1287 | wxCoord cx = xx; | |
1288 | wxCoord cy = yy; | |
1289 | wxCoord cw = ww; | |
1290 | wxCoord ch = hh; | |
ab9d0a8c | 1291 | |
d90c9596 RR |
1292 | // interpret userscale of src too |
1293 | double xsc,ysc; | |
1294 | memDC->GetUserScale(&xsc,&ysc); | |
1295 | bm_width = (int) (bm_width / xsc); | |
1296 | bm_height = (int) (bm_height / ysc); | |
1297 | ||
72cdf4c9 VZ |
1298 | wxCoord bm_ww = XLOG2DEVREL( bm_width ); |
1299 | wxCoord bm_hh = YLOG2DEVREL( bm_height ); | |
7d5af6fa | 1300 | |
551b5391 | 1301 | // Scale bitmap if required |
6e13c196 | 1302 | wxBitmap use_bitmap; |
f53df133 | 1303 | if ((memDC->m_selected.GetWidth()!= bm_ww) || ( memDC->m_selected.GetHeight()!= bm_hh)) |
6e13c196 | 1304 | { |
551b5391 RR |
1305 | // This indicates that the blitting code below will get |
1306 | // a clipped bitmap and therefore needs to move the origin | |
1307 | // accordingly | |
1308 | wxRegion tmp( xx,yy,ww,hh ); | |
1309 | tmp.Intersect( m_currentClippingRegion ); | |
1310 | tmp.GetBox(cx,cy,cw,ch); | |
ab9d0a8c | 1311 | |
551b5391 RR |
1312 | // Scale and clipped bitmap |
1313 | use_bitmap = memDC->m_selected.Rescale(cx-xx,cy-yy,cw,ch,bm_ww,bm_hh); | |
6e13c196 RR |
1314 | } |
1315 | else | |
e23d0e95 | 1316 | { |
551b5391 | 1317 | // Don't scale bitmap |
6e13c196 RR |
1318 | use_bitmap = memDC->m_selected; |
1319 | } | |
7d5af6fa | 1320 | |
d90c9596 | 1321 | // apply mask if any |
6e13c196 RR |
1322 | GdkBitmap *mask = (GdkBitmap *) NULL; |
1323 | if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap(); | |
7d5af6fa | 1324 | |
d90c9596 | 1325 | GdkBitmap *new_mask = (GdkBitmap*) NULL; |
ab9d0a8c | 1326 | |
7d5af6fa | 1327 | if (useMask && mask) |
6e13c196 | 1328 | { |
e1208c31 | 1329 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 RR |
1330 | { |
1331 | GdkColor col; | |
c2fa61e8 | 1332 | new_mask = gdk_pixmap_new( wxGetRootWindow()->window, bm_ww, bm_hh, 1 ); |
3d2d8da1 RR |
1333 | GdkGC *gc = gdk_gc_new( new_mask ); |
1334 | col.pixel = 0; | |
1335 | gdk_gc_set_foreground( gc, &col ); | |
b7a49654 | 1336 | gdk_gc_set_ts_origin( gc, -xsrcMask, -ysrcMask); |
3d2d8da1 RR |
1337 | gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh ); |
1338 | col.pixel = 0; | |
1339 | gdk_gc_set_background( gc, &col ); | |
1340 | col.pixel = 1; | |
1341 | gdk_gc_set_foreground( gc, &col ); | |
1342 | gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() ); | |
d90c9596 RR |
1343 | // was: gdk_gc_set_clip_origin( gc, -xx, -yy ); |
1344 | gdk_gc_set_clip_origin( gc, -cx, -cy ); | |
3d2d8da1 RR |
1345 | gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED ); |
1346 | gdk_gc_set_stipple( gc, mask ); | |
1347 | gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh ); | |
1348 | gdk_gc_unref( gc ); | |
1349 | } | |
d90c9596 | 1350 | |
82ea63e6 RR |
1351 | if (is_mono) |
1352 | { | |
3d2d8da1 | 1353 | if (new_mask) |
b7a49654 | 1354 | { |
3d2d8da1 | 1355 | gdk_gc_set_clip_mask( m_textGC, new_mask ); |
b7a49654 RR |
1356 | gdk_gc_set_clip_origin( m_textGC, cx, cy ); |
1357 | } | |
3d2d8da1 | 1358 | else |
b7a49654 | 1359 | { |
3d2d8da1 | 1360 | gdk_gc_set_clip_mask( m_textGC, mask ); |
b7a49654 | 1361 | gdk_gc_set_clip_origin( m_textGC, cx-xsrcMask, cy-ysrcMask ); |
0a164d4c | 1362 | } |
82ea63e6 RR |
1363 | } |
1364 | else | |
6e13c196 | 1365 | { |
3d2d8da1 | 1366 | if (new_mask) |
b7a49654 | 1367 | { |
3d2d8da1 | 1368 | gdk_gc_set_clip_mask( m_penGC, new_mask ); |
b7a49654 RR |
1369 | gdk_gc_set_clip_origin( m_penGC, cx, cy ); |
1370 | } | |
3d2d8da1 | 1371 | else |
b7a49654 | 1372 | { |
3d2d8da1 | 1373 | gdk_gc_set_clip_mask( m_penGC, mask ); |
b7a49654 | 1374 | gdk_gc_set_clip_origin( m_penGC, cx-xsrcMask, cy-ysrcMask ); |
0a164d4c | 1375 | } |
b0e0d661 | 1376 | } |
6e13c196 | 1377 | } |
7d5af6fa | 1378 | |
d90c9596 RR |
1379 | // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For |
1380 | // drawing a mono-bitmap (XBitmap) we use the current text GC | |
5f170f33 | 1381 | |
82ea63e6 | 1382 | if (is_mono) |
d90c9596 | 1383 | { |
d90c9596 RR |
1384 | // was: gdk_wx_draw_bitmap( m_window, m_textGC, use_bitmap.GetBitmap(), xsrc, ysrc, xx, yy, ww, hh ); |
1385 | gdk_wx_draw_bitmap( m_window, m_textGC, use_bitmap.GetBitmap(), xsrc, ysrc, cx, cy, cw, ch ); | |
d90c9596 | 1386 | } |
82ea63e6 | 1387 | else |
d90c9596 RR |
1388 | { |
1389 | // was: gdk_draw_pixmap( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, xx, yy, ww, hh ); | |
1390 | gdk_draw_pixmap( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, cx, cy, cw, ch ); | |
1391 | } | |
82ea63e6 | 1392 | |
d90c9596 | 1393 | // remove mask again if any |
7d5af6fa | 1394 | if (useMask && mask) |
6e13c196 | 1395 | { |
82ea63e6 RR |
1396 | if (is_mono) |
1397 | { | |
1398 | gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL ); | |
1399 | gdk_gc_set_clip_origin( m_textGC, 0, 0 ); | |
e1208c31 | 1400 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 | 1401 | gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() ); |
82ea63e6 RR |
1402 | } |
1403 | else | |
1404 | { | |
1405 | gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL ); | |
1406 | gdk_gc_set_clip_origin( m_penGC, 0, 0 ); | |
e1208c31 | 1407 | if (!m_currentClippingRegion.IsNull()) |
3d2d8da1 | 1408 | gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() ); |
82ea63e6 | 1409 | } |
265898fd | 1410 | } |
ab9d0a8c | 1411 | |
d90c9596 RR |
1412 | if (new_mask) |
1413 | gdk_bitmap_unref( new_mask ); | |
6f65e337 | 1414 | } |
d90c9596 | 1415 | else // use_bitmap_method |
6e13c196 | 1416 | { |
bf9848e7 | 1417 | if ((width != ww) || (height != hh)) |
b0e0d661 | 1418 | { |
d90c9596 RR |
1419 | // get clip coords |
1420 | wxRegion tmp( xx,yy,ww,hh ); | |
1421 | tmp.Intersect( m_currentClippingRegion ); | |
1422 | wxCoord cx,cy,cw,ch; | |
1423 | tmp.GetBox(cx,cy,cw,ch); | |
ab9d0a8c WS |
1424 | |
1425 | // rescale bitmap | |
d90c9596 | 1426 | wxBitmap bitmap = memDC->m_selected.Rescale( cx-xx, cy-yy, cw, ch, ww, hh ); |
7d5af6fa | 1427 | |
d90c9596 RR |
1428 | // draw scaled bitmap |
1429 | // was: gdk_draw_pixmap( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, xx, yy, -1, -1 ); | |
1430 | gdk_draw_pixmap( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, cx, cy, -1, -1 ); | |
b0e0d661 VZ |
1431 | } |
1432 | else | |
1433 | { | |
ab9d0a8c | 1434 | // No scaling and not a memory dc with a mask either |
993f97ee | 1435 | |
d90c9596 | 1436 | // copy including child window contents |
a56fcaaf | 1437 | gdk_gc_set_subwindow( m_penGC, GDK_INCLUDE_INFERIORS ); |
6e13c196 RR |
1438 | gdk_window_copy_area( m_window, m_penGC, xx, yy, |
1439 | srcDC->GetWindow(), | |
1440 | xsrc, ysrc, width, height ); | |
a56fcaaf | 1441 | gdk_gc_set_subwindow( m_penGC, GDK_CLIP_BY_CHILDREN ); |
b0e0d661 | 1442 | } |
6e13c196 | 1443 | } |
c801d85f | 1444 | |
4bc67cc5 | 1445 | SetLogicalFunction( old_logical_func ); |
ab9d0a8c WS |
1446 | |
1447 | return true; | |
903f689b | 1448 | } |
c801d85f | 1449 | |
72cdf4c9 | 1450 | void wxWindowDC::DoDrawText( const wxString &text, wxCoord x, wxCoord y ) |
c801d85f | 1451 | { |
223d09f6 | 1452 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
18a2fa37 | 1453 | |
6db90681 | 1454 | if (!m_window) return; |
ab9d0a8c | 1455 | |
2b5f62a0 | 1456 | if (text.empty()) return; |
7d5af6fa | 1457 | |
265898fd | 1458 | GdkFont *font = m_font.GetInternalFont( m_scaleY ); |
6f65e337 | 1459 | |
a1fffa9f VZ |
1460 | wxCHECK_RET( font, wxT("invalid font") ); |
1461 | ||
265898fd RR |
1462 | x = XLOG2DEV(x); |
1463 | y = YLOG2DEV(y); | |
18a2fa37 | 1464 | |
8943b403 OK |
1465 | wxCoord width = gdk_string_width( font, text.mbc_str() ); |
1466 | wxCoord height = font->ascent + font->descent; | |
2c37aade VZ |
1467 | |
1468 | if ( m_backgroundMode == wxSOLID ) | |
265898fd | 1469 | { |
265898fd RR |
1470 | gdk_gc_set_foreground( m_textGC, m_textBackgroundColour.GetColor() ); |
1471 | gdk_draw_rectangle( m_window, m_textGC, TRUE, x, y, width, height ); | |
2c37aade | 1472 | gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() ); |
265898fd | 1473 | } |
93c5dd39 | 1474 | gdk_draw_string( m_window, font, m_textGC, x, y + font->ascent, text.mbc_str() ); |
18a2fa37 | 1475 | |
bbbbe360 RR |
1476 | /* CMB 17/7/98: simple underline: ignores scaling and underlying |
1477 | X font's XA_UNDERLINE_POSITION and XA_UNDERLINE_THICKNESS | |
1478 | properties (see wxXt implementation) */ | |
265898fd RR |
1479 | if (m_font.GetUnderlined()) |
1480 | { | |
13111b2a | 1481 | wxCoord ul_y = y + font->ascent; |
265898fd RR |
1482 | if (font->descent > 0) ul_y++; |
1483 | gdk_draw_line( m_window, m_textGC, x, ul_y, x + width, ul_y); | |
1484 | } | |
7d5af6fa | 1485 | |
8943b403 OK |
1486 | width = wxCoord(width / m_scaleX); |
1487 | height = wxCoord(height / m_scaleY); | |
1488 | CalcBoundingBox (x + width, y + height); | |
265898fd | 1489 | CalcBoundingBox (x, y); |
903f689b | 1490 | } |
c801d85f | 1491 | |
bf47e398 RD |
1492 | |
1493 | // TODO: There is an example of rotating text with GTK2 that would probably be | |
1494 | // a better approach here: | |
1495 | // http://www.daa.com.au/pipermail/pygtk/2003-April/005052.html | |
1496 | ||
95724b1a VZ |
1497 | void wxWindowDC::DoDrawRotatedText( const wxString &text, wxCoord x, wxCoord y, double angle ) |
1498 | { | |
c77a6796 | 1499 | if ( wxIsNullDouble(angle) ) |
95724b1a VZ |
1500 | { |
1501 | DrawText(text, x, y); | |
1502 | return; | |
1503 | } | |
1504 | ||
1505 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); | |
1506 | ||
1507 | if (!m_window) return; | |
1508 | ||
bf47e398 RD |
1509 | wxCoord w; |
1510 | wxCoord h; | |
1511 | ||
95724b1a VZ |
1512 | GdkFont *font = m_font.GetInternalFont( m_scaleY ); |
1513 | ||
1514 | wxCHECK_RET( font, wxT("invalid font") ); | |
1515 | ||
9a8c7620 | 1516 | // the size of the text |
bf47e398 RD |
1517 | w = gdk_string_width( font, text.mbc_str() ); |
1518 | h = font->ascent + font->descent; | |
3cbab641 | 1519 | |
9a8c7620 VZ |
1520 | // draw the string normally |
1521 | wxBitmap src(w, h); | |
95724b1a VZ |
1522 | wxMemoryDC dc; |
1523 | dc.SelectObject(src); | |
1524 | dc.SetFont(GetFont()); | |
f1c72f0c | 1525 | dc.SetBackground(*wxBLACK_BRUSH); |
95724b1a VZ |
1526 | dc.SetBrush(*wxBLACK_BRUSH); |
1527 | dc.Clear(); | |
f1c72f0c | 1528 | dc.SetTextForeground( *wxWHITE ); |
95724b1a | 1529 | dc.DrawText(text, 0, 0); |
9a8c7620 | 1530 | dc.SelectObject(wxNullBitmap); |
95724b1a VZ |
1531 | |
1532 | // Calculate the size of the rotated bounding box. | |
9a8c7620 VZ |
1533 | double rad = DegToRad(angle); |
1534 | double dx = cos(rad), | |
1535 | dy = sin(rad); | |
1536 | ||
1537 | // the rectngle vertices are counted clockwise with the first one being at | |
1538 | // (0, 0) (or, rather, at (x, y)) | |
1539 | double x2 = w*dx, | |
1540 | y2 = -w*dy; // y axis points to the bottom, hence minus | |
1541 | double x4 = h*dy, | |
1542 | y4 = h*dx; | |
1543 | double x3 = x4 + x2, | |
1544 | y3 = y4 + y2; | |
ab9d0a8c | 1545 | |
72174350 | 1546 | // calc max and min |
9a8c7620 VZ |
1547 | wxCoord maxX = (wxCoord)(dmax(x2, dmax(x3, x4)) + 0.5), |
1548 | maxY = (wxCoord)(dmax(y2, dmax(y3, y4)) + 0.5), | |
1549 | minX = (wxCoord)(dmin(x2, dmin(x3, x4)) - 0.5), | |
1550 | minY = (wxCoord)(dmin(y2, dmin(y3, y4)) - 0.5); | |
1551 | ||
72174350 | 1552 | |
f1c72f0c | 1553 | wxImage image = src.ConvertToImage(); |
9a8c7620 | 1554 | |
f1c72f0c RR |
1555 | image.ConvertColourToAlpha( m_textForegroundColour.Red(), |
1556 | m_textForegroundColour.Green(), | |
1557 | m_textForegroundColour.Blue() ); | |
1558 | image = image.Rotate( rad, wxPoint(0,0) ); | |
ab9d0a8c | 1559 | |
1d65e535 RR |
1560 | int i_angle = (int) angle; |
1561 | i_angle = i_angle % 360; | |
c2cb80c8 KH |
1562 | if (i_angle < 0) |
1563 | i_angle += 360; | |
1d65e535 RR |
1564 | int xoffset = 0; |
1565 | if ((i_angle >= 90.0) && (i_angle < 270.0)) | |
1566 | xoffset = image.GetWidth(); | |
1567 | int yoffset = 0; | |
1568 | if ((i_angle >= 0.0) && (i_angle < 180.0)) | |
1569 | yoffset = image.GetHeight(); | |
ab9d0a8c | 1570 | |
1d65e535 RR |
1571 | if ((i_angle >= 0) && (i_angle < 90)) |
1572 | yoffset -= (int)( cos(rad)*h ); | |
1573 | if ((i_angle >= 90) && (i_angle < 180)) | |
ab9d0a8c | 1574 | xoffset -= (int)( sin(rad)*h ); |
1d65e535 RR |
1575 | if ((i_angle >= 180) && (i_angle < 270)) |
1576 | yoffset -= (int)( cos(rad)*h ); | |
1577 | if ((i_angle >= 270) && (i_angle < 360)) | |
1578 | xoffset -= (int)( sin(rad)*h ); | |
ab9d0a8c | 1579 | |
1d65e535 RR |
1580 | int i_x = x - xoffset; |
1581 | int i_y = y - yoffset; | |
ab9d0a8c | 1582 | |
f1c72f0c | 1583 | src = image; |
1d65e535 | 1584 | DoDrawBitmap( src, i_x, i_y, true ); |
9a8c7620 | 1585 | |
95724b1a | 1586 | |
9a8c7620 VZ |
1587 | // it would be better to draw with non underlined font and draw the line |
1588 | // manually here (it would be more straight...) | |
1589 | #if 0 | |
1590 | if ( m_font.GetUnderlined() ) | |
1591 | { | |
1592 | gdk_draw_line( m_window, m_textGC, | |
1593 | XLOG2DEV(x + x4), YLOG2DEV(y + y4 + font->descent), | |
1594 | XLOG2DEV(x + x3), YLOG2DEV(y + y3 + font->descent)); | |
1595 | } | |
1596 | #endif // 0 | |
1597 | ||
9a8c7620 VZ |
1598 | // update the bounding box |
1599 | CalcBoundingBox(x + minX, y + minY); | |
1600 | CalcBoundingBox(x + maxX, y + maxY); | |
95724b1a VZ |
1601 | } |
1602 | ||
72cdf4c9 VZ |
1603 | void wxWindowDC::DoGetTextExtent(const wxString &string, |
1604 | wxCoord *width, wxCoord *height, | |
1605 | wxCoord *descent, wxCoord *externalLeading, | |
1606 | wxFont *theFont) const | |
c801d85f | 1607 | { |
b1f0abe4 VZ |
1608 | if ( width ) |
1609 | *width = 0; | |
1610 | if ( height ) | |
1611 | *height = 0; | |
1612 | if ( descent ) | |
1613 | *descent = 0; | |
1614 | if ( externalLeading ) | |
1615 | *externalLeading = 0; | |
1616 | ||
ab9d0a8c | 1617 | if (string.empty()) |
48d011c8 | 1618 | { |
48d011c8 RR |
1619 | return; |
1620 | } | |
ab9d0a8c | 1621 | |
2b5f62a0 | 1622 | wxFont fontToUse = m_font; |
b1f0abe4 VZ |
1623 | if (theFont) |
1624 | fontToUse = *theFont; | |
ab9d0a8c | 1625 | |
265898fd | 1626 | GdkFont *font = fontToUse.GetInternalFont( m_scaleY ); |
b1f0abe4 VZ |
1627 | if ( !font ) |
1628 | return; | |
1629 | ||
1630 | if (width) | |
1631 | *width = wxCoord(gdk_string_width( font, string.mbc_str() ) / m_scaleX); | |
1632 | if (height) | |
1633 | *height = wxCoord((font->ascent + font->descent) / m_scaleY); | |
1634 | if (descent) | |
1635 | *descent = wxCoord(font->descent / m_scaleY); | |
903f689b | 1636 | } |
c801d85f | 1637 | |
72cdf4c9 | 1638 | wxCoord wxWindowDC::GetCharWidth() const |
c801d85f | 1639 | { |
265898fd | 1640 | GdkFont *font = m_font.GetInternalFont( m_scaleY ); |
58c837a4 | 1641 | wxCHECK_MSG( font, -1, wxT("invalid font") ); |
7beba2fc | 1642 | |
72cdf4c9 | 1643 | return wxCoord(gdk_string_width( font, "H" ) / m_scaleX); |
903f689b | 1644 | } |
c801d85f | 1645 | |
72cdf4c9 | 1646 | wxCoord wxWindowDC::GetCharHeight() const |
c801d85f | 1647 | { |
265898fd | 1648 | GdkFont *font = m_font.GetInternalFont( m_scaleY ); |
58c837a4 | 1649 | wxCHECK_MSG( font, -1, wxT("invalid font") ); |
7beba2fc | 1650 | |
72cdf4c9 | 1651 | return wxCoord((font->ascent + font->descent) / m_scaleY); |
903f689b | 1652 | } |
c801d85f | 1653 | |
4bc67cc5 | 1654 | void wxWindowDC::Clear() |
c801d85f | 1655 | { |
223d09f6 | 1656 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1657 | |
6db90681 | 1658 | if (!m_window) return; |
7d5af6fa | 1659 | |
f60e7fdd VZ |
1660 | // VZ: the code below results in infinite recursion and crashes when |
1661 | // dc.Clear() is done from OnPaint() so I disable it for now. | |
1662 | // I don't know what the correct fix is but Clear() surely should not | |
1663 | // reenter OnPaint()! | |
1664 | #if 0 | |
f234c60c RR |
1665 | /* - we either are a memory dc or have a window as the |
1666 | owner. anything else shouldn't happen. | |
1667 | - we don't use gdk_window_clear() as we don't set | |
1668 | the window's background colour anymore. it is too | |
1669 | much pain to keep the DC's and the window's back- | |
1670 | ground colour in synch. */ | |
7d5af6fa | 1671 | |
f234c60c | 1672 | if (m_owner) |
265898fd | 1673 | { |
f90566f5 | 1674 | m_owner->Clear(); |
b0e0d661 | 1675 | return; |
265898fd | 1676 | } |
f234c60c RR |
1677 | |
1678 | if (m_isMemDC) | |
265898fd RR |
1679 | { |
1680 | int width,height; | |
1681 | GetSize( &width, &height ); | |
1682 | gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height ); | |
b0e0d661 | 1683 | return; |
265898fd | 1684 | } |
f60e7fdd VZ |
1685 | #else // 1 |
1686 | int width,height; | |
1687 | GetSize( &width, &height ); | |
1688 | gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height ); | |
1689 | #endif // 0/1 | |
903f689b | 1690 | } |
c801d85f | 1691 | |
ec758a20 | 1692 | void wxWindowDC::SetFont( const wxFont &font ) |
c801d85f | 1693 | { |
265898fd | 1694 | m_font = font; |
903f689b | 1695 | } |
c801d85f | 1696 | |
ec758a20 | 1697 | void wxWindowDC::SetPen( const wxPen &pen ) |
c801d85f | 1698 | { |
223d09f6 | 1699 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1700 | |
265898fd | 1701 | if (m_pen == pen) return; |
7d5af6fa | 1702 | |
265898fd | 1703 | m_pen = pen; |
7d5af6fa | 1704 | |
265898fd | 1705 | if (!m_pen.Ok()) return; |
7d5af6fa | 1706 | |
6db90681 | 1707 | if (!m_window) return; |
7d5af6fa | 1708 | |
265898fd | 1709 | gint width = m_pen.GetWidth(); |
265898fd RR |
1710 | if (width <= 0) |
1711 | { | |
112c5086 | 1712 | // CMB: if width is non-zero scale it with the dc |
265898fd RR |
1713 | width = 1; |
1714 | } | |
1715 | else | |
1716 | { | |
1717 | // X doesn't allow different width in x and y and so we take | |
1718 | // the average | |
503f414e VZ |
1719 | double w = 0.5 + |
1720 | ( fabs((double) XLOG2DEVREL(width)) + | |
1721 | fabs((double) YLOG2DEVREL(width)) ) / 2.0; | |
265898fd | 1722 | width = (int)w; |
375fc5a9 VZ |
1723 | if ( !width ) |
1724 | { | |
1725 | // width can't be 0 or an internal GTK error occurs inside | |
1726 | // gdk_gc_set_dashes() below | |
1727 | width = 1; | |
1728 | } | |
265898fd | 1729 | } |
7d5af6fa | 1730 | |
2eca425d RL |
1731 | static const wxGTKDash dotted[] = {1, 1}; |
1732 | static const wxGTKDash short_dashed[] = {2, 2}; | |
1733 | static const wxGTKDash wxCoord_dashed[] = {2, 4}; | |
1734 | static const wxGTKDash dotted_dashed[] = {3, 3, 1, 3}; | |
7d5af6fa | 1735 | |
112c5086 RR |
1736 | // We express dash pattern in pen width unit, so we are |
1737 | // independent of zoom factor and so on... | |
1738 | int req_nb_dash; | |
2eca425d | 1739 | const wxGTKDash *req_dash; |
7d5af6fa | 1740 | |
265898fd RR |
1741 | GdkLineStyle lineStyle = GDK_LINE_SOLID; |
1742 | switch (m_pen.GetStyle()) | |
1743 | { | |
112c5086 | 1744 | case wxUSER_DASH: |
7d5af6fa VZ |
1745 | { |
1746 | lineStyle = GDK_LINE_ON_OFF_DASH; | |
112c5086 | 1747 | req_nb_dash = m_pen.GetDashCount(); |
2eca425d | 1748 | req_dash = (wxGTKDash*)m_pen.GetDash(); |
112c5086 | 1749 | break; |
7d5af6fa VZ |
1750 | } |
1751 | case wxDOT: | |
1752 | { | |
1753 | lineStyle = GDK_LINE_ON_OFF_DASH; | |
112c5086 RR |
1754 | req_nb_dash = 2; |
1755 | req_dash = dotted; | |
7d5af6fa VZ |
1756 | break; |
1757 | } | |
1758 | case wxLONG_DASH: | |
1759 | { | |
1760 | lineStyle = GDK_LINE_ON_OFF_DASH; | |
112c5086 | 1761 | req_nb_dash = 2; |
72cdf4c9 | 1762 | req_dash = wxCoord_dashed; |
7d5af6fa VZ |
1763 | break; |
1764 | } | |
1765 | case wxSHORT_DASH: | |
1766 | { | |
1767 | lineStyle = GDK_LINE_ON_OFF_DASH; | |
112c5086 RR |
1768 | req_nb_dash = 2; |
1769 | req_dash = short_dashed; | |
7d5af6fa VZ |
1770 | break; |
1771 | } | |
1772 | case wxDOT_DASH: | |
1773 | { | |
1774 | // lineStyle = GDK_LINE_DOUBLE_DASH; | |
1775 | lineStyle = GDK_LINE_ON_OFF_DASH; | |
112c5086 RR |
1776 | req_nb_dash = 4; |
1777 | req_dash = dotted_dashed; | |
7d5af6fa VZ |
1778 | break; |
1779 | } | |
1780 | ||
1781 | case wxTRANSPARENT: | |
72174350 | 1782 | case wxSTIPPLE_MASK_OPAQUE: |
7d5af6fa VZ |
1783 | case wxSTIPPLE: |
1784 | case wxSOLID: | |
1785 | default: | |
1786 | { | |
1787 | lineStyle = GDK_LINE_SOLID; | |
2eca425d | 1788 | req_dash = (wxGTKDash*)NULL; |
112c5086 | 1789 | req_nb_dash = 0; |
7d5af6fa VZ |
1790 | break; |
1791 | } | |
265898fd | 1792 | } |
7d5af6fa | 1793 | |
112c5086 RR |
1794 | if (req_dash && req_nb_dash) |
1795 | { | |
2eca425d | 1796 | wxGTKDash *real_req_dash = new wxGTKDash[req_nb_dash]; |
112c5086 RR |
1797 | if (real_req_dash) |
1798 | { | |
1799 | for (int i = 0; i < req_nb_dash; i++) | |
1800 | real_req_dash[i] = req_dash[i] * width; | |
2eca425d | 1801 | gdk_gc_set_dashes( m_penGC, 0, real_req_dash, req_nb_dash ); |
112c5086 RR |
1802 | delete[] real_req_dash; |
1803 | } | |
1804 | else | |
1805 | { | |
1806 | // No Memory. We use non-scaled dash pattern... | |
2eca425d | 1807 | gdk_gc_set_dashes( m_penGC, 0, (wxGTKDash*)req_dash, req_nb_dash ); |
112c5086 RR |
1808 | } |
1809 | } | |
7d5af6fa | 1810 | |
265898fd RR |
1811 | GdkCapStyle capStyle = GDK_CAP_ROUND; |
1812 | switch (m_pen.GetCap()) | |
1813 | { | |
265898fd RR |
1814 | case wxCAP_PROJECTING: { capStyle = GDK_CAP_PROJECTING; break; } |
1815 | case wxCAP_BUTT: { capStyle = GDK_CAP_BUTT; break; } | |
d4aa3a4b RR |
1816 | case wxCAP_ROUND: |
1817 | default: | |
72174350 | 1818 | { |
d4aa3a4b RR |
1819 | if (width <= 1) |
1820 | { | |
1821 | width = 0; | |
1822 | capStyle = GDK_CAP_NOT_LAST; | |
1823 | } | |
1824 | else | |
1825 | { | |
1826 | capStyle = GDK_CAP_ROUND; | |
1827 | } | |
72174350 | 1828 | break; |
d4aa3a4b | 1829 | } |
265898fd | 1830 | } |
7d5af6fa | 1831 | |
265898fd RR |
1832 | GdkJoinStyle joinStyle = GDK_JOIN_ROUND; |
1833 | switch (m_pen.GetJoin()) | |
1834 | { | |
1835 | case wxJOIN_BEVEL: { joinStyle = GDK_JOIN_BEVEL; break; } | |
265898fd | 1836 | case wxJOIN_MITER: { joinStyle = GDK_JOIN_MITER; break; } |
d4aa3a4b RR |
1837 | case wxJOIN_ROUND: |
1838 | default: { joinStyle = GDK_JOIN_ROUND; break; } | |
265898fd | 1839 | } |
7d5af6fa | 1840 | |
265898fd | 1841 | gdk_gc_set_line_attributes( m_penGC, width, lineStyle, capStyle, joinStyle ); |
7d5af6fa | 1842 | |
265898fd RR |
1843 | m_pen.GetColour().CalcPixel( m_cmap ); |
1844 | gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() ); | |
903f689b | 1845 | } |
c801d85f | 1846 | |
ec758a20 | 1847 | void wxWindowDC::SetBrush( const wxBrush &brush ) |
c801d85f | 1848 | { |
223d09f6 | 1849 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1850 | |
265898fd | 1851 | if (m_brush == brush) return; |
7d5af6fa | 1852 | |
265898fd | 1853 | m_brush = brush; |
7d5af6fa | 1854 | |
265898fd | 1855 | if (!m_brush.Ok()) return; |
7d5af6fa | 1856 | |
6db90681 | 1857 | if (!m_window) return; |
7d5af6fa | 1858 | |
265898fd RR |
1859 | m_brush.GetColour().CalcPixel( m_cmap ); |
1860 | gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() ); | |
7d5af6fa | 1861 | |
956dbab1 | 1862 | gdk_gc_set_fill( m_brushGC, GDK_SOLID ); |
7d5af6fa | 1863 | |
4fcd73bd | 1864 | if ((m_brush.GetStyle() == wxSTIPPLE) && (m_brush.GetStipple()->Ok())) |
265898fd | 1865 | { |
4fcd73bd | 1866 | if (m_brush.GetStipple()->GetPixmap()) |
7d5af6fa | 1867 | { |
956dbab1 | 1868 | gdk_gc_set_fill( m_brushGC, GDK_TILED ); |
cd25b18c | 1869 | gdk_gc_set_tile( m_brushGC, m_brush.GetStipple()->GetPixmap() ); |
7d5af6fa | 1870 | } |
b0e0d661 | 1871 | else |
7d5af6fa | 1872 | { |
956dbab1 | 1873 | gdk_gc_set_fill( m_brushGC, GDK_STIPPLED ); |
4fcd73bd | 1874 | gdk_gc_set_stipple( m_brushGC, m_brush.GetStipple()->GetBitmap() ); |
7d5af6fa | 1875 | } |
265898fd | 1876 | } |
7d5af6fa | 1877 | |
de2d2cdc VZ |
1878 | if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask())) |
1879 | { | |
e1208c31 RR |
1880 | gdk_gc_set_fill( m_textGC, GDK_OPAQUE_STIPPLED); |
1881 | gdk_gc_set_stipple( m_textGC, m_brush.GetStipple()->GetMask()->GetBitmap() ); | |
de2d2cdc VZ |
1882 | } |
1883 | ||
ab9d0a8c | 1884 | if (m_brush.IsHatch()) |
265898fd | 1885 | { |
956dbab1 | 1886 | gdk_gc_set_fill( m_brushGC, GDK_STIPPLED ); |
265898fd RR |
1887 | int num = m_brush.GetStyle() - wxBDIAGONAL_HATCH; |
1888 | gdk_gc_set_stipple( m_brushGC, hatches[num] ); | |
1889 | } | |
903f689b | 1890 | } |
c801d85f | 1891 | |
ec758a20 | 1892 | void wxWindowDC::SetBackground( const wxBrush &brush ) |
46dc76ba | 1893 | { |
bbbbe360 RR |
1894 | /* CMB 21/7/98: Added SetBackground. Sets background brush |
1895 | * for Clear() and bg colour for shapes filled with cross-hatch brush */ | |
7d5af6fa | 1896 | |
223d09f6 | 1897 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1898 | |
265898fd | 1899 | if (m_backgroundBrush == brush) return; |
7d5af6fa | 1900 | |
265898fd | 1901 | m_backgroundBrush = brush; |
7d5af6fa | 1902 | |
265898fd | 1903 | if (!m_backgroundBrush.Ok()) return; |
7d5af6fa | 1904 | |
6db90681 | 1905 | if (!m_window) return; |
7d5af6fa | 1906 | |
265898fd RR |
1907 | m_backgroundBrush.GetColour().CalcPixel( m_cmap ); |
1908 | gdk_gc_set_background( m_brushGC, m_backgroundBrush.GetColour().GetColor() ); | |
a802c3a1 | 1909 | gdk_gc_set_background( m_penGC, m_backgroundBrush.GetColour().GetColor() ); |
031b2a7b | 1910 | gdk_gc_set_background( m_bgGC, m_backgroundBrush.GetColour().GetColor() ); |
265898fd | 1911 | gdk_gc_set_foreground( m_bgGC, m_backgroundBrush.GetColour().GetColor() ); |
3417c2cd RR |
1912 | |
1913 | gdk_gc_set_fill( m_bgGC, GDK_SOLID ); | |
7d5af6fa | 1914 | |
cd25b18c | 1915 | if ((m_backgroundBrush.GetStyle() == wxSTIPPLE) && (m_backgroundBrush.GetStipple()->Ok())) |
265898fd | 1916 | { |
fd128b0c | 1917 | if (m_backgroundBrush.GetStipple()->GetPixmap()) |
7d5af6fa | 1918 | { |
3417c2cd | 1919 | gdk_gc_set_fill( m_bgGC, GDK_TILED ); |
fd128b0c | 1920 | gdk_gc_set_tile( m_bgGC, m_backgroundBrush.GetStipple()->GetPixmap() ); |
7d5af6fa | 1921 | } |
cd25b18c | 1922 | else |
7d5af6fa | 1923 | { |
3417c2cd | 1924 | gdk_gc_set_fill( m_bgGC, GDK_STIPPLED ); |
fd128b0c | 1925 | gdk_gc_set_stipple( m_bgGC, m_backgroundBrush.GetStipple()->GetBitmap() ); |
7d5af6fa | 1926 | } |
265898fd | 1927 | } |
7d5af6fa | 1928 | |
ab9d0a8c | 1929 | if (m_backgroundBrush.IsHatch()) |
265898fd | 1930 | { |
3417c2cd | 1931 | gdk_gc_set_fill( m_bgGC, GDK_STIPPLED ); |
265898fd RR |
1932 | int num = m_backgroundBrush.GetStyle() - wxBDIAGONAL_HATCH; |
1933 | gdk_gc_set_stipple( m_bgGC, hatches[num] ); | |
bbbbe360 | 1934 | } |
903f689b | 1935 | } |
46dc76ba | 1936 | |
ec758a20 | 1937 | void wxWindowDC::SetLogicalFunction( int function ) |
c801d85f | 1938 | { |
223d09f6 | 1939 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1940 | |
72174350 VZ |
1941 | if (m_logicalFunction == function) |
1942 | return; | |
1943 | ||
1944 | // VZ: shouldn't this be a CHECK? | |
1945 | if (!m_window) | |
1946 | return; | |
01eaf507 | 1947 | |
2b5f62a0 | 1948 | GdkFunction mode; |
265898fd RR |
1949 | switch (function) |
1950 | { | |
3c679789 RR |
1951 | case wxXOR: mode = GDK_XOR; break; |
1952 | case wxINVERT: mode = GDK_INVERT; break; | |
3c679789 RR |
1953 | case wxOR_REVERSE: mode = GDK_OR_REVERSE; break; |
1954 | case wxAND_REVERSE: mode = GDK_AND_REVERSE; break; | |
1955 | case wxCLEAR: mode = GDK_CLEAR; break; | |
1956 | case wxSET: mode = GDK_SET; break; | |
1957 | case wxOR_INVERT: mode = GDK_OR_INVERT; break; | |
1958 | case wxAND: mode = GDK_AND; break; | |
1959 | case wxOR: mode = GDK_OR; break; | |
1960 | case wxEQUIV: mode = GDK_EQUIV; break; | |
1961 | case wxNAND: mode = GDK_NAND; break; | |
1962 | case wxAND_INVERT: mode = GDK_AND_INVERT; break; | |
7d5af6fa VZ |
1963 | case wxCOPY: mode = GDK_COPY; break; |
1964 | case wxNO_OP: mode = GDK_NOOP; break; | |
1965 | case wxSRC_INVERT: mode = GDK_COPY_INVERT; break; | |
72174350 | 1966 | |
2d52841d RR |
1967 | // unsupported by GTK |
1968 | case wxNOR: mode = GDK_COPY; break; | |
01eaf507 | 1969 | default: |
223d09f6 | 1970 | wxFAIL_MSG( wxT("unsupported logical function") ); |
2b5f62a0 | 1971 | mode = GDK_COPY; |
265898fd | 1972 | } |
7d5af6fa | 1973 | |
265898fd | 1974 | m_logicalFunction = function; |
7d5af6fa | 1975 | |
265898fd RR |
1976 | gdk_gc_set_function( m_penGC, mode ); |
1977 | gdk_gc_set_function( m_brushGC, mode ); | |
72174350 VZ |
1978 | |
1979 | // to stay compatible with wxMSW, we don't apply ROPs to the text | |
3d2d8da1 RR |
1980 | // operations (i.e. DrawText/DrawRotatedText). |
1981 | // True, but mono-bitmaps use the m_textGC and they use ROPs as well. | |
1982 | gdk_gc_set_function( m_textGC, mode ); | |
903f689b | 1983 | } |
c801d85f | 1984 | |
ec758a20 | 1985 | void wxWindowDC::SetTextForeground( const wxColour &col ) |
c801d85f | 1986 | { |
223d09f6 | 1987 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 1988 | |
71ec83d2 VZ |
1989 | // don't set m_textForegroundColour to an invalid colour as we'd crash |
1990 | // later then (we use m_textForegroundColour.GetColor() without checking | |
1991 | // in a few places) | |
1992 | if ( !col.Ok() || (m_textForegroundColour == col) ) | |
1993 | return; | |
7d5af6fa | 1994 | |
265898fd | 1995 | m_textForegroundColour = col; |
7d5af6fa | 1996 | |
71ec83d2 VZ |
1997 | if ( m_window ) |
1998 | { | |
1999 | m_textForegroundColour.CalcPixel( m_cmap ); | |
2000 | gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() ); | |
2001 | } | |
903f689b | 2002 | } |
c801d85f | 2003 | |
ec758a20 | 2004 | void wxWindowDC::SetTextBackground( const wxColour &col ) |
c801d85f | 2005 | { |
223d09f6 | 2006 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 2007 | |
71ec83d2 VZ |
2008 | // same as above |
2009 | if ( !col.Ok() || (m_textBackgroundColour == col) ) | |
2010 | return; | |
7d5af6fa | 2011 | |
265898fd | 2012 | m_textBackgroundColour = col; |
7d5af6fa | 2013 | |
71ec83d2 VZ |
2014 | if ( m_window ) |
2015 | { | |
2016 | m_textBackgroundColour.CalcPixel( m_cmap ); | |
2017 | gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() ); | |
2018 | } | |
903f689b | 2019 | } |
c801d85f | 2020 | |
ec758a20 | 2021 | void wxWindowDC::SetBackgroundMode( int mode ) |
c801d85f | 2022 | { |
223d09f6 | 2023 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 2024 | |
265898fd | 2025 | m_backgroundMode = mode; |
46dc76ba | 2026 | |
6db90681 | 2027 | if (!m_window) return; |
7d5af6fa | 2028 | |
265898fd RR |
2029 | // CMB 21/7/98: fill style of cross-hatch brushes is affected by |
2030 | // transparent/solid background mode | |
7d5af6fa | 2031 | |
265898fd RR |
2032 | if (m_brush.GetStyle() != wxSOLID && m_brush.GetStyle() != wxTRANSPARENT) |
2033 | { | |
2034 | gdk_gc_set_fill( m_brushGC, | |
2035 | (m_backgroundMode == wxTRANSPARENT) ? GDK_STIPPLED : GDK_OPAQUE_STIPPLED); | |
2036 | } | |
903f689b | 2037 | } |
c801d85f | 2038 | |
ec758a20 | 2039 | void wxWindowDC::SetPalette( const wxPalette& WXUNUSED(palette) ) |
c801d85f | 2040 | { |
223d09f6 | 2041 | wxFAIL_MSG( wxT("wxWindowDC::SetPalette not implemented") ); |
903f689b | 2042 | } |
c801d85f | 2043 | |
72cdf4c9 | 2044 | void wxWindowDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height ) |
c801d85f | 2045 | { |
223d09f6 | 2046 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 2047 | |
6db90681 | 2048 | if (!m_window) return; |
7d5af6fa | 2049 | |
3d2d8da1 | 2050 | wxRect rect; |
265898fd RR |
2051 | rect.x = XLOG2DEV(x); |
2052 | rect.y = YLOG2DEV(y); | |
2053 | rect.width = XLOG2DEVREL(width); | |
2054 | rect.height = YLOG2DEVREL(height); | |
5f170f33 | 2055 | |
e1208c31 | 2056 | if (!m_currentClippingRegion.IsNull()) |
993f97ee RR |
2057 | m_currentClippingRegion.Intersect( rect ); |
2058 | else | |
2059 | m_currentClippingRegion.Union( rect ); | |
5f170f33 VZ |
2060 | |
2061 | #if USE_PAINT_REGION | |
e1208c31 | 2062 | if (!m_paintClippingRegion.IsNull()) |
3d2d8da1 | 2063 | m_currentClippingRegion.Intersect( m_paintClippingRegion ); |
809934d2 | 2064 | #endif |
3d2d8da1 | 2065 | |
ee8dbe63 RL |
2066 | wxCoord xx, yy, ww, hh; |
2067 | m_currentClippingRegion.GetBox( xx, yy, ww, hh ); | |
2068 | wxDC::DoSetClippingRegion( xx, yy, ww, hh ); | |
2069 | ||
3d2d8da1 RR |
2070 | gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() ); |
2071 | gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() ); | |
2072 | gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() ); | |
2073 | gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() ); | |
903f689b | 2074 | } |
c801d85f | 2075 | |
b0e0d661 | 2076 | void wxWindowDC::DoSetClippingRegionAsRegion( const wxRegion ®ion ) |
463c1fa1 | 2077 | { |
223d09f6 | 2078 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 2079 | |
463c1fa1 RR |
2080 | if (region.Empty()) |
2081 | { | |
2082 | DestroyClippingRegion(); | |
2083 | return; | |
2084 | } | |
7d5af6fa | 2085 | |
6db90681 | 2086 | if (!m_window) return; |
5f170f33 | 2087 | |
e1208c31 | 2088 | if (!m_currentClippingRegion.IsNull()) |
993f97ee RR |
2089 | m_currentClippingRegion.Intersect( region ); |
2090 | else | |
2091 | m_currentClippingRegion.Union( region ); | |
5f170f33 VZ |
2092 | |
2093 | #if USE_PAINT_REGION | |
e1208c31 | 2094 | if (!m_paintClippingRegion.IsNull()) |
3d2d8da1 | 2095 | m_currentClippingRegion.Intersect( m_paintClippingRegion ); |
809934d2 | 2096 | #endif |
3d2d8da1 | 2097 | |
ee8dbe63 RL |
2098 | wxCoord xx, yy, ww, hh; |
2099 | m_currentClippingRegion.GetBox( xx, yy, ww, hh ); | |
2100 | wxDC::DoSetClippingRegion( xx, yy, ww, hh ); | |
2101 | ||
3d2d8da1 RR |
2102 | gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() ); |
2103 | gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() ); | |
2104 | gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() ); | |
2105 | gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() ); | |
463c1fa1 RR |
2106 | } |
2107 | ||
4bc67cc5 | 2108 | void wxWindowDC::DestroyClippingRegion() |
c801d85f | 2109 | { |
223d09f6 | 2110 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
7d5af6fa | 2111 | |
265898fd | 2112 | wxDC::DestroyClippingRegion(); |
7d5af6fa | 2113 | |
3d2d8da1 | 2114 | m_currentClippingRegion.Clear(); |
5f170f33 VZ |
2115 | |
2116 | #if USE_PAINT_REGION | |
3d2d8da1 RR |
2117 | if (!m_paintClippingRegion.IsEmpty()) |
2118 | m_currentClippingRegion.Union( m_paintClippingRegion ); | |
993f97ee | 2119 | #endif |
3d2d8da1 | 2120 | |
6db90681 | 2121 | if (!m_window) return; |
7d5af6fa | 2122 | |
3d2d8da1 RR |
2123 | if (m_currentClippingRegion.IsEmpty()) |
2124 | { | |
2125 | gdk_gc_set_clip_rectangle( m_penGC, (GdkRectangle *) NULL ); | |
2126 | gdk_gc_set_clip_rectangle( m_brushGC, (GdkRectangle *) NULL ); | |
2127 | gdk_gc_set_clip_rectangle( m_textGC, (GdkRectangle *) NULL ); | |
2128 | gdk_gc_set_clip_rectangle( m_bgGC, (GdkRectangle *) NULL ); | |
2129 | } | |
2130 | else | |
2131 | { | |
2132 | gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() ); | |
2133 | gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() ); | |
2134 | gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() ); | |
2135 | gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() ); | |
2136 | } | |
903f689b | 2137 | } |
c801d85f | 2138 | |
4bc67cc5 | 2139 | void wxWindowDC::Destroy() |
dbf858b5 | 2140 | { |
3d2d8da1 | 2141 | if (m_penGC) wxFreePoolGC( m_penGC ); |
265898fd | 2142 | m_penGC = (GdkGC*) NULL; |
3d2d8da1 | 2143 | if (m_brushGC) wxFreePoolGC( m_brushGC ); |
265898fd | 2144 | m_brushGC = (GdkGC*) NULL; |
3d2d8da1 | 2145 | if (m_textGC) wxFreePoolGC( m_textGC ); |
265898fd | 2146 | m_textGC = (GdkGC*) NULL; |
3d2d8da1 | 2147 | if (m_bgGC) wxFreePoolGC( m_bgGC ); |
265898fd | 2148 | m_bgGC = (GdkGC*) NULL; |
dbf858b5 RR |
2149 | } |
2150 | ||
238d735d RR |
2151 | void wxWindowDC::ComputeScaleAndOrigin() |
2152 | { | |
c77a6796 | 2153 | const wxRealPoint origScale(m_scaleX, m_scaleY); |
238d735d RR |
2154 | |
2155 | wxDC::ComputeScaleAndOrigin(); | |
2156 | ||
c77a6796 VZ |
2157 | // if scale has changed call SetPen to recalulate the line width |
2158 | if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.Ok() ) | |
238d735d | 2159 | { |
c77a6796 VZ |
2160 | // this is a bit artificial, but we need to force wxDC to think the pen |
2161 | // has changed | |
0a164d4c WS |
2162 | wxPen pen = m_pen; |
2163 | m_pen = wxNullPen; | |
2164 | SetPen( pen ); | |
2165 | } | |
238d735d RR |
2166 | } |
2167 | ||
b0e0d661 VZ |
2168 | // Resolution in pixels per logical inch |
2169 | wxSize wxWindowDC::GetPPI() const | |
2170 | { | |
7a5e6267 | 2171 | return wxSize( (int) (m_mm_to_pix_x * 25.4 + 0.5), (int) (m_mm_to_pix_y * 25.4 + 0.5)); |
b0e0d661 VZ |
2172 | } |
2173 | ||
2174 | int wxWindowDC::GetDepth() const | |
c801d85f | 2175 | { |
223d09f6 | 2176 | wxFAIL_MSG(wxT("not implemented")); |
b0e0d661 VZ |
2177 | |
2178 | return -1; | |
903f689b | 2179 | } |
c801d85f | 2180 | |
ec758a20 RR |
2181 | |
2182 | //----------------------------------------------------------------------------- | |
2183 | // wxPaintDC | |
2184 | //----------------------------------------------------------------------------- | |
2185 | ||
f469b27c | 2186 | IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxClientDC) |
ec758a20 | 2187 | |
2cfddfe7 JS |
2188 | // Limit the paint region to the window size. Sometimes |
2189 | // the paint region is too big, and this risks X11 errors | |
2190 | static void wxLimitRegionToSize(wxRegion& region, const wxSize& sz) | |
2191 | { | |
2192 | wxRect originalRect = region.GetBox(); | |
2193 | wxRect rect(originalRect); | |
2194 | if (rect.width + rect.x > sz.x) | |
2195 | rect.width = sz.x - rect.x; | |
2196 | if (rect.height + rect.y > sz.y) | |
2197 | rect.height = sz.y - rect.y; | |
2198 | if (rect != originalRect) | |
2199 | { | |
2200 | region = wxRegion(rect); | |
2201 | wxLogTrace(wxT("painting"), wxT("Limiting region from %d, %d, %d, %d to %d, %d, %d, %d\n"), | |
2202 | originalRect.x, originalRect.y, originalRect.width, originalRect.height, | |
2203 | rect.x, rect.y, rect.width, rect.height); | |
2204 | } | |
2205 | } | |
2206 | ||
ec758a20 | 2207 | wxPaintDC::wxPaintDC( wxWindow *win ) |
f469b27c | 2208 | : wxClientDC( win ) |
ec758a20 | 2209 | { |
b6fa52db RR |
2210 | #if USE_PAINT_REGION |
2211 | if (!win->m_clipPaintRegion) | |
2212 | return; | |
f469b27c | 2213 | |
2cfddfe7 | 2214 | wxSize sz = win->GetSize(); |
e1208c31 | 2215 | m_paintClippingRegion = win->GetUpdateRegion(); |
2cfddfe7 | 2216 | wxLimitRegionToSize(m_paintClippingRegion, sz); |
ab9d0a8c | 2217 | |
5f170f33 VZ |
2218 | GdkRegion *region = m_paintClippingRegion.GetRegion(); |
2219 | if ( region ) | |
2220 | { | |
823faac3 | 2221 | m_currentClippingRegion.Union( m_paintClippingRegion ); |
2cfddfe7 JS |
2222 | wxLimitRegionToSize(m_currentClippingRegion, sz); |
2223 | ||
2224 | if (sz.x <= 0 || sz.y <= 0) | |
2225 | return ; | |
5f170f33 | 2226 | |
823faac3 JS |
2227 | gdk_gc_set_clip_region( m_penGC, region ); |
2228 | gdk_gc_set_clip_region( m_brushGC, region ); | |
2229 | gdk_gc_set_clip_region( m_textGC, region ); | |
2230 | gdk_gc_set_clip_region( m_bgGC, region ); | |
5f170f33 | 2231 | } |
1e6feb95 | 2232 | #endif // USE_PAINT_REGION |
ec758a20 RR |
2233 | } |
2234 | ||
2235 | //----------------------------------------------------------------------------- | |
2236 | // wxClientDC | |
2237 | //----------------------------------------------------------------------------- | |
2238 | ||
f469b27c | 2239 | IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC) |
ec758a20 | 2240 | |
f469b27c VZ |
2241 | wxClientDC::wxClientDC( wxWindow *win ) |
2242 | : wxWindowDC( win ) | |
ec758a20 | 2243 | { |
4f55a07f VZ |
2244 | wxCHECK_RET( win, _T("NULL window in wxClientDC::wxClientDC") ); |
2245 | ||
1e6feb95 VZ |
2246 | #ifdef __WXUNIVERSAL__ |
2247 | wxPoint ptOrigin = win->GetClientAreaOrigin(); | |
2248 | SetDeviceOrigin(ptOrigin.x, ptOrigin.y); | |
2249 | wxSize size = win->GetClientSize(); | |
2250 | SetClippingRegion(wxPoint(0, 0), size); | |
2251 | #endif // __WXUNIVERSAL__ | |
ec758a20 RR |
2252 | } |
2253 | ||
4f55a07f VZ |
2254 | void wxClientDC::DoGetSize(int *width, int *height) const |
2255 | { | |
2256 | wxCHECK_RET( m_owner, _T("GetSize() doesn't work without window") ); | |
2257 | ||
2258 | m_owner->GetClientSize( width, height ); | |
2259 | } | |
2260 | ||
3d2d8da1 RR |
2261 | // ---------------------------------------------------------------------------- |
2262 | // wxDCModule | |
2263 | // ---------------------------------------------------------------------------- | |
2264 | ||
2265 | class wxDCModule : public wxModule | |
2266 | { | |
2267 | public: | |
2268 | bool OnInit(); | |
2269 | void OnExit(); | |
2270 | ||
2271 | private: | |
2272 | DECLARE_DYNAMIC_CLASS(wxDCModule) | |
2273 | }; | |
2274 | ||
2275 | IMPLEMENT_DYNAMIC_CLASS(wxDCModule, wxModule) | |
2276 | ||
2277 | bool wxDCModule::OnInit() | |
2278 | { | |
2279 | wxInitGCPool(); | |
ab9d0a8c | 2280 | return true; |
3d2d8da1 RR |
2281 | } |
2282 | ||
2283 | void wxDCModule::OnExit() | |
2284 | { | |
2285 | wxCleanUpGCPool(); | |
2286 | } |