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