1 ///////////////////////////////////////////////////////////////////////////////
3 // Name: src/aui/dockart.cpp
4 // Purpose: wxaui: wx advanced user interface - docking window manager
5 // Author: Benjamin I. Williams
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"
43 #include "wx/arrimpl.cpp"
44 WX_DEFINE_OBJARRAY(wxAuiToolBarItemArray
)
47 wxDEFINE_EVENT( wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN
, wxAuiToolBarEvent
);
48 wxDEFINE_EVENT( wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK
, wxAuiToolBarEvent
);
49 wxDEFINE_EVENT( wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
, wxAuiToolBarEvent
);
50 wxDEFINE_EVENT( wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK
, wxAuiToolBarEvent
);
51 wxDEFINE_EVENT( wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG
, wxAuiToolBarEvent
);
54 IMPLEMENT_CLASS(wxAuiToolBar
, wxControl
)
55 IMPLEMENT_DYNAMIC_CLASS(wxAuiToolBarEvent
, wxEvent
)
58 // missing wxITEM_* items
61 wxITEM_CONTROL
= wxITEM_MAX
,
66 const int BUTTON_DROPDOWN_WIDTH
= 10;
69 wxBitmap
wxAuiBitmapFromBits(const unsigned char bits
[], int w
, int h
,
70 const wxColour
& color
);
72 unsigned char wxAuiBlendColour(unsigned char fg
, unsigned char bg
, double alpha
);
73 wxColor
wxAuiStepColour(const wxColor
& c
, int percent
);
75 static wxBitmap
MakeDisabledBitmap(wxBitmap
& bmp
)
77 wxImage image
= bmp
.ConvertToImage();
80 mr
= image
.GetMaskRed();
81 mg
= image
.GetMaskGreen();
82 mb
= image
.GetMaskBlue();
84 unsigned char* data
= image
.GetData();
85 int width
= image
.GetWidth();
86 int height
= image
.GetHeight();
87 bool has_mask
= image
.HasMask();
89 for (int y
= height
-1; y
>= 0; --y
)
91 for (int x
= width
-1; x
>= 0; --x
)
93 data
= image
.GetData() + (y
*(width
*3))+(x
*3);
94 unsigned char* r
= data
;
95 unsigned char* g
= data
+1;
96 unsigned char* b
= data
+2;
98 if (has_mask
&& *r
== mr
&& *g
== mg
&& *b
== mb
)
101 *r
= wxAuiBlendColour(*r
, 255, 0.4);
102 *g
= wxAuiBlendColour(*g
, 255, 0.4);
103 *b
= wxAuiBlendColour(*b
, 255, 0.4);
107 return wxBitmap(image
);
110 static wxColor
GetBaseColor()
113 #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON
114 wxColor base_colour
= wxColour( wxMacCreateCGColorFromHITheme(kThemeBrushToolbarBackground
));
116 wxColor base_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
119 // the base_colour is too pale to use as our base colour,
120 // so darken it a bit --
121 if ((255-base_colour
.Red()) +
122 (255-base_colour
.Green()) +
123 (255-base_colour
.Blue()) < 60)
125 base_colour
= wxAuiStepColour(base_colour
, 92);
133 class ToolbarCommandCapture
: public wxEvtHandler
137 ToolbarCommandCapture() { m_last_id
= 0; }
138 int GetCommandId() const { return m_last_id
; }
140 bool ProcessEvent(wxEvent
& evt
)
142 if (evt
.GetEventType() == wxEVT_COMMAND_MENU_SELECTED
)
144 m_last_id
= evt
.GetId();
148 if (GetNextHandler())
149 return GetNextHandler()->ProcessEvent(evt
);
160 static const unsigned char
161 DISABLED_TEXT_GREY_HUE
= wxAuiBlendColour(0, 255, 0.4);
162 const wxColour
DISABLED_TEXT_COLOR(DISABLED_TEXT_GREY_HUE
,
163 DISABLED_TEXT_GREY_HUE
,
164 DISABLED_TEXT_GREY_HUE
);
166 wxAuiDefaultToolBarArt::wxAuiDefaultToolBarArt()
168 m_base_colour
= GetBaseColor();
171 m_text_orientation
= wxAUI_TBTOOL_TEXT_BOTTOM
;
172 m_highlight_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
174 m_separator_size
= 7;
176 m_overflow_size
= 16;
178 wxColor darker1_colour
= wxAuiStepColour(m_base_colour
, 85);
179 wxColor darker2_colour
= wxAuiStepColour(m_base_colour
, 75);
180 wxColor darker3_colour
= wxAuiStepColour(m_base_colour
, 60);
181 wxColor darker4_colour
= wxAuiStepColour(m_base_colour
, 50);
182 wxColor darker5_colour
= wxAuiStepColour(m_base_colour
, 40);
184 m_gripper_pen1
= wxPen(darker5_colour
);
185 m_gripper_pen2
= wxPen(darker3_colour
);
186 m_gripper_pen3
= *wxWHITE_PEN
;
188 static const unsigned char button_dropdown_bits
[] = { 0xe0, 0xf1, 0xfb };
189 static const unsigned char overflow_bits
[] = { 0x80, 0xff, 0x80, 0xc1, 0xe3, 0xf7 };
191 m_button_dropdown_bmp
= wxAuiBitmapFromBits(button_dropdown_bits
, 5, 3,
193 m_disabled_button_dropdown_bmp
= wxAuiBitmapFromBits(
194 button_dropdown_bits
, 5, 3,
195 wxColor(128,128,128));
196 m_overflow_bmp
= wxAuiBitmapFromBits(overflow_bits
, 7, 6, *wxBLACK
);
197 m_disabled_overflow_bmp
= wxAuiBitmapFromBits(overflow_bits
, 7, 6, wxColor(128,128,128));
199 m_font
= *wxNORMAL_FONT
;
202 wxAuiDefaultToolBarArt::~wxAuiDefaultToolBarArt()
204 m_font
= *wxNORMAL_FONT
;
208 wxAuiToolBarArt
* wxAuiDefaultToolBarArt::Clone()
210 return static_cast<wxAuiToolBarArt
*>(new wxAuiDefaultToolBarArt
);
213 void wxAuiDefaultToolBarArt::SetFlags(unsigned int flags
)
218 void wxAuiDefaultToolBarArt::SetFont(const wxFont
& font
)
223 void wxAuiDefaultToolBarArt::SetTextOrientation(int orientation
)
225 m_text_orientation
= orientation
;
228 unsigned int wxAuiDefaultToolBarArt::GetFlags()
233 wxFont
wxAuiDefaultToolBarArt::GetFont()
238 int wxAuiDefaultToolBarArt::GetTextOrientation()
240 return m_text_orientation
;
243 void wxAuiDefaultToolBarArt::DrawBackground(
245 wxWindow
* WXUNUSED(wnd
),
250 wxColour start_colour
= wxAuiStepColour(m_base_colour
, 150);
251 wxColour end_colour
= wxAuiStepColour(m_base_colour
, 90);
252 dc
.GradientFillLinear(rect
, start_colour
, end_colour
, wxSOUTH
);
255 void wxAuiDefaultToolBarArt::DrawLabel(
257 wxWindow
* WXUNUSED(wnd
),
258 const wxAuiToolBarItem
& item
,
262 dc
.SetTextForeground(*wxBLACK
);
264 // we only care about the text height here since the text
265 // will get cropped based on the width of the item
266 int text_width
= 0, text_height
= 0;
267 dc
.GetTextExtent(wxT("ABCDHgj"), &text_width
, &text_height
);
269 // set the clipping region
270 wxRect clip_rect
= rect
;
271 clip_rect
.width
-= 1;
272 dc
.SetClippingRegion(clip_rect
);
276 text_y
= rect
.y
+ (rect
.height
-text_height
)/2;
277 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
278 dc
.DestroyClippingRegion();
282 void wxAuiDefaultToolBarArt::DrawButton(
284 wxWindow
* WXUNUSED(wnd
),
285 const wxAuiToolBarItem
& item
,
288 int text_width
= 0, text_height
= 0;
290 if (m_flags
& wxAUI_TB_TEXT
)
296 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
298 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
301 int bmp_x
= 0, bmp_y
= 0;
302 int text_x
= 0, text_y
= 0;
304 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
308 (item
.GetBitmap().GetWidth()/2);
311 ((rect
.height
-text_height
)/2) -
312 (item
.GetBitmap().GetHeight()/2);
314 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
315 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
317 else if (m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
)
323 (item
.GetBitmap().GetHeight()/2);
325 text_x
= bmp_x
+ 3 + item
.GetBitmap().GetWidth();
332 if (!(item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
))
334 if (item
.GetState() & wxAUI_BUTTON_STATE_PRESSED
)
336 dc
.SetPen(wxPen(m_highlight_colour
));
337 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 150)));
338 dc
.DrawRectangle(rect
);
340 else if ((item
.GetState() & wxAUI_BUTTON_STATE_HOVER
) || item
.IsSticky())
342 dc
.SetPen(wxPen(m_highlight_colour
));
343 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
345 // draw an even lighter background for checked item hovers (since
346 // the hover background is the same color as the check background)
347 if (item
.GetState() & wxAUI_BUTTON_STATE_CHECKED
)
348 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 180)));
350 dc
.DrawRectangle(rect
);
352 else if (item
.GetState() & wxAUI_BUTTON_STATE_CHECKED
)
354 // it's important to put this code in an else statment after the
355 // hover, otherwise hovers won't draw properly for checked items
356 dc
.SetPen(wxPen(m_highlight_colour
));
357 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
358 dc
.DrawRectangle(rect
);
363 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
364 bmp
= item
.GetDisabledBitmap();
366 bmp
= item
.GetBitmap();
371 dc
.DrawBitmap(bmp
, bmp_x
, bmp_y
, true);
373 // set the item's text color based on if it is disabled
374 dc
.SetTextForeground(*wxBLACK
);
375 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
376 dc
.SetTextForeground(DISABLED_TEXT_COLOR
);
378 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
380 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
385 void wxAuiDefaultToolBarArt::DrawDropDownButton(
387 wxWindow
* WXUNUSED(wnd
),
388 const wxAuiToolBarItem
& item
,
391 int text_width
= 0, text_height
= 0, text_x
= 0, text_y
= 0;
392 int bmp_x
= 0, bmp_y
= 0, dropbmp_x
= 0, dropbmp_y
= 0;
394 wxRect button_rect
= wxRect(rect
.x
,
396 rect
.width
-BUTTON_DROPDOWN_WIDTH
,
398 wxRect dropdown_rect
= wxRect(rect
.x
+rect
.width
-BUTTON_DROPDOWN_WIDTH
-1,
400 BUTTON_DROPDOWN_WIDTH
+1,
403 if (m_flags
& wxAUI_TB_TEXT
)
408 if (m_flags
& wxAUI_TB_TEXT
)
410 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
414 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
419 dropbmp_x
= dropdown_rect
.x
+
420 (dropdown_rect
.width
/2) -
421 (m_button_dropdown_bmp
.GetWidth()/2);
422 dropbmp_y
= dropdown_rect
.y
+
423 (dropdown_rect
.height
/2) -
424 (m_button_dropdown_bmp
.GetHeight()/2);
427 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
429 bmp_x
= button_rect
.x
+
430 (button_rect
.width
/2) -
431 (item
.GetBitmap().GetWidth()/2);
432 bmp_y
= button_rect
.y
+
433 ((button_rect
.height
-text_height
)/2) -
434 (item
.GetBitmap().GetHeight()/2);
436 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
437 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
439 else if (m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
)
445 (item
.GetBitmap().GetHeight()/2);
447 text_x
= bmp_x
+ 3 + item
.GetBitmap().GetWidth();
454 if (item
.GetState() & wxAUI_BUTTON_STATE_PRESSED
)
456 dc
.SetPen(wxPen(m_highlight_colour
));
457 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 140)));
458 dc
.DrawRectangle(button_rect
);
459 dc
.DrawRectangle(dropdown_rect
);
461 else if (item
.GetState() & wxAUI_BUTTON_STATE_HOVER
||
464 dc
.SetPen(wxPen(m_highlight_colour
));
465 dc
.SetBrush(wxBrush(wxAuiStepColour(m_highlight_colour
, 170)));
466 dc
.DrawRectangle(button_rect
);
467 dc
.DrawRectangle(dropdown_rect
);
472 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
474 bmp
= item
.GetDisabledBitmap();
475 dropbmp
= m_disabled_button_dropdown_bmp
;
479 bmp
= item
.GetBitmap();
480 dropbmp
= m_button_dropdown_bmp
;
486 dc
.DrawBitmap(bmp
, bmp_x
, bmp_y
, true);
487 dc
.DrawBitmap(dropbmp
, dropbmp_x
, dropbmp_y
, true);
489 // set the item's text color based on if it is disabled
490 dc
.SetTextForeground(*wxBLACK
);
491 if (item
.GetState() & wxAUI_BUTTON_STATE_DISABLED
)
492 dc
.SetTextForeground(DISABLED_TEXT_COLOR
);
494 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
496 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
500 void wxAuiDefaultToolBarArt::DrawControlLabel(
502 wxWindow
* WXUNUSED(wnd
),
503 const wxAuiToolBarItem
& item
,
506 if (!(m_flags
& wxAUI_TB_TEXT
))
509 if (m_text_orientation
!= wxAUI_TBTOOL_TEXT_BOTTOM
)
512 int text_x
= 0, text_y
= 0;
513 int text_width
= 0, text_height
= 0;
518 if (m_flags
& wxAUI_TB_TEXT
)
520 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
524 dc
.GetTextExtent(item
.GetLabel(), &text_width
, &ty
);
526 // don't draw the label if it is wider than the item width
527 if (text_width
> rect
.width
)
530 // set the label's text color
531 dc
.SetTextForeground(*wxBLACK
);
533 text_x
= rect
.x
+ (rect
.width
/2) - (text_width
/2) + 1;
534 text_y
= rect
.y
+ rect
.height
- text_height
- 1;
536 if ( (m_flags
& wxAUI_TB_TEXT
) && !item
.GetLabel().empty() )
538 dc
.DrawText(item
.GetLabel(), text_x
, text_y
);
542 wxSize
wxAuiDefaultToolBarArt::GetLabelSize(
544 wxWindow
* WXUNUSED(wnd
),
545 const wxAuiToolBarItem
& item
)
549 // get label's height
550 int width
= 0, height
= 0;
551 dc
.GetTextExtent(wxT("ABCDHgj"), &width
, &height
);
554 width
= item
.GetMinSize().GetWidth();
558 // no width specified, measure the text ourselves
559 width
= dc
.GetTextExtent(item
.GetLabel()).GetX();
562 return wxSize(width
, height
);
565 wxSize
wxAuiDefaultToolBarArt::GetToolSize(
567 wxWindow
* WXUNUSED(wnd
),
568 const wxAuiToolBarItem
& item
)
570 if (!item
.GetBitmap().IsOk() && !(m_flags
& wxAUI_TB_TEXT
))
571 return wxSize(16,16);
573 int width
= item
.GetBitmap().GetWidth();
574 int height
= item
.GetBitmap().GetHeight();
576 if (m_flags
& wxAUI_TB_TEXT
)
581 if (m_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
)
583 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &ty
);
586 if ( !item
.GetLabel().empty() )
588 dc
.GetTextExtent(item
.GetLabel(), &tx
, &ty
);
589 width
= wxMax(width
, tx
+6);
592 else if ( m_text_orientation
== wxAUI_TBTOOL_TEXT_RIGHT
&&
593 !item
.GetLabel().empty() )
595 width
+= 3; // space between left border and bitmap
596 width
+= 3; // space between bitmap and text
598 if ( !item
.GetLabel().empty() )
600 dc
.GetTextExtent(item
.GetLabel(), &tx
, &ty
);
602 height
= wxMax(height
, ty
);
607 // if the tool has a dropdown button, add it to the width
608 if (item
.HasDropDown())
609 width
+= (BUTTON_DROPDOWN_WIDTH
+4);
611 return wxSize(width
, height
);
614 void wxAuiDefaultToolBarArt::DrawSeparator(
616 wxWindow
* WXUNUSED(wnd
),
619 bool horizontal
= true;
620 if (m_flags
& wxAUI_TB_VERTICAL
)
627 rect
.x
+= (rect
.width
/2);
629 int new_height
= (rect
.height
*3)/4;
630 rect
.y
+= (rect
.height
/2) - (new_height
/2);
631 rect
.height
= new_height
;
635 rect
.y
+= (rect
.height
/2);
637 int new_width
= (rect
.width
*3)/4;
638 rect
.x
+= (rect
.width
/2) - (new_width
/2);
639 rect
.width
= new_width
;
642 wxColour start_colour
= wxAuiStepColour(m_base_colour
, 80);
643 wxColour end_colour
= wxAuiStepColour(m_base_colour
, 80);
644 dc
.GradientFillLinear(rect
, start_colour
, end_colour
, horizontal
? wxSOUTH
: wxEAST
);
647 void wxAuiDefaultToolBarArt::DrawGripper(wxDC
& dc
,
648 wxWindow
* WXUNUSED(wnd
),
656 if (m_flags
& wxAUI_TB_VERTICAL
)
658 x
= rect
.x
+ (i
*4) + 5;
660 if (x
> rect
.GetWidth()-5)
666 y
= rect
.y
+ (i
*4) + 5;
667 if (y
> rect
.GetHeight()-5)
671 dc
.SetPen(m_gripper_pen1
);
673 dc
.SetPen(m_gripper_pen2
);
674 dc
.DrawPoint(x
, y
+1);
675 dc
.DrawPoint(x
+1, y
);
676 dc
.SetPen(m_gripper_pen3
);
677 dc
.DrawPoint(x
+2, y
+1);
678 dc
.DrawPoint(x
+2, y
+2);
679 dc
.DrawPoint(x
+1, y
+2);
686 void wxAuiDefaultToolBarArt::DrawOverflowButton(wxDC
& dc
,
691 if (state
& wxAUI_BUTTON_STATE_HOVER
||
692 state
& wxAUI_BUTTON_STATE_PRESSED
)
694 wxRect cli_rect
= wnd
->GetClientRect();
695 wxColor light_gray_bg
= wxAuiStepColour(m_highlight_colour
, 170);
697 if (m_flags
& wxAUI_TB_VERTICAL
)
699 dc
.SetPen(wxPen(m_highlight_colour
));
700 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
+rect
.width
, rect
.y
);
701 dc
.SetPen(wxPen(light_gray_bg
));
702 dc
.SetBrush(wxBrush(light_gray_bg
));
703 dc
.DrawRectangle(rect
.x
, rect
.y
+1, rect
.width
, rect
.height
);
707 dc
.SetPen(wxPen(m_highlight_colour
));
708 dc
.DrawLine(rect
.x
, rect
.y
, rect
.x
, rect
.y
+rect
.height
);
709 dc
.SetPen(wxPen(light_gray_bg
));
710 dc
.SetBrush(wxBrush(light_gray_bg
));
711 dc
.DrawRectangle(rect
.x
+1, rect
.y
, rect
.width
, rect
.height
);
715 int x
= rect
.x
+1+(rect
.width
-m_overflow_bmp
.GetWidth())/2;
716 int y
= rect
.y
+1+(rect
.height
-m_overflow_bmp
.GetHeight())/2;
717 dc
.DrawBitmap(m_overflow_bmp
, x
, y
, true);
720 int wxAuiDefaultToolBarArt::GetElementSize(int element_id
)
724 case wxAUI_TBART_SEPARATOR_SIZE
: return m_separator_size
;
725 case wxAUI_TBART_GRIPPER_SIZE
: return m_gripper_size
;
726 case wxAUI_TBART_OVERFLOW_SIZE
: return m_overflow_size
;
731 void wxAuiDefaultToolBarArt::SetElementSize(int element_id
, int size
)
735 case wxAUI_TBART_SEPARATOR_SIZE
: m_separator_size
= size
; break;
736 case wxAUI_TBART_GRIPPER_SIZE
: m_gripper_size
= size
; break;
737 case wxAUI_TBART_OVERFLOW_SIZE
: m_overflow_size
= size
; break;
741 int wxAuiDefaultToolBarArt::ShowDropDown(wxWindow
* wnd
,
742 const wxAuiToolBarItemArray
& items
)
746 size_t items_added
= 0;
748 size_t i
, count
= items
.GetCount();
749 for (i
= 0; i
< count
; ++i
)
751 wxAuiToolBarItem
& item
= items
.Item(i
);
753 if (item
.GetKind() == wxITEM_NORMAL
)
755 wxString text
= item
.GetShortHelp();
757 text
= item
.GetLabel();
762 wxMenuItem
* m
= new wxMenuItem(&menuPopup
, item
.GetId(), text
, item
.GetShortHelp());
764 m
->SetBitmap(item
.GetBitmap());
768 else if (item
.GetKind() == wxITEM_SEPARATOR
)
771 menuPopup
.AppendSeparator();
775 // find out where to put the popup menu of window items
776 wxPoint pt
= ::wxGetMousePosition();
777 pt
= wnd
->ScreenToClient(pt
);
779 // find out the screen coordinate at the bottom of the tab ctrl
780 wxRect cli_rect
= wnd
->GetClientRect();
781 pt
.y
= cli_rect
.y
+ cli_rect
.height
;
783 ToolbarCommandCapture
* cc
= new ToolbarCommandCapture
;
784 wnd
->PushEventHandler(cc
);
785 wnd
->PopupMenu(&menuPopup
, pt
);
786 int command
= cc
->GetCommandId();
787 wnd
->PopEventHandler(true);
795 static wxOrientation
GetOrientation(long& style
)
797 switch (style
& wxAUI_ORIENTATION_MASK
)
799 case wxAUI_TB_HORIZONTAL
:
801 case wxAUI_TB_VERTICAL
:
804 wxFAIL_MSG("toolbar cannot be locked in both horizontal and vertical orientations (maybe no lock was intended?)");
811 BEGIN_EVENT_TABLE(wxAuiToolBar
, wxControl
)
812 EVT_SIZE(wxAuiToolBar::OnSize
)
813 EVT_IDLE(wxAuiToolBar::OnIdle
)
814 EVT_ERASE_BACKGROUND(wxAuiToolBar::OnEraseBackground
)
815 EVT_PAINT(wxAuiToolBar::OnPaint
)
816 EVT_LEFT_DOWN(wxAuiToolBar::OnLeftDown
)
817 EVT_LEFT_DCLICK(wxAuiToolBar::OnLeftDown
)
818 EVT_LEFT_UP(wxAuiToolBar::OnLeftUp
)
819 EVT_RIGHT_DOWN(wxAuiToolBar::OnRightDown
)
820 EVT_RIGHT_DCLICK(wxAuiToolBar::OnRightDown
)
821 EVT_RIGHT_UP(wxAuiToolBar::OnRightUp
)
822 EVT_MIDDLE_DOWN(wxAuiToolBar::OnMiddleDown
)
823 EVT_MIDDLE_DCLICK(wxAuiToolBar::OnMiddleDown
)
824 EVT_MIDDLE_UP(wxAuiToolBar::OnMiddleUp
)
825 EVT_MOTION(wxAuiToolBar::OnMotion
)
826 EVT_LEAVE_WINDOW(wxAuiToolBar::OnLeaveWindow
)
827 EVT_SET_CURSOR(wxAuiToolBar::OnSetCursor
)
831 wxAuiToolBar::wxAuiToolBar(wxWindow
* parent
,
833 const wxPoint
& position
,
840 style
| wxBORDER_NONE
)
842 m_sizer
= new wxBoxSizer(wxHORIZONTAL
);
844 m_button_height
= -1;
845 m_sizer_element_count
= 0;
846 m_action_pos
= wxPoint(-1,-1);
847 m_action_item
= NULL
;
849 m_art
= new wxAuiDefaultToolBarArt
;
851 m_tool_border_padding
= 3;
852 m_tool_text_orientation
= wxAUI_TBTOOL_TEXT_BOTTOM
;
853 m_gripper_sizer_item
= NULL
;
854 m_overflow_sizer_item
= NULL
;
856 m_orientation
= GetOrientation(style
);
857 if (m_orientation
== wxBOTH
)
859 m_orientation
= wxHORIZONTAL
;
861 m_style
= style
| wxBORDER_NONE
;
862 m_gripper_visible
= (m_style
& wxAUI_TB_GRIPPER
) ? true : false;
863 m_overflow_visible
= (m_style
& wxAUI_TB_OVERFLOW
) ? true : false;
864 m_overflow_state
= 0;
865 SetMargins(5, 5, 2, 2);
866 SetFont(*wxNORMAL_FONT
);
868 SetExtraStyle(wxWS_EX_PROCESS_IDLE
);
869 if (style
& wxAUI_TB_HORZ_LAYOUT
)
870 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_RIGHT
);
871 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
875 wxAuiToolBar::~wxAuiToolBar()
881 void wxAuiToolBar::SetWindowStyleFlag(long style
)
883 GetOrientation(style
); // assert if style is invalid
884 wxCHECK_RET(IsPaneValid(style
),
885 "window settings and pane settings are incompatible");
887 wxControl::SetWindowStyleFlag(style
);
896 if (m_style
& wxAUI_TB_GRIPPER
)
897 m_gripper_visible
= true;
899 m_gripper_visible
= false;
902 if (m_style
& wxAUI_TB_OVERFLOW
)
903 m_overflow_visible
= true;
905 m_overflow_visible
= false;
907 if (style
& wxAUI_TB_HORZ_LAYOUT
)
908 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_RIGHT
);
910 SetToolTextOrientation(wxAUI_TBTOOL_TEXT_BOTTOM
);
913 long wxAuiToolBar::GetWindowStyleFlag() const
918 void wxAuiToolBar::SetArtProvider(wxAuiToolBarArt
* art
)
927 m_art
->SetTextOrientation(m_tool_text_orientation
);
931 wxAuiToolBarArt
* wxAuiToolBar::GetArtProvider() const
939 wxAuiToolBarItem
* wxAuiToolBar::AddTool(int tool_id
,
940 const wxString
& label
,
941 const wxBitmap
& bitmap
,
942 const wxString
& short_help_string
,
945 return AddTool(tool_id
,
956 wxAuiToolBarItem
* wxAuiToolBar::AddTool(int tool_id
,
957 const wxString
& label
,
958 const wxBitmap
& bitmap
,
959 const wxBitmap
& disabled_bitmap
,
961 const wxString
& short_help_string
,
962 const wxString
& long_help_string
,
963 wxObject
* WXUNUSED(client_data
))
965 wxAuiToolBarItem item
;
968 item
.bitmap
= bitmap
;
969 item
.disabled_bitmap
= disabled_bitmap
;
970 item
.short_help
= short_help_string
;
971 item
.long_help
= long_help_string
;
973 item
.dropdown
= false;
974 item
.spacer_pixels
= 0;
979 item
.sizer_item
= NULL
;
980 item
.min_size
= wxDefaultSize
;
984 if (item
.id
== wxID_ANY
)
987 if (!item
.disabled_bitmap
.IsOk())
989 // no disabled bitmap specified, we need to make one
990 if (item
.bitmap
.IsOk())
992 //wxImage img = item.bitmap.ConvertToImage();
993 //wxImage grey_version = img.ConvertToGreyscale();
994 //item.disabled_bitmap = wxBitmap(grey_version);
995 item
.disabled_bitmap
= MakeDisabledBitmap(item
.bitmap
);
999 return &m_items
.Last();
1002 wxAuiToolBarItem
* wxAuiToolBar::AddControl(wxControl
* control
,
1003 const wxString
& label
)
1005 wxAuiToolBarItem item
;
1006 item
.window
= (wxWindow
*)control
;
1008 item
.bitmap
= wxNullBitmap
;
1009 item
.disabled_bitmap
= wxNullBitmap
;
1011 item
.dropdown
= false;
1012 item
.spacer_pixels
= 0;
1013 item
.id
= control
->GetId();
1015 item
.proportion
= 0;
1016 item
.kind
= wxITEM_CONTROL
;
1017 item
.sizer_item
= NULL
;
1018 item
.min_size
= control
->GetEffectiveMinSize();
1020 item
.sticky
= false;
1023 return &m_items
.Last();
1026 wxAuiToolBarItem
* wxAuiToolBar::AddLabel(int tool_id
,
1027 const wxString
& label
,
1030 wxSize min_size
= wxDefaultSize
;
1034 wxAuiToolBarItem item
;
1037 item
.bitmap
= wxNullBitmap
;
1038 item
.disabled_bitmap
= wxNullBitmap
;
1040 item
.dropdown
= false;
1041 item
.spacer_pixels
= 0;
1044 item
.proportion
= 0;
1045 item
.kind
= wxITEM_LABEL
;
1046 item
.sizer_item
= NULL
;
1047 item
.min_size
= min_size
;
1049 item
.sticky
= false;
1051 if (item
.id
== wxID_ANY
)
1052 item
.id
= wxNewId();
1055 return &m_items
.Last();
1058 wxAuiToolBarItem
* wxAuiToolBar::AddSeparator()
1060 wxAuiToolBarItem item
;
1062 item
.label
= wxEmptyString
;
1063 item
.bitmap
= wxNullBitmap
;
1064 item
.disabled_bitmap
= wxNullBitmap
;
1066 item
.dropdown
= false;
1069 item
.proportion
= 0;
1070 item
.kind
= wxITEM_SEPARATOR
;
1071 item
.sizer_item
= NULL
;
1072 item
.min_size
= wxDefaultSize
;
1074 item
.sticky
= false;
1077 return &m_items
.Last();
1080 wxAuiToolBarItem
* wxAuiToolBar::AddSpacer(int pixels
)
1082 wxAuiToolBarItem item
;
1084 item
.label
= wxEmptyString
;
1085 item
.bitmap
= wxNullBitmap
;
1086 item
.disabled_bitmap
= wxNullBitmap
;
1088 item
.dropdown
= false;
1089 item
.spacer_pixels
= pixels
;
1092 item
.proportion
= 0;
1093 item
.kind
= wxITEM_SPACER
;
1094 item
.sizer_item
= NULL
;
1095 item
.min_size
= wxDefaultSize
;
1097 item
.sticky
= false;
1100 return &m_items
.Last();
1103 wxAuiToolBarItem
* wxAuiToolBar::AddStretchSpacer(int proportion
)
1105 wxAuiToolBarItem item
;
1107 item
.label
= wxEmptyString
;
1108 item
.bitmap
= wxNullBitmap
;
1109 item
.disabled_bitmap
= wxNullBitmap
;
1111 item
.dropdown
= false;
1112 item
.spacer_pixels
= 0;
1115 item
.proportion
= proportion
;
1116 item
.kind
= wxITEM_SPACER
;
1117 item
.sizer_item
= NULL
;
1118 item
.min_size
= wxDefaultSize
;
1120 item
.sticky
= false;
1123 return &m_items
.Last();
1126 void wxAuiToolBar::Clear()
1129 m_sizer_element_count
= 0;
1132 bool wxAuiToolBar::DeleteTool(int tool_id
)
1134 int idx
= GetToolIndex(tool_id
);
1135 if (idx
>= 0 && idx
< (int)m_items
.GetCount())
1137 m_items
.RemoveAt(idx
);
1145 bool wxAuiToolBar::DeleteByIndex(int idx
)
1147 if (idx
>= 0 && idx
< (int)m_items
.GetCount())
1149 m_items
.RemoveAt(idx
);
1158 wxControl
* wxAuiToolBar::FindControl(int id
)
1160 wxWindow
* wnd
= FindWindow(id
);
1161 return (wxControl
*)wnd
;
1164 wxAuiToolBarItem
* wxAuiToolBar::FindTool(int tool_id
) const
1167 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1169 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1170 if (item
.id
== tool_id
)
1177 wxAuiToolBarItem
* wxAuiToolBar::FindToolByPosition(wxCoord x
, wxCoord y
) const
1180 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1182 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1184 if (!item
.sizer_item
)
1187 wxRect rect
= item
.sizer_item
->GetRect();
1188 if (rect
.Contains(x
,y
))
1190 // if the item doesn't fit on the toolbar, return NULL
1191 if (!GetToolFitsByIndex(i
))
1201 wxAuiToolBarItem
* wxAuiToolBar::FindToolByPositionWithPacking(wxCoord x
, wxCoord y
) const
1204 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1206 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1208 if (!item
.sizer_item
)
1211 wxRect rect
= item
.sizer_item
->GetRect();
1213 // apply tool packing
1215 rect
.width
+= m_tool_packing
;
1217 if (rect
.Contains(x
,y
))
1219 // if the item doesn't fit on the toolbar, return NULL
1220 if (!GetToolFitsByIndex(i
))
1230 wxAuiToolBarItem
* wxAuiToolBar::FindToolByIndex(int idx
) const
1235 if (idx
>= (int)m_items
.size())
1238 return &(m_items
[idx
]);
1241 void wxAuiToolBar::SetToolBitmapSize(const wxSize
& WXUNUSED(size
))
1243 // TODO: wxToolBar compatibility
1246 wxSize
wxAuiToolBar::GetToolBitmapSize() const
1248 // TODO: wxToolBar compatibility
1249 return wxSize(16,15);
1252 void wxAuiToolBar::SetToolProportion(int tool_id
, int proportion
)
1254 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1258 item
->proportion
= proportion
;
1261 int wxAuiToolBar::GetToolProportion(int tool_id
) const
1263 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1267 return item
->proportion
;
1270 void wxAuiToolBar::SetToolSeparation(int separation
)
1273 m_art
->SetElementSize(wxAUI_TBART_SEPARATOR_SIZE
, separation
);
1276 int wxAuiToolBar::GetToolSeparation() const
1279 return m_art
->GetElementSize(wxAUI_TBART_SEPARATOR_SIZE
);
1285 void wxAuiToolBar::SetToolDropDown(int tool_id
, bool dropdown
)
1287 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1291 item
->dropdown
= dropdown
;
1294 bool wxAuiToolBar::GetToolDropDown(int tool_id
) const
1296 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1300 return item
->dropdown
;
1303 void wxAuiToolBar::SetToolSticky(int tool_id
, bool sticky
)
1305 // ignore separators
1309 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1313 if (item
->sticky
== sticky
)
1316 item
->sticky
= sticky
;
1322 bool wxAuiToolBar::GetToolSticky(int tool_id
) const
1324 wxAuiToolBarItem
* item
= FindTool(tool_id
);
1328 return item
->sticky
;
1334 void wxAuiToolBar::SetToolBorderPadding(int padding
)
1336 m_tool_border_padding
= padding
;
1339 int wxAuiToolBar::GetToolBorderPadding() const
1341 return m_tool_border_padding
;
1344 void wxAuiToolBar::SetToolTextOrientation(int orientation
)
1346 m_tool_text_orientation
= orientation
;
1350 m_art
->SetTextOrientation(orientation
);
1354 int wxAuiToolBar::GetToolTextOrientation() const
1356 return m_tool_text_orientation
;
1359 void wxAuiToolBar::SetToolPacking(int packing
)
1361 m_tool_packing
= packing
;
1364 int wxAuiToolBar::GetToolPacking() const
1366 return m_tool_packing
;
1370 void wxAuiToolBar::SetOrientation(int orientation
)
1372 wxCHECK_RET(orientation
== wxHORIZONTAL
||
1373 orientation
== wxVERTICAL
,
1374 "invalid orientation value");
1375 if (orientation
!= m_orientation
)
1377 m_orientation
= wxOrientation(orientation
);
1382 void wxAuiToolBar::SetMargins(int left
, int right
, int top
, int bottom
)
1385 m_left_padding
= left
;
1387 m_right_padding
= right
;
1389 m_top_padding
= top
;
1391 m_bottom_padding
= bottom
;
1394 bool wxAuiToolBar::GetGripperVisible() const
1396 return m_gripper_visible
;
1399 void wxAuiToolBar::SetGripperVisible(bool visible
)
1401 m_gripper_visible
= visible
;
1403 m_style
|= wxAUI_TB_GRIPPER
;
1405 m_style
&= ~wxAUI_TB_GRIPPER
;
1411 bool wxAuiToolBar::GetOverflowVisible() const
1413 return m_overflow_visible
;
1416 void wxAuiToolBar::SetOverflowVisible(bool visible
)
1418 m_overflow_visible
= visible
;
1420 m_style
|= wxAUI_TB_OVERFLOW
;
1422 m_style
&= ~wxAUI_TB_OVERFLOW
;
1426 bool wxAuiToolBar::SetFont(const wxFont
& font
)
1428 bool res
= wxWindow::SetFont(font
);
1432 m_art
->SetFont(font
);
1439 void wxAuiToolBar::SetHoverItem(wxAuiToolBarItem
* pitem
)
1441 wxAuiToolBarItem
* former_hover
= NULL
;
1444 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1446 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1447 if (item
.state
& wxAUI_BUTTON_STATE_HOVER
)
1448 former_hover
= &item
;
1449 item
.state
&= ~wxAUI_BUTTON_STATE_HOVER
;
1454 pitem
->state
|= wxAUI_BUTTON_STATE_HOVER
;
1457 if (former_hover
!= pitem
)
1464 void wxAuiToolBar::SetPressedItem(wxAuiToolBarItem
* pitem
)
1466 wxAuiToolBarItem
* former_item
= NULL
;
1469 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1471 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1472 if (item
.state
& wxAUI_BUTTON_STATE_PRESSED
)
1473 former_item
= &item
;
1474 item
.state
&= ~wxAUI_BUTTON_STATE_PRESSED
;
1479 pitem
->state
&= ~wxAUI_BUTTON_STATE_HOVER
;
1480 pitem
->state
|= wxAUI_BUTTON_STATE_PRESSED
;
1483 if (former_item
!= pitem
)
1490 void wxAuiToolBar::RefreshOverflowState()
1492 if (!m_overflow_sizer_item
)
1494 m_overflow_state
= 0;
1498 int overflow_state
= 0;
1500 wxRect overflow_rect
= GetOverflowRect();
1503 // find out the mouse's current position
1504 wxPoint pt
= ::wxGetMousePosition();
1505 pt
= this->ScreenToClient(pt
);
1507 // find out if the mouse cursor is inside the dropdown rectangle
1508 if (overflow_rect
.Contains(pt
.x
, pt
.y
))
1510 if (::wxGetMouseState().LeftIsDown())
1511 overflow_state
= wxAUI_BUTTON_STATE_PRESSED
;
1513 overflow_state
= wxAUI_BUTTON_STATE_HOVER
;
1516 if (overflow_state
!= m_overflow_state
)
1518 m_overflow_state
= overflow_state
;
1523 m_overflow_state
= overflow_state
;
1526 void wxAuiToolBar::ToggleTool(int tool_id
, bool state
)
1528 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1530 if (tool
&& (tool
->kind
== wxITEM_CHECK
|| tool
->kind
== wxITEM_RADIO
))
1532 if (tool
->kind
== wxITEM_RADIO
)
1535 idx
= GetToolIndex(tool_id
);
1536 count
= (int)m_items
.GetCount();
1538 if (idx
>= 0 && idx
< count
)
1540 for (i
= idx
; i
< count
; ++i
)
1542 if (m_items
[i
].kind
!= wxITEM_RADIO
)
1544 m_items
[i
].state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
1546 for (i
= idx
; i
> 0; i
--)
1548 if (m_items
[i
].kind
!= wxITEM_RADIO
)
1550 m_items
[i
].state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
1554 tool
->state
|= wxAUI_BUTTON_STATE_CHECKED
;
1556 else if (tool
->kind
== wxITEM_CHECK
)
1559 tool
->state
|= wxAUI_BUTTON_STATE_CHECKED
;
1561 tool
->state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
1566 bool wxAuiToolBar::GetToolToggled(int tool_id
) const
1568 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1572 if ( (tool
->kind
!= wxITEM_CHECK
) && (tool
->kind
!= wxITEM_RADIO
) )
1575 return (tool
->state
& wxAUI_BUTTON_STATE_CHECKED
) ? true : false;
1581 void wxAuiToolBar::EnableTool(int tool_id
, bool state
)
1583 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1588 tool
->state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
1590 tool
->state
|= wxAUI_BUTTON_STATE_DISABLED
;
1594 bool wxAuiToolBar::GetToolEnabled(int tool_id
) const
1596 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1599 return (tool
->state
& wxAUI_BUTTON_STATE_DISABLED
) ? false : true;
1604 wxString
wxAuiToolBar::GetToolLabel(int tool_id
) const
1606 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1607 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1609 return wxEmptyString
;
1614 void wxAuiToolBar::SetToolLabel(int tool_id
, const wxString
& label
)
1616 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1619 tool
->label
= label
;
1623 wxBitmap
wxAuiToolBar::GetToolBitmap(int tool_id
) const
1625 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1626 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1628 return wxNullBitmap
;
1630 return tool
->bitmap
;
1633 void wxAuiToolBar::SetToolBitmap(int tool_id
, const wxBitmap
& bitmap
)
1635 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1638 tool
->bitmap
= bitmap
;
1642 wxString
wxAuiToolBar::GetToolShortHelp(int tool_id
) const
1644 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1645 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1647 return wxEmptyString
;
1649 return tool
->short_help
;
1652 void wxAuiToolBar::SetToolShortHelp(int tool_id
, const wxString
& help_string
)
1654 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1657 tool
->short_help
= help_string
;
1661 wxString
wxAuiToolBar::GetToolLongHelp(int tool_id
) const
1663 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1664 wxASSERT_MSG(tool
, wxT("can't find tool in toolbar item array"));
1666 return wxEmptyString
;
1668 return tool
->long_help
;
1671 void wxAuiToolBar::SetToolLongHelp(int tool_id
, const wxString
& help_string
)
1673 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1676 tool
->long_help
= help_string
;
1680 void wxAuiToolBar::SetCustomOverflowItems(const wxAuiToolBarItemArray
& prepend
,
1681 const wxAuiToolBarItemArray
& append
)
1683 m_custom_overflow_prepend
= prepend
;
1684 m_custom_overflow_append
= append
;
1687 // get size of hint rectangle for a particular dock location
1688 wxSize
wxAuiToolBar::GetHintSize(int dock_direction
) const
1690 switch (dock_direction
)
1692 case wxAUI_DOCK_TOP
:
1693 case wxAUI_DOCK_BOTTOM
:
1694 return m_horzHintSize
;
1695 case wxAUI_DOCK_RIGHT
:
1696 case wxAUI_DOCK_LEFT
:
1697 return m_vertHintSize
;
1699 wxCHECK_MSG(false, wxDefaultSize
, "invalid dock location value");
1703 bool wxAuiToolBar::IsPaneValid(const wxAuiPaneInfo
& pane
) const
1705 return IsPaneValid(m_style
, pane
);
1708 bool wxAuiToolBar::IsPaneValid(long style
, const wxAuiPaneInfo
& pane
)
1710 if (style
& wxAUI_TB_HORIZONTAL
)
1712 if (pane
.IsLeftDockable() || pane
.IsRightDockable())
1717 else if (style
& wxAUI_TB_VERTICAL
)
1719 if (pane
.IsTopDockable() || pane
.IsBottomDockable())
1727 bool wxAuiToolBar::IsPaneValid(long style
) const
1729 wxAuiManager
* manager
= wxAuiManager::GetManager(const_cast<wxAuiToolBar
*>(this));
1732 return IsPaneValid(style
, manager
->GetPane(const_cast<wxAuiToolBar
*>(this)));
1737 void wxAuiToolBar::SetArtFlags() const
1739 unsigned int artflags
= m_style
& ~wxAUI_ORIENTATION_MASK
;
1740 if (m_orientation
== wxVERTICAL
)
1742 artflags
|= wxAUI_TB_VERTICAL
;
1744 m_art
->SetFlags(artflags
);
1747 size_t wxAuiToolBar::GetToolCount() const
1749 return m_items
.size();
1752 int wxAuiToolBar::GetToolIndex(int tool_id
) const
1754 // this will prevent us from returning the index of the
1755 // first separator in the toolbar since its id is equal to -1
1759 size_t i
, count
= m_items
.GetCount();
1760 for (i
= 0; i
< count
; ++i
)
1762 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1763 if (item
.id
== tool_id
)
1770 bool wxAuiToolBar::GetToolFitsByIndex(int tool_idx
) const
1772 if (tool_idx
< 0 || tool_idx
>= (int)m_items
.GetCount())
1775 if (!m_items
[tool_idx
].sizer_item
)
1779 GetClientSize(&cli_w
, &cli_h
);
1781 wxRect rect
= m_items
[tool_idx
].sizer_item
->GetRect();
1783 if (m_orientation
== wxVERTICAL
)
1785 // take the dropdown size into account
1786 if (m_overflow_visible
)
1787 cli_h
-= m_overflow_sizer_item
->GetSize().y
;
1789 if (rect
.y
+rect
.height
< cli_h
)
1794 // take the dropdown size into account
1795 if (m_overflow_visible
)
1796 cli_w
-= m_overflow_sizer_item
->GetSize().x
;
1798 if (rect
.x
+rect
.width
< cli_w
)
1806 bool wxAuiToolBar::GetToolFits(int tool_id
) const
1808 return GetToolFitsByIndex(GetToolIndex(tool_id
));
1811 wxRect
wxAuiToolBar::GetToolRect(int tool_id
) const
1813 wxAuiToolBarItem
* tool
= FindTool(tool_id
);
1814 if (tool
&& tool
->sizer_item
)
1816 return tool
->sizer_item
->GetRect();
1822 bool wxAuiToolBar::GetToolBarFits() const
1824 if (m_items
.GetCount() == 0)
1826 // empty toolbar always 'fits'
1830 // entire toolbar content fits if the last tool fits
1831 return GetToolFitsByIndex(m_items
.GetCount() - 1);
1834 bool wxAuiToolBar::Realize()
1836 wxClientDC
dc(this);
1840 // calculate hint sizes for both horizontal and vertical
1841 // in the order that leaves toolbar in correct final state
1842 bool retval
= false;
1843 if (m_orientation
== wxHORIZONTAL
)
1845 if (RealizeHelper(dc
, false))
1847 m_vertHintSize
= GetSize();
1848 if (RealizeHelper(dc
, true))
1850 m_horzHintSize
= GetSize();
1857 if (RealizeHelper(dc
, true))
1859 m_horzHintSize
= GetSize();
1860 if (RealizeHelper(dc
, false))
1862 m_vertHintSize
= GetSize();
1872 bool wxAuiToolBar::RealizeHelper(wxClientDC
& dc
, bool horizontal
)
1874 // create the new sizer to add toolbar elements to
1875 wxBoxSizer
* sizer
= new wxBoxSizer(horizontal
? wxHORIZONTAL
: wxVERTICAL
);
1878 int separator_size
= m_art
->GetElementSize(wxAUI_TBART_SEPARATOR_SIZE
);
1879 int gripper_size
= m_art
->GetElementSize(wxAUI_TBART_GRIPPER_SIZE
);
1880 if (gripper_size
> 0 && m_gripper_visible
)
1883 m_gripper_sizer_item
= sizer
->Add(gripper_size
, 1, 0, wxEXPAND
);
1885 m_gripper_sizer_item
= sizer
->Add(1, gripper_size
, 0, wxEXPAND
);
1889 m_gripper_sizer_item
= NULL
;
1892 // add "left" padding
1893 if (m_left_padding
> 0)
1896 sizer
->Add(m_left_padding
, 1);
1898 sizer
->Add(1, m_left_padding
);
1902 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
1904 wxAuiToolBarItem
& item
= m_items
.Item(i
);
1905 wxSizerItem
* sizer_item
= NULL
;
1911 wxSize size
= m_art
->GetLabelSize(dc
, this, item
);
1912 sizer_item
= sizer
->Add(size
.x
+ (m_tool_border_padding
*2),
1913 size
.y
+ (m_tool_border_padding
*2),
1918 sizer
->AddSpacer(m_tool_packing
);
1928 wxSize size
= m_art
->GetToolSize(dc
, this, item
);
1929 sizer_item
= sizer
->Add(size
.x
+ (m_tool_border_padding
*2),
1930 size
.y
+ (m_tool_border_padding
*2),
1936 sizer
->AddSpacer(m_tool_packing
);
1942 case wxITEM_SEPARATOR
:
1945 sizer_item
= sizer
->Add(separator_size
, 1, 0, wxEXPAND
);
1947 sizer_item
= sizer
->Add(1, separator_size
, 0, wxEXPAND
);
1952 sizer
->AddSpacer(m_tool_packing
);
1959 if (item
.proportion
> 0)
1960 sizer_item
= sizer
->AddStretchSpacer(item
.proportion
);
1962 sizer_item
= sizer
->Add(item
.spacer_pixels
, 1);
1965 case wxITEM_CONTROL
:
1967 //sizer_item = sizer->Add(item.window, item.proportion, wxEXPAND);
1968 wxSizerItem
* ctrl_sizer_item
;
1970 wxBoxSizer
* vert_sizer
= new wxBoxSizer(wxVERTICAL
);
1971 vert_sizer
->AddStretchSpacer(1);
1972 ctrl_sizer_item
= vert_sizer
->Add(item
.window
, 0, wxEXPAND
);
1973 vert_sizer
->AddStretchSpacer(1);
1974 if ( (m_style
& wxAUI_TB_TEXT
) &&
1975 m_tool_text_orientation
== wxAUI_TBTOOL_TEXT_BOTTOM
&&
1976 !item
.GetLabel().empty() )
1978 wxSize s
= GetLabelSize(item
.GetLabel());
1979 vert_sizer
->Add(1, s
.y
);
1983 sizer_item
= sizer
->Add(vert_sizer
, item
.proportion
, wxEXPAND
);
1985 wxSize min_size
= item
.min_size
;
1988 // proportional items will disappear from the toolbar if
1989 // their min width is not set to something really small
1990 if (item
.proportion
!= 0)
1995 if (min_size
.IsFullySpecified())
1997 sizer_item
->SetMinSize(min_size
);
1998 ctrl_sizer_item
->SetMinSize(min_size
);
2004 sizer
->AddSpacer(m_tool_packing
);
2009 item
.sizer_item
= sizer_item
;
2012 // add "right" padding
2013 if (m_right_padding
> 0)
2016 sizer
->Add(m_right_padding
, 1);
2018 sizer
->Add(1, m_right_padding
);
2021 // add drop down area
2022 m_overflow_sizer_item
= NULL
;
2024 if (m_style
& wxAUI_TB_OVERFLOW
)
2026 int overflow_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2027 if (overflow_size
> 0 && m_overflow_visible
)
2030 m_overflow_sizer_item
= sizer
->Add(overflow_size
, 1, 0, wxEXPAND
);
2032 m_overflow_sizer_item
= sizer
->Add(1, overflow_size
, 0, wxEXPAND
);
2036 m_overflow_sizer_item
= NULL
;
2041 // the outside sizer helps us apply the "top" and "bottom" padding
2042 wxBoxSizer
* outside_sizer
= new wxBoxSizer(horizontal
? wxVERTICAL
: wxHORIZONTAL
);
2044 // add "top" padding
2045 if (m_top_padding
> 0)
2048 outside_sizer
->Add(1, m_top_padding
);
2050 outside_sizer
->Add(m_top_padding
, 1);
2053 // add the sizer that contains all of the toolbar elements
2054 outside_sizer
->Add(sizer
, 1, wxEXPAND
);
2056 // add "bottom" padding
2057 if (m_bottom_padding
> 0)
2060 outside_sizer
->Add(1, m_bottom_padding
);
2062 outside_sizer
->Add(m_bottom_padding
, 1);
2065 delete m_sizer
; // remove old sizer
2066 m_sizer
= outside_sizer
;
2068 // calculate the rock-bottom minimum size
2069 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2071 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2072 if (item
.sizer_item
&& item
.proportion
> 0 && item
.min_size
.IsFullySpecified())
2073 item
.sizer_item
->SetMinSize(0,0);
2076 m_absolute_min_size
= m_sizer
->GetMinSize();
2078 // reset the min sizes to what they were
2079 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2081 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2082 if (item
.sizer_item
&& item
.proportion
> 0 && item
.min_size
.IsFullySpecified())
2083 item
.sizer_item
->SetMinSize(item
.min_size
);
2087 wxSize size
= m_sizer
->GetMinSize();
2088 m_minWidth
= size
.x
;
2089 m_minHeight
= size
.y
;
2091 if ((m_style
& wxAUI_TB_NO_AUTORESIZE
) == 0)
2093 wxSize cur_size
= GetClientSize();
2094 wxSize new_size
= GetMinSize();
2095 if (new_size
!= cur_size
)
2097 SetClientSize(new_size
);
2101 m_sizer
->SetDimension(0, 0, cur_size
.x
, cur_size
.y
);
2106 wxSize cur_size
= GetClientSize();
2107 m_sizer
->SetDimension(0, 0, cur_size
.x
, cur_size
.y
);
2113 int wxAuiToolBar::GetOverflowState() const
2115 return m_overflow_state
;
2118 wxRect
wxAuiToolBar::GetOverflowRect() const
2120 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2121 wxRect overflow_rect
= m_overflow_sizer_item
->GetRect();
2122 int overflow_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2124 if (m_orientation
== wxVERTICAL
)
2126 overflow_rect
.y
= cli_rect
.height
- overflow_size
;
2127 overflow_rect
.x
= 0;
2128 overflow_rect
.width
= cli_rect
.width
;
2129 overflow_rect
.height
= overflow_size
;
2133 overflow_rect
.x
= cli_rect
.width
- overflow_size
;
2134 overflow_rect
.y
= 0;
2135 overflow_rect
.width
= overflow_size
;
2136 overflow_rect
.height
= cli_rect
.height
;
2139 return overflow_rect
;
2142 wxSize
wxAuiToolBar::GetLabelSize(const wxString
& label
)
2144 wxClientDC
dc(this);
2147 int text_width
= 0, text_height
= 0;
2151 // get the text height
2152 dc
.GetTextExtent(wxT("ABCDHgj"), &tx
, &text_height
);
2154 // get the text width
2155 dc
.GetTextExtent(label
, &text_width
, &ty
);
2157 return wxSize(text_width
, text_height
);
2161 void wxAuiToolBar::DoIdleUpdate()
2163 wxEvtHandler
* handler
= GetEventHandler();
2165 bool need_refresh
= false;
2168 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2170 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2175 wxUpdateUIEvent
evt(item
.id
);
2176 evt
.SetEventObject(this);
2178 if (handler
->ProcessEvent(evt
))
2180 if (evt
.GetSetEnabled())
2184 is_enabled
= item
.window
->IsEnabled();
2186 is_enabled
= (item
.state
& wxAUI_BUTTON_STATE_DISABLED
) ? false : true;
2188 bool new_enabled
= evt
.GetEnabled();
2189 if (new_enabled
!= is_enabled
)
2193 item
.window
->Enable(new_enabled
);
2198 item
.state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
2200 item
.state
|= wxAUI_BUTTON_STATE_DISABLED
;
2202 need_refresh
= true;
2206 if (evt
.GetSetChecked())
2208 // make sure we aren't checking an item that can't be
2209 if (item
.kind
!= wxITEM_CHECK
&& item
.kind
!= wxITEM_RADIO
)
2212 bool is_checked
= (item
.state
& wxAUI_BUTTON_STATE_CHECKED
) ? true : false;
2213 bool new_checked
= evt
.GetChecked();
2215 if (new_checked
!= is_checked
)
2218 item
.state
|= wxAUI_BUTTON_STATE_CHECKED
;
2220 item
.state
&= ~wxAUI_BUTTON_STATE_CHECKED
;
2222 need_refresh
= true;
2237 void wxAuiToolBar::OnSize(wxSizeEvent
& WXUNUSED(evt
))
2240 GetClientSize(&x
, &y
);
2242 if (((x
>= y
) && m_absolute_min_size
.x
> x
) ||
2243 ((y
> x
) && m_absolute_min_size
.y
> y
))
2245 // hide all flexible items
2247 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2249 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2250 if (item
.sizer_item
&& item
.proportion
> 0 && item
.sizer_item
->IsShown())
2252 item
.sizer_item
->Show(false);
2253 item
.sizer_item
->SetProportion(0);
2259 // show all flexible items
2261 for (i
= 0, count
= m_items
.GetCount(); i
< count
; ++i
)
2263 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2264 if (item
.sizer_item
&& item
.proportion
> 0 && !item
.sizer_item
->IsShown())
2266 item
.sizer_item
->Show(true);
2267 item
.sizer_item
->SetProportion(item
.proportion
);
2272 m_sizer
->SetDimension(0, 0, x
, y
);
2277 // idle events aren't sent while user is resizing frame (why?),
2278 // but resizing toolbar here causes havoc,
2279 // so force idle handler to run after size handling complete
2280 QueueEvent(new wxIdleEvent
);
2285 void wxAuiToolBar::DoSetSize(int x
,
2291 wxSize parent_size
= GetParent()->GetClientSize();
2292 if (x
+ width
> parent_size
.x
)
2293 width
= wxMax(0, parent_size
.x
- x
);
2294 if (y
+ height
> parent_size
.y
)
2295 height
= wxMax(0, parent_size
.y
- y
);
2297 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
2301 void wxAuiToolBar::OnIdle(wxIdleEvent
& evt
)
2303 // if orientation doesn't match dock, fix it
2304 wxAuiManager
* manager
= wxAuiManager::GetManager(this);
2307 wxAuiPaneInfo
& pane
= manager
->GetPane(this);
2308 // pane state member is public, so it might have been changed
2309 // without going through wxPaneInfo::SetFlag() check
2310 bool ok
= pane
.IsOk();
2311 wxCHECK2_MSG(!ok
|| IsPaneValid(m_style
, pane
), ok
= false,
2312 "window settings and pane settings are incompatible");
2315 wxOrientation newOrientation
= m_orientation
;
2316 if (pane
.IsDocked())
2318 switch (pane
.dock_direction
)
2320 case wxAUI_DOCK_TOP
:
2321 case wxAUI_DOCK_BOTTOM
:
2322 newOrientation
= wxHORIZONTAL
;
2324 case wxAUI_DOCK_LEFT
:
2325 case wxAUI_DOCK_RIGHT
:
2326 newOrientation
= wxVERTICAL
;
2329 wxFAIL_MSG("invalid dock location value");
2332 else if (pane
.IsResizable() &&
2333 GetOrientation(m_style
) == wxBOTH
)
2335 // changing orientation in OnSize causes havoc
2337 GetClientSize(&x
, &y
);
2341 newOrientation
= wxHORIZONTAL
;
2345 newOrientation
= wxVERTICAL
;
2348 if (newOrientation
!= m_orientation
)
2350 SetOrientation(newOrientation
);
2352 if (newOrientation
== wxHORIZONTAL
)
2354 pane
.best_size
= GetHintSize(wxAUI_DOCK_TOP
);
2358 pane
.best_size
= GetHintSize(wxAUI_DOCK_LEFT
);
2360 if (pane
.IsDocked())
2362 pane
.floating_size
= wxDefaultSize
;
2366 SetSize(GetParent()->GetClientSize());
2377 void wxAuiToolBar::OnPaint(wxPaintEvent
& WXUNUSED(evt
))
2379 wxAutoBufferedPaintDC
dc(this);
2380 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2383 bool horizontal
= m_orientation
== wxHORIZONTAL
;
2386 m_art
->DrawBackground(dc
, this, cli_rect
);
2388 int gripper_size
= m_art
->GetElementSize(wxAUI_TBART_GRIPPER_SIZE
);
2389 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2391 // paint the gripper
2392 if (gripper_size
> 0 && m_gripper_sizer_item
)
2394 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2396 gripper_rect
.width
= gripper_size
;
2398 gripper_rect
.height
= gripper_size
;
2399 m_art
->DrawGripper(dc
, this, gripper_rect
);
2402 // calculated how far we can draw items
2405 last_extent
= cli_rect
.width
;
2407 last_extent
= cli_rect
.height
;
2408 if (m_overflow_visible
)
2409 last_extent
-= dropdown_size
;
2411 // paint each individual tool
2412 size_t i
, count
= m_items
.GetCount();
2413 for (i
= 0; i
< count
; ++i
)
2415 wxAuiToolBarItem
& item
= m_items
.Item(i
);
2417 if (!item
.sizer_item
)
2420 wxRect item_rect
= item
.sizer_item
->GetRect();
2423 if ((horizontal
&& item_rect
.x
+ item_rect
.width
>= last_extent
) ||
2424 (!horizontal
&& item_rect
.y
+ item_rect
.height
>= last_extent
))
2429 if (item
.kind
== wxITEM_SEPARATOR
)
2432 m_art
->DrawSeparator(dc
, this, item_rect
);
2434 else if (item
.kind
== wxITEM_LABEL
)
2436 // draw a text label only
2437 m_art
->DrawLabel(dc
, this, item
, item_rect
);
2439 else if (item
.kind
== wxITEM_NORMAL
)
2441 // draw a regular button or dropdown button
2443 m_art
->DrawButton(dc
, this, item
, item_rect
);
2445 m_art
->DrawDropDownButton(dc
, this, item
, item_rect
);
2447 else if (item
.kind
== wxITEM_CHECK
)
2449 // draw a toggle button
2450 m_art
->DrawButton(dc
, this, item
, item_rect
);
2452 else if (item
.kind
== wxITEM_RADIO
)
2454 // draw a toggle button
2455 m_art
->DrawButton(dc
, this, item
, item_rect
);
2457 else if (item
.kind
== wxITEM_CONTROL
)
2459 // draw the control's label
2460 m_art
->DrawControlLabel(dc
, this, item
, item_rect
);
2463 // fire a signal to see if the item wants to be custom-rendered
2464 OnCustomRender(dc
, item
, item_rect
);
2467 // paint the overflow button
2468 if (dropdown_size
> 0 && m_overflow_sizer_item
)
2470 wxRect dropdown_rect
= GetOverflowRect();
2471 m_art
->DrawOverflowButton(dc
, this, dropdown_rect
, m_overflow_state
);
2475 void wxAuiToolBar::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
2480 void wxAuiToolBar::OnLeftDown(wxMouseEvent
& evt
)
2482 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2484 if (m_gripper_sizer_item
)
2486 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2487 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2490 wxAuiManager
* manager
= wxAuiManager::GetManager(this);
2494 int x_drag_offset
= evt
.GetX() - gripper_rect
.GetX();
2495 int y_drag_offset
= evt
.GetY() - gripper_rect
.GetY();
2497 // gripper was clicked
2498 manager
->StartPaneDrag(this, wxPoint(x_drag_offset
, y_drag_offset
));
2503 if (m_overflow_sizer_item
)
2505 wxRect overflow_rect
= GetOverflowRect();
2508 m_overflow_visible
&&
2509 overflow_rect
.Contains(evt
.m_x
, evt
.m_y
))
2511 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_OVERFLOW_CLICK
, -1);
2512 e
.SetEventObject(this);
2514 e
.SetClickPoint(wxPoint(evt
.GetX(), evt
.GetY()));
2515 bool processed
= GetEventHandler()->ProcessEvent(e
);
2524 wxAuiToolBarItemArray overflow_items
;
2527 // add custom overflow prepend items, if any
2528 count
= m_custom_overflow_prepend
.GetCount();
2529 for (i
= 0; i
< count
; ++i
)
2530 overflow_items
.Add(m_custom_overflow_prepend
[i
]);
2532 // only show items that don't fit in the dropdown
2533 count
= m_items
.GetCount();
2534 for (i
= 0; i
< count
; ++i
)
2536 if (!GetToolFitsByIndex(i
))
2537 overflow_items
.Add(m_items
[i
]);
2540 // add custom overflow append items, if any
2541 count
= m_custom_overflow_append
.GetCount();
2542 for (i
= 0; i
< count
; ++i
)
2543 overflow_items
.Add(m_custom_overflow_append
[i
]);
2545 int res
= m_art
->ShowDropDown(this, overflow_items
);
2546 m_overflow_state
= 0;
2550 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, res
);
2551 e
.SetEventObject(this);
2552 GetParent()->GetEventHandler()->ProcessEvent(e
);
2561 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2562 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2566 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2568 m_action_pos
= wxPoint(-1,-1);
2569 m_action_item
= NULL
;
2573 SetPressedItem(m_action_item
);
2575 // fire the tool dropdown event
2576 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN
, m_action_item
->id
);
2577 e
.SetEventObject(this);
2578 e
.SetToolId(m_action_item
->id
);
2579 e
.SetDropDownClicked(false);
2581 int mouse_x
= evt
.GetX();
2582 wxRect rect
= m_action_item
->sizer_item
->GetRect();
2584 if (m_action_item
->dropdown
&&
2585 mouse_x
>= (rect
.x
+rect
.width
-BUTTON_DROPDOWN_WIDTH
-1) &&
2586 mouse_x
< (rect
.x
+rect
.width
))
2588 e
.SetDropDownClicked(true);
2591 e
.SetClickPoint(evt
.GetPosition());
2592 e
.SetItemRect(rect
);
2593 GetEventHandler()->ProcessEvent(e
);
2598 void wxAuiToolBar::OnLeftUp(wxMouseEvent
& evt
)
2600 SetPressedItem(NULL
);
2602 wxAuiToolBarItem
* hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2603 if (hit_item
&& !(hit_item
->state
& wxAUI_BUTTON_STATE_DISABLED
))
2605 SetHoverItem(hit_item
);
2611 // reset drag and drop member variables
2613 m_action_pos
= wxPoint(-1,-1);
2614 m_action_item
= NULL
;
2619 wxAuiToolBarItem
* hit_item
;
2620 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2622 if (m_action_item
&& hit_item
== m_action_item
)
2626 if (hit_item
->kind
== wxITEM_CHECK
|| hit_item
->kind
== wxITEM_RADIO
)
2628 bool toggle
= false;
2630 if (m_action_item
->state
& wxAUI_BUTTON_STATE_CHECKED
)
2635 ToggleTool(m_action_item
->id
, toggle
);
2637 // repaint immediately
2641 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, m_action_item
->id
);
2642 e
.SetEventObject(this);
2644 GetEventHandler()->ProcessEvent(e
);
2649 wxCommandEvent
e(wxEVT_COMMAND_MENU_SELECTED
, m_action_item
->id
);
2650 e
.SetEventObject(this);
2651 GetEventHandler()->ProcessEvent(e
);
2657 // reset drag and drop member variables
2659 m_action_pos
= wxPoint(-1,-1);
2660 m_action_item
= NULL
;
2663 void wxAuiToolBar::OnRightDown(wxMouseEvent
& evt
)
2665 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2667 if (m_gripper_sizer_item
)
2669 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2670 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2674 if (m_overflow_sizer_item
)
2676 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2677 if (dropdown_size
> 0 &&
2678 evt
.m_x
> cli_rect
.width
- dropdown_size
&&
2680 evt
.m_y
< cli_rect
.height
&&
2687 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2688 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2692 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2694 m_action_pos
= wxPoint(-1,-1);
2695 m_action_item
= NULL
;
2701 void wxAuiToolBar::OnRightUp(wxMouseEvent
& evt
)
2703 wxAuiToolBarItem
* hit_item
;
2704 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2706 if (m_action_item
&& hit_item
== m_action_item
)
2708 if (hit_item
->kind
== wxITEM_NORMAL
)
2710 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
, m_action_item
->id
);
2711 e
.SetEventObject(this);
2712 e
.SetToolId(m_action_item
->id
);
2713 e
.SetClickPoint(m_action_pos
);
2714 GetEventHandler()->ProcessEvent(e
);
2720 // right-clicked on the invalid area of the toolbar
2721 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_RIGHT_CLICK
, -1);
2722 e
.SetEventObject(this);
2724 e
.SetClickPoint(m_action_pos
);
2725 GetEventHandler()->ProcessEvent(e
);
2729 // reset member variables
2730 m_action_pos
= wxPoint(-1,-1);
2731 m_action_item
= NULL
;
2734 void wxAuiToolBar::OnMiddleDown(wxMouseEvent
& evt
)
2736 wxRect
cli_rect(wxPoint(0,0), GetClientSize());
2738 if (m_gripper_sizer_item
)
2740 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2741 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2745 if (m_overflow_sizer_item
)
2747 int dropdown_size
= m_art
->GetElementSize(wxAUI_TBART_OVERFLOW_SIZE
);
2748 if (dropdown_size
> 0 &&
2749 evt
.m_x
> cli_rect
.width
- dropdown_size
&&
2751 evt
.m_y
< cli_rect
.height
&&
2758 m_action_pos
= wxPoint(evt
.GetX(), evt
.GetY());
2759 m_action_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2763 if (m_action_item
->state
& wxAUI_BUTTON_STATE_DISABLED
)
2765 m_action_pos
= wxPoint(-1,-1);
2766 m_action_item
= NULL
;
2772 void wxAuiToolBar::OnMiddleUp(wxMouseEvent
& evt
)
2774 wxAuiToolBarItem
* hit_item
;
2775 hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2777 if (m_action_item
&& hit_item
== m_action_item
)
2779 if (hit_item
->kind
== wxITEM_NORMAL
)
2781 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_MIDDLE_CLICK
, m_action_item
->id
);
2782 e
.SetEventObject(this);
2783 e
.SetToolId(m_action_item
->id
);
2784 e
.SetClickPoint(m_action_pos
);
2785 GetEventHandler()->ProcessEvent(e
);
2790 // reset member variables
2791 m_action_pos
= wxPoint(-1,-1);
2792 m_action_item
= NULL
;
2795 void wxAuiToolBar::OnMotion(wxMouseEvent
& evt
)
2797 // start a drag event
2799 m_action_item
!= NULL
&&
2800 m_action_pos
!= wxPoint(-1,-1) &&
2801 abs(evt
.m_x
- m_action_pos
.x
) + abs(evt
.m_y
- m_action_pos
.y
) > 5)
2807 wxAuiToolBarEvent
e(wxEVT_COMMAND_AUITOOLBAR_BEGIN_DRAG
, GetId());
2808 e
.SetEventObject(this);
2809 e
.SetToolId(m_action_item
->id
);
2810 GetEventHandler()->ProcessEvent(e
);
2815 wxAuiToolBarItem
* hit_item
= FindToolByPosition(evt
.GetX(), evt
.GetY());
2818 if (!(hit_item
->state
& wxAUI_BUTTON_STATE_DISABLED
))
2819 SetHoverItem(hit_item
);
2825 // no hit item, remove any hit item
2826 SetHoverItem(hit_item
);
2829 // figure out tooltips
2830 wxAuiToolBarItem
* packing_hit_item
;
2831 packing_hit_item
= FindToolByPositionWithPacking(evt
.GetX(), evt
.GetY());
2832 if (packing_hit_item
)
2834 if (packing_hit_item
!= m_tip_item
)
2836 m_tip_item
= packing_hit_item
;
2838 if ( !packing_hit_item
->short_help
.empty() )
2839 SetToolTip(packing_hit_item
->short_help
);
2850 // if we've pressed down an item and we're hovering
2851 // over it, make sure it's state is set to pressed
2854 if (m_action_item
== hit_item
)
2855 SetPressedItem(m_action_item
);
2857 SetPressedItem(NULL
);
2860 // figure out the dropdown button state (are we hovering or pressing it?)
2861 RefreshOverflowState();
2864 void wxAuiToolBar::OnLeaveWindow(wxMouseEvent
& WXUNUSED(evt
))
2866 RefreshOverflowState();
2868 SetPressedItem(NULL
);
2874 void wxAuiToolBar::OnSetCursor(wxSetCursorEvent
& evt
)
2876 wxCursor cursor
= wxNullCursor
;
2878 if (m_gripper_sizer_item
)
2880 wxRect gripper_rect
= m_gripper_sizer_item
->GetRect();
2881 if (gripper_rect
.Contains(evt
.GetX(), evt
.GetY()))
2883 cursor
= wxCursor(wxCURSOR_SIZING
);
2887 evt
.SetCursor(cursor
);