X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99c4be680622f58a48a04dfe0835b59d2c41afea..aa3e374197e99d6362468dd821935050e5074065:/src/gtk/renderer.cpp diff --git a/src/gtk/renderer.cpp b/src/gtk/renderer.cpp index 2411e870ad..70315318dd 100644 --- a/src/gtk/renderer.cpp +++ b/src/gtk/renderer.cpp @@ -6,7 +6,7 @@ // Created: 20.07.2003 // RCS-ID: $Id$ // Copyright: (c) 2003 Vadim Zeitlin -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -56,6 +56,8 @@ public: virtual int GetHeaderButtonHeight(wxWindow *win); + virtual int GetHeaderButtonMargin(wxWindow *win); + // draw the expanded/collapsed icon for a tree control item virtual void DrawTreeItemButton(wxWindow *win, @@ -114,7 +116,7 @@ public: const wxRect& rect, int flags=0); - virtual void DrawOptionButton(wxWindow* win, + virtual void DrawRadioBitmap(wxWindow* win, wxDC& dc, const wxRect& rect, int flags=0); @@ -226,6 +228,12 @@ int wxRendererGTK::GetHeaderButtonHeight(wxWindow *WXUNUSED(win)) return req.height; } +int wxRendererGTK::GetHeaderButtonMargin(wxWindow *WXUNUSED(win)) +{ + wxFAIL_MSG( "GetHeaderButtonMargin() not implemented" ); + return -1; +} + // draw a ">" or "v" button void @@ -469,12 +477,21 @@ wxRendererGTK::DrawCheckBox(wxWindow* win, else state = GTK_STATE_NORMAL; + GtkShadowType shadow_type; + + if ( flags & wxCONTROL_UNDETERMINED ) + shadow_type = GTK_SHADOW_ETCHED_IN; + else if ( flags & wxCONTROL_CHECKED ) + shadow_type = GTK_SHADOW_IN; + else + shadow_type = GTK_SHADOW_OUT; + gtk_paint_check ( button->style, gdk_window, state, - flags & wxCONTROL_CHECKED ? GTK_SHADOW_IN : GTK_SHADOW_OUT, + shadow_type, NULL, button, "cellcheck", @@ -530,27 +547,21 @@ wxRendererGTK::DrawItemSelectionRect(wxWindow* win, const wxRect& rect, int flags ) { - GtkWidget *tree = wxGTKPrivate::GetTreeWidget(); - GdkWindow* gdk_window = wxGetGdkWindowForDC(win, dc); wxASSERT_MSG( gdk_window, wxT("cannot use wxRendererNative on wxDC of this type") ); - int x_diff = 0; - if (win->GetLayoutDirection() == wxLayout_RightToLeft) - x_diff = rect.width; - - GtkStateType state = GTK_STATE_NORMAL; - if (flags & wxCONTROL_SELECTED) { + int x_diff = 0; + if (win->GetLayoutDirection() == wxLayout_RightToLeft) + x_diff = rect.width; + // the wxCONTROL_FOCUSED state is deduced // directly from the m_wxwindow by GTK+ - state = GTK_STATE_SELECTED; - - gtk_paint_flat_box( tree->style, // win->m_widget->style, + gtk_paint_flat_box(wxGTKPrivate::GetTreeWidget()->style, gdk_window, - state, + GTK_STATE_SELECTED, GTK_SHADOW_NONE, NULL, win->m_wxwindow, @@ -560,32 +571,9 @@ wxRendererGTK::DrawItemSelectionRect(wxWindow* win, rect.width, rect.height ); } - else // !wxCONTROL_SELECTED - { - state = GTK_STATE_NORMAL; - } if ((flags & wxCONTROL_CURRENT) && (flags & wxCONTROL_FOCUSED)) - { - if (flags & wxCONTROL_SELECTED) - state = GTK_STATE_SELECTED; - - gtk_paint_focus( tree->style, - gdk_window, - state, - NULL, - win->m_wxwindow, - // Detail "treeview" causes warning with GTK+ 2.12 Clearlooks theme: - // "... no property named `row-ending-details'" - // Using "treeview-middle" would fix the warning, but the right - // edge of the focus rect is not getting erased properly either. - // Better to not specify this detail unless the drawing is fixed. - "", - dc.LogicalToDeviceX(rect.x), - dc.LogicalToDeviceY(rect.y), - rect.width, - rect.height ); - } + DrawFocusRect(win, dc, rect, flags); } void wxRendererGTK::DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) @@ -728,7 +716,7 @@ void wxRendererGTK::DrawChoice(wxWindow* win, wxDC& dc, // Draw a themed radio button -void wxRendererGTK::DrawOptionButton(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) +void wxRendererGTK::DrawRadioBitmap(wxWindow* win, wxDC& dc, const wxRect& rect, int flags) { GtkWidget *button = wxGTKPrivate::GetRadioButtonWidget();