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
;
164 m_controlHandle
= NULL
;
165 #if wxMAC_USE_NATIVE_TOOLBAR
166 m_toolbarItemRef
= NULL
;
169 ControlRef m_controlHandle
;
170 #if wxMAC_USE_NATIVE_TOOLBAR
171 HIToolbarItemRef m_toolbarItemRef
;
177 static const EventTypeSpec eventList
[] =
179 { kEventClassControl
, kEventControlHit
} ,
181 { kEventClassControl
, kEventControlHitTest
} ,
185 static pascal OSStatus
wxMacToolBarToolControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
187 OSStatus result
= eventNotHandledErr
;
189 wxMacCarbonEvent
cEvent( event
) ;
191 ControlRef controlRef
;
193 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
195 switch( GetEventKind( event
) )
197 case kEventControlHit
:
199 wxToolBarTool
* tbartool
= (wxToolBarTool
*)data
;
200 wxToolBar
*tbar
= tbartool
!= NULL
? ( wxToolBar
* ) ( tbartool
->GetToolBar() ) : NULL
;
201 if ((tbartool
!= NULL
) && tbartool
->CanBeToggled() )
205 shouldToggle
= !tbartool
->IsToggled();
207 shouldToggle
= ( GetControl32BitValue((ControlRef
) tbartool
->GetControlHandle()) != 0 );
209 tbar
->ToggleTool( tbartool
->GetId(), shouldToggle
);
211 if (tbartool
!= NULL
)
212 tbar
->OnLeftClick( tbartool
->GetId(), tbartool
->IsToggled() );
218 case kEventControlHitTest
:
220 HIPoint pt
= cEvent
.GetParameter
<HIPoint
>(kEventParamMouseLocation
) ;
222 HIViewGetBounds( controlRef
, &rect
) ;
224 ControlPartCode pc
= kControlNoPart
;
225 if ( CGRectContainsPoint( rect
, pt
) )
226 pc
= kControlIconPart
;
227 cEvent
.SetParameter( kEventParamControlPart
, typeControlPartCode
, pc
) ;
239 static pascal OSStatus
wxMacToolBarToolEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
241 OSStatus result
= eventNotHandledErr
;
243 switch ( GetEventClass( event
) )
245 case kEventClassControl
:
246 result
= wxMacToolBarToolControlEventHandler( handler
, event
, data
) ;
255 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler
)
257 #if wxMAC_USE_NATIVE_TOOLBAR
263 static const EventTypeSpec toolBarEventList
[] =
265 { kEventClassToolbarItem
, kEventToolbarItemPerformAction
} ,
268 static pascal OSStatus
wxMacToolBarCommandEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
270 OSStatus result
= eventNotHandledErr
;
272 switch( GetEventKind( event
) )
274 case kEventToolbarItemPerformAction
:
276 wxToolBarTool
* tbartool
= (wxToolBarTool
*) data
;
277 if ( tbartool
!= NULL
)
279 int toolID
= tbartool
->GetId();
280 wxToolBar
*tbar
= ( wxToolBar
* ) ( tbartool
->GetToolBar() );
281 if ( tbartool
->CanBeToggled() )
283 tbar
->ToggleTool(toolID
, !tbartool
->IsToggled() );
285 tbar
->OnLeftClick( toolID
, tbartool
-> IsToggled() ) ;
297 static pascal OSStatus
wxMacToolBarEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
299 OSStatus result
= eventNotHandledErr
;
300 switch( GetEventClass( event
) )
302 case kEventClassToolbarItem
:
303 result
= wxMacToolBarCommandEventHandler( handler
, event
, data
) ;
312 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarEventHandler
)
316 // ============================================================================
318 // ============================================================================
320 // ----------------------------------------------------------------------------
322 // ----------------------------------------------------------------------------
324 bool wxToolBarTool::DoEnable(bool enable
)
328 GetControl()->Enable( enable
) ;
330 else if ( IsButton() )
332 #if wxMAC_USE_NATIVE_TOOLBAR
333 if ( m_toolbarItemRef
)
334 HIToolbarItemSetEnabled( m_toolbarItemRef
, enable
) ;
337 if ( m_controlHandle
)
339 #if TARGET_API_MAC_OSX
341 EnableControl( m_controlHandle
) ;
343 DisableControl( m_controlHandle
) ;
346 ActivateControl( m_controlHandle
) ;
348 DeactivateControl( m_controlHandle
) ;
355 void wxToolBarTool::SetPosition(const wxPoint
& position
)
362 int mac_x
= position
.x
;
363 int mac_y
= position
.y
;
365 if ( ! GetToolBar()->MacGetTopLevelWindow()->MacUsesCompositing() )
367 GetToolBar()->MacWindowToRootWindow( &x
, &y
) ;
375 GetControlBounds( m_controlHandle
, &contrlRect
) ;
376 int former_mac_x
= contrlRect
.left
;
377 int former_mac_y
= contrlRect
.top
;
378 GetToolBar()->GetToolSize() ;
380 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
382 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
385 else if ( IsControl() )
387 GetControl()->Move( position
) ;
394 GetControlBounds( m_controlHandle
, &contrlRect
) ;
395 int former_mac_x
= contrlRect
.left
;
396 int former_mac_y
= contrlRect
.top
;
398 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
400 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
406 void wxToolBarTool::UpdateToggleImage( bool toggle
)
408 #if wxMAC_USE_NATIVE_TOOLBAR
410 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4
411 #define kHIToolbarItemSelected (1 << 7)
414 // FIXME: this should be a OSX v10.4 runtime check
415 if (m_toolbarItemRef
!= NULL
)
417 OptionBits addAttrs
, removeAttrs
;
422 addAttrs
= kHIToolbarItemSelected
;
423 removeAttrs
= kHIToolbarItemNoAttributes
;
427 addAttrs
= kHIToolbarItemNoAttributes
;
428 removeAttrs
= kHIToolbarItemSelected
;
431 result
= HIToolbarItemChangeAttributes( m_toolbarItemRef
, addAttrs
, removeAttrs
);
438 int w
= m_bmpNormal
.GetWidth() ;
439 int h
= m_bmpNormal
.GetHeight() ;
440 wxBitmap
bmp( w
, h
) ;
442 dc
.SelectObject( bmp
) ;
443 dc
.SetPen( wxNullPen
) ;
444 dc
.SetBackground( *wxWHITE
) ;
445 dc
.DrawRectangle( 0 , 0 , w
, h
) ;
446 dc
.DrawBitmap( m_bmpNormal
, 0 , 0 , true) ;
447 dc
.SelectObject( wxNullBitmap
) ;
448 ControlButtonContentInfo info
;
449 wxMacCreateBitmapButton( &info
, bmp
) ;
450 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
452 wxMacReleaseBitmapButton( &info
) ;
456 ControlButtonContentInfo info
;
457 wxMacCreateBitmapButton( &info
, m_bmpNormal
) ;
458 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
460 wxMacReleaseBitmapButton( &info
) ;
463 IconTransformType transform
= toggle
? kTransformSelected
: kTransformNone
;
464 SetControlData( m_controlHandle
, 0, kControlIconTransformTag
, sizeof( transform
),
466 HIViewSetNeedsDisplay( m_controlHandle
, true ) ;
469 ::SetControl32BitValue( m_controlHandle
, toggle
) ;
473 wxToolBarTool::wxToolBarTool(wxToolBar
*tbar
,
475 const wxString
& label
,
476 const wxBitmap
& bmpNormal
,
477 const wxBitmap
& bmpDisabled
,
479 wxObject
*clientData
,
480 const wxString
& shortHelp
,
481 const wxString
& longHelp
)
482 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
483 clientData
, shortHelp
, longHelp
)
489 #pragma mark Toolbar Implementation
491 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
492 const wxString
& label
,
493 const wxBitmap
& bmpNormal
,
494 const wxBitmap
& bmpDisabled
,
496 wxObject
*clientData
,
497 const wxString
& shortHelp
,
498 const wxString
& longHelp
)
500 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
501 clientData
, shortHelp
, longHelp
);
504 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
506 return new wxToolBarTool(this, control
);
509 void wxToolBar::Init()
513 m_defaultWidth
= kwxMacToolBarToolDefaultWidth
;
514 m_defaultHeight
= kwxMacToolBarToolDefaultHeight
;
515 #if wxMAC_USE_NATIVE_TOOLBAR
516 m_macHIToolbarRef
= NULL
;
517 m_macUsesNativeToolbar
= false ;
521 // also for the toolbar we have the dual implementation:
522 // only when MacInstallNativeToolbar is called is the native toolbar set as the window toolbar
524 bool wxToolBar::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
525 long style
, const wxString
& name
)
527 if ( !wxToolBarBase::Create( parent
, id
, pos
, size
, style
) )
532 #if wxMAC_USE_NATIVE_TOOLBAR
534 labelStr
.Format(wxT("%xd"), (int)this);
535 err
= HIToolbarCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding() ) , 0 ,
536 (HIToolbarRef
*) &m_macHIToolbarRef
);
538 if (m_macHIToolbarRef
!= NULL
)
540 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
541 HIToolbarDisplaySize displaySize
= kHIToolbarDisplaySizeSmall
;
543 if ( style
& wxTB_NOICONS
)
544 mode
= kHIToolbarDisplayModeLabelOnly
;
545 else if ( style
& wxTB_TEXT
)
546 mode
= kHIToolbarDisplayModeIconAndLabel
;
548 mode
= kHIToolbarDisplayModeIconOnly
;
550 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
) ;
551 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, displaySize
) ;
558 wxToolBar::~wxToolBar()
560 #if wxMAC_USE_NATIVE_TOOLBAR
561 if ( m_macHIToolbarRef
)
563 // if this is the installed toolbar, then deinstall it
564 if (m_macUsesNativeToolbar
)
565 MacInstallNativeToolbar( false );
567 CFRelease( (HIToolbarRef
) m_macHIToolbarRef
);
568 m_macHIToolbarRef
= NULL
;
573 bool wxToolBar::Show( bool show
)
575 bool bResult
, ownToolbarInstalled
= false;
576 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
578 bResult
= (tlw
!= NULL
);
581 #if wxMAC_USE_NATIVE_TOOLBAR
582 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
583 if (ownToolbarInstalled
)
585 bResult
= (HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
) != show
);
586 ShowHideWindowToolbar( tlw
, show
, false );
590 bResult
= wxToolBarBase::Show( show
);
596 bool wxToolBar::IsShown() const
600 #if wxMAC_USE_NATIVE_TOOLBAR
601 bool ownToolbarInstalled
;
602 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
603 if (ownToolbarInstalled
)
604 bResult
= HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
);
607 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
);
950 HIToolbarDisplaySize sizeSpec
;
952 sizeSpec
= kHIToolbarDisplaySizeLarge
;
953 else if ( maxs
> 24 )
954 sizeSpec
= kHIToolbarDisplaySizeNormal
;
956 sizeSpec
= kHIToolbarDisplaySizeSmall
;
958 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, sizeSpec
);
963 // The button size is bigger than the bitmap size
964 wxSize
wxToolBar::GetToolSize() const
966 return wxSize(m_defaultWidth
+ kwxMacToolBorder
, m_defaultHeight
+ kwxMacToolBorder
);
969 void wxToolBar::SetRows(int nRows
)
971 // avoid resizing the frame uselessly
972 if ( nRows
!= m_maxRows
)
978 void wxToolBar::MacSuperChangedPosition()
980 wxWindow::MacSuperChangedPosition();
981 #if wxMAC_USE_NATIVE_TOOLBAR
982 if (! m_macUsesNativeToolbar
)
989 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
991 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
992 while ( node
!= NULL
)
994 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
998 wxRect2DInt
r( tool
->GetPosition(), tool
->GetSize() );
999 if ( r
.Contains( wxPoint( x
, y
) ) )
1003 node
= node
->GetNext();
1006 return (wxToolBarToolBase
*)NULL
;
1009 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
1011 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
1013 return tool
->GetShortHelp() ;
1015 return wxEmptyString
;
1018 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
1021 ((wxToolBarTool
*)t
)->DoEnable( enable
) ;
1024 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
1026 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
1027 if ( ( tool
!= NULL
) && tool
->IsButton() )
1028 tool
->UpdateToggleImage( toggle
);
1031 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
1032 wxToolBarToolBase
*toolBase
)
1034 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolBase
);
1038 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef();
1039 wxSize toolSize
= GetToolSize();
1040 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
};
1041 ControlRef controlHandle
= NULL
;
1044 switch (tool
->GetStyle())
1046 case wxTOOL_STYLE_SEPARATOR
:
1048 wxASSERT( tool
->GetControlHandle() == NULL
);
1051 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1052 toolrect
.bottom
= toolSize
.y
;
1054 toolrect
.right
= toolSize
.x
;
1056 #ifdef __WXMAC_OSX__
1057 // in flat style we need a visual separator
1058 #if wxMAC_USE_NATIVE_TOOLBAR
1059 HIToolbarItemRef item
;
1060 err
= HIToolbarItemCreate( kHIToolbarSeparatorIdentifier
, kHIToolbarItemCantBeRemoved
| kHIToolbarItemIsSeparator
| kHIToolbarItemAllowDuplicates
, &item
);
1062 tool
->SetToolbarItemRef( item
);
1064 CreateSeparatorControl( window
, &toolrect
, &controlHandle
);
1065 tool
->SetControlHandle( controlHandle
);
1070 case wxTOOL_STYLE_BUTTON
:
1072 wxASSERT( tool
->GetControlHandle() == NULL
) ;
1073 ControlButtonContentInfo info
;
1074 wxMacCreateBitmapButton( &info
, tool
->GetNormalBitmap() , kControlContentIconRef
) ;
1076 if ( UMAGetSystemVersion() >= 0x1000)
1077 CreateIconControl( window
, &toolrect
, &info
, false , &controlHandle
) ;
1080 SInt16 behaviour
= kControlBehaviorOffsetContents
;
1081 if ( tool
->CanBeToggled() )
1082 behaviour
+= kControlBehaviorToggles
;
1083 CreateBevelButtonControl( window
, &toolrect
, CFSTR("") , kControlBevelButtonNormalBevel
, behaviour
, &info
,
1084 0 , 0 , 0 , &controlHandle
) ;
1087 #if wxMAC_USE_NATIVE_TOOLBAR
1088 HIToolbarItemRef item
;
1090 labelStr
.Format(wxT("%xd"), (int)tool
);
1091 err
= HIToolbarItemCreate(
1092 wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1093 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
, &item
);
1096 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1097 HIToolbarItemSetIconRef( item
, info
.u
.iconRef
);
1098 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1099 tool
->SetToolbarItemRef( item
);
1103 wxMacReleaseBitmapButton( &info
) ;
1105 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
1106 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
1109 InstallControlEventHandler( (ControlRef
) controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1110 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1112 tool
->SetControlHandle( controlHandle
);
1116 case wxTOOL_STYLE_CONTROL
:
1117 wxASSERT( tool
->GetControl() != NULL
);
1118 #if 0 // wxMAC_USE_NATIVE_TOOLBAR
1119 // FIXME: doesn't work yet...
1121 HIToolbarItemRef item
;
1123 labelStr
.Format( wxT("%xd"), (int) tool
);
1124 result
= HIToolbarItemCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1125 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
,
1129 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1130 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1131 tool
->SetToolbarItemRef( item
);
1133 controlHandle
= ( ControlRef
) tool
->GetControlHandle();
1134 wxASSERT_MSG( controlHandle
!= NULL
, wxT("NULL tool control") );
1136 // FIXME: is this necessary ??
1137 ::GetControlBounds( controlHandle
, &toolrect
);
1138 UMAMoveControl( controlHandle
, -toolrect
.left
, -toolrect
.top
);
1140 // FIXME: is this necessary ??
1141 InstallControlEventHandler( controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1142 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1147 // FIXME: right now there's nothing to do here
1157 if ( controlHandle
)
1159 ControlRef container
= (ControlRef
) GetHandle();
1160 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") );
1162 UMAShowControl( controlHandle
);
1163 ::EmbedControl( controlHandle
, container
);
1166 if ( tool
->CanBeToggled() && tool
->IsToggled() )
1167 tool
->UpdateToggleImage( true );
1169 // nothing special to do here - we relayout in Realize() later
1171 InvalidateBestSize();
1176 errMsg
.Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long) err
);
1177 wxASSERT_MSG( false, errMsg
.c_str() );
1183 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1185 wxFAIL_MSG( _T("not implemented") );
1188 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*toolbase
)
1190 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolbase
) ;
1191 wxToolBarToolsList::compatibility_iterator node
;
1192 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1194 wxToolBarToolBase
*tool2
= node
->GetData();
1195 if ( tool2
== tool
)
1197 // let node point to the next node in the list
1198 node
= node
->GetNext();
1204 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
1208 switch ( tool
->GetStyle() )
1210 case wxTOOL_STYLE_CONTROL
:
1212 tool
->GetControl()->Destroy();
1213 tool
->ClearControl() ;
1217 case wxTOOL_STYLE_BUTTON
:
1218 case wxTOOL_STYLE_SEPARATOR
:
1219 if ( tool
->GetControlHandle() )
1221 DisposeControl( (ControlRef
) tool
->GetControlHandle() ) ;
1222 #if wxMAC_USE_NATIVE_TOOLBAR
1223 if ( tool
->GetToolbarItemRef() )
1224 CFRelease( tool
->GetToolbarItemRef() ) ;
1226 tool
->ClearControl() ;
1234 // and finally reposition all the controls after this one
1236 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
1238 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
1239 wxPoint pt
= tool2
->GetPosition() ;
1241 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1246 tool2
->SetPosition( pt
) ;
1249 InvalidateBestSize();
1253 void wxToolBar::OnPaint(wxPaintEvent
& event
)
1255 #if wxMAC_USE_NATIVE_TOOLBAR
1256 if ( m_macUsesNativeToolbar
)
1263 wxPaintDC
dc(this) ;
1266 GetSize( &w
, &h
) ;
1267 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1268 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1270 if ( UMAGetSystemVersion() >= 0x1030 )
1272 HIThemePlacardDrawInfo info
;
1273 memset( &info
, 0 , sizeof( info
) ) ;
1275 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1277 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1278 HIRect rect
= CGRectMake( 0 , 0 , w
, h
) ;
1279 HIThemeDrawPlacard( &rect
, & info
, cgContext
, kHIThemeOrientationNormal
) ;
1284 // leave the background as it is (striped or metal)
1287 wxMacPortSetter
helper(&dc
) ;
1289 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1290 dc
.YLOG2DEVMAC(h
) , dc
.XLOG2DEVMAC(w
) } ;
1292 if( toolbarrect.left < 0 )
1293 toolbarrect.left = 0 ;
1294 if ( toolbarrect.top < 0 )
1295 toolbarrect.top = 0 ;
1297 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1299 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1303 #if TARGET_API_MAC_OSX
1304 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1305 if ( UMAGetSystemVersion() >= 0x1030 )
1307 HIRect hiToolbarrect
= CGRectMake( dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1308 dc
.YLOG2DEVREL(h
) , dc
.XLOG2DEVREL(w
) );
1309 CGContextRef cgContext
;
1311 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
1312 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1313 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
1314 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
1317 HIThemeBackgroundDrawInfo drawInfo
;
1318 drawInfo
.version
= 0 ;
1319 drawInfo
.state
= kThemeStateActive
;
1320 drawInfo
.kind
= kThemeBackgroundMetal
;
1321 HIThemeApplyBackground( &hiToolbarrect
, &drawInfo
, cgContext
,kHIThemeOrientationNormal
) ;
1324 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1329 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1338 #endif // wxUSE_TOOLBAR