1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxaui: wx advanced user interface - docking window manager
4 // Author: Benjamin I. Williams
8 // Copyright: (C) Copyright 2005-2006, Kirix Corporation, All Rights Reserved
9 // Licence: wxWindows Library Licence, Version 3.1
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
29 #include "wx/aui/framemanager.h"
30 #include "wx/aui/dockart.h"
33 // #include "wx/log.h"
36 // -- wxDefaultDockArt class implementation --
38 // wxDefaultDockArt is an art provider class which does all of the drawing for
39 // wxFrameManager. This allows the library caller to customize the dock art
40 // (probably by deriving from this class), or to completely replace all drawing
41 // with custom dock art (probably by writing a new stand-alone class derived
42 // from the wxDockArt base class). The active dock art class can be set via
43 // wxFrameManager::SetDockArt()
46 // StepColour() it a utility function that simply darkens
47 // or lightens a color, based on the specified percentage
48 static wxColor
StepColour(const wxColor
& c
, int percent
)
50 int r
= c
.Red(), g
= c
.Green(), b
= c
.Blue();
51 return wxColour(wxMin((r
*percent
)/100,255),
52 wxMin((g
*percent
)/100,255),
53 wxMin((b
*percent
)/100,255));
56 static wxColor
LightContrastColour(const wxColour
& c
)
60 // if the color is especially dark, then
61 // make the contrast even lighter
62 if (c
.Red() < 128 && c
.Green() < 128 && c
.Blue() < 128)
65 return StepColour(c
, amount
);
68 // BitmapFromBits() is a utility function that creates a
69 // masked bitmap from raw bits (XBM format)
70 static wxBitmap
BitmapFromBits(const unsigned char bits
[], int w
, int h
,
71 const wxColour
& color
)
73 wxImage img
= wxBitmap((const char*)bits
, w
, h
).ConvertToImage();
74 img
.Replace(255,255,255,123,123,123);
75 img
.Replace(0,0,0,color
.Red(),color
.Green(),color
.Blue());
76 img
.SetMaskColour(123,123,123);
81 static void DrawGradientRectangle(wxDC
& dc
,
83 const wxColour
& start_color
,
84 const wxColour
& end_color
,
87 int rd
, gd
, bd
, high
= 0;
88 rd
= end_color
.Red() - start_color
.Red();
89 gd
= end_color
.Green() - start_color
.Green();
90 bd
= end_color
.Blue() - start_color
.Blue();
92 if (direction
== wxAUI_GRADIENT_VERTICAL
)
93 high
= rect
.GetHeight()-1;
95 high
= rect
.GetWidth()-1;
97 for (int i
= 0; i
<= high
; ++i
)
99 int r
= start_color
.Red() + ((i
*rd
*100)/high
)/100;
100 int g
= start_color
.Green() + ((i
*gd
*100)/high
)/100;
101 int b
= start_color
.Blue() + ((i
*bd
*100)/high
)/100;
103 wxPen
p(wxColor(r
,g
,b
));
106 if (direction
== wxAUI_GRADIENT_VERTICAL
)
107 dc
.DrawLine(rect
.x
, rect
.y
+i
, rect
.x
+rect
.width
, rect
.y
+i
);
109 dc
.DrawLine(rect
.x
+i
, rect
.y
, rect
.x
+i
, rect
.y
+rect
.height
);
114 wxDefaultDockArt::wxDefaultDockArt()
117 wxBrush toolbarbrush
;
118 toolbarbrush
.MacSetTheme( kThemeBrushToolbarBackground
);
119 wxColor base_color
= toolbarbrush
.GetColour();
121 wxColor base_color
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
124 wxColor darker1_color
= StepColour(base_color
, 85);
125 wxColor darker2_color
= StepColour(base_color
, 70);
126 wxColor darker3_color
= StepColour(base_color
, 60);
127 wxColor darker4_color
= StepColour(base_color
, 50);
128 wxColor darker5_color
= StepColour(base_color
, 40);
130 m_active_caption_colour
= LightContrastColour(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
));
131 m_active_caption_gradient_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
132 m_active_caption_text_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
133 m_inactive_caption_colour
= StepColour(darker1_color
, 80);
134 m_inactive_caption_gradient_colour
= darker1_color
;
135 m_inactive_caption_text_colour
= *wxBLACK
;
138 m_sash_brush
= toolbarbrush
;
139 m_background_brush
= toolbarbrush
;
140 m_gripper_brush
= toolbarbrush
;
142 m_sash_brush
= wxBrush(base_color
);
143 m_background_brush
= wxBrush(base_color
);
144 m_gripper_brush
= wxBrush(base_color
);
146 m_border_pen
= wxPen(darker2_color
);
147 m_gripper_pen1
= wxPen(darker5_color
);
148 m_gripper_pen2
= wxPen(darker3_color
);
149 m_gripper_pen3
= *wxWHITE_PEN
;
152 m_caption_font
= *wxSMALL_FONT
;
154 m_caption_font
= wxFont(8, wxDEFAULT
, wxNORMAL
, wxNORMAL
, FALSE
);
157 // some built in bitmaps
159 static unsigned char close_bits
[]={
160 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0xFE, 0x03, 0xF8, 0x01, 0xF0, 0x19, 0xF3,
161 0xB8, 0xE3, 0xF0, 0xE1, 0xE0, 0xE0, 0xF0, 0xE1, 0xB8, 0xE3, 0x19, 0xF3,
162 0x01, 0xF0, 0x03, 0xF8, 0x0F, 0xFE, 0xFF, 0xFF };
164 static unsigned char close_bits
[]={
165 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xfb,0xcf,0xf9,
166 0x9f,0xfc,0x3f,0xfe,0x3f,0xfe,0x9f,0xfc,0xcf,0xf9,0xef,0xfb,
167 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
170 static unsigned char pin_bits
[]={
171 0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xfc,0xdf,0xfc,0xdf,0xfc,
172 0xdf,0xfc,0xdf,0xfc,0xdf,0xfc,0x0f,0xf8,0x7f,0xff,0x7f,0xff,
173 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
176 m_inactive_close_bitmap
= BitmapFromBits(close_bits
, 16, 16, *wxWHITE
);
178 m_inactive_close_bitmap
= BitmapFromBits(close_bits
, 16, 16, m_inactive_caption_text_colour
);
180 m_inactive_pin_bitmap
= BitmapFromBits(pin_bits
, 16, 16, m_inactive_caption_text_colour
);
182 m_active_close_bitmap
= BitmapFromBits(close_bits
, 16, 16, *wxWHITE
);
184 m_active_close_bitmap
= BitmapFromBits(close_bits
, 16, 16, m_active_caption_text_colour
);
186 m_active_pin_bitmap
= BitmapFromBits(pin_bits
, 16, 16, m_active_caption_text_colour
);
188 // default metric values
191 GetThemeMetric( kThemeMetricSmallPaneSplitterHeight
, &height
);
192 m_sash_size
= height
;
200 m_gradient_type
= wxAUI_GRADIENT_VERTICAL
;
203 int wxDefaultDockArt::GetMetric(int id
)
207 case wxAUI_ART_SASH_SIZE
: return m_sash_size
;
208 case wxAUI_ART_CAPTION_SIZE
: return m_caption_size
;
209 case wxAUI_ART_GRIPPER_SIZE
: return m_gripper_size
;
210 case wxAUI_ART_PANE_BORDER_SIZE
: return m_border_size
;
211 case wxAUI_ART_PANE_BUTTON_SIZE
: return m_button_size
;
212 case wxAUI_ART_GRADIENT_TYPE
: return m_gradient_type
;
213 default: wxFAIL_MSG(wxT("Invalid Metric Ordinal")); break;
219 void wxDefaultDockArt::SetMetric(int id
, int new_val
)
223 case wxAUI_ART_SASH_SIZE
: m_sash_size
= new_val
; break;
224 case wxAUI_ART_CAPTION_SIZE
: m_caption_size
= new_val
; break;
225 case wxAUI_ART_GRIPPER_SIZE
: m_gripper_size
= new_val
; break;
226 case wxAUI_ART_PANE_BORDER_SIZE
: m_border_size
= new_val
; break;
227 case wxAUI_ART_PANE_BUTTON_SIZE
: m_button_size
= new_val
; break;
228 case wxAUI_ART_GRADIENT_TYPE
: m_gradient_type
= new_val
; break;
229 default: wxFAIL_MSG(wxT("Invalid Metric Ordinal")); break;
233 wxColour
wxDefaultDockArt::GetColour(int id
)
237 case wxAUI_ART_BACKGROUND_COLOUR
: return m_background_brush
.GetColour(); break;
238 case wxAUI_ART_SASH_COLOUR
: return m_sash_brush
.GetColour(); break;
239 case wxAUI_ART_INACTIVE_CAPTION_COLOUR
: return m_inactive_caption_colour
; break;
240 case wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
: return m_inactive_caption_gradient_colour
; break;
241 case wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
: return m_inactive_caption_text_colour
; break;
242 case wxAUI_ART_ACTIVE_CAPTION_COLOUR
: return m_active_caption_colour
; break;
243 case wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
: return m_active_caption_gradient_colour
; break;
244 case wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
: return m_active_caption_text_colour
; break;
245 case wxAUI_ART_BORDER_COLOUR
: return m_border_pen
.GetColour(); break;
246 case wxAUI_ART_GRIPPER_COLOUR
: return m_gripper_brush
.GetColour(); break;
247 default: wxFAIL_MSG(wxT("Invalid Metric Ordinal")); break;
253 void wxDefaultDockArt::SetColour(int id
, const wxColor
& colour
)
257 case wxAUI_ART_BACKGROUND_COLOUR
: m_background_brush
.SetColour(colour
); break;
258 case wxAUI_ART_SASH_COLOUR
: m_sash_brush
.SetColour(colour
); break;
259 case wxAUI_ART_INACTIVE_CAPTION_COLOUR
: m_inactive_caption_colour
= colour
; break;
260 case wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
: m_inactive_caption_gradient_colour
= colour
; break;
261 case wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
: m_inactive_caption_text_colour
= colour
; break;
262 case wxAUI_ART_ACTIVE_CAPTION_COLOUR
: m_active_caption_colour
= colour
; break;
263 case wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
: m_active_caption_gradient_colour
= colour
; break;
264 case wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
: m_active_caption_text_colour
= colour
; break;
265 case wxAUI_ART_BORDER_COLOUR
: m_border_pen
.SetColour(colour
); break;
266 case wxAUI_ART_GRIPPER_COLOUR
:
267 m_gripper_brush
.SetColour(colour
);
268 m_gripper_pen1
.SetColour(StepColour(colour
, 40));
269 m_gripper_pen2
.SetColour(StepColour(colour
, 60));
271 default: wxFAIL_MSG(wxT("Invalid Metric Ordinal")); break;
275 void wxDefaultDockArt::SetFont(int id
, const wxFont
& font
)
277 if (id
== wxAUI_ART_CAPTION_FONT
)
278 m_caption_font
= font
;
281 wxFont
wxDefaultDockArt::GetFont(int id
)
283 if (id
== wxAUI_ART_CAPTION_FONT
)
284 return m_caption_font
;
288 void wxDefaultDockArt::DrawSash(wxDC
& dc
, int, const wxRect
& rect
)
291 HIRect splitterRect
= CGRectMake( rect
.x
, rect
.y
, rect
.width
, rect
.height
);
292 CGContextRef cgContext
;
293 #if wxMAC_USE_CORE_GRAPHICS
294 cgContext
= ((wxMacCGContext
*)(dc
.GetGraphicContext()))->GetNativeContext() ;
297 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
298 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
299 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
300 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
303 HIThemeSplitterDrawInfo drawInfo
;
304 drawInfo
.version
= 0 ;
305 drawInfo
.state
= kThemeStateActive
;
306 drawInfo
.adornment
= kHIThemeSplitterAdornmentNone
;
307 HIThemeDrawPaneSplitter( &splitterRect
, &drawInfo
, cgContext
, kHIThemeOrientationNormal
) ;
309 #if wxMAC_USE_CORE_GRAPHICS
311 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
315 dc
.SetPen(*wxTRANSPARENT_PEN
);
316 dc
.SetBrush(m_sash_brush
);
317 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
322 void wxDefaultDockArt::DrawBackground(wxDC
& dc
, int, const wxRect
& rect
)
324 dc
.SetPen(*wxTRANSPARENT_PEN
);
326 // we have to clear first, otherwise we are drawing a light striped pattern
327 // over an already darker striped background
328 dc
.SetBrush(*wxWHITE_BRUSH
) ;
329 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
331 dc
.SetBrush(m_background_brush
);
332 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
335 void wxDefaultDockArt::DrawBorder(wxDC
& dc
, const wxRect
& _rect
,
338 dc
.SetPen(m_border_pen
);
339 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
342 int i
, border_width
= GetMetric(wxAUI_ART_PANE_BORDER_SIZE
);
344 if (pane
.IsToolbar())
346 for (i
= 0; i
< border_width
; ++i
)
348 dc
.SetPen(*wxWHITE_PEN
);
349 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
+rect
.width
, rect
.y
);
350 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
, rect
.y
+rect
.height
);
351 dc
.SetPen(m_border_pen
);
352 dc
.DrawLine(rect
.x
, rect
.y
+rect
.height
-1,
353 rect
.x
+rect
.width
, rect
.y
+rect
.height
-1);
354 dc
.DrawLine(rect
.x
+rect
.width
-1, rect
.y
,
355 rect
.x
+rect
.width
-1, rect
.y
+rect
.height
);
361 for (i
= 0; i
< border_width
; ++i
)
363 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
370 void wxDefaultDockArt::DrawCaptionBackground(wxDC
& dc
, const wxRect
& rect
, bool active
)
372 if (m_gradient_type
== wxAUI_GRADIENT_NONE
)
375 dc
.SetBrush(wxBrush(m_active_caption_colour
));
377 dc
.SetBrush(wxBrush(m_inactive_caption_colour
));
379 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
385 // on mac the gradients are expected to become darker from the top
387 DrawGradientRectangle(dc
, rect
,
388 m_active_caption_gradient_colour
,
389 m_active_caption_colour
,
392 DrawGradientRectangle(dc
, rect
,
393 m_active_caption_colour
,
394 m_active_caption_gradient_colour
,
400 // on mac the gradients are expected to become darker from the top
402 DrawGradientRectangle(dc
, rect
,
403 m_inactive_caption_gradient_colour
,
404 m_inactive_caption_colour
,
407 DrawGradientRectangle(dc
, rect
,
408 m_inactive_caption_colour
,
409 m_inactive_caption_gradient_colour
,
417 void wxDefaultDockArt::DrawCaption(wxDC
& dc
,
418 const wxString
& text
,
422 dc
.SetPen(*wxTRANSPARENT_PEN
);
423 dc
.SetFont(m_caption_font
);
425 DrawCaptionBackground(dc
, rect
,
426 (pane
.state
& wxPaneInfo::optionActive
)?true:false);
428 if (pane
.state
& wxPaneInfo::optionActive
)
429 dc
.SetTextForeground(m_active_caption_text_colour
);
431 dc
.SetTextForeground(m_inactive_caption_text_colour
);
435 dc
.GetTextExtent(wxT("ABCDEFHXfgkj"), &w
, &h
);
437 dc
.SetClippingRegion(rect
);
438 dc
.DrawText(text
, rect
.x
+3, rect
.y
+(rect
.height
/2)-(h
/2)-1);
439 dc
.DestroyClippingRegion();
442 void wxDefaultDockArt::DrawGripper(wxDC
& dc
,
446 dc
.SetPen(*wxTRANSPARENT_PEN
);
447 dc
.SetBrush(m_gripper_brush
);
449 dc
.DrawRectangle(rect
.x
, rect
.y
, rect
.width
,rect
.height
);
451 if (!pane
.HasGripperTop())
456 dc
.SetPen(m_gripper_pen1
);
457 dc
.DrawPoint(rect
.x
+3, rect
.y
+y
);
458 dc
.SetPen(m_gripper_pen2
);
459 dc
.DrawPoint(rect
.x
+3, rect
.y
+y
+1);
460 dc
.DrawPoint(rect
.x
+4, rect
.y
+y
);
461 dc
.SetPen(m_gripper_pen3
);
462 dc
.DrawPoint(rect
.x
+5, rect
.y
+y
+1);
463 dc
.DrawPoint(rect
.x
+5, rect
.y
+y
+2);
464 dc
.DrawPoint(rect
.x
+4, rect
.y
+y
+2);
467 if (y
> rect
.GetHeight()-5)
476 dc
.SetPen(m_gripper_pen1
);
477 dc
.DrawPoint(rect
.x
+x
, rect
.y
+3);
478 dc
.SetPen(m_gripper_pen2
);
479 dc
.DrawPoint(rect
.x
+x
+1, rect
.y
+3);
480 dc
.DrawPoint(rect
.x
+x
, rect
.y
+4);
481 dc
.SetPen(m_gripper_pen3
);
482 dc
.DrawPoint(rect
.x
+x
+1, rect
.y
+5);
483 dc
.DrawPoint(rect
.x
+x
+2, rect
.y
+5);
484 dc
.DrawPoint(rect
.x
+x
+2, rect
.y
+4);
487 if (x
> rect
.GetWidth()-5)
493 void wxDefaultDockArt::DrawPaneButton(wxDC
& dc
,
501 if (button_state
== wxAUI_BUTTON_STATE_PRESSED
)
507 if (button_state
== wxAUI_BUTTON_STATE_HOVER
||
508 button_state
== wxAUI_BUTTON_STATE_PRESSED
)
510 if (pane
.state
& wxPaneInfo::optionActive
)
512 dc
.SetBrush(wxBrush(StepColour(m_active_caption_colour
, 120)));
513 dc
.SetPen(wxPen(StepColour(m_active_caption_colour
, 70)));
517 dc
.SetBrush(wxBrush(StepColour(m_inactive_caption_colour
, 120)));
518 dc
.SetPen(wxPen(StepColour(m_inactive_caption_colour
, 70)));
521 // draw the background behind the button
522 dc
.DrawRectangle(rect
.x
, rect
.y
, 15, 15);
529 case wxPaneInfo::buttonClose
:
530 if (pane
.state
& wxPaneInfo::optionActive
)
531 bmp
= m_active_close_bitmap
;
533 bmp
= m_inactive_close_bitmap
;
535 case wxPaneInfo::buttonPin
:
536 if (pane
.state
& wxPaneInfo::optionActive
)
537 bmp
= m_active_pin_bitmap
;
539 bmp
= m_inactive_pin_bitmap
;
543 // draw the button itself
544 dc
.DrawBitmap(bmp
, rect
.x
, rect
.y
, true);