1 ///////////////////////////////////////////////////////////////////////////////
3 // Name: src/aui/dockart.cpp
4 // Purpose: wxaui: wx advanced user interface - docking window manager
5 // Author: Benjamin I. Williams
8 // RCS-ID: $Id: dockart.cpp 48848 2007-09-21 10:19:53Z SC $
9 // Copyright: (C) Copyright 2005-2006, Kirix Corporation, All Rights Reserved
10 // Licence: wxWindows Library Licence, Version 3.1
11 ///////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 #include "wx/wxprec.h"
29 #include "wx/statline.h"
30 #include "wx/dcbuffer.h"
33 #include "wx/settings.h"
36 #include "wx/aui/auibar.h"
37 #include "wx/aui/framemanager.h"
40 #include "wx/osx/private.h"
41 // for themeing support
42 #include <Carbon/Carbon.h>
45 #include "wx/arrimpl.cpp"
46 WX_DEFINE_OBJARRAY(wxAuiToolBarItemArray
)
49 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN
)
50 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK
)
51 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
)
52 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK
)
53 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG
)
56 IMPLEMENT_CLASS(wxAuiToolBar
, wxControl
)
57 IMPLEMENT_DYNAMIC_CLASS(wxAuiToolBarEvent
, wxEvent
)
60 // missing wxITEM_* items
63 wxITEM_CONTROL
= wxITEM_MAX
,
68 const int BUTTON_DROPDOWN_WIDTH
= 10;
71 wxBitmap
wxAuiBitmapFromBits(const unsigned char bits
[], int w
, int h
,
72 const wxColour
& color
);
74 unsigned char wxAuiBlendColour(unsigned char fg
, unsigned char bg
, double alpha
);
75 wxColor
wxAuiStepColour(const wxColor
& c
, int percent
);
77 static wxBitmap
MakeDisabledBitmap(wxBitmap
& bmp
)
79 wxImage image
= bmp
.ConvertToImage();
82 mr
= image
.GetMaskRed();
83 mg
= image
.GetMaskGreen();
84 mb
= image
.GetMaskBlue();
86 unsigned char* data
= image
.GetData();
87 int width
= image
.GetWidth();
88 int height
= image
.GetHeight();
89 bool has_mask
= image
.HasMask();
91 for (int y
= height
-1; y
>= 0; --y
)
93 for (int x
= width
-1; x
>= 0; --x
)
95 data
= image
.GetData() + (y
*(width
*3))+(x
*3);
96 unsigned char* r
= data
;
97 unsigned char* g
= data
+1;
98 unsigned char* b
= data
+2;
100 if (has_mask
&& *r
== mr
&& *g
== mg
&& *b
== mb
)
103 *r
= wxAuiBlendColour(*r
, 255, 0.4);
104 *g
= wxAuiBlendColour(*g
, 255, 0.4);
105 *b
= wxAuiBlendColour(*b
, 255, 0.4);
109 return wxBitmap(image
);
112 static wxColor
GetBaseColor()
115 #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON
116 wxColor base_colour
= wxColour( wxMacCreateCGColorFromHITheme(kThemeBrushToolbarBackground
));
118 wxColor base_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
121 // the base_colour is too pale to use as our base colour,
122 // so darken it a bit --
123 if ((255-base_colour
.Red()) +
124 (255-base_colour
.Green()) +
125 (255-base_colour
.Blue()) < 60)
127 base_colour
= wxAuiStepColour(base_colour
, 92);
135 class ToolbarCommandCapture
: public wxEvtHandler
139 ToolbarCommandCapture() { m_last_id
= 0; }
140 int GetCommandId() const { return m_last_id
; }
142 bool ProcessEvent(wxEvent
& evt
)
144 if (evt
.GetEventType() == wxEVT_COMMAND_MENU_SELECTED
)
146 m_last_id
= evt
.GetId();
150 if (GetNextHandler())
151 return GetNextHandler()->ProcessEvent(evt
);
162 static const unsigned char
163 DISABLED_TEXT_GREY_HUE
= wxAuiBlendColour(0, 255, 0.4);
164 const wxColour
DISABLED_TEXT_COLOR(DISABLED_TEXT_GREY_HUE
,
165 DISABLED_TEXT_GREY_HUE
,
166 DISABLED_TEXT_GREY_HUE
);
168 wxAuiDefaultToolBarArt::wxAuiDefaultToolBarArt()
170 m_base_colour
= GetBaseColor();
173 m_text_orientation
= wxAUI_TBTOOL_TEXT_BOTTOM
;
174 m_highlight_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
176 m_separator_size
= 7;
178 m_overflow_size
= 16;
180 wxColor darker1_colour
= wxAuiStepColour(m_base_colour
, 85);
181 wxColor darker2_colour
= wxAuiStepColour(m_base_colour
, 75);
182 wxColor darker3_colour
= wxAuiStepColour(m_base_colour
, 60);
183 wxColor darker4_colour
= wxAuiStepColour(m_base_colour
, 50);
184 wxColor darker5_colour
= wxAuiStepColour(m_base_colour
, 40);
186 m_gripper_pen1
= wxPen(darker5_colour
);
187 m_gripper_pen2
= wxPen(darker3_colour
);
188 m_gripper_pen3
= *wxWHITE_PEN
;
190 static unsigned char button_dropdown_bits
[] = { 0xe0, 0xf1, 0xfb };
191 static unsigned char overflow_bits
[] = { 0x80, 0xff, 0x80, 0xc1, 0xe3, 0xf7 };
193 m_button_dropdown_bmp
= wxAuiBitmapFromBits(button_dropdown_bits
, 5, 3,
195 m_disabled_button_dropdown_bmp
= wxAuiBitmapFromBits(
196 button_dropdown_bits
, 5, 3,
197 wxColor(128,128,128));
198 m_overflow_bmp
= wxAuiBitmapFromBits(overflow_bits
, 7, 6, *wxBLACK
);
199 m_disabled_overflow_bmp
= wxAuiBitmapFromBits(overflow_bits
, 7, 6, wxColor(128,128,128));
201 m_font
= *wxNORMAL_FONT
;
204 wxAuiDefaultToolBarArt::~wxAuiDefaultToolBarArt()
206 m_font
= *wxNORMAL_FONT
;
210 wxAuiToolBarArt
* wxAuiDefaultToolBarArt::Clone()
212 return static_cast<wxAuiToolBarArt
*>(new wxAuiDefaultToolBarArt
);
215 void wxAuiDefaultToolBarArt::SetFlags(unsigned int flags
)
220 void wxAuiDefaultToolBarArt::SetFont(const wxFont
& font
)
225 void wxAuiDefaultToolBarArt::SetTextOrientation(int orientation
)
227 m_text_orientation
= orientation
;
230 void wxAuiDefaultToolBarArt::DrawBackground(
232 wxWindow
* WXUNUSED(wnd
),
237 wxColour start_colour
= wxAuiStepColour(m_base_colour
, 150);
238 wxColour end_colour
= wxAuiStepColour(m_base_colour
, 90);
239 dc
.GradientFillLinear(rect
, start_colour
, end_colour
, wxSOUTH
);
242 void wxAuiDefaultToolBarArt::DrawLabel(
244 wxWindow
* WXUNUSED(wnd
),
245 const wxAuiToolBarItem
& item
,
249 dc
.SetTextForeground(*wxBLACK
);
251 // we only care about the text height here since the text
252 // will get cropped based on the width of the item
253 int text_width
= 0, text_height
= 0;
254 dc
.GetTextExtent(wxT("ABCDHgj"), &text_width
, &text_height
);
256 // set the clipping region
257 wxRect clip_rect
= rect
;
258 clip_rect
.width
-= 1;
259 dc
.SetClippingRegion(clip_rect
);
263 text_y
= rect
.y
+ (rect
.height
-text_height
)/2;
264 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
265 dc
.DestroyClippingRegion();
269 void wxAuiDefaultToolBarArt::DrawButton(
271 wxWindow
* WXUNUSED(wnd
),
272 const wxAuiToolBarItem
& item
,
275 int text_width
= 0, text_height
= 0;
277 if (m_flags
& wxAUI_TB_TEXT
)
283 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
285 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
288 int bmp_x
= 0, bmp_y
= 0;
289 int text_x
= 0, text_y
= 0;
291 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
295 (item
.GetBitmap().GetWidth()/2);
298 ((rect
.height
-text_height
)/2) -
299 (item
.GetBitmap().GetHeight()/2);
301 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
302 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
304 else if (m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
)
310 (item
.GetBitmap().GetHeight()/2);
312 text_x
= bmp_x
+ 3 + item
.GetBitmap().GetWidth();
319 if (!(item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
))
321 if (item
.GetState() & wxAUI_BUTTON_STATE_PRESSED
)
323 dc
.SetPen(wxPen(m_highlight_colour
));
324 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 150)));
325 dc
.DrawRectangle(rect
);
327 else if ((item
.GetState() & wxAUI_BUTTON_STATE_HOVER
) || item
.IsSticky())
329 dc
.SetPen(wxPen(m_highlight_colour
));
330 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
332 // draw an even lighter background for checked item hovers (since
333 // the hover background is the same color as the check background)
334 if (item
.GetState() & wxAUI_BUTTON_STATE_CHECKED
)
335 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 180)));
337 dc
.DrawRectangle(rect
);
339 else if (item
.GetState() & wxAUI_BUTTON_STATE_CHECKED
)
341 // it's important to put this code in an else statment after the
342 // hover, otherwise hovers won't draw properly for checked items
343 dc
.SetPen(wxPen(m_highlight_colour
));
344 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
345 dc
.DrawRectangle(rect
);
350 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
351 bmp
= item
.GetDisabledBitmap();
353 bmp
= item
.GetBitmap();
358 dc
.DrawBitmap(bmp
, bmp_x
, bmp_y
, true);
360 // set the item's text color based on if it is disabled
361 dc
.SetTextForeground(*wxBLACK
);
362 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
363 dc
.SetTextForeground(DISABLED_TEXT_COLOR
);
365 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
367 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
372 void wxAuiDefaultToolBarArt::DrawDropDownButton(
374 wxWindow
* WXUNUSED(wnd
),
375 const wxAuiToolBarItem
& item
,
378 int text_width
= 0, text_height
= 0, text_x
= 0, text_y
= 0;
379 int bmp_x
= 0, bmp_y
= 0, dropbmp_x
= 0, dropbmp_y
= 0;
381 wxRect button_rect
= wxRect(rect
.x
,
383 rect
.width
-BUTTON_DROPDOWN_WIDTH
,
385 wxRect dropdown_rect
= wxRect(rect
.x
+rect
.width
-BUTTON_DROPDOWN_WIDTH
-1,
387 BUTTON_DROPDOWN_WIDTH
+1,
390 if (m_flags
& wxAUI_TB_TEXT
)
395 if (m_flags
& wxAUI_TB_TEXT
)
397 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
401 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
406 dropbmp_x
= dropdown_rect
.x
+
407 (dropdown_rect
.width
/2) -
408 (m_button_dropdown_bmp
.GetWidth()/2);
409 dropbmp_y
= dropdown_rect
.y
+
410 (dropdown_rect
.height
/2) -
411 (m_button_dropdown_bmp
.GetHeight()/2);
414 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
416 bmp_x
= button_rect
.x
+
417 (button_rect
.width
/2) -
418 (item
.GetBitmap().GetWidth()/2);
419 bmp_y
= button_rect
.y
+
420 ((button_rect
.height
-text_height
)/2) -
421 (item
.GetBitmap().GetHeight()/2);
423 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
424 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
426 else if (m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
)
432 (item
.GetBitmap().GetHeight()/2);
434 text_x
= bmp_x
+ 3 + item
.GetBitmap().GetWidth();
441 if (item
.GetState() & wxAUI_BUTTON_STATE_PRESSED
)
443 dc
.SetPen(wxPen(m_highlight_colour
));
444 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 140)));
445 dc
.DrawRectangle(button_rect
);
446 dc
.DrawRectangle(dropdown_rect
);
448 else if (item
.GetState() & wxAUI_BUTTON_STATE_HOVER
||
451 dc
.SetPen(wxPen(m_highlight_colour
));
452 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
453 dc
.DrawRectangle(button_rect
);
454 dc
.DrawRectangle(dropdown_rect
);
459 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
461 bmp
= item
.GetDisabledBitmap();
462 dropbmp
= m_disabled_button_dropdown_bmp
;
466 bmp
= item
.GetBitmap();
467 dropbmp
= m_button_dropdown_bmp
;
473 dc
.DrawBitmap(bmp
, bmp_x
, bmp_y
, true);
474 dc
.DrawBitmap(dropbmp
, dropbmp_x
, dropbmp_y
, true);
476 // set the item's text color based on if it is disabled
477 dc
.SetTextForeground(*wxBLACK
);
478 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
479 dc
.SetTextForeground(DISABLED_TEXT_COLOR
);
481 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
483 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
487 void wxAuiDefaultToolBarArt::DrawControlLabel(
489 wxWindow
* WXUNUSED(wnd
),
490 const wxAuiToolBarItem
& item
,
493 if (!(m_flags
& wxAUI_TB_TEXT
))
496 if (m_text_orientation
!= wxAUI_TBTOOL_TEXT_BOTTOM
)
499 int text_x
= 0, text_y
= 0;
500 int text_width
= 0, text_height
= 0;
505 if (m_flags
& wxAUI_TB_TEXT
)
507 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
511 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
513 // don't draw the label if it is wider than the item width
514 if (text_width
> rect
.width
)
517 // set the label's text color
518 dc
.SetTextForeground(*wxBLACK
);
520 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
521 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
523 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
525 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
529 wxSize
wxAuiDefaultToolBarArt::GetLabelSize(
531 wxWindow
* WXUNUSED(wnd
),
532 const wxAuiToolBarItem
& item
)
536 // get label's height
537 int width
= 0, height
= 0;
538 dc
.GetTextExtent(wxT("ABCDHgj"), &width
, &height
);
541 width
= item
.GetMinSize().GetWidth();
543 return wxSize(width
, height
);
546 wxSize
wxAuiDefaultToolBarArt::GetToolSize(
548 wxWindow
* WXUNUSED(wnd
),
549 const wxAuiToolBarItem
& item
)
551 if (!item
.GetBitmap().IsOk() && !(m_flags
& wxAUI_TB_TEXT
))
552 return wxSize(16,16);
554 int width
= item
.GetBitmap().GetWidth();
555 int height
= item
.GetBitmap().GetHeight();
557 if (m_flags
& wxAUI_TB_TEXT
)
562 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
564 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &ty
);
567 if ( !item
.GetLabel().empty() )
569 dc
.GetTextExtent(item
.GetLabel(), &tx
, &ty
);
570 width
= wxMax(width
, tx
+6);
573 else if ( m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
&&
574 !item
.GetLabel().empty() )
576 width
+= 3; // space between left border and bitmap
577 width
+= 3; // space between bitmap and text
579 if ( !item
.GetLabel().empty() )
581 dc
.GetTextExtent(item
.GetLabel(), &tx
, &ty
);
583 height
= wxMax(height
, ty
);
588 // if the tool has a dropdown button, add it to the width
589 if (item
.HasDropDown())
590 width
+= (BUTTON_DROPDOWN_WIDTH
+4);
592 return wxSize(width
, height
);
595 void wxAuiDefaultToolBarArt::DrawSeparator(
597 wxWindow
* WXUNUSED(wnd
),
600 bool horizontal
= true;
601 if (m_flags
& wxAUI_TB_VERTICAL
)
608 rect
.x
+= (rect
.width
/2);
610 int new_height
= (rect
.height
*3)/4;
611 rect
.y
+= (rect
.height
/2) - (new_height
/2);
612 rect
.height
= new_height
;
616 rect
.y
+= (rect
.height
/2);
618 int new_width
= (rect
.width
*3)/4;
619 rect
.x
+= (rect
.width
/2) - (new_width
/2);
620 rect
.width
= new_width
;
623 wxColour start_colour
= wxAuiStepColour(m_base_colour
, 80);
624 wxColour end_colour
= wxAuiStepColour(m_base_colour
, 80);
625 dc
.GradientFillLinear(rect
, start_colour
, end_colour
, horizontal
? wxSOUTH
: wxEAST
);
628 void wxAuiDefaultToolBarArt::DrawGripper(wxDC
& dc
,
629 wxWindow
* WXUNUSED(wnd
),
637 if (m_flags
& wxAUI_TB_VERTICAL
)
639 x
= rect
.x
+ (i
*4) + 5;
641 if (x
> rect
.GetWidth()-5)
647 y
= rect
.y
+ (i
*4) + 5;
648 if (y
> rect
.GetHeight()-5)
652 dc
.SetPen(m_gripper_pen1
);
654 dc
.SetPen(m_gripper_pen2
);
655 dc
.DrawPoint(x
, y
+1);
656 dc
.DrawPoint(x
+1, y
);
657 dc
.SetPen(m_gripper_pen3
);
658 dc
.DrawPoint(x
+2, y
+1);
659 dc
.DrawPoint(x
+2, y
+2);
660 dc
.DrawPoint(x
+1, y
+2);
667 void wxAuiDefaultToolBarArt::DrawOverflowButton(wxDC
& dc
,
672 if (state
& wxAUI_BUTTON_STATE_HOVER
||
673 state
& wxAUI_BUTTON_STATE_PRESSED
)
675 wxRect cli_rect
= wnd
->GetClientRect();
676 wxColor light_gray_bg
= wxAuiStepColour(m_highlight_colour
, 170);
678 if (m_flags
& wxAUI_TB_VERTICAL
)
680 dc
.SetPen(wxPen(m_highlight_colour
));
681 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
+rect
.width
, rect
.y
);
682 dc
.SetPen(wxPen(light_gray_bg
));
683 dc
.SetBrush(wxBrush(light_gray_bg
));
684 dc
.DrawRectangle(rect
.x
, rect
.y
+1, rect
.width
, rect
.height
);
688 dc
.SetPen(wxPen(m_highlight_colour
));
689 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
, rect
.y
+rect
.height
);
690 dc
.SetPen(wxPen(light_gray_bg
));
691 dc
.SetBrush(wxBrush(light_gray_bg
));
692 dc
.DrawRectangle(rect
.x
+1, rect
.y
, rect
.width
, rect
.height
);
696 int x
= rect
.x
+1+(rect
.width
-m_overflow_bmp
.GetWidth())/2;
697 int y
= rect
.y
+1+(rect
.height
-m_overflow_bmp
.GetHeight())/2;
698 dc
.DrawBitmap(m_overflow_bmp
, x
, y
, true);
701 int wxAuiDefaultToolBarArt::GetElementSize(int element_id
)
705 case wxAUI_TBART_SEPARATOR_SIZE
: return m_separator_size
;
706 case wxAUI_TBART_GRIPPER_SIZE
: return m_gripper_size
;
707 case wxAUI_TBART_OVERFLOW_SIZE
: return m_overflow_size
;
712 void wxAuiDefaultToolBarArt::SetElementSize(int element_id
, int size
)
716 case wxAUI_TBART_SEPARATOR_SIZE
: m_separator_size
= size
;
717 case wxAUI_TBART_GRIPPER_SIZE
: m_gripper_size
= size
;
718 case wxAUI_TBART_OVERFLOW_SIZE
: m_overflow_size
= size
;
722 int wxAuiDefaultToolBarArt::ShowDropDown(wxWindow
* wnd
,
723 const wxAuiToolBarItemArray
& items
)
727 size_t items_added
= 0;
729 size_t i
, count
= items
.GetCount();
730 for (i
= 0; i
< count
; ++i
)
732 wxAuiToolBarItem
& item
= items
.Item(i
);
734 if (item
.GetKind() == wxITEM_NORMAL
)
736 wxString text
= item
.GetShortHelp();
738 text
= item
.GetLabel();
743 wxMenuItem
* m
= new wxMenuItem(&menuPopup
, item
.GetId(), text
, item
.GetShortHelp());
745 m
->SetBitmap(item
.GetBitmap());
749 else if (item
.GetKind() == wxITEM_SEPARATOR
)
752 menuPopup
.AppendSeparator();
756 // find out where to put the popup menu of window items
757 wxPoint pt
= ::wxGetMousePosition();
758 pt
= wnd
->ScreenToClient(pt
);
760 // find out the screen coordinate at the bottom of the tab ctrl
761 wxRect cli_rect
= wnd
->GetClientRect();
762 pt
.y
= cli_rect
.y
+ cli_rect
.height
;
764 ToolbarCommandCapture
* cc
= new ToolbarCommandCapture
;
765 wnd
->PushEventHandler(cc
);
766 wnd
->PopupMenu(&menuPopup
, pt
);
767 int command
= cc
->GetCommandId();
768 wnd
->PopEventHandler(true);
776 BEGIN_EVENT_TABLE(wxAuiToolBar
, wxControl
)
777 EVT_SIZE(wxAuiToolBar::OnSize
)
778 EVT_IDLE(wxAuiToolBar::OnIdle
)
779 EVT_ERASE_BACKGROUND(wxAuiToolBar::OnEraseBackground
)
780 EVT_PAINT(wxAuiToolBar::OnPaint
)
781 EVT_LEFT_DOWN(wxAuiToolBar::OnLeftDown
)
782 EVT_LEFT_DCLICK(wxAuiToolBar::OnLeftDown
)
783 EVT_LEFT_UP(wxAuiToolBar::OnLeftUp
)
784 EVT_RIGHT_DOWN(wxAuiToolBar::OnRightDown
)
785 EVT_RIGHT_DCLICK(wxAuiToolBar::OnRightDown
)
786 EVT_RIGHT_UP(wxAuiToolBar::OnRightUp
)
787 EVT_MIDDLE_DOWN(wxAuiToolBar::OnMiddleDown
)
788 EVT_MIDDLE_DCLICK(wxAuiToolBar::OnMiddleDown
)
789 EVT_MIDDLE_UP(wxAuiToolBar::OnMiddleUp
)
790 EVT_MOTION(wxAuiToolBar::OnMotion
)
791 EVT_LEAVE_WINDOW(wxAuiToolBar::OnLeaveWindow
)
792 EVT_SET_CURSOR(wxAuiToolBar::OnSetCursor
)
796 wxAuiToolBar::wxAuiToolBar(wxWindow
* parent
,
798 const wxPoint
& position
,
805 style
| wxBORDER_NONE
)
807 m_sizer
= new wxBoxSizer(wxHORIZONTAL
);
809 m_button_height
= -1;
810 m_sizer_element_count
= 0;
811 m_action_pos
= wxPoint(-1,-1);
812 m_action_item
= NULL
;
814 m_art
= new wxAuiDefaultToolBarArt
;
816 m_tool_border_padding
= 3;
817 m_tool_text_orientation
= wxAUI_TBTOOL_TEXT_BOTTOM
;
818 m_gripper_sizer_item
= NULL
;
819 m_overflow_sizer_item
= NULL
;
822 m_gripper_visible
= (m_style
& wxAUI_TB_GRIPPER
) ? true : false;
823 m_overflow_visible
= (m_style
& wxAUI_TB_OVERFLOW
) ? true : false;
824 m_overflow_state
= 0;
825 SetMargins(5, 5, 2, 2);
826 SetFont(*wxNORMAL_FONT
);
827 m_art
->SetFlags((unsigned int)m_style
);
828 SetExtraStyle(wxWS_EX_PROCESS_IDLE
);
829 if (style
& wxAUI_TB_HORZ_LAYOUT
)
830 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_RIGHT
);
834 wxAuiToolBar::~wxAuiToolBar()
840 void wxAuiToolBar::SetWindowStyleFlag(long style
)
842 wxControl::SetWindowStyleFlag(style
);
848 m_art
->SetFlags((unsigned int)m_style
);
851 if (m_style
& wxAUI_TB_GRIPPER
)
852 m_gripper_visible
= true;
854 m_gripper_visible
= false;
857 if (m_style
& wxAUI_TB_OVERFLOW
)
858 m_overflow_visible
= true;
860 m_overflow_visible
= false;
862 if (style
& wxAUI_TB_HORZ_LAYOUT
)
863 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_RIGHT
);
865 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_BOTTOM
);
869 void wxAuiToolBar::SetArtProvider(wxAuiToolBarArt
* art
)
877 m_art
->SetFlags((unsigned int)m_style
);
878 m_art
->SetTextOrientation(m_tool_text_orientation
);
882 wxAuiToolBarArt
* wxAuiToolBar::GetArtProvider() const
890 void wxAuiToolBar::AddTool(int tool_id
,
891 const wxString
& label
,
892 const wxBitmap
& bitmap
,
893 const wxString
& short_help_string
,
907 void wxAuiToolBar::AddTool(int tool_id
,
908 const wxString
& label
,
909 const wxBitmap
& bitmap
,
910 const wxBitmap
& disabled_bitmap
,
912 const wxString
& short_help_string
,
913 const wxString
& long_help_string
,
914 wxObject
* WXUNUSED(client_data
))
916 wxAuiToolBarItem item
;
919 item
.bitmap
= bitmap
;
920 item
.disabled_bitmap
= disabled_bitmap
;
921 item
.short_help
= short_help_string
;
922 item
.long_help
= long_help_string
;
924 item
.dropdown
= false;
925 item
.spacer_pixels
= 0;
930 item
.sizer_item
= NULL
;
931 item
.min_size
= wxDefaultSize
;
935 if (!item
.disabled_bitmap
.IsOk())
937 // no disabled bitmap specified, we need to make one
938 if (item
.bitmap
.IsOk())
940 //wxImage img = item.bitmap.ConvertToImage();
941 //wxImage grey_version = img.ConvertToGreyscale();
942 //item.disabled_bitmap = wxBitmap(grey_version);
943 item
.disabled_bitmap
= MakeDisabledBitmap(item
.bitmap
);
950 void wxAuiToolBar::AddControl(wxControl
* control
,
951 const wxString
& label
)
953 wxAuiToolBarItem item
;
954 item
.window
= (wxWindow
*)control
;
956 item
.bitmap
= wxNullBitmap
;
957 item
.disabled_bitmap
= wxNullBitmap
;
959 item
.dropdown
= false;
960 item
.spacer_pixels
= 0;
961 item
.id
= control
->GetId();
964 item
.kind
= wxITEM_CONTROL
;
965 item
.sizer_item
= NULL
;
966 item
.min_size
= control
->GetEffectiveMinSize();
973 void wxAuiToolBar::AddLabel(int tool_id
,
974 const wxString
& label
,
977 wxSize min_size
= wxDefaultSize
;
981 wxAuiToolBarItem item
;
984 item
.bitmap
= wxNullBitmap
;
985 item
.disabled_bitmap
= wxNullBitmap
;
987 item
.dropdown
= false;
988 item
.spacer_pixels
= 0;
992 item
.kind
= wxITEM_LABEL
;
993 item
.sizer_item
= NULL
;
994 item
.min_size
= min_size
;
1001 void wxAuiToolBar::AddSeparator()
1003 wxAuiToolBarItem item
;
1005 item
.label
= wxEmptyString
;
1006 item
.bitmap
= wxNullBitmap
;
1007 item
.disabled_bitmap
= wxNullBitmap
;
1009 item
.dropdown
= false;
1012 item
.proportion
= 0;
1013 item
.kind
= wxITEM_SEPARATOR
;
1014 item
.sizer_item
= NULL
;
1015 item
.min_size
= wxDefaultSize
;
1017 item
.sticky
= false;
1022 void wxAuiToolBar::AddSpacer(int pixels
)
1024 wxAuiToolBarItem item
;
1026 item
.label
= wxEmptyString
;
1027 item
.bitmap
= wxNullBitmap
;
1028 item
.disabled_bitmap
= wxNullBitmap
;
1030 item
.dropdown
= false;
1031 item
.spacer_pixels
= pixels
;
1034 item
.proportion
= 0;
1035 item
.kind
= wxITEM_SPACER
;
1036 item
.sizer_item
= NULL
;
1037 item
.min_size
= wxDefaultSize
;
1039 item
.sticky
= false;
1044 void wxAuiToolBar::AddStretchSpacer(int proportion
)
1046 wxAuiToolBarItem item
;
1048 item
.label
= wxEmptyString
;
1049 item
.bitmap
= wxNullBitmap
;
1050 item
.disabled_bitmap
= wxNullBitmap
;
1052 item
.dropdown
= false;
1053 item
.spacer_pixels
= 0;
1056 item
.proportion
= proportion
;
1057 item
.kind
= wxITEM_SPACER
;
1058 item
.sizer_item
= NULL
;
1059 item
.min_size
= wxDefaultSize
;
1061 item
.sticky
= false;
1066 void wxAuiToolBar::Clear()
1069 m_sizer_element_count
= 0;
1072 bool wxAuiToolBar::DeleteTool(int tool_id
)
1074 int idx
= GetToolIndex(tool_id
);
1075 if (idx
>= 0 && idx
< (int)m_items
.GetCount())
1077 m_items
.RemoveAt(idx
);
1085 bool wxAuiToolBar::DeleteByIndex(int idx
)
1087 if (idx
>= 0 && idx
< (int)m_items
.GetCount())
1089 m_items
.RemoveAt(idx
);
1098 wxControl
* wxAuiToolBar::FindControl(int id
)
1100 wxWindow
* wnd
= FindWindow(id
);
1101 return (wxControl
*)wnd
;
1104 wxAuiToolBarItem
* wxAuiToolBar::FindTool(int tool_id
) const
1107 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1109 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1110 if (item
.id
== tool_id
)
1117 wxAuiToolBarItem
* wxAuiToolBar::FindToolByPosition(wxCoord x
, wxCoord y
) const
1120 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1122 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1124 if (!item
.sizer_item
)
1127 wxRect rect
= item
.sizer_item
->GetRect();
1128 if (rect
.Contains(x
,y
))
1130 // if the item doesn't fit on the toolbar, return NULL
1131 if (!GetToolFitsByIndex(i
))
1141 wxAuiToolBarItem
* wxAuiToolBar::FindToolByPositionWithPacking(wxCoord x
, wxCoord y
) const
1144 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1146 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1148 if (!item
.sizer_item
)
1151 wxRect rect
= item
.sizer_item
->GetRect();
1153 // apply tool packing
1155 rect
.width
+= m_tool_packing
;
1157 if (rect
.Contains(x
,y
))
1159 // if the item doesn't fit on the toolbar, return NULL
1160 if (!GetToolFitsByIndex(i
))
1170 wxAuiToolBarItem
* wxAuiToolBar::FindToolByIndex(int idx
) const
1175 if (idx
>= (int)m_items
.size())
1178 return &(m_items
[idx
]);
1181 void wxAuiToolBar::SetToolBitmapSize(const wxSize
& WXUNUSED(size
))
1183 // TODO: wxToolBar compatibility
1186 wxSize
wxAuiToolBar::GetToolBitmapSize() const
1188 // TODO: wxToolBar compatibility
1189 return wxSize(16,15);
1192 void wxAuiToolBar::SetToolProportion(int tool_id
, int proportion
)
1194 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1198 item
->proportion
= proportion
;
1201 int wxAuiToolBar::GetToolProportion(int tool_id
) const
1203 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1207 return item
->proportion
;
1210 void wxAuiToolBar::SetToolSeparation(int separation
)
1213 m_art
->SetElementSize(wxAUI_TBART_SEPARATOR_SIZE
, separation
);
1216 int wxAuiToolBar::GetToolSeparation() const
1219 return m_art
->GetElementSize(wxAUI_TBART_SEPARATOR_SIZE
);
1225 void wxAuiToolBar::SetToolDropDown(int tool_id
, bool dropdown
)
1227 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1231 item
->dropdown
= dropdown
;
1234 bool wxAuiToolBar::GetToolDropDown(int tool_id
) const
1236 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1240 return item
->dropdown
;
1243 void wxAuiToolBar::SetToolSticky(int tool_id
, bool sticky
)
1245 // ignore separators
1249 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1253 if (item
->sticky
== sticky
)
1256 item
->sticky
= sticky
;
1262 bool wxAuiToolBar::GetToolSticky(int tool_id
) const
1264 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1268 return item
->sticky
;
1274 void wxAuiToolBar::SetToolBorderPadding(int padding
)
1276 m_tool_border_padding
= padding
;
1279 int wxAuiToolBar::GetToolBorderPadding() const
1281 return m_tool_border_padding
;
1284 void wxAuiToolBar::SetToolTextOrientation(int orientation
)
1286 m_tool_text_orientation
= orientation
;
1290 m_art
->SetTextOrientation(orientation
);
1294 int wxAuiToolBar::GetToolTextOrientation() const
1296 return m_tool_text_orientation
;
1299 void wxAuiToolBar::SetToolPacking(int packing
)
1301 m_tool_packing
= packing
;
1304 int wxAuiToolBar::GetToolPacking() const
1306 return m_tool_packing
;
1310 void wxAuiToolBar::SetOrientation(int WXUNUSED(orientation
))
1314 void wxAuiToolBar::SetMargins(int left
, int right
, int top
, int bottom
)
1317 m_left_padding
= left
;
1319 m_right_padding
= right
;
1321 m_top_padding
= top
;
1323 m_bottom_padding
= bottom
;
1326 bool wxAuiToolBar::GetGripperVisible() const
1328 return m_gripper_visible
;
1331 void wxAuiToolBar::SetGripperVisible(bool visible
)
1333 m_gripper_visible
= visible
;
1335 m_style
|= wxAUI_TB_GRIPPER
;
1341 bool wxAuiToolBar::GetOverflowVisible() const
1343 return m_overflow_visible
;
1346 void wxAuiToolBar::SetOverflowVisible(bool visible
)
1348 m_overflow_visible
= visible
;
1350 m_style
|= wxAUI_TB_OVERFLOW
;
1354 bool wxAuiToolBar::SetFont(const wxFont
& font
)
1356 bool res
= wxWindow::SetFont(font
);
1360 m_art
->SetFont(font
);
1367 void wxAuiToolBar::SetHoverItem(wxAuiToolBarItem
* pitem
)
1369 wxAuiToolBarItem
* former_hover
= NULL
;
1372 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1374 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1375 if (item
.state
& wxAUI_BUTTON_STATE_HOVER
)
1376 former_hover
= &item
;
1377 item
.state
&= ~wxAUI_BUTTON_STATE_HOVER
;
1382 pitem
->state
|= wxAUI_BUTTON_STATE_HOVER
;
1385 if (former_hover
!= pitem
)
1392 void wxAuiToolBar::SetPressedItem(wxAuiToolBarItem
* pitem
)
1394 wxAuiToolBarItem
* former_item
= NULL
;
1397 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1399 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1400 if (item
.state
& wxAUI_BUTTON_STATE_PRESSED
)
1401 former_item
= &item
;
1402 item
.state
&= ~wxAUI_BUTTON_STATE_PRESSED
;
1407 pitem
->state
&= ~wxAUI_BUTTON_STATE_HOVER
;
1408 pitem
->state
|= wxAUI_BUTTON_STATE_PRESSED
;
1411 if (former_item
!= pitem
)
1418 void wxAuiToolBar::RefreshOverflowState()
1420 if (!m_overflow_sizer_item
)
1422 m_overflow_state
= 0;
1426 int overflow_state
= 0;
1428 wxRect overflow_rect
= GetOverflowRect();
1431 // find out the mouse's current position
1432 wxPoint pt
= ::wxGetMousePosition();
1433 pt
= this->ScreenToClient(pt
);
1435 // find out if the mouse cursor is inside the dropdown rectangle
1436 if (overflow_rect
.Contains(pt
.x
, pt
.y
))
1438 if (::wxGetMouseState().LeftDown())
1439 overflow_state
= wxAUI_BUTTON_STATE_PRESSED
;
1441 overflow_state
= wxAUI_BUTTON_STATE_HOVER
;
1444 if (overflow_state
!= m_overflow_state
)
1446 m_overflow_state
= overflow_state
;
1451 m_overflow_state
= overflow_state
;
1454 void wxAuiToolBar::ToggleTool(int tool_id
, bool state
)
1456 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1460 if (tool
->kind
!= wxITEM_CHECK
)
1464 tool
->state
|= wxAUI_BUTTON_STATE_CHECKED
;
1466 tool
->state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
1470 bool wxAuiToolBar::GetToolToggled(int tool_id
) const
1472 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1476 if (tool
->kind
!= wxITEM_CHECK
)
1479 return (tool
->state
& wxAUI_BUTTON_STATE_CHECKED
) ? true : false;
1485 void wxAuiToolBar::EnableTool(int tool_id
, bool state
)
1487 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1492 tool
->state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
1494 tool
->state
|= wxAUI_BUTTON_STATE_DISABLED
;
1498 bool wxAuiToolBar::GetToolEnabled(int tool_id
) const
1500 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1503 return (tool
->state
& wxAUI_BUTTON_STATE_DISABLED
) ? false : true;
1508 wxString
wxAuiToolBar::GetToolLabel(int tool_id
) const
1510 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1511 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1513 return wxEmptyString
;
1518 void wxAuiToolBar::SetToolLabel(int tool_id
, const wxString
& label
)
1520 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1523 tool
->label
= label
;
1527 wxBitmap
wxAuiToolBar::GetToolBitmap(int tool_id
) const
1529 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1530 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1532 return wxNullBitmap
;
1534 return tool
->bitmap
;
1537 void wxAuiToolBar::SetToolBitmap(int tool_id
, const wxBitmap
& bitmap
)
1539 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1542 tool
->bitmap
= bitmap
;
1546 wxString
wxAuiToolBar::GetToolShortHelp(int tool_id
) const
1548 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1549 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1551 return wxEmptyString
;
1553 return tool
->short_help
;
1556 void wxAuiToolBar::SetToolShortHelp(int tool_id
, const wxString
& help_string
)
1558 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1561 tool
->short_help
= help_string
;
1565 wxString
wxAuiToolBar::GetToolLongHelp(int tool_id
) const
1567 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1568 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1570 return wxEmptyString
;
1572 return tool
->long_help
;
1575 void wxAuiToolBar::SetToolLongHelp(int tool_id
, const wxString
& help_string
)
1577 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1580 tool
->long_help
= help_string
;
1584 void wxAuiToolBar::SetCustomOverflowItems(const wxAuiToolBarItemArray
& prepend
,
1585 const wxAuiToolBarItemArray
& append
)
1587 m_custom_overflow_prepend
= prepend
;
1588 m_custom_overflow_append
= append
;
1592 size_t wxAuiToolBar::GetToolCount() const
1594 return m_items
.size();
1597 int wxAuiToolBar::GetToolIndex(int tool_id
) const
1599 // this will prevent us from returning the index of the
1600 // first separator in the toolbar since its id is equal to -1
1604 size_t i
, count
= m_items
.GetCount();
1605 for (i
= 0; i
< count
; ++i
)
1607 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1608 if (item
.id
== tool_id
)
1615 bool wxAuiToolBar::GetToolFitsByIndex(int tool_idx
) const
1617 if (tool_idx
< 0 || tool_idx
>= (int)m_items
.GetCount())
1620 if (!m_items
[tool_idx
].sizer_item
)
1624 GetClientSize(&cli_w
, &cli_h
);
1626 wxRect rect
= m_items
[tool_idx
].sizer_item
->GetRect();
1628 if (m_style
& wxAUI_TB_VERTICAL
)
1630 // take the dropdown size into account
1631 if (m_overflow_visible
)
1632 cli_h
-= m_overflow_sizer_item
->GetSize().y
;
1634 if (rect
.y
+rect
.height
< cli_h
)
1639 // take the dropdown size into account
1640 if (m_overflow_visible
)
1641 cli_w
-= m_overflow_sizer_item
->GetSize().x
;
1643 if (rect
.x
+rect
.width
< cli_w
)
1651 bool wxAuiToolBar::GetToolFits(int tool_id
) const
1653 return GetToolFitsByIndex(GetToolIndex(tool_id
));
1656 wxRect
wxAuiToolBar::GetToolRect(int tool_id
) const
1658 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1659 if (tool
&& tool
->sizer_item
)
1661 return tool
->sizer_item
->GetRect();
1667 bool wxAuiToolBar::GetToolBarFits() const
1669 if (m_items
.GetCount() == 0)
1671 // empty toolbar always 'fits'
1675 // entire toolbar content fits if the last tool fits
1676 return GetToolFitsByIndex(m_items
.GetCount() - 1);
1679 bool wxAuiToolBar::Realize()
1681 wxClientDC
dc(this);
1685 bool horizontal
= true;
1686 if (m_style
& wxAUI_TB_VERTICAL
)
1690 // create the new sizer to add toolbar elements to
1691 wxBoxSizer
* sizer
= new wxBoxSizer(horizontal
? wxHORIZONTAL
: wxVERTICAL
);
1694 int separator_size
= m_art
->GetElementSize(wxAUI_TBART_SEPARATOR_SIZE
);
1695 int gripper_size
= m_art
->GetElementSize(wxAUI_TBART_GRIPPER_SIZE
);
1696 if (gripper_size
> 0 && m_gripper_visible
)
1699 m_gripper_sizer_item
= sizer
->Add(gripper_size
, 1, 0, wxEXPAND
);
1701 m_gripper_sizer_item
= sizer
->Add(1, gripper_size
, 0, wxEXPAND
);
1705 m_gripper_sizer_item
= NULL
;
1708 // add "left" padding
1709 if (m_left_padding
> 0)
1712 sizer
->Add(m_left_padding
, 1);
1714 sizer
->Add(1, m_left_padding
);
1718 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1720 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1721 wxSizerItem
* sizer_item
= NULL
;
1727 wxSize size
= m_art
->GetLabelSize(dc
, this, item
);
1728 sizer_item
= sizer
->Add(size
.x
+ (m_tool_border_padding
*2),
1729 size
.y
+ (m_tool_border_padding
*2),
1734 sizer
->AddSpacer(m_tool_packing
);
1743 wxSize size
= m_art
->GetToolSize(dc
, this, item
);
1744 sizer_item
= sizer
->Add(size
.x
+ (m_tool_border_padding
*2),
1745 size
.y
+ (m_tool_border_padding
*2),
1751 sizer
->AddSpacer(m_tool_packing
);
1757 case wxITEM_SEPARATOR
:
1760 sizer_item
= sizer
->Add(separator_size
, 1, 0, wxEXPAND
);
1762 sizer_item
= sizer
->Add(1, separator_size
, 0, wxEXPAND
);
1767 sizer
->AddSpacer(m_tool_packing
);
1774 if (item
.proportion
> 0)
1775 sizer_item
= sizer
->AddStretchSpacer(item
.proportion
);
1777 sizer_item
= sizer
->Add(item
.spacer_pixels
, 1);
1780 case wxITEM_CONTROL
:
1782 //sizer_item = sizer->Add(item.window, item.proportion, wxEXPAND);
1783 wxSizerItem
* ctrl_sizer_item
;
1785 wxBoxSizer
* vert_sizer
= new wxBoxSizer(wxVERTICAL
);
1786 vert_sizer
->AddStretchSpacer(1);
1787 ctrl_sizer_item
= vert_sizer
->Add(item
.window
, 0, wxEXPAND
);
1788 vert_sizer
->AddStretchSpacer(1);
1789 if ( (m_style
& wxAUI_TB_TEXT
) &&
1790 m_tool_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
&&
1791 !item
.GetLabel().empty() )
1793 wxSize s
= GetLabelSize(item
.GetLabel());
1794 vert_sizer
->Add(1, s
.y
);
1798 sizer_item
= sizer
->Add(vert_sizer
, item
.proportion
, wxEXPAND
);
1800 wxSize min_size
= item
.min_size
;
1803 // proportional items will disappear from the toolbar if
1804 // their min width is not set to something really small
1805 if (item
.proportion
!= 0)
1810 if (min_size
.IsFullySpecified())
1812 sizer_item
->SetMinSize(min_size
);
1813 ctrl_sizer_item
->SetMinSize(min_size
);
1819 sizer
->AddSpacer(m_tool_packing
);
1824 item
.sizer_item
= sizer_item
;
1827 // add "right" padding
1828 if (m_right_padding
> 0)
1831 sizer
->Add(m_right_padding
, 1);
1833 sizer
->Add(1, m_right_padding
);
1836 // add drop down area
1837 m_overflow_sizer_item
= NULL
;
1839 if (m_style
& wxAUI_TB_OVERFLOW
)
1841 int overflow_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
1842 if (overflow_size
> 0 && m_overflow_visible
)
1845 m_overflow_sizer_item
= sizer
->Add(overflow_size
, 1, 0, wxEXPAND
);
1847 m_overflow_sizer_item
= sizer
->Add(1, overflow_size
, 0, wxEXPAND
);
1851 m_overflow_sizer_item
= NULL
;
1856 // the outside sizer helps us apply the "top" and "bottom" padding
1857 wxBoxSizer
* outside_sizer
= new wxBoxSizer(horizontal
? wxVERTICAL
: wxHORIZONTAL
);
1859 // add "top" padding
1860 if (m_top_padding
> 0)
1863 outside_sizer
->Add(1, m_top_padding
);
1865 outside_sizer
->Add(m_top_padding
, 1);
1868 // add the sizer that contains all of the toolbar elements
1869 outside_sizer
->Add(sizer
, 1, wxEXPAND
);
1871 // add "bottom" padding
1872 if (m_bottom_padding
> 0)
1875 outside_sizer
->Add(1, m_bottom_padding
);
1877 outside_sizer
->Add(m_bottom_padding
, 1);
1880 delete m_sizer
; // remove old sizer
1881 m_sizer
= outside_sizer
;
1883 // calculate the rock-bottom minimum size
1884 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1886 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1887 if (item
.sizer_item
&& item
.proportion
> 0 && item
.min_size
.IsFullySpecified())
1888 item
.sizer_item
->SetMinSize(0,0);
1891 m_absolute_min_size
= m_sizer
->GetMinSize();
1893 // reset the min sizes to what they were
1894 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1896 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1897 if (item
.sizer_item
&& item
.proportion
> 0 && item
.min_size
.IsFullySpecified())
1898 item
.sizer_item
->SetMinSize(item
.min_size
);
1902 wxSize size
= m_sizer
->GetMinSize();
1903 m_minWidth
= size
.x
;
1904 m_minHeight
= size
.y
;
1906 if ((m_style
& wxAUI_TB_NO_AUTORESIZE
) == 0)
1908 wxSize cur_size
= GetClientSize();
1909 wxSize new_size
= GetMinSize();
1910 if (new_size
!= cur_size
)
1912 SetClientSize(new_size
);
1916 m_sizer
->SetDimension(0, 0, cur_size
.x
, cur_size
.y
);
1921 wxSize cur_size
= GetClientSize();
1922 m_sizer
->SetDimension(0, 0, cur_size
.x
, cur_size
.y
);
1929 int wxAuiToolBar::GetOverflowState() const
1931 return m_overflow_state
;
1934 wxRect
wxAuiToolBar::GetOverflowRect() const
1936 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
1937 wxRect overflow_rect
= m_overflow_sizer_item
->GetRect();
1938 int overflow_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
1940 if (m_style
& wxAUI_TB_VERTICAL
)
1942 overflow_rect
.y
= cli_rect
.height
- overflow_size
;
1943 overflow_rect
.x
= 0;
1944 overflow_rect
.width
= cli_rect
.width
;
1945 overflow_rect
.height
= overflow_size
;
1949 overflow_rect
.x
= cli_rect
.width
- overflow_size
;
1950 overflow_rect
.y
= 0;
1951 overflow_rect
.width
= overflow_size
;
1952 overflow_rect
.height
= cli_rect
.height
;
1955 return overflow_rect
;
1958 wxSize
wxAuiToolBar::GetLabelSize(const wxString
& label
)
1960 wxClientDC
dc(this);
1963 int text_width
= 0, text_height
= 0;
1967 // get the text height
1968 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
1970 // get the text width
1971 dc
.GetTextExtent(label
, &text_width
, &ty
);
1973 return wxSize(text_width
, text_height
);
1977 void wxAuiToolBar::DoIdleUpdate()
1979 wxEvtHandler
* handler
= GetEventHandler();
1981 bool need_refresh
= false;
1984 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1986 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1991 wxUpdateUIEvent
evt(item
.id
);
1992 evt
.SetEventObject(this);
1994 if (handler
->ProcessEvent(evt
))
1996 if (evt
.GetSetEnabled())
2000 is_enabled
= item
.window
->IsEnabled();
2002 is_enabled
= (item
.state
& wxAUI_BUTTON_STATE_DISABLED
) ? false : true;
2004 bool new_enabled
= evt
.GetEnabled();
2005 if (new_enabled
!= is_enabled
)
2009 item
.window
->Enable(new_enabled
);
2014 item
.state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
2016 item
.state
|= wxAUI_BUTTON_STATE_DISABLED
;
2018 need_refresh
= true;
2022 if (evt
.GetSetChecked())
2024 // make sure we aren't checking an item that can't be
2025 if (item
.kind
!= wxITEM_CHECK
&& item
.kind
!= wxITEM_RADIO
)
2028 bool is_checked
= (item
.state
& wxAUI_BUTTON_STATE_CHECKED
) ? true : false;
2029 bool new_checked
= evt
.GetChecked();
2031 if (new_checked
!= is_checked
)
2034 item
.state
|= wxAUI_BUTTON_STATE_CHECKED
;
2036 item
.state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
2038 need_refresh
= true;
2053 void wxAuiToolBar::OnSize(wxSizeEvent
& WXUNUSED(evt
))
2056 GetClientSize(&x
, &y
);
2059 SetOrientation(wxHORIZONTAL
);
2061 SetOrientation(wxVERTICAL
);
2063 if (((x
>= y
) && m_absolute_min_size
.x
> x
) ||
2064 ((y
> x
) && m_absolute_min_size
.y
> y
))
2066 // hide all flexible items
2068 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2070 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2071 if (item
.sizer_item
&& item
.proportion
> 0 && item
.sizer_item
->IsShown())
2073 item
.sizer_item
->Show(false);
2074 item
.sizer_item
->SetProportion(0);
2080 // show all flexible items
2082 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2084 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2085 if (item
.sizer_item
&& item
.proportion
> 0 && !item
.sizer_item
->IsShown())
2087 item
.sizer_item
->Show(true);
2088 item
.sizer_item
->SetProportion(item
.proportion
);
2093 m_sizer
->SetDimension(0, 0, x
, y
);
2101 void wxAuiToolBar::DoSetSize(int x
,
2107 wxSize parent_size
= GetParent()->GetClientSize();
2108 if (x
+ width
> parent_size
.x
)
2109 width
= wxMax(0, parent_size
.x
- x
);
2110 if (y
+ height
> parent_size
.y
)
2111 height
= wxMax(0, parent_size
.y
- y
);
2113 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
2117 void wxAuiToolBar::OnIdle(wxIdleEvent
& evt
)
2123 void wxAuiToolBar::OnPaint(wxPaintEvent
& WXUNUSED(evt
))
2125 wxBufferedPaintDC
dc(this);
2126 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2129 bool horizontal
= true;
2130 if (m_style
& wxAUI_TB_VERTICAL
)
2134 m_art
->DrawBackground(dc
, this, cli_rect
);
2136 int gripper_size
= m_art
->GetElementSize(wxAUI_TBART_GRIPPER_SIZE
);
2137 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2139 // paint the gripper
2140 if (gripper_size
> 0 && m_gripper_sizer_item
)
2142 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2144 gripper_rect
.width
= gripper_size
;
2146 gripper_rect
.height
= gripper_size
;
2147 m_art
->DrawGripper(dc
, this, gripper_rect
);
2150 // calculated how far we can draw items
2153 last_extent
= cli_rect
.width
;
2155 last_extent
= cli_rect
.height
;
2156 if (m_overflow_visible
)
2157 last_extent
-= dropdown_size
;
2159 // paint each individual tool
2160 size_t i
, count
= m_items
.GetCount();
2161 for (i
= 0; i
< count
; ++i
)
2163 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2165 if (!item
.sizer_item
)
2168 wxRect item_rect
= item
.sizer_item
->GetRect();
2171 if ((horizontal
&& item_rect
.x
+ item_rect
.width
>= last_extent
) ||
2172 (!horizontal
&& item_rect
.y
+ item_rect
.height
>= last_extent
))
2177 if (item
.kind
== wxITEM_SEPARATOR
)
2180 m_art
->DrawSeparator(dc
, this, item_rect
);
2182 else if (item
.kind
== wxITEM_LABEL
)
2184 // draw a text label only
2185 m_art
->DrawLabel(dc
, this, item
, item_rect
);
2187 else if (item
.kind
== wxITEM_NORMAL
)
2189 // draw a regular button or dropdown button
2191 m_art
->DrawButton(dc
, this, item
, item_rect
);
2193 m_art
->DrawDropDownButton(dc
, this, item
, item_rect
);
2195 else if (item
.kind
== wxITEM_CHECK
)
2197 // draw a toggle button
2198 m_art
->DrawButton(dc
, this, item
, item_rect
);
2200 else if (item
.kind
== wxITEM_CONTROL
)
2202 // draw the control's label
2203 m_art
->DrawControlLabel(dc
, this, item
, item_rect
);
2206 // fire a signal to see if the item wants to be custom-rendered
2207 OnCustomRender(dc
, item
, item_rect
);
2210 // paint the overflow button
2211 if (dropdown_size
> 0 && m_overflow_sizer_item
)
2213 wxRect dropdown_rect
= GetOverflowRect();
2214 m_art
->DrawOverflowButton(dc
, this, dropdown_rect
, m_overflow_state
);
2218 void wxAuiToolBar::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
2223 void wxAuiToolBar::OnLeftDown(wxMouseEvent
& evt
)
2225 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2227 if (m_gripper_sizer_item
)
2229 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2230 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2233 wxAuiManager
* manager
= wxAuiManager::GetManager(this);
2237 int x_drag_offset
= evt
.GetX() - gripper_rect
.GetX();
2238 int y_drag_offset
= evt
.GetY() - gripper_rect
.GetY();
2240 // gripper was clicked
2241 manager
->StartPaneDrag(this, wxPoint(x_drag_offset
, y_drag_offset
));
2246 if (m_overflow_sizer_item
)
2248 wxRect overflow_rect
= GetOverflowRect();
2251 m_overflow_visible
&&
2252 overflow_rect
.Contains(evt
.m_x
, evt
.m_y
))
2254 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK
, -1);
2255 e
.SetEventObject(this);
2257 e
.SetClickPoint(wxPoint(evt
.GetX(), evt
.GetY()));
2258 bool processed
= ProcessEvent(e
);
2267 wxAuiToolBarItemArray overflow_items
;
2270 // add custom overflow prepend items, if any
2271 count
= m_custom_overflow_prepend
.GetCount();
2272 for (i
= 0; i
< count
; ++i
)
2273 overflow_items
.Add(m_custom_overflow_prepend
[i
]);
2275 // only show items that don't fit in the dropdown
2276 count
= m_items
.GetCount();
2277 for (i
= 0; i
< count
; ++i
)
2279 if (!GetToolFitsByIndex(i
))
2280 overflow_items
.Add(m_items
[i
]);
2283 // add custom overflow append items, if any
2284 count
= m_custom_overflow_append
.GetCount();
2285 for (i
= 0; i
< count
; ++i
)
2286 overflow_items
.Add(m_custom_overflow_append
[i
]);
2288 int res
= m_art
->ShowDropDown(this, overflow_items
);
2289 m_overflow_state
= 0;
2293 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, res
);
2294 e
.SetEventObject(this);
2295 GetParent()->ProcessEvent(e
);
2304 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2305 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2309 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2311 m_action_pos
= wxPoint(-1,-1);
2312 m_action_item
= NULL
;
2316 SetPressedItem(m_action_item
);
2318 // fire the tool dropdown event
2319 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN
, m_action_item
->id
);
2320 e
.SetEventObject(this);
2321 e
.SetToolId(m_action_item
->id
);
2322 e
.SetDropDownClicked(false);
2324 int mouse_x
= evt
.GetX();
2325 wxRect rect
= m_action_item
->sizer_item
->GetRect();
2327 if (m_action_item
->dropdown
&&
2328 mouse_x
>= (rect
.x
+rect
.width
-BUTTON_DROPDOWN_WIDTH
-1) &&
2329 mouse_x
< (rect
.x
+rect
.width
))
2331 e
.SetDropDownClicked(true);
2334 e
.SetClickPoint(evt
.GetPosition());
2335 e
.SetItemRect(rect
);
2341 void wxAuiToolBar::OnLeftUp(wxMouseEvent
& evt
)
2343 SetPressedItem(NULL
);
2345 wxAuiToolBarItem
* hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2346 if (hit_item
&& !(hit_item
->state
& wxAUI_BUTTON_STATE_DISABLED
))
2348 SetHoverItem(hit_item
);
2354 // reset drag and drop member variables
2356 m_action_pos
= wxPoint(-1,-1);
2357 m_action_item
= NULL
;
2362 wxAuiToolBarItem
* hit_item
;
2363 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2365 if (m_action_item
&& hit_item
== m_action_item
)
2369 if (hit_item
->kind
== wxITEM_CHECK
)
2371 bool toggle
= false;
2373 if (m_action_item
->state
& wxAUI_BUTTON_STATE_CHECKED
)
2378 ToggleTool(m_action_item
->id
, toggle
);
2380 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, m_action_item
->id
);
2381 e
.SetEventObject(this);
2387 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, m_action_item
->id
);
2388 e
.SetEventObject(this);
2395 // reset drag and drop member variables
2397 m_action_pos
= wxPoint(-1,-1);
2398 m_action_item
= NULL
;
2401 void wxAuiToolBar::OnRightDown(wxMouseEvent
& evt
)
2403 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2405 if (m_gripper_sizer_item
)
2407 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2408 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2412 if (m_overflow_sizer_item
)
2414 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2415 if (dropdown_size
> 0 &&
2416 evt
.m_x
> cli_rect
.width
- dropdown_size
&&
2418 evt
.m_y
< cli_rect
.height
&&
2425 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2426 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2430 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2432 m_action_pos
= wxPoint(-1,-1);
2433 m_action_item
= NULL
;
2439 void wxAuiToolBar::OnRightUp(wxMouseEvent
& evt
)
2441 wxAuiToolBarItem
* hit_item
;
2442 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2444 if (m_action_item
&& hit_item
== m_action_item
)
2446 if (hit_item
->kind
== wxITEM_NORMAL
)
2448 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
, m_action_item
->id
);
2449 e
.SetEventObject(this);
2450 e
.SetToolId(m_action_item
->id
);
2451 e
.SetClickPoint(m_action_pos
);
2458 // right-clicked on the invalid area of the toolbar
2459 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
, -1);
2460 e
.SetEventObject(this);
2462 e
.SetClickPoint(m_action_pos
);
2467 // reset member variables
2468 m_action_pos
= wxPoint(-1,-1);
2469 m_action_item
= NULL
;
2472 void wxAuiToolBar::OnMiddleDown(wxMouseEvent
& evt
)
2474 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2476 if (m_gripper_sizer_item
)
2478 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2479 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2483 if (m_overflow_sizer_item
)
2485 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2486 if (dropdown_size
> 0 &&
2487 evt
.m_x
> cli_rect
.width
- dropdown_size
&&
2489 evt
.m_y
< cli_rect
.height
&&
2496 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2497 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2501 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2503 m_action_pos
= wxPoint(-1,-1);
2504 m_action_item
= NULL
;
2510 void wxAuiToolBar::OnMiddleUp(wxMouseEvent
& evt
)
2512 wxAuiToolBarItem
* hit_item
;
2513 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2515 if (m_action_item
&& hit_item
== m_action_item
)
2517 if (hit_item
->kind
== wxITEM_NORMAL
)
2519 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK
, m_action_item
->id
);
2520 e
.SetEventObject(this);
2521 e
.SetToolId(m_action_item
->id
);
2522 e
.SetClickPoint(m_action_pos
);
2528 // reset member variables
2529 m_action_pos
= wxPoint(-1,-1);
2530 m_action_item
= NULL
;
2533 void wxAuiToolBar::OnMotion(wxMouseEvent
& evt
)
2535 // start a drag event
2537 m_action_item
!= NULL
&&
2538 m_action_pos
!= wxPoint(-1,-1) &&
2539 abs(evt
.m_x
- m_action_pos
.x
) + abs(evt
.m_y
- m_action_pos
.y
) > 5)
2545 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG
, GetId());
2546 e
.SetEventObject(this);
2547 e
.SetToolId(m_action_item
->id
);
2553 wxAuiToolBarItem
* hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2556 if (!(hit_item
->state
& wxAUI_BUTTON_STATE_DISABLED
))
2557 SetHoverItem(hit_item
);
2563 // no hit item, remove any hit item
2564 SetHoverItem(hit_item
);
2567 // figure out tooltips
2568 wxAuiToolBarItem
* packing_hit_item
;
2569 packing_hit_item
= FindToolByPositionWithPacking(evt
.GetX(), evt
.GetY());
2570 if (packing_hit_item
)
2572 if (packing_hit_item
!= m_tip_item
)
2574 m_tip_item
= packing_hit_item
;
2576 if ( !packing_hit_item
->short_help
.empty() )
2577 SetToolTip(packing_hit_item
->short_help
);
2588 // if we've pressed down an item and we're hovering
2589 // over it, make sure it's state is set to pressed
2592 if (m_action_item
== hit_item
)
2593 SetPressedItem(m_action_item
);
2595 SetPressedItem(NULL
);
2598 // figure out the dropdown button state (are we hovering or pressing it?)
2599 RefreshOverflowState();
2602 void wxAuiToolBar::OnLeaveWindow(wxMouseEvent
& WXUNUSED(evt
))
2604 RefreshOverflowState();
2606 SetPressedItem(NULL
);
2612 void wxAuiToolBar::OnSetCursor(wxSetCursorEvent
& evt
)
2614 wxCursor cursor
= wxNullCursor
;
2616 if (m_gripper_sizer_item
)
2618 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2619 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2621 cursor
= wxCursor(wxCURSOR_SIZING
);
2625 evt
.SetCursor(cursor
);