]>
Commit | Line | Data |
---|---|---|
9c7f49f5 | 1 | /////////////////////////////////////////////////////////////////////////////// |
90b903c2 | 2 | // Name: src/gtk/renderer.cpp |
38c4cb6a | 3 | // Purpose: implementation of wxRendererNative for wxGTK |
9c7f49f5 VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 20.07.2003 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org> | |
65571936 | 9 | // License: wxWindows licence |
9c7f49f5 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
e1bf3ad3 | 27 | #include "wx/renderer.h" |
cdccdfab WS |
28 | |
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/window.h" | |
ed4b0fdc | 31 | #include "wx/dcclient.h" |
9eddec69 | 32 | #include "wx/settings.h" |
f1c09bed | 33 | #include "wx/module.h" |
cdccdfab WS |
34 | #endif |
35 | ||
02f07b19 | 36 | #include "wx/dcgraph.h" |
888dde65 | 37 | #include "wx/gtk/dc.h" |
e8759560 | 38 | #include "wx/gtk/private.h" |
888dde65 | 39 | |
9c7f49f5 | 40 | #include <gtk/gtk.h> |
9c7f49f5 | 41 | |
9c7f49f5 | 42 | // ---------------------------------------------------------------------------- |
38c4cb6a | 43 | // wxRendererGTK: our wxRendererNative implementation |
9c7f49f5 VZ |
44 | // ---------------------------------------------------------------------------- |
45 | ||
38c4cb6a | 46 | class WXDLLEXPORT wxRendererGTK : public wxDelegateRendererNative |
9c7f49f5 VZ |
47 | { |
48 | public: | |
49 | // draw the header control button (used by wxListCtrl) | |
c97c9952 | 50 | virtual int DrawHeaderButton(wxWindow *win, |
9c7f49f5 VZ |
51 | wxDC& dc, |
52 | const wxRect& rect, | |
4b94ddc4 | 53 | int flags = 0, |
80752b57 | 54 | wxHeaderSortIconType sortArrow = wxHDR_SORT_ICON_NONE, |
4b94ddc4 | 55 | wxHeaderButtonParams* params = NULL); |
9c7f49f5 | 56 | |
6f91f3a3 RR |
57 | virtual int GetHeaderButtonHeight(wxWindow *win); |
58 | ||
59 | ||
9c7f49f5 VZ |
60 | // draw the expanded/collapsed icon for a tree control item |
61 | virtual void DrawTreeItemButton(wxWindow *win, | |
62 | wxDC& dc, | |
63 | const wxRect& rect, | |
64 | int flags = 0); | |
9c7f49f5 | 65 | |
d16cf3cd VZ |
66 | virtual void DrawSplitterBorder(wxWindow *win, |
67 | wxDC& dc, | |
af99040c VZ |
68 | const wxRect& rect, |
69 | int flags = 0); | |
95155e75 VZ |
70 | virtual void DrawSplitterSash(wxWindow *win, |
71 | wxDC& dc, | |
72 | const wxSize& size, | |
d16cf3cd | 73 | wxCoord position, |
af99040c VZ |
74 | wxOrientation orient, |
75 | int flags = 0); | |
d16cf3cd | 76 | |
38511687 VZ |
77 | virtual void DrawComboBoxDropButton(wxWindow *win, |
78 | wxDC& dc, | |
79 | const wxRect& rect, | |
80 | int flags = 0); | |
81 | ||
4c85ab75 VZ |
82 | virtual void DrawDropArrow(wxWindow *win, |
83 | wxDC& dc, | |
84 | const wxRect& rect, | |
85 | int flags = 0); | |
86 | ||
90b903c2 WS |
87 | virtual void DrawCheckBox(wxWindow *win, |
88 | wxDC& dc, | |
89 | const wxRect& rect, | |
90 | int flags = 0); | |
2209baae RR |
91 | |
92 | virtual void DrawPushButton(wxWindow *win, | |
93 | wxDC& dc, | |
94 | const wxRect& rect, | |
95 | int flags = 0); | |
96 | ||
daebb44c RR |
97 | virtual void DrawItemSelectionRect(wxWindow *win, |
98 | wxDC& dc, | |
99 | const wxRect& rect, | |
100 | int flags = 0); | |
90b903c2 | 101 | |
99c4be68 VZ |
102 | virtual void DrawChoice(wxWindow* win, |
103 | wxDC& dc, | |
104 | const wxRect& rect, | |
e4131985 KO |
105 | int flags=0); |
106 | ||
99c4be68 VZ |
107 | virtual void DrawComboBox(wxWindow* win, |
108 | wxDC& dc, | |
109 | const wxRect& rect, | |
e4131985 KO |
110 | int flags=0); |
111 | ||
99c4be68 VZ |
112 | virtual void DrawTextCtrl(wxWindow* win, |
113 | wxDC& dc, | |
114 | const wxRect& rect, | |
e4131985 KO |
115 | int flags=0); |
116 | ||
6e6b532c | 117 | virtual void DrawRadioBitmap(wxWindow* win, |
99c4be68 VZ |
118 | wxDC& dc, |
119 | const wxRect& rect, | |
e4131985 KO |
120 | int flags=0); |
121 | ||
6d789987 JS |
122 | virtual void DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0); |
123 | ||
191e43fd | 124 | virtual wxSize GetCheckBoxSize(wxWindow *win); |
f1c09bed | 125 | |
e8759560 | 126 | virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win); |
9c7f49f5 VZ |
127 | }; |
128 | ||
129 | // ============================================================================ | |
130 | // implementation | |
131 | // ============================================================================ | |
132 | ||
133 | /* static */ | |
f0244295 | 134 | wxRendererNative& wxRendererNative::GetDefault() |
9c7f49f5 VZ |
135 | { |
136 | static wxRendererGTK s_rendererGTK; | |
137 | ||
138 | return s_rendererGTK; | |
139 | } | |
140 | ||
02f07b19 | 141 | static GdkWindow* wxGetGdkWindowForDC(wxWindow* win, wxDC& dc) |
e4131985 KO |
142 | { |
143 | GdkWindow* gdk_window = NULL; | |
99c4be68 | 144 | |
02f07b19 KO |
145 | #if wxUSE_GRAPHICS_CONTEXT |
146 | if ( dc.IsKindOf( CLASSINFO(wxGCDC) ) ) | |
d81b2f54 | 147 | gdk_window = win->GTKGetDrawingWindow(); |
02f07b19 KO |
148 | else |
149 | #endif | |
150 | { | |
e4131985 | 151 | #if wxUSE_NEW_DC |
02f07b19 KO |
152 | wxDCImpl *impl = dc.GetImpl(); |
153 | wxGTKDCImpl *gtk_impl = wxDynamicCast( impl, wxGTKDCImpl ); | |
154 | if (gtk_impl) | |
155 | gdk_window = gtk_impl->GetGDKWindow(); | |
e4131985 | 156 | #else |
02f07b19 | 157 | gdk_window = dc.GetGDKWindow(); |
e4131985 | 158 | #endif |
02f07b19 | 159 | } |
b162ccca FM |
160 | |
161 | #if !wxUSE_GRAPHICS_CONTEXT | |
162 | wxUnusedVar(win); | |
163 | #endif | |
164 | ||
e4131985 KO |
165 | return gdk_window; |
166 | } | |
167 | ||
d16cf3cd VZ |
168 | // ---------------------------------------------------------------------------- |
169 | // list/tree controls drawing | |
170 | // ---------------------------------------------------------------------------- | |
171 | ||
c97c9952 | 172 | int |
9c7f49f5 VZ |
173 | wxRendererGTK::DrawHeaderButton(wxWindow *win, |
174 | wxDC& dc, | |
175 | const wxRect& rect, | |
4b94ddc4 | 176 | int flags, |
80752b57 | 177 | wxHeaderSortIconType sortArrow, |
4b94ddc4 | 178 | wxHeaderButtonParams* params) |
9c7f49f5 | 179 | { |
9b311923 | 180 | |
e8759560 | 181 | GtkWidget *button = wxGTKPrivate::GetHeaderButtonWidget(); |
09e72468 RR |
182 | if (flags & wxCONTROL_SPECIAL) |
183 | button = wxGTKPrivate::GetHeaderButtonWidgetFirst(); | |
6f91f3a3 | 184 | if (flags & wxCONTROL_DIRTY) |
b047e876 | 185 | button = wxGTKPrivate::GetHeaderButtonWidgetLast(); |
f1c09bed | 186 | |
02f07b19 | 187 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
188 | wxASSERT_MSG( gdk_window, |
189 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
190 | ||
5eefe029 RR |
191 | int x_diff = 0; |
192 | if (win->GetLayoutDirection() == wxLayout_RightToLeft) | |
193 | x_diff = rect.width; | |
f4322df6 | 194 | |
1cfc4971 RR |
195 | GtkStateType state = GTK_STATE_NORMAL; |
196 | if (flags & wxCONTROL_DISABLED) | |
197 | state = GTK_STATE_INSENSITIVE; | |
198 | else | |
199 | { | |
200 | if (flags & wxCONTROL_CURRENT) | |
201 | state = GTK_STATE_PRELIGHT; | |
202 | } | |
203 | ||
9c7f49f5 VZ |
204 | gtk_paint_box |
205 | ( | |
bc13e772 | 206 | button->style, |
2e992e06 | 207 | gdk_window, |
1cfc4971 | 208 | state, |
9c7f49f5 | 209 | GTK_SHADOW_OUT, |
38511687 | 210 | NULL, |
bc13e772 | 211 | button, |
9b311923 | 212 | "button", |
5eefe029 | 213 | dc.LogicalToDeviceX(rect.x) - x_diff, rect.y, rect.width, rect.height |
9c7f49f5 | 214 | ); |
99c4be68 | 215 | |
c97c9952 | 216 | return DrawHeaderButtonContents(win, dc, rect, flags, sortArrow, params); |
9c7f49f5 VZ |
217 | } |
218 | ||
6f91f3a3 RR |
219 | int wxRendererGTK::GetHeaderButtonHeight(wxWindow *WXUNUSED(win)) |
220 | { | |
221 | GtkWidget *button = wxGTKPrivate::GetHeaderButtonWidget(); | |
99c4be68 | 222 | |
6f91f3a3 RR |
223 | GtkRequisition req; |
224 | GTK_WIDGET_GET_CLASS(button)->size_request(button, &req); | |
99c4be68 | 225 | |
6f91f3a3 RR |
226 | return req.height; |
227 | } | |
228 | ||
229 | ||
9c7f49f5 | 230 | // draw a ">" or "v" button |
9c7f49f5 | 231 | void |
f8b043e7 | 232 | wxRendererGTK::DrawTreeItemButton(wxWindow* win, |
9a0b7e33 | 233 | wxDC& dc, const wxRect& rect, int flags) |
9c7f49f5 | 234 | { |
e8759560 | 235 | GtkWidget *tree = wxGTKPrivate::GetTreeWidget(); |
f8b043e7 | 236 | |
02f07b19 | 237 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
238 | wxASSERT_MSG( gdk_window, |
239 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
240 | ||
885dd597 RR |
241 | GtkStateType state; |
242 | if ( flags & wxCONTROL_CURRENT ) | |
243 | state = GTK_STATE_PRELIGHT; | |
244 | else | |
245 | state = GTK_STATE_NORMAL; | |
91af0895 | 246 | |
428f4657 RR |
247 | int x_diff = 0; |
248 | if (win->GetLayoutDirection() == wxLayout_RightToLeft) | |
249 | x_diff = rect.width; | |
2e992e06 | 250 | |
bc13e772 VZ |
251 | // VZ: I don't know how to get the size of the expander so as to centre it |
252 | // in the given rectangle, +2/3 below is just what looks good here... | |
253 | gtk_paint_expander | |
254 | ( | |
255 | tree->style, | |
2e992e06 | 256 | gdk_window, |
885dd597 | 257 | state, |
bc13e772 VZ |
258 | NULL, |
259 | tree, | |
260 | "treeview", | |
11012f47 | 261 | dc.LogicalToDeviceX(rect.x) + 6 - x_diff, |
bc13e772 VZ |
262 | dc.LogicalToDeviceY(rect.y) + 3, |
263 | flags & wxCONTROL_EXPANDED ? GTK_EXPANDER_EXPANDED | |
264 | : GTK_EXPANDER_COLLAPSED | |
265 | ); | |
9c7f49f5 VZ |
266 | } |
267 | ||
9c7f49f5 | 268 | |
d16cf3cd VZ |
269 | // ---------------------------------------------------------------------------- |
270 | // splitter sash drawing | |
271 | // ---------------------------------------------------------------------------- | |
272 | ||
f1c09bed | 273 | static int GetGtkSplitterFullSize(GtkWidget* widget) |
38418827 | 274 | { |
38418827 | 275 | gint handle_size; |
f1c09bed | 276 | gtk_widget_style_get(widget, "handle_size", &handle_size, NULL); |
91af0895 | 277 | |
38418827 | 278 | return handle_size; |
38418827 RR |
279 | } |
280 | ||
af99040c | 281 | wxSplitterRenderParams |
38418827 | 282 | wxRendererGTK::GetSplitterParams(const wxWindow *WXUNUSED(win)) |
d16cf3cd | 283 | { |
af99040c VZ |
284 | // we don't draw any border, hence 0 for the second field |
285 | return wxSplitterRenderParams | |
286 | ( | |
e8759560 | 287 | GetGtkSplitterFullSize(wxGTKPrivate::GetSplitterWidget()), |
af99040c | 288 | 0, |
af99040c | 289 | true // hot sensitive |
af99040c | 290 | ); |
d16cf3cd VZ |
291 | } |
292 | ||
293 | void | |
294 | wxRendererGTK::DrawSplitterBorder(wxWindow * WXUNUSED(win), | |
295 | wxDC& WXUNUSED(dc), | |
af99040c VZ |
296 | const wxRect& WXUNUSED(rect), |
297 | int WXUNUSED(flags)) | |
d16cf3cd VZ |
298 | { |
299 | // nothing to do | |
300 | } | |
95155e75 | 301 | |
95155e75 | 302 | void |
02f07b19 | 303 | wxRendererGTK::DrawSplitterSash(wxWindow* win, |
95155e75 VZ |
304 | wxDC& dc, |
305 | const wxSize& size, | |
d16cf3cd | 306 | wxCoord position, |
af99040c | 307 | wxOrientation orient, |
68567a96 | 308 | int flags) |
95155e75 VZ |
309 | { |
310 | if ( !win->m_wxwindow->window ) | |
311 | { | |
0100b858 | 312 | // window not realized yet |
95155e75 VZ |
313 | return; |
314 | } | |
91af0895 | 315 | |
02f07b19 | 316 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
317 | wxASSERT_MSG( gdk_window, |
318 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
319 | ||
e8759560 | 320 | wxCoord full_size = GetGtkSplitterFullSize(wxGTKPrivate::GetSplitterWidget()); |
95155e75 | 321 | |
d16cf3cd VZ |
322 | // are we drawing vertical or horizontal splitter? |
323 | const bool isVert = orient == wxVERTICAL; | |
324 | ||
d16cf3cd | 325 | GdkRectangle rect; |
91af0895 | 326 | |
d16cf3cd VZ |
327 | if ( isVert ) |
328 | { | |
329 | rect.x = position; | |
0100b858 | 330 | rect.y = 0; |
38418827 | 331 | rect.width = full_size; |
e4161a2a | 332 | rect.height = size.y; |
d16cf3cd VZ |
333 | } |
334 | else // horz | |
335 | { | |
0100b858 | 336 | rect.x = 0; |
d16cf3cd | 337 | rect.y = position; |
38418827 | 338 | rect.height = full_size; |
e4161a2a | 339 | rect.width = size.x; |
d16cf3cd | 340 | } |
f4322df6 | 341 | |
847dfdb4 RR |
342 | int x_diff = 0; |
343 | if (win->GetLayoutDirection() == wxLayout_RightToLeft) | |
344 | x_diff = rect.width; | |
35468934 | 345 | |
af99040c VZ |
346 | gtk_paint_handle |
347 | ( | |
348 | win->m_wxwindow->style, | |
2e992e06 | 349 | gdk_window, |
af99040c VZ |
350 | flags & wxCONTROL_CURRENT ? GTK_STATE_PRELIGHT : GTK_STATE_NORMAL, |
351 | GTK_SHADOW_NONE, | |
352 | NULL /* no clipping */, | |
353 | win->m_wxwindow, | |
354 | "paned", | |
847dfdb4 RR |
355 | dc.LogicalToDeviceX(rect.x) - x_diff, |
356 | dc.LogicalToDeviceY(rect.y), | |
af99040c VZ |
357 | rect.width, |
358 | rect.height, | |
38418827 | 359 | isVert ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL |
af99040c | 360 | ); |
95155e75 VZ |
361 | } |
362 | ||
4c85ab75 | 363 | void |
02f07b19 | 364 | wxRendererGTK::DrawDropArrow(wxWindow* win, |
4c85ab75 VZ |
365 | wxDC& dc, |
366 | const wxRect& rect, | |
367 | int flags) | |
38511687 | 368 | { |
e8759560 | 369 | GtkWidget *button = wxGTKPrivate::GetButtonWidget(); |
38511687 | 370 | |
02f07b19 | 371 | // If we give WX_PIZZA(win->m_wxwindow)->bin_window as |
4c85ab75 VZ |
372 | // a window for gtk_paint_xxx function, then it won't |
373 | // work for wxMemoryDC. So that is why we assume wxDC | |
374 | // is wxWindowDC (wxClientDC, wxMemoryDC and wxPaintDC | |
375 | // are derived from it) and use its m_window. | |
02f07b19 | 376 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
377 | wxASSERT_MSG( gdk_window, |
378 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
a4622f29 | 379 | |
4c85ab75 VZ |
380 | // draw arrow so that there is even space horizontally |
381 | // on both sides | |
382 | int arrowX = rect.width/4 + 1; | |
383 | int arrowWidth = rect.width - (arrowX*2); | |
384 | ||
385 | // scale arrow's height accoording to the width | |
386 | int arrowHeight = rect.width/3; | |
387 | int arrowY = (rect.height-arrowHeight)/2 + | |
388 | ((rect.height-arrowHeight) & 1); | |
389 | ||
e1befae3 | 390 | GtkStateType state; |
a4622f29 | 391 | |
3203621a JS |
392 | if ( flags & wxCONTROL_PRESSED ) |
393 | state = GTK_STATE_ACTIVE; | |
a4622f29 VZ |
394 | else if ( flags & wxCONTROL_DISABLED ) |
395 | state = GTK_STATE_INSENSITIVE; | |
3203621a JS |
396 | else if ( flags & wxCONTROL_CURRENT ) |
397 | state = GTK_STATE_PRELIGHT; | |
e1befae3 VZ |
398 | else |
399 | state = GTK_STATE_NORMAL; | |
a4622f29 | 400 | |
a4622f29 | 401 | // draw arrow on button |
a4622f29 VZ |
402 | gtk_paint_arrow |
403 | ( | |
bc13e772 | 404 | button->style, |
2e992e06 | 405 | gdk_window, |
a4622f29 | 406 | state, |
e1befae3 | 407 | flags & wxCONTROL_PRESSED ? GTK_SHADOW_IN : GTK_SHADOW_OUT, |
a4622f29 | 408 | NULL, |
bc13e772 | 409 | button, |
a4622f29 VZ |
410 | "arrow", |
411 | GTK_ARROW_DOWN, | |
a8ac548e | 412 | FALSE, |
4c85ab75 VZ |
413 | rect.x + arrowX, |
414 | rect.y + arrowY, | |
415 | arrowWidth, | |
416 | arrowHeight | |
a4622f29 | 417 | ); |
38511687 VZ |
418 | } |
419 | ||
4c85ab75 VZ |
420 | void |
421 | wxRendererGTK::DrawComboBoxDropButton(wxWindow *win, | |
422 | wxDC& dc, | |
423 | const wxRect& rect, | |
424 | int flags) | |
425 | { | |
2209baae RR |
426 | DrawPushButton(win,dc,rect,flags); |
427 | DrawDropArrow(win,dc,rect); | |
428 | } | |
429 | ||
e8759560 | 430 | wxSize |
191e43fd | 431 | wxRendererGTK::GetCheckBoxSize(wxWindow *WXUNUSED(win)) |
e8759560 VZ |
432 | { |
433 | gint indicator_size, indicator_spacing; | |
434 | gtk_widget_style_get(wxGTKPrivate::GetCheckButtonWidget(), | |
435 | "indicator_size", &indicator_size, | |
436 | "indicator_spacing", &indicator_spacing, | |
437 | NULL); | |
438 | ||
439 | int size = indicator_size + indicator_spacing * 2; | |
440 | return wxSize(size, size); | |
441 | } | |
442 | ||
cdccdfab | 443 | void |
02f07b19 | 444 | wxRendererGTK::DrawCheckBox(wxWindow* win, |
90b903c2 WS |
445 | wxDC& dc, |
446 | const wxRect& rect, | |
447 | int flags ) | |
2209baae | 448 | { |
e8759560 | 449 | GtkWidget *button = wxGTKPrivate::GetCheckButtonWidget(); |
f1c09bed | 450 | |
02f07b19 | 451 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
452 | wxASSERT_MSG( gdk_window, |
453 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
90b903c2 | 454 | |
e8759560 VZ |
455 | gint indicator_size, indicator_spacing; |
456 | gtk_widget_style_get(button, | |
457 | "indicator_size", &indicator_size, | |
458 | "indicator_spacing", &indicator_spacing, | |
459 | NULL); | |
460 | ||
4c85ab75 VZ |
461 | GtkStateType state; |
462 | ||
3203621a JS |
463 | if ( flags & wxCONTROL_PRESSED ) |
464 | state = GTK_STATE_ACTIVE; | |
4c85ab75 VZ |
465 | else if ( flags & wxCONTROL_DISABLED ) |
466 | state = GTK_STATE_INSENSITIVE; | |
3203621a JS |
467 | else if ( flags & wxCONTROL_CURRENT ) |
468 | state = GTK_STATE_PRELIGHT; | |
4c85ab75 VZ |
469 | else |
470 | state = GTK_STATE_NORMAL; | |
90b903c2 | 471 | |
2209baae | 472 | gtk_paint_check |
4c85ab75 VZ |
473 | ( |
474 | button->style, | |
2e992e06 | 475 | gdk_window, |
4c85ab75 | 476 | state, |
2209baae | 477 | flags & wxCONTROL_CHECKED ? GTK_SHADOW_IN : GTK_SHADOW_OUT, |
4c85ab75 VZ |
478 | NULL, |
479 | button, | |
2209baae | 480 | "cellcheck", |
e8759560 VZ |
481 | dc.LogicalToDeviceX(rect.x) + indicator_spacing, |
482 | dc.LogicalToDeviceY(rect.y) + indicator_spacing, | |
483 | indicator_size, indicator_size | |
4c85ab75 | 484 | ); |
4c85ab75 VZ |
485 | } |
486 | ||
2209baae | 487 | void |
02f07b19 | 488 | wxRendererGTK::DrawPushButton(wxWindow* win, |
2209baae RR |
489 | wxDC& dc, |
490 | const wxRect& rect, | |
491 | int flags) | |
862d8041 | 492 | { |
e8759560 | 493 | GtkWidget *button = wxGTKPrivate::GetButtonWidget(); |
862d8041 | 494 | |
02f07b19 | 495 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
496 | wxASSERT_MSG( gdk_window, |
497 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
2209baae RR |
498 | |
499 | // draw button | |
862d8041 RR |
500 | GtkStateType state; |
501 | ||
502 | if ( flags & wxCONTROL_PRESSED ) | |
503 | state = GTK_STATE_ACTIVE; | |
504 | else if ( flags & wxCONTROL_DISABLED ) | |
505 | state = GTK_STATE_INSENSITIVE; | |
506 | else if ( flags & wxCONTROL_CURRENT ) | |
507 | state = GTK_STATE_PRELIGHT; | |
508 | else | |
509 | state = GTK_STATE_NORMAL; | |
2209baae RR |
510 | |
511 | gtk_paint_box | |
862d8041 RR |
512 | ( |
513 | button->style, | |
2e992e06 | 514 | gdk_window, |
862d8041 | 515 | state, |
2209baae | 516 | flags & wxCONTROL_PRESSED ? GTK_SHADOW_IN : GTK_SHADOW_OUT, |
862d8041 RR |
517 | NULL, |
518 | button, | |
2209baae | 519 | "button", |
99c4be68 VZ |
520 | dc.LogicalToDeviceX(rect.x), |
521 | dc.LogicalToDeviceY(rect.y), | |
522 | rect.width, | |
e4131985 | 523 | rect.height |
862d8041 RR |
524 | ); |
525 | } | |
daebb44c | 526 | |
cdccdfab | 527 | void |
02f07b19 | 528 | wxRendererGTK::DrawItemSelectionRect(wxWindow* win, |
cdccdfab WS |
529 | wxDC& dc, |
530 | const wxRect& rect, | |
531 | int flags ) | |
daebb44c | 532 | { |
981a8049 | 533 | GtkWidget *tree = wxGTKPrivate::GetTreeWidget(); |
99c4be68 | 534 | |
02f07b19 | 535 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
2e992e06 VZ |
536 | wxASSERT_MSG( gdk_window, |
537 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
538 | ||
08f57d21 RR |
539 | int x_diff = 0; |
540 | if (win->GetLayoutDirection() == wxLayout_RightToLeft) | |
541 | x_diff = rect.width; | |
542 | ||
981a8049 | 543 | GtkStateType state = GTK_STATE_NORMAL; |
99c4be68 | 544 | |
90b903c2 | 545 | if (flags & wxCONTROL_SELECTED) |
daebb44c | 546 | { |
05d97538 RR |
547 | // the wxCONTROL_FOCUSED state is deduced |
548 | // directly from the m_wxwindow by GTK+ | |
549 | state = GTK_STATE_SELECTED; | |
daebb44c | 550 | |
981a8049 | 551 | gtk_paint_flat_box( tree->style, // win->m_widget->style, |
2e992e06 | 552 | gdk_window, |
daebb44c RR |
553 | state, |
554 | GTK_SHADOW_NONE, | |
cdccdfab | 555 | NULL, |
daebb44c | 556 | win->m_wxwindow, |
05d97538 | 557 | "cell_even", |
08f57d21 | 558 | dc.LogicalToDeviceX(rect.x) - x_diff, |
daebb44c RR |
559 | dc.LogicalToDeviceY(rect.y), |
560 | rect.width, | |
561 | rect.height ); | |
562 | } | |
72be9a3a VZ |
563 | else // !wxCONTROL_SELECTED |
564 | { | |
565 | state = GTK_STATE_NORMAL; | |
566 | } | |
90b903c2 | 567 | |
ce0cf2b8 | 568 | if ((flags & wxCONTROL_CURRENT) && (flags & wxCONTROL_FOCUSED)) |
daebb44c | 569 | { |
981a8049 RR |
570 | if (flags & wxCONTROL_SELECTED) |
571 | state = GTK_STATE_SELECTED; | |
99c4be68 | 572 | |
981a8049 | 573 | gtk_paint_focus( tree->style, |
05d97538 | 574 | gdk_window, |
72be9a3a | 575 | state, |
05d97538 RR |
576 | NULL, |
577 | win->m_wxwindow, | |
5a34b9b9 PC |
578 | // Detail "treeview" causes warning with GTK+ 2.12 Clearlooks theme: |
579 | // "... no property named `row-ending-details'" | |
580 | // Using "treeview-middle" would fix the warning, but the right | |
581 | // edge of the focus rect is not getting erased properly either. | |
582 | // Better to not specify this detail unless the drawing is fixed. | |
1c1e6b5b | 583 | "", |
05d97538 RR |
584 | dc.LogicalToDeviceX(rect.x), |
585 | dc.LogicalToDeviceY(rect.y), | |
586 | rect.width, | |
587 | rect.height ); | |
daebb44c RR |
588 | } |
589 | } | |
6d789987 JS |
590 | |
591 | void wxRendererGTK::DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) | |
592 | { | |
02f07b19 | 593 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
6d789987 JS |
594 | wxASSERT_MSG( gdk_window, |
595 | wxT("cannot use wxRendererNative on wxDC of this type") ); | |
596 | ||
597 | GtkStateType state; | |
598 | if (flags & wxCONTROL_SELECTED) | |
599 | state = GTK_STATE_SELECTED; | |
600 | else | |
601 | state = GTK_STATE_NORMAL; | |
602 | ||
603 | gtk_paint_focus( win->m_widget->style, | |
604 | gdk_window, | |
605 | state, | |
606 | NULL, | |
607 | win->m_wxwindow, | |
608 | NULL, | |
609 | dc.LogicalToDeviceX(rect.x), | |
610 | dc.LogicalToDeviceY(rect.y), | |
611 | rect.width, | |
612 | rect.height ); | |
613 | } | |
e4131985 KO |
614 | |
615 | // Uses the theme to draw the border and fill for something like a wxTextCtrl | |
02f07b19 | 616 | void wxRendererGTK::DrawTextCtrl(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) |
e4131985 KO |
617 | { |
618 | GtkWidget *entry = wxGTKPrivate::GetTextEntryWidget(); | |
619 | ||
02f07b19 | 620 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
e4131985 KO |
621 | |
622 | GtkStateType state = GTK_STATE_NORMAL; | |
623 | if ( flags & wxCONTROL_DISABLED ) | |
624 | state = GTK_STATE_INSENSITIVE; | |
99c4be68 | 625 | |
e4131985 KO |
626 | if (flags & wxCONTROL_CURRENT ) |
627 | GTK_WIDGET_SET_FLAGS( entry, GTK_HAS_FOCUS ); | |
628 | else | |
629 | GTK_WIDGET_UNSET_FLAGS( entry, GTK_HAS_FOCUS ); | |
630 | ||
631 | gtk_paint_shadow | |
632 | ( | |
99c4be68 | 633 | entry->style, |
e4131985 KO |
634 | gdk_window, |
635 | state, | |
636 | GTK_SHADOW_OUT, | |
637 | NULL, | |
638 | entry, | |
639 | "entry", | |
640 | dc.LogicalToDeviceX(rect.x), | |
641 | dc.LogicalToDeviceY(rect.y), | |
642 | rect.width, | |
99c4be68 | 643 | rect.height |
e4131985 KO |
644 | ); |
645 | } | |
646 | ||
647 | // Draw the equivallent of a wxComboBox | |
02f07b19 | 648 | void wxRendererGTK::DrawComboBox(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) |
e4131985 KO |
649 | { |
650 | GtkWidget *combo = wxGTKPrivate::GetComboBoxWidget(); | |
651 | ||
02f07b19 | 652 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
e4131985 KO |
653 | |
654 | GtkStateType state = GTK_STATE_NORMAL; | |
655 | if ( flags & wxCONTROL_DISABLED ) | |
656 | state = GTK_STATE_INSENSITIVE; | |
99c4be68 | 657 | |
e4131985 KO |
658 | if (flags & wxCONTROL_CURRENT ) |
659 | GTK_WIDGET_SET_FLAGS( combo, GTK_HAS_FOCUS ); | |
660 | else | |
661 | GTK_WIDGET_UNSET_FLAGS( combo, GTK_HAS_FOCUS ); | |
662 | ||
663 | gtk_paint_shadow | |
664 | ( | |
99c4be68 | 665 | combo->style, |
e4131985 KO |
666 | gdk_window, |
667 | state, | |
668 | GTK_SHADOW_OUT, | |
669 | NULL, | |
670 | combo, | |
671 | "combobox", | |
672 | dc.LogicalToDeviceX(rect.x), | |
673 | dc.LogicalToDeviceY(rect.y), | |
674 | rect.width, | |
99c4be68 | 675 | rect.height |
e4131985 KO |
676 | ); |
677 | ||
678 | wxRect r = rect; | |
679 | int extent = rect.height / 2; | |
680 | r.x += rect.width - extent - extent/2; | |
681 | r.y += extent/2; | |
682 | r.width = extent; | |
683 | r.height = extent; | |
684 | ||
685 | gtk_paint_arrow | |
686 | ( | |
99c4be68 | 687 | combo->style, |
e4131985 KO |
688 | gdk_window, |
689 | state, | |
690 | GTK_SHADOW_OUT, | |
691 | NULL, | |
692 | combo, | |
693 | "arrow", | |
694 | GTK_ARROW_DOWN, | |
695 | TRUE, | |
696 | dc.LogicalToDeviceX(r.x), | |
697 | dc.LogicalToDeviceY(r.y), | |
698 | r.width, | |
699 | r.height | |
700 | ); | |
701 | ||
702 | r = rect; | |
703 | r.x += rect.width - 2*extent; | |
704 | r.width = 2; | |
705 | ||
706 | gtk_paint_box | |
707 | ( | |
99c4be68 | 708 | combo->style, |
e4131985 KO |
709 | gdk_window, |
710 | state, | |
711 | GTK_SHADOW_ETCHED_OUT, | |
712 | NULL, | |
713 | combo, | |
714 | "vseparator", | |
715 | dc.LogicalToDeviceX(r.x), | |
716 | dc.LogicalToDeviceY(r.y+1), | |
717 | r.width, | |
718 | r.height-2 | |
719 | ); | |
720 | } | |
721 | ||
722 | ||
723 | void wxRendererGTK::DrawChoice(wxWindow* win, wxDC& dc, | |
724 | const wxRect& rect, int flags) | |
725 | { | |
726 | DrawComboBox( win, dc, rect, flags ); | |
727 | } | |
728 | ||
99c4be68 | 729 | |
e4131985 | 730 | // Draw a themed radio button |
6e6b532c | 731 | void wxRendererGTK::DrawRadioBitmap(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) |
e4131985 KO |
732 | { |
733 | GtkWidget *button = wxGTKPrivate::GetRadioButtonWidget(); | |
734 | ||
02f07b19 | 735 | GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); |
99c4be68 | 736 | |
e4131985 KO |
737 | GtkShadowType shadow_type = GTK_SHADOW_OUT; |
738 | if ( flags & wxCONTROL_CHECKED ) | |
739 | shadow_type = GTK_SHADOW_IN; | |
740 | else if ( flags & wxCONTROL_UNDETERMINED ) | |
741 | shadow_type = GTK_SHADOW_ETCHED_IN; | |
99c4be68 | 742 | |
e4131985 KO |
743 | GtkStateType state = GTK_STATE_NORMAL; |
744 | if ( flags & wxCONTROL_DISABLED ) | |
7e717730 | 745 | state = GTK_STATE_INSENSITIVE; |
e4131985 | 746 | if ( flags & wxCONTROL_PRESSED ) |
7e717730 | 747 | state = GTK_STATE_ACTIVE; |
e4131985 KO |
748 | /* |
749 | Don't know when to set this | |
750 | state_type = GTK_STATE_PRELIGHT; | |
751 | */ | |
752 | ||
753 | gtk_paint_option | |
754 | ( | |
755 | button->style, | |
756 | gdk_window, | |
757 | state, | |
758 | shadow_type, | |
759 | NULL, | |
760 | button, | |
761 | "radiobutton", | |
99c4be68 VZ |
762 | dc.LogicalToDeviceX(rect.x), |
763 | dc.LogicalToDeviceY(rect.y), | |
e4131985 KO |
764 | rect.width, rect.height |
765 | ); | |
766 | } |