1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: The wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "toolbar.h"
16 #include "wx/wxprec.h"
21 #include "wx/bitmap.h"
22 #include "wx/toolbar.h"
24 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
26 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
27 EVT_PAINT( wxToolBar::OnPaint
)
30 #include "wx/mac/uma.h"
31 #include "wx/geometry.h"
34 const short kwxMacToolBarToolDefaultWidth
= 16 ;
35 const short kwxMacToolBarToolDefaultHeight
= 16 ;
36 const short kwxMacToolBarTopMargin
= 4 ; // 1 ; // used to be 4
37 const short kwxMacToolBarLeftMargin
= 4 ; //1 ; // used to be 4
38 const short kwxMacToolBorder
= 0 ; // used to be 0
39 const short kwxMacToolSpacing
= 6 ; // 2 ; // used to be 6
41 const short kwxMacToolBarToolDefaultWidth
= 24 ;
42 const short kwxMacToolBarToolDefaultHeight
= 22 ;
43 const short kwxMacToolBarTopMargin
= 2 ;
44 const short kwxMacToolBarLeftMargin
= 2 ;
45 const short kwxMacToolBorder
= 4 ;
46 const short kwxMacToolSpacing
= 0 ;
50 #pragma mark Tool Implementation
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 // We have a dual implementation for each tool, ControlRef and HIToolbarItemRef
59 class wxToolBarTool
: public wxToolBarToolBase
62 wxToolBarTool(wxToolBar
*tbar
,
64 const wxString
& label
,
65 const wxBitmap
& bmpNormal
,
66 const wxBitmap
& bmpDisabled
,
69 const wxString
& shortHelp
,
70 const wxString
& longHelp
) ;
72 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
73 : wxToolBarToolBase(tbar
, control
)
77 SetControlHandle( (ControlRef
) control
->GetHandle() ) ;
83 if ( m_controlHandle
)
84 DisposeControl( m_controlHandle
) ;
85 #if wxMAC_USE_NATIVE_TOOLBAR
86 if ( m_toolbarItemRef
)
87 CFRelease( m_toolbarItemRef
) ;
91 WXWidget
GetControlHandle()
93 return (WXWidget
) m_controlHandle
;
96 void SetControlHandle( ControlRef handle
)
98 m_controlHandle
= handle
;
101 void SetPosition( const wxPoint
& position
) ;
106 #if wxMAC_USE_NATIVE_TOOLBAR
107 m_toolbarItemRef
= NULL
;
111 wxSize
GetSize() const
115 return GetControl()->GetSize() ;
117 else if ( IsButton() )
119 return GetToolBar()->GetToolSize() ;
124 wxSize sz
= GetToolBar()->GetToolSize() ;
125 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
132 wxPoint
GetPosition() const
134 return wxPoint(m_x
, m_y
);
136 bool DoEnable( bool enable
) ;
138 void UpdateToggleImage( bool toggle
) ;
140 #if wxMAC_USE_NATIVE_TOOLBAR
141 void SetToolbarItemRef( HIToolbarItemRef ref
)
143 if ( m_controlHandle
)
144 HideControl( m_controlHandle
) ;
145 if ( m_toolbarItemRef
)
146 CFRelease( m_toolbarItemRef
) ;
147 m_toolbarItemRef
= ref
;
148 if ( m_toolbarItemRef
)
150 HIToolbarItemSetHelpText(
151 m_toolbarItemRef
, wxMacCFStringHolder( GetShortHelp() , GetToolBar()->GetFont().GetEncoding() ) ,
152 wxMacCFStringHolder( GetLongHelp() , GetToolBar()->GetFont().GetEncoding() ) ) ;
155 HIToolbarItemRef
GetToolbarItemRef() const
157 return m_toolbarItemRef
;
163 m_controlHandle
= NULL
;
164 #if wxMAC_USE_NATIVE_TOOLBAR
165 m_toolbarItemRef
= NULL
;
168 ControlRef m_controlHandle
;
169 #if wxMAC_USE_NATIVE_TOOLBAR
170 HIToolbarItemRef m_toolbarItemRef
;
176 static const EventTypeSpec eventList
[] =
178 { kEventClassControl
, kEventControlHit
} ,
180 { kEventClassControl
, kEventControlHitTest
} ,
184 static pascal OSStatus
wxMacToolBarToolControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
186 OSStatus result
= eventNotHandledErr
;
188 wxMacCarbonEvent
cEvent( event
) ;
190 ControlRef controlRef
;
192 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
194 switch( GetEventKind( event
) )
196 case kEventControlHit
:
198 wxToolBarTool
* tbartool
= (wxToolBarTool
*)data
;
199 wxToolBar
*tbar
= tbartool
!= NULL
? ( wxToolBar
* ) ( tbartool
->GetToolBar() ) : NULL
;
200 if ((tbartool
!= NULL
) && tbartool
->CanBeToggled() )
204 shouldToggle
= !tbartool
->IsToggled();
206 shouldToggle
= ( GetControl32BitValue((ControlRef
) tbartool
->GetControlHandle()) != 0 );
208 tbar
->ToggleTool( tbartool
->GetId(), shouldToggle
);
210 if (tbartool
!= NULL
)
211 tbar
->OnLeftClick( tbartool
->GetId(), tbartool
->IsToggled() );
216 case kEventControlHitTest
:
218 HIPoint pt
= cEvent
.GetParameter
<HIPoint
>(kEventParamMouseLocation
) ;
220 HIViewGetBounds( controlRef
, &rect
) ;
222 ControlPartCode pc
= kControlNoPart
;
223 if ( CGRectContainsPoint( rect
, pt
) )
224 pc
= kControlIconPart
;
225 cEvent
.SetParameter( kEventParamControlPart
, typeControlPartCode
, pc
) ;
236 static pascal OSStatus
wxMacToolBarToolEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
238 OSStatus result
= eventNotHandledErr
;
240 switch ( GetEventClass( event
) )
242 case kEventClassControl
:
243 result
= wxMacToolBarToolControlEventHandler( handler
, event
, data
) ;
251 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler
)
253 #if wxMAC_USE_NATIVE_TOOLBAR
259 static const EventTypeSpec toolBarEventList
[] =
261 { kEventClassToolbarItem
, kEventToolbarItemPerformAction
} ,
264 static pascal OSStatus
wxMacToolBarCommandEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
266 OSStatus result
= eventNotHandledErr
;
268 switch( GetEventKind( event
) )
270 case kEventToolbarItemPerformAction
:
272 wxToolBarTool
* tbartool
= (wxToolBarTool
*) data
;
273 if ( tbartool
!= NULL
)
275 int toolID
= tbartool
->GetId();
276 wxToolBar
*tbar
= ( wxToolBar
* ) ( tbartool
->GetToolBar() );
277 if ( tbartool
->CanBeToggled() )
279 tbar
->ToggleTool(toolID
, !tbartool
->IsToggled() );
281 tbar
->OnLeftClick( toolID
, tbartool
-> IsToggled() ) ;
292 static pascal OSStatus
wxMacToolBarEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
294 OSStatus result
= eventNotHandledErr
;
295 switch( GetEventClass( event
) )
297 case kEventClassToolbarItem
:
298 result
= wxMacToolBarCommandEventHandler( handler
, event
, data
) ;
306 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarEventHandler
)
310 // ============================================================================
312 // ============================================================================
314 // ----------------------------------------------------------------------------
316 // ----------------------------------------------------------------------------
318 bool wxToolBarTool::DoEnable(bool enable
)
322 GetControl()->Enable( enable
) ;
324 else if ( IsButton() )
326 #if wxMAC_USE_NATIVE_TOOLBAR
327 if ( m_toolbarItemRef
)
328 HIToolbarItemSetEnabled( m_toolbarItemRef
, enable
) ;
331 if ( m_controlHandle
)
333 #if TARGET_API_MAC_OSX
335 EnableControl( m_controlHandle
) ;
337 DisableControl( m_controlHandle
) ;
340 ActivateControl( m_controlHandle
) ;
342 DeactivateControl( m_controlHandle
) ;
349 void wxToolBarTool::SetPosition(const wxPoint
& position
)
356 int mac_x
= position
.x
;
357 int mac_y
= position
.y
;
359 if ( ! GetToolBar()->MacGetTopLevelWindow()->MacUsesCompositing() )
361 GetToolBar()->MacWindowToRootWindow( &x
, &y
) ;
369 GetControlBounds( m_controlHandle
, &contrlRect
) ;
370 int former_mac_x
= contrlRect
.left
;
371 int former_mac_y
= contrlRect
.top
;
372 GetToolBar()->GetToolSize() ;
374 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
376 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
379 else if ( IsControl() )
381 GetControl()->Move( position
) ;
388 GetControlBounds( m_controlHandle
, &contrlRect
) ;
389 int former_mac_x
= contrlRect
.left
;
390 int former_mac_y
= contrlRect
.top
;
392 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
394 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
400 void wxToolBarTool::UpdateToggleImage( bool toggle
)
402 #if wxMAC_USE_NATIVE_TOOLBAR
404 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4
405 #define kHIToolbarItemSelected (1 << 7)
408 // FIXME: this should be a OSX v10.4 runtime check
409 if (m_toolbarItemRef
!= NULL
)
411 OptionBits addAttrs
, removeAttrs
;
416 addAttrs
= kHIToolbarItemSelected
;
417 removeAttrs
= kHIToolbarItemNoAttributes
;
421 addAttrs
= kHIToolbarItemNoAttributes
;
422 removeAttrs
= kHIToolbarItemSelected
;
425 result
= HIToolbarItemChangeAttributes( m_toolbarItemRef
, addAttrs
, removeAttrs
);
431 int w
= m_bmpNormal
.GetWidth() ;
432 int h
= m_bmpNormal
.GetHeight() ;
433 wxBitmap
bmp( w
, h
) ;
435 dc
.SelectObject( bmp
) ;
436 dc
.SetPen( wxNullPen
) ;
437 dc
.SetBackground( *wxWHITE
) ;
438 dc
.DrawRectangle( 0 , 0 , w
, h
) ;
439 dc
.DrawBitmap( m_bmpNormal
, 0 , 0 , true) ;
440 dc
.SelectObject( wxNullBitmap
) ;
441 ControlButtonContentInfo info
;
442 wxMacCreateBitmapButton( &info
, bmp
) ;
443 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
445 wxMacReleaseBitmapButton( &info
) ;
449 ControlButtonContentInfo info
;
450 wxMacCreateBitmapButton( &info
, m_bmpNormal
) ;
451 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
453 wxMacReleaseBitmapButton( &info
) ;
456 IconTransformType transform
= toggle
? kTransformSelected
: kTransformNone
;
457 SetControlData( m_controlHandle
, 0, kControlIconTransformTag
, sizeof( transform
),
459 HIViewSetNeedsDisplay( m_controlHandle
, true ) ;
462 ::SetControl32BitValue( m_controlHandle
, toggle
) ;
466 wxToolBarTool::wxToolBarTool(wxToolBar
*tbar
,
468 const wxString
& label
,
469 const wxBitmap
& bmpNormal
,
470 const wxBitmap
& bmpDisabled
,
472 wxObject
*clientData
,
473 const wxString
& shortHelp
,
474 const wxString
& longHelp
)
475 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
476 clientData
, shortHelp
, longHelp
)
482 #pragma mark Toolbar Implementation
484 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
485 const wxString
& label
,
486 const wxBitmap
& bmpNormal
,
487 const wxBitmap
& bmpDisabled
,
489 wxObject
*clientData
,
490 const wxString
& shortHelp
,
491 const wxString
& longHelp
)
493 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
494 clientData
, shortHelp
, longHelp
);
497 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
499 return new wxToolBarTool(this, control
);
502 void wxToolBar::Init()
506 m_defaultWidth
= kwxMacToolBarToolDefaultWidth
;
507 m_defaultHeight
= kwxMacToolBarToolDefaultHeight
;
508 #if wxMAC_USE_NATIVE_TOOLBAR
509 m_macHIToolbarRef
= NULL
;
510 m_macUsesNativeToolbar
= false ;
514 // also for the toolbar we have the dual implementation:
515 // only when MacInstallNativeToolbar is called is the native toolbar set as the window toolbar
517 bool wxToolBar::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
518 long style
, const wxString
& name
)
521 if ( !wxToolBarBase::Create( parent
, id
, pos
, size
, style
) )
526 #if wxMAC_USE_NATIVE_TOOLBAR
528 labelStr
.Format(wxT("%xd"), (int)this);
529 err
= HIToolbarCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding() ) , 0 ,
530 (HIToolbarRef
*) &m_macHIToolbarRef
);
532 if (m_macHIToolbarRef
!= NULL
)
534 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
535 HIToolbarDisplaySize displaySize
= kHIToolbarDisplaySizeSmall
;
537 if ( style
& wxTB_NOICONS
)
538 mode
= kHIToolbarDisplayModeLabelOnly
;
539 else if ( style
& wxTB_TEXT
)
540 mode
= kHIToolbarDisplayModeIconAndLabel
;
542 mode
= kHIToolbarDisplayModeIconOnly
;
544 // FIXME: override for testing
545 mode
= kHIToolbarDisplayModeIconAndLabel
;
546 displaySize
= kHIToolbarDisplaySizeDefault
;
548 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
) ;
549 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, displaySize
) ;
556 wxToolBar::~wxToolBar()
558 #if wxMAC_USE_NATIVE_TOOLBAR
559 if ( m_macHIToolbarRef
)
561 // if this is the installed toolbar, then deinstall it
562 if (m_macUsesNativeToolbar
)
563 MacInstallNativeToolbar( false );
565 CFRelease( (HIToolbarRef
) m_macHIToolbarRef
);
566 m_macHIToolbarRef
= NULL
;
572 bool wxToolBar::Show( bool show
)
574 bool bResult
, ownToolbarInstalled
= false;
575 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
577 bResult
= (tlw
!= NULL
);
580 #if wxMAC_USE_NATIVE_TOOLBAR
581 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
582 if (ownToolbarInstalled
)
584 bResult
= (HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
) != show
);
585 ShowHideWindowToolbar( tlw
, show
, false );
589 bResult
= wxToolBarBase::Show( show
);
595 bool wxToolBar::IsShown() const
599 #if wxMAC_USE_NATIVE_TOOLBAR
600 bool ownToolbarInstalled
;
601 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
602 if (ownToolbarInstalled
)
603 bResult
= HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
);
606 bResult
= wxToolBarBase::IsShown();
612 void wxToolBar::DoGetSize( int *width
, int *height
) const
614 #if wxMAC_USE_NATIVE_TOOLBAR
616 bool ownToolbarInstalled
;
618 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
619 if ( ownToolbarInstalled
)
621 // TODO is this really a control ?
622 GetControlBounds( (ControlRef
) m_macHIToolbarRef
, &boundsR
);
624 *width
= boundsR
.right
- boundsR
.left
;
625 if ( height
!= NULL
)
626 *height
= boundsR
.bottom
- boundsR
.top
;
630 wxToolBarBase::DoGetSize( width
, height
);
633 void wxToolBar::SetWindowStyleFlag( long style
)
635 wxToolBarBase::SetWindowStyleFlag( style
);
636 #if wxMAC_USE_NATIVE_TOOLBAR
637 if (m_macHIToolbarRef
!= NULL
)
639 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
641 if ( style
& wxTB_NOICONS
)
642 mode
= kHIToolbarDisplayModeLabelOnly
;
643 else if ( style
& wxTB_TEXT
)
644 mode
= kHIToolbarDisplayModeIconAndLabel
;
646 mode
= kHIToolbarDisplayModeIconOnly
;
648 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
);
653 #if wxMAC_USE_NATIVE_TOOLBAR
654 bool wxToolBar::MacWantsNativeToolbar()
656 return m_macUsesNativeToolbar
;
659 bool wxToolBar::MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled
) const
661 bool bResultV
= false;
663 if (ownToolbarInstalled
!= NULL
)
664 *ownToolbarInstalled
= false;
666 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
669 HIToolbarRef curToolbarRef
= NULL
;
670 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
671 bResultV
= ((err
== 0) && (curToolbarRef
!= NULL
));
672 if (bResultV
&& (ownToolbarInstalled
!= NULL
))
673 *ownToolbarInstalled
= (curToolbarRef
== m_macHIToolbarRef
);
679 bool wxToolBar::MacInstallNativeToolbar(bool usesNative
)
681 bool bResult
= false;
683 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
687 if (usesNative
&& (m_macHIToolbarRef
== NULL
))
690 if (usesNative
&& ((GetWindowStyleFlag() & wxTB_VERTICAL
) != 0))
693 // check the existing toolbar
694 HIToolbarRef curToolbarRef
= NULL
;
695 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
697 curToolbarRef
= NULL
;
699 m_macUsesNativeToolbar
= usesNative
;
701 if (m_macUsesNativeToolbar
)
703 // only install toolbar if there isn't one installed already
704 if (curToolbarRef
== NULL
)
708 SetWindowToolbar( tlw
, (HIToolbarRef
) m_macHIToolbarRef
);
709 ShowHideWindowToolbar( tlw
, true, false );
710 ChangeWindowAttributes( tlw
, kWindowToolbarButtonAttribute
, 0 );
711 SetAutomaticControlDragTrackingEnabledForWindow( tlw
, true );
713 // FIXME: which is best, which is necessary?
715 // m_peer->SetVisibility( false, true );
718 Rect r
= { 0 , 0 , 0 , 0 };
721 m_peer
->SetRect( &r
);
723 // FIXME: which is best, which is necessary?
725 SetSize( wxSIZE_AUTO_WIDTH
, 0 );
727 m_peer
->SetVisibility( false, true );
728 wxToolBarBase::Show( false );
733 // only deinstall toolbar if this is the installed one
734 if (m_macHIToolbarRef
== curToolbarRef
)
738 ShowHideWindowToolbar( tlw
, false, false );
739 ChangeWindowAttributes( tlw
, 0 , kWindowToolbarButtonAttribute
);
740 SetWindowToolbar( tlw
, NULL
);
742 // FIXME: which is best, which is necessary?
743 m_peer
->SetVisibility( true, true );
746 // wxToolBarBase::Show( true );
752 InvalidateBestSize();
754 // wxLogDebug( wxT(" --> [%lx] - result [%s]"), (long)this, bResult ? wxT("T") : wxT("F") );
759 bool wxToolBar::Realize()
761 if (m_tools
.GetCount() == 0)
764 int x
= m_xMargin
+ kwxMacToolBarLeftMargin
;
765 int y
= m_yMargin
+ kwxMacToolBarTopMargin
;
773 int maxToolWidth
= 0;
774 int maxToolHeight
= 0;
776 // find the maximum tool width and height
777 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
778 while ( node
!= NULL
)
780 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
784 wxSize sz
= tool
->GetSize();
786 if ( sz
.x
> maxToolWidth
)
788 if ( sz
.y
> maxToolHeight
)
789 maxToolHeight
= sz
.y
;
792 node
= node
->GetNext();
795 bool lastIsRadio
= false;
796 bool curIsRadio
= false;
797 bool setChoiceInGroup
= false;
799 node
= m_tools
.GetFirst();
800 while ( node
!= NULL
)
802 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
806 node
= node
->GetNext();
811 // for the moment just perform a single row/column alignment
812 wxSize cursize
= tool
->GetSize();
813 if ( x
+ cursize
.x
> maxWidth
)
814 maxWidth
= x
+ cursize
.x
;
815 if ( y
+ cursize
.y
> maxHeight
)
816 maxHeight
= y
+ cursize
.y
;
818 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
820 int x1
= x
+ ( maxToolWidth
- cursize
.x
) / 2;
821 tool
->SetPosition( wxPoint(x1
, y
) );
825 int y1
= y
+ ( maxToolHeight
- cursize
.y
) / 2;
826 tool
->SetPosition( wxPoint(x
, y1
) );
829 // update the item positioning state
830 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
831 y
+= cursize
.y
+ kwxMacToolSpacing
;
833 x
+= cursize
.x
+ kwxMacToolSpacing
;
835 #if wxMAC_USE_NATIVE_TOOLBAR
836 // install in native HIToolbar
837 if ( m_macHIToolbarRef
!= NULL
)
839 HIToolbarItemRef hiItemRef
= tool
->GetToolbarItemRef();
840 if ( hiItemRef
!= NULL
)
842 OSStatus result
= HIToolbarAppendItem( (HIToolbarRef
) m_macHIToolbarRef
, hiItemRef
);
845 InstallEventHandler( HIObjectGetEventTarget(hiItemRef
), GetwxMacToolBarEventHandlerUPP(),
846 GetEventTypeCount(toolBarEventList
), toolBarEventList
, tool
, NULL
);
852 // update radio button (and group) state
853 lastIsRadio
= curIsRadio
;
854 curIsRadio
= ( tool
->IsButton() && (tool
->GetKind() == wxITEM_RADIO
) );
858 if ( tool
->IsToggled() )
859 DoToggleTool( tool
, true );
861 setChoiceInGroup
= false;
867 if ( tool
->Toggle(true) )
869 DoToggleTool( tool
, true );
870 setChoiceInGroup
= true;
873 else if ( tool
->IsToggled() )
875 if ( tool
->IsToggled() )
876 DoToggleTool( tool
, true );
878 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
879 while ( nodePrev
!= NULL
)
881 wxToolBarToolBase
*toggleTool
= nodePrev
->GetData();
882 if ( (toggleTool
== NULL
) || !toggleTool
->IsButton() || (toggleTool
->GetKind() != wxITEM_RADIO
) )
885 if ( toggleTool
->Toggle(false) )
886 DoToggleTool( toggleTool
, false );
888 nodePrev
= nodePrev
->GetPrevious();
893 node
= node
->GetNext();
896 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
898 // if not set yet, only one row
899 if ( m_maxRows
<= 0 )
902 m_minWidth
= maxWidth
;
904 maxHeight
+= m_yMargin
+ kwxMacToolBarTopMargin
;
905 m_minHeight
= m_maxHeight
= maxHeight
;
909 // if not set yet, have one column
910 if ( (GetToolsCount() > 0) && (m_maxRows
<= 0) )
911 SetRows( GetToolsCount() );
913 m_minHeight
= maxHeight
;
915 maxWidth
+= m_xMargin
+ kwxMacToolBarLeftMargin
;
916 m_minWidth
= m_maxWidth
= maxWidth
;
920 // FIXME: should this be OSX-only?
922 bool wantNativeToolbar
, ownToolbarInstalled
;
924 // attempt to install the native toolbar
925 wantNativeToolbar
= ((GetWindowStyleFlag() & wxTB_VERTICAL
) == 0);
926 MacInstallNativeToolbar( wantNativeToolbar
);
927 (void)MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
928 if (!ownToolbarInstalled
)
930 SetSize( maxWidth
, maxHeight
);
931 InvalidateBestSize();
935 SetSize( maxWidth
, maxHeight
);
936 InvalidateBestSize();
941 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
943 m_defaultWidth
= size
.x
+ kwxMacToolBorder
;
944 m_defaultHeight
= size
.y
+ kwxMacToolBorder
;
946 #if wxMAC_USE_NATIVE_TOOLBAR
947 if (m_macHIToolbarRef
!= NULL
)
949 int maxs
= wxMax( size
.x
, size
.y
);
951 HIToolbarDisplaySize sizeSpec
= ((maxs
> 16) ? kHIToolbarDisplaySizeNormal
: kHIToolbarDisplaySizeSmall
);
952 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, sizeSpec
);
957 // The button size is bigger than the bitmap size
958 wxSize
wxToolBar::GetToolSize() const
960 return wxSize(m_defaultWidth
+ kwxMacToolBorder
, m_defaultHeight
+ kwxMacToolBorder
);
963 void wxToolBar::SetRows(int nRows
)
965 // avoid resizing the frame uselessly
966 if ( nRows
!= m_maxRows
)
972 void wxToolBar::MacSuperChangedPosition()
974 wxWindow::MacSuperChangedPosition();
975 #if wxMAC_USE_NATIVE_TOOLBAR
976 if (! m_macUsesNativeToolbar
)
983 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
985 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
986 while ( node
!= NULL
)
988 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
992 wxRect2DInt
r( tool
->GetPosition(), tool
->GetSize() );
993 if ( r
.Contains( wxPoint( x
, y
) ) )
997 node
= node
->GetNext();
1000 return (wxToolBarToolBase
*)NULL
;
1003 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
1005 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
1007 return tool
->GetShortHelp() ;
1009 return wxEmptyString
;
1012 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
1015 ((wxToolBarTool
*)t
)->DoEnable( enable
) ;
1018 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
1020 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
1021 if ( ( tool
!= NULL
) && tool
->IsButton() )
1022 tool
->UpdateToggleImage( toggle
);
1025 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
1026 wxToolBarToolBase
*toolBase
)
1028 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolBase
);
1032 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef();
1033 wxSize toolSize
= GetToolSize();
1034 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
};
1035 ControlRef controlHandle
= NULL
;
1038 switch (tool
->GetStyle())
1040 case wxTOOL_STYLE_SEPARATOR
:
1042 wxASSERT( tool
->GetControlHandle() == NULL
);
1045 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1046 toolrect
.bottom
= toolSize
.y
;
1048 toolrect
.right
= toolSize
.x
;
1050 #ifdef __WXMAC_OSX__
1051 // in flat style we need a visual separator
1052 #if wxMAC_USE_NATIVE_TOOLBAR
1053 HIToolbarItemRef item
;
1054 err
= HIToolbarItemCreate( kHIToolbarSeparatorIdentifier
, kHIToolbarItemCantBeRemoved
| kHIToolbarItemIsSeparator
| kHIToolbarItemAllowDuplicates
, &item
);
1056 tool
->SetToolbarItemRef( item
);
1058 CreateSeparatorControl( window
, &toolrect
, &controlHandle
);
1059 tool
->SetControlHandle( controlHandle
);
1064 case wxTOOL_STYLE_BUTTON
:
1066 wxASSERT( tool
->GetControlHandle() == NULL
) ;
1067 ControlButtonContentInfo info
;
1068 wxMacCreateBitmapButton( &info
, tool
->GetNormalBitmap() , kControlContentIconRef
) ;
1070 if ( UMAGetSystemVersion() >= 0x1000)
1071 CreateIconControl( window
, &toolrect
, &info
, false , &controlHandle
) ;
1074 SInt16 behaviour
= kControlBehaviorOffsetContents
;
1075 if ( tool
->CanBeToggled() )
1076 behaviour
+= kControlBehaviorToggles
;
1077 CreateBevelButtonControl( window
, &toolrect
, CFSTR("") , kControlBevelButtonNormalBevel
, behaviour
, &info
,
1078 0 , 0 , 0 , &controlHandle
) ;
1081 #if wxMAC_USE_NATIVE_TOOLBAR
1082 HIToolbarItemRef item
;
1084 labelStr
.Format(wxT("%xd"), (int)tool
);
1085 err
= HIToolbarItemCreate(
1086 wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1087 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
, &item
);
1090 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1091 HIToolbarItemSetIconRef( item
, info
.u
.iconRef
);
1092 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1093 tool
->SetToolbarItemRef( item
);
1097 wxMacReleaseBitmapButton( &info
) ;
1099 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
1100 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
1103 InstallControlEventHandler( (ControlRef
) controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1104 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1106 tool
->SetControlHandle( controlHandle
);
1110 case wxTOOL_STYLE_CONTROL
:
1111 wxASSERT( tool
->GetControl() != NULL
);
1112 #if 0 // wxMAC_USE_NATIVE_TOOLBAR
1113 // FIXME: doesn't work yet...
1115 HIToolbarItemRef item
;
1117 labelStr
.Format( wxT("%xd"), (int) tool
);
1118 result
= HIToolbarItemCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1119 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
,
1123 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1124 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1125 tool
->SetToolbarItemRef( item
);
1127 controlHandle
= ( ControlRef
) tool
->GetControlHandle();
1128 wxASSERT_MSG( controlHandle
!= NULL
, wxT("NULL tool control") );
1130 // FIXME: is this necessary ??
1131 ::GetControlBounds( controlHandle
, &toolrect
);
1132 UMAMoveControl( controlHandle
, -toolrect
.left
, -toolrect
.top
);
1134 // FIXME: is this necessary ??
1135 InstallControlEventHandler( controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1136 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1141 // FIXME: right now there's nothing to do here
1151 if ( controlHandle
)
1153 ControlRef container
= (ControlRef
) GetHandle();
1154 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") );
1156 UMAShowControl( controlHandle
);
1157 ::EmbedControl( controlHandle
, container
);
1160 if ( tool
->CanBeToggled() && tool
->IsToggled() )
1161 tool
->UpdateToggleImage( true );
1163 // nothing special to do here - we relayout in Realize() later
1165 InvalidateBestSize();
1170 errMsg
.Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long) err
);
1171 wxASSERT_MSG( false, errMsg
.c_str() );
1177 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1179 wxFAIL_MSG( _T("not implemented") );
1182 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*toolbase
)
1184 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolbase
) ;
1185 wxToolBarToolsList::compatibility_iterator node
;
1186 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1188 wxToolBarToolBase
*tool2
= node
->GetData();
1189 if ( tool2
== tool
)
1191 // let node point to the next node in the list
1192 node
= node
->GetNext();
1198 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
1202 switch ( tool
->GetStyle() )
1204 case wxTOOL_STYLE_CONTROL
:
1206 tool
->GetControl()->Destroy();
1207 tool
->ClearControl() ;
1211 case wxTOOL_STYLE_BUTTON
:
1212 case wxTOOL_STYLE_SEPARATOR
:
1213 if ( tool
->GetControlHandle() )
1215 DisposeControl( (ControlRef
) tool
->GetControlHandle() ) ;
1216 #if wxMAC_USE_NATIVE_TOOLBAR
1217 if ( tool
->GetToolbarItemRef() )
1218 CFRelease( tool
->GetToolbarItemRef() ) ;
1220 tool
->ClearControl() ;
1228 // and finally reposition all the controls after this one
1230 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
1232 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
1233 wxPoint pt
= tool2
->GetPosition() ;
1235 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1240 tool2
->SetPosition( pt
) ;
1243 InvalidateBestSize();
1247 void wxToolBar::OnPaint(wxPaintEvent
& event
)
1249 #if wxMAC_USE_NATIVE_TOOLBAR
1250 if ( m_macUsesNativeToolbar
)
1257 wxPaintDC
dc(this) ;
1260 GetSize( &w
, &h
) ;
1261 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1262 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1264 if ( UMAGetSystemVersion() >= 0x1030 )
1266 HIThemePlacardDrawInfo info
;
1267 memset( &info
, 0 , sizeof( info
) ) ;
1269 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1271 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1272 HIRect rect
= CGRectMake( 0 , 0 , w
, h
) ;
1273 HIThemeDrawPlacard( &rect
, & info
, cgContext
, kHIThemeOrientationNormal
) ;
1278 // leave the background as it is (striped or metal)
1281 wxMacPortSetter
helper(&dc
) ;
1283 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1284 dc
.YLOG2DEVMAC(h
) , dc
.XLOG2DEVMAC(w
) } ;
1286 if( toolbarrect.left < 0 )
1287 toolbarrect.left = 0 ;
1288 if ( toolbarrect.top < 0 )
1289 toolbarrect.top = 0 ;
1291 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1293 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1297 #if TARGET_API_MAC_OSX
1298 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1299 if ( UMAGetSystemVersion() >= 0x1030 )
1301 HIRect hiToolbarrect
= CGRectMake( dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1302 dc
.YLOG2DEVREL(h
) , dc
.XLOG2DEVREL(w
) );
1303 CGContextRef cgContext
;
1305 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
1306 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1307 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
1308 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
1311 HIThemeBackgroundDrawInfo drawInfo
;
1312 drawInfo
.version
= 0 ;
1313 drawInfo
.state
= kThemeStateActive
;
1314 drawInfo
.kind
= kThemeBackgroundMetal
;
1315 HIThemeApplyBackground( &hiToolbarrect
, &drawInfo
, cgContext
,kHIThemeOrientationNormal
) ;
1318 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1323 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1332 #endif // wxUSE_TOOLBAR