1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: gtk/renderer.cpp
3 // Purpose: implementation of wxRendererNative for wxGTK
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // License: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
31 #include "wx/gtk/win_gtk.h"
33 #include "wx/window.h"
35 #include "wx/renderer.h"
38 #include "wx/settings.h"
41 // ----------------------------------------------------------------------------
42 // wxRendererGTK: our wxRendererNative implementation
43 // ----------------------------------------------------------------------------
45 class WXDLLEXPORT wxRendererGTK
: public wxDelegateRendererNative
48 // draw the header control button (used by wxListCtrl)
49 virtual void DrawHeaderButton(wxWindow
*win
,
55 // draw the expanded/collapsed icon for a tree control item
56 virtual void DrawTreeItemButton(wxWindow
*win
,
64 // ============================================================================
66 // ============================================================================
69 wxRendererNative
& wxRendererNative::Get()
71 static wxRendererGTK s_rendererGTK
;
77 wxRendererGTK::DrawHeaderButton(wxWindow
*win
,
84 win
->m_wxwindow
->style
,
85 GTK_PIZZA(win
->m_wxwindow
)->bin_window
,
86 flags
& wxCONTROL_DISABLED
? GTK_STATE_INSENSITIVE
: GTK_STATE_NORMAL
,
90 (char *)"button", // const_cast
91 dc
.XLOG2DEV(rect
.x
) - 1, rect
.y
- 1, rect
.width
+ 2, rect
.height
+ 2
97 // draw a ">" or "v" button
99 // TODO: isn't there a GTK function to draw it?
101 wxRendererGTK::DrawTreeItemButton(wxWindow
* WXUNUSED(win
),
102 wxDC
& dc
, const wxRect
& rect
, int flags
)
104 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
),
106 dc
.SetPen(*wxBLACK_PEN
);
109 const wxCoord xMiddle
= rect
.x
+ rect
.width
/2;
110 const wxCoord yMiddle
= rect
.y
+ rect
.height
/2;
112 if ( flags
& wxCONTROL_EXPANDED
)
114 button
[0].x
= rect
.GetLeft();
115 button
[0].y
= yMiddle
- 2;
116 button
[1].x
= rect
.GetRight();
117 button
[1].y
= yMiddle
- 2;
118 button
[2].x
= xMiddle
;
119 button
[2].y
= yMiddle
+ 3;
123 button
[0].y
= rect
.GetBottom();
124 button
[0].x
= xMiddle
- 2;
125 button
[1].y
= rect
.GetTop();
126 button
[1].x
= xMiddle
- 2;
127 button
[2].y
= yMiddle
;
128 button
[2].x
= xMiddle
+ 3;
131 dc
.DrawPolygon(3, button
);