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 // FIXME: override for testing
551 mode
= kHIToolbarDisplayModeIconAndLabel
;
552 displaySize
= kHIToolbarDisplaySizeDefault
;
554 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
) ;
555 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, displaySize
) ;
562 wxToolBar::~wxToolBar()
564 #if wxMAC_USE_NATIVE_TOOLBAR
565 if ( m_macHIToolbarRef
)
567 // if this is the installed toolbar, then deinstall it
568 if (m_macUsesNativeToolbar
)
569 MacInstallNativeToolbar( false );
571 CFRelease( (HIToolbarRef
) m_macHIToolbarRef
);
572 m_macHIToolbarRef
= NULL
;
577 bool wxToolBar::Show( bool show
)
579 bool bResult
, ownToolbarInstalled
= false;
580 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
582 bResult
= (tlw
!= NULL
);
585 #if wxMAC_USE_NATIVE_TOOLBAR
586 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
587 if (ownToolbarInstalled
)
589 bResult
= (HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
) != show
);
590 ShowHideWindowToolbar( tlw
, show
, false );
594 bResult
= wxToolBarBase::Show( show
);
600 bool wxToolBar::IsShown() const
604 #if wxMAC_USE_NATIVE_TOOLBAR
605 bool ownToolbarInstalled
;
606 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
607 if (ownToolbarInstalled
)
608 bResult
= HIViewIsVisible( (HIViewRef
)m_macHIToolbarRef
);
611 bResult
= wxToolBarBase::IsShown();
616 void wxToolBar::DoGetSize( int *width
, int *height
) const
618 #if wxMAC_USE_NATIVE_TOOLBAR
620 bool ownToolbarInstalled
;
622 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
623 if ( ownToolbarInstalled
)
625 // TODO is this really a control ?
626 GetControlBounds( (ControlRef
) m_macHIToolbarRef
, &boundsR
);
628 *width
= boundsR
.right
- boundsR
.left
;
629 if ( height
!= NULL
)
630 *height
= boundsR
.bottom
- boundsR
.top
;
634 wxToolBarBase::DoGetSize( width
, height
);
637 void wxToolBar::SetWindowStyleFlag( long style
)
639 wxToolBarBase::SetWindowStyleFlag( style
);
640 #if wxMAC_USE_NATIVE_TOOLBAR
641 if (m_macHIToolbarRef
!= NULL
)
643 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
645 if ( style
& wxTB_NOICONS
)
646 mode
= kHIToolbarDisplayModeLabelOnly
;
647 else if ( style
& wxTB_TEXT
)
648 mode
= kHIToolbarDisplayModeIconAndLabel
;
650 mode
= kHIToolbarDisplayModeIconOnly
;
652 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
);
657 #if wxMAC_USE_NATIVE_TOOLBAR
658 bool wxToolBar::MacWantsNativeToolbar()
660 return m_macUsesNativeToolbar
;
663 bool wxToolBar::MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled
) const
665 bool bResultV
= false;
667 if (ownToolbarInstalled
!= NULL
)
668 *ownToolbarInstalled
= false;
670 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
673 HIToolbarRef curToolbarRef
= NULL
;
674 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
675 bResultV
= ((err
== 0) && (curToolbarRef
!= NULL
));
676 if (bResultV
&& (ownToolbarInstalled
!= NULL
))
677 *ownToolbarInstalled
= (curToolbarRef
== m_macHIToolbarRef
);
683 bool wxToolBar::MacInstallNativeToolbar(bool usesNative
)
685 bool bResult
= false;
687 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
691 if (usesNative
&& (m_macHIToolbarRef
== NULL
))
694 if (usesNative
&& ((GetWindowStyleFlag() & wxTB_VERTICAL
) != 0))
697 // check the existing toolbar
698 HIToolbarRef curToolbarRef
= NULL
;
699 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
701 curToolbarRef
= NULL
;
703 m_macUsesNativeToolbar
= usesNative
;
705 if (m_macUsesNativeToolbar
)
707 // only install toolbar if there isn't one installed already
708 if (curToolbarRef
== NULL
)
712 SetWindowToolbar( tlw
, (HIToolbarRef
) m_macHIToolbarRef
);
713 ShowHideWindowToolbar( tlw
, true, false );
714 ChangeWindowAttributes( tlw
, kWindowToolbarButtonAttribute
, 0 );
715 SetAutomaticControlDragTrackingEnabledForWindow( tlw
, true );
717 // FIXME: which is best, which is necessary?
719 // m_peer->SetVisibility( false, true );
722 Rect r
= { 0 , 0 , 0 , 0 };
725 m_peer
->SetRect( &r
);
727 // FIXME: which is best, which is necessary?
729 SetSize( wxSIZE_AUTO_WIDTH
, 0 );
731 m_peer
->SetVisibility( false, true );
732 wxToolBarBase::Show( false );
737 // only deinstall toolbar if this is the installed one
738 if (m_macHIToolbarRef
== curToolbarRef
)
742 ShowHideWindowToolbar( tlw
, false, false );
743 ChangeWindowAttributes( tlw
, 0 , kWindowToolbarButtonAttribute
);
744 SetWindowToolbar( tlw
, NULL
);
746 // FIXME: which is best, which is necessary?
747 m_peer
->SetVisibility( true, true );
750 // wxToolBarBase::Show( true );
756 InvalidateBestSize();
758 // wxLogDebug( wxT(" --> [%lx] - result [%s]"), (long)this, bResult ? wxT("T") : wxT("F") );
763 bool wxToolBar::Realize()
765 if (m_tools
.GetCount() == 0)
768 int x
= m_xMargin
+ kwxMacToolBarLeftMargin
;
769 int y
= m_yMargin
+ kwxMacToolBarTopMargin
;
777 int maxToolWidth
= 0;
778 int maxToolHeight
= 0;
780 // find the maximum tool width and height
781 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
782 while ( node
!= NULL
)
784 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
788 wxSize sz
= tool
->GetSize();
790 if ( sz
.x
> maxToolWidth
)
792 if ( sz
.y
> maxToolHeight
)
793 maxToolHeight
= sz
.y
;
796 node
= node
->GetNext();
799 bool lastIsRadio
= false;
800 bool curIsRadio
= false;
801 bool setChoiceInGroup
= false;
803 node
= m_tools
.GetFirst();
804 while ( node
!= NULL
)
806 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
810 node
= node
->GetNext();
815 // for the moment just perform a single row/column alignment
816 wxSize cursize
= tool
->GetSize();
817 if ( x
+ cursize
.x
> maxWidth
)
818 maxWidth
= x
+ cursize
.x
;
819 if ( y
+ cursize
.y
> maxHeight
)
820 maxHeight
= y
+ cursize
.y
;
822 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
824 int x1
= x
+ ( maxToolWidth
- cursize
.x
) / 2;
825 tool
->SetPosition( wxPoint(x1
, y
) );
829 int y1
= y
+ ( maxToolHeight
- cursize
.y
) / 2;
830 tool
->SetPosition( wxPoint(x
, y1
) );
833 // update the item positioning state
834 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
835 y
+= cursize
.y
+ kwxMacToolSpacing
;
837 x
+= cursize
.x
+ kwxMacToolSpacing
;
839 #if wxMAC_USE_NATIVE_TOOLBAR
840 // install in native HIToolbar
841 if ( m_macHIToolbarRef
!= NULL
)
843 HIToolbarItemRef hiItemRef
= tool
->GetToolbarItemRef();
844 if ( hiItemRef
!= NULL
)
846 OSStatus result
= HIToolbarAppendItem( (HIToolbarRef
) m_macHIToolbarRef
, hiItemRef
);
849 InstallEventHandler( HIObjectGetEventTarget(hiItemRef
), GetwxMacToolBarEventHandlerUPP(),
850 GetEventTypeCount(toolBarEventList
), toolBarEventList
, tool
, NULL
);
856 // update radio button (and group) state
857 lastIsRadio
= curIsRadio
;
858 curIsRadio
= ( tool
->IsButton() && (tool
->GetKind() == wxITEM_RADIO
) );
862 if ( tool
->IsToggled() )
863 DoToggleTool( tool
, true );
865 setChoiceInGroup
= false;
871 if ( tool
->Toggle(true) )
873 DoToggleTool( tool
, true );
874 setChoiceInGroup
= true;
877 else if ( tool
->IsToggled() )
879 if ( tool
->IsToggled() )
880 DoToggleTool( tool
, true );
882 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
883 while ( nodePrev
!= NULL
)
885 wxToolBarToolBase
*toggleTool
= nodePrev
->GetData();
886 if ( (toggleTool
== NULL
) || !toggleTool
->IsButton() || (toggleTool
->GetKind() != wxITEM_RADIO
) )
889 if ( toggleTool
->Toggle(false) )
890 DoToggleTool( toggleTool
, false );
892 nodePrev
= nodePrev
->GetPrevious();
897 node
= node
->GetNext();
900 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
902 // if not set yet, only one row
903 if ( m_maxRows
<= 0 )
906 m_minWidth
= maxWidth
;
908 maxHeight
+= m_yMargin
+ kwxMacToolBarTopMargin
;
909 m_minHeight
= m_maxHeight
= maxHeight
;
913 // if not set yet, have one column
914 if ( (GetToolsCount() > 0) && (m_maxRows
<= 0) )
915 SetRows( GetToolsCount() );
917 m_minHeight
= maxHeight
;
919 maxWidth
+= m_xMargin
+ kwxMacToolBarLeftMargin
;
920 m_minWidth
= m_maxWidth
= maxWidth
;
924 // FIXME: should this be OSX-only?
926 bool wantNativeToolbar
, ownToolbarInstalled
;
928 // attempt to install the native toolbar
929 wantNativeToolbar
= ((GetWindowStyleFlag() & wxTB_VERTICAL
) == 0);
930 MacInstallNativeToolbar( wantNativeToolbar
);
931 (void)MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
932 if (!ownToolbarInstalled
)
934 SetSize( maxWidth
, maxHeight
);
935 InvalidateBestSize();
939 SetSize( maxWidth
, maxHeight
);
940 InvalidateBestSize();
945 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
947 m_defaultWidth
= size
.x
+ kwxMacToolBorder
;
948 m_defaultHeight
= size
.y
+ kwxMacToolBorder
;
950 #if wxMAC_USE_NATIVE_TOOLBAR
951 if (m_macHIToolbarRef
!= NULL
)
953 int maxs
= wxMax( size
.x
, size
.y
);
955 HIToolbarDisplaySize sizeSpec
= ((maxs
> 16) ? kHIToolbarDisplaySizeNormal
: kHIToolbarDisplaySizeSmall
);
956 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, sizeSpec
);
961 // The button size is bigger than the bitmap size
962 wxSize
wxToolBar::GetToolSize() const
964 return wxSize(m_defaultWidth
+ kwxMacToolBorder
, m_defaultHeight
+ kwxMacToolBorder
);
967 void wxToolBar::SetRows(int nRows
)
969 // avoid resizing the frame uselessly
970 if ( nRows
!= m_maxRows
)
976 void wxToolBar::MacSuperChangedPosition()
978 wxWindow::MacSuperChangedPosition();
979 #if wxMAC_USE_NATIVE_TOOLBAR
980 if (! m_macUsesNativeToolbar
)
987 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
989 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
990 while ( node
!= NULL
)
992 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
996 wxRect2DInt
r( tool
->GetPosition(), tool
->GetSize() );
997 if ( r
.Contains( wxPoint( x
, y
) ) )
1001 node
= node
->GetNext();
1004 return (wxToolBarToolBase
*)NULL
;
1007 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
1009 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
1011 return tool
->GetShortHelp() ;
1013 return wxEmptyString
;
1016 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
1019 ((wxToolBarTool
*)t
)->DoEnable( enable
) ;
1022 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
1024 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
1025 if ( ( tool
!= NULL
) && tool
->IsButton() )
1026 tool
->UpdateToggleImage( toggle
);
1029 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
1030 wxToolBarToolBase
*toolBase
)
1032 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolBase
);
1036 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef();
1037 wxSize toolSize
= GetToolSize();
1038 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
};
1039 ControlRef controlHandle
= NULL
;
1042 switch (tool
->GetStyle())
1044 case wxTOOL_STYLE_SEPARATOR
:
1046 wxASSERT( tool
->GetControlHandle() == NULL
);
1049 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1050 toolrect
.bottom
= toolSize
.y
;
1052 toolrect
.right
= toolSize
.x
;
1054 #ifdef __WXMAC_OSX__
1055 // in flat style we need a visual separator
1056 #if wxMAC_USE_NATIVE_TOOLBAR
1057 HIToolbarItemRef item
;
1058 err
= HIToolbarItemCreate( kHIToolbarSeparatorIdentifier
, kHIToolbarItemCantBeRemoved
| kHIToolbarItemIsSeparator
| kHIToolbarItemAllowDuplicates
, &item
);
1060 tool
->SetToolbarItemRef( item
);
1062 CreateSeparatorControl( window
, &toolrect
, &controlHandle
);
1063 tool
->SetControlHandle( controlHandle
);
1068 case wxTOOL_STYLE_BUTTON
:
1070 wxASSERT( tool
->GetControlHandle() == NULL
) ;
1071 ControlButtonContentInfo info
;
1072 wxMacCreateBitmapButton( &info
, tool
->GetNormalBitmap() , kControlContentIconRef
) ;
1074 if ( UMAGetSystemVersion() >= 0x1000)
1075 CreateIconControl( window
, &toolrect
, &info
, false , &controlHandle
) ;
1078 SInt16 behaviour
= kControlBehaviorOffsetContents
;
1079 if ( tool
->CanBeToggled() )
1080 behaviour
+= kControlBehaviorToggles
;
1081 CreateBevelButtonControl( window
, &toolrect
, CFSTR("") , kControlBevelButtonNormalBevel
, behaviour
, &info
,
1082 0 , 0 , 0 , &controlHandle
) ;
1085 #if wxMAC_USE_NATIVE_TOOLBAR
1086 HIToolbarItemRef item
;
1088 labelStr
.Format(wxT("%xd"), (int)tool
);
1089 err
= HIToolbarItemCreate(
1090 wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1091 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
, &item
);
1094 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1095 HIToolbarItemSetIconRef( item
, info
.u
.iconRef
);
1096 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1097 tool
->SetToolbarItemRef( item
);
1101 wxMacReleaseBitmapButton( &info
) ;
1103 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
1104 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
1107 InstallControlEventHandler( (ControlRef
) controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1108 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1110 tool
->SetControlHandle( controlHandle
);
1114 case wxTOOL_STYLE_CONTROL
:
1115 wxASSERT( tool
->GetControl() != NULL
);
1116 #if 0 // wxMAC_USE_NATIVE_TOOLBAR
1117 // FIXME: doesn't work yet...
1119 HIToolbarItemRef item
;
1121 labelStr
.Format( wxT("%xd"), (int) tool
);
1122 result
= HIToolbarItemCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1123 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
,
1127 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1128 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1129 tool
->SetToolbarItemRef( item
);
1131 controlHandle
= ( ControlRef
) tool
->GetControlHandle();
1132 wxASSERT_MSG( controlHandle
!= NULL
, wxT("NULL tool control") );
1134 // FIXME: is this necessary ??
1135 ::GetControlBounds( controlHandle
, &toolrect
);
1136 UMAMoveControl( controlHandle
, -toolrect
.left
, -toolrect
.top
);
1138 // FIXME: is this necessary ??
1139 InstallControlEventHandler( controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1140 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1145 // FIXME: right now there's nothing to do here
1155 if ( controlHandle
)
1157 ControlRef container
= (ControlRef
) GetHandle();
1158 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") );
1160 UMAShowControl( controlHandle
);
1161 ::EmbedControl( controlHandle
, container
);
1164 if ( tool
->CanBeToggled() && tool
->IsToggled() )
1165 tool
->UpdateToggleImage( true );
1167 // nothing special to do here - we relayout in Realize() later
1169 InvalidateBestSize();
1174 errMsg
.Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long) err
);
1175 wxASSERT_MSG( false, errMsg
.c_str() );
1181 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1183 wxFAIL_MSG( _T("not implemented") );
1186 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*toolbase
)
1188 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolbase
) ;
1189 wxToolBarToolsList::compatibility_iterator node
;
1190 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1192 wxToolBarToolBase
*tool2
= node
->GetData();
1193 if ( tool2
== tool
)
1195 // let node point to the next node in the list
1196 node
= node
->GetNext();
1202 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
1206 switch ( tool
->GetStyle() )
1208 case wxTOOL_STYLE_CONTROL
:
1210 tool
->GetControl()->Destroy();
1211 tool
->ClearControl() ;
1215 case wxTOOL_STYLE_BUTTON
:
1216 case wxTOOL_STYLE_SEPARATOR
:
1217 if ( tool
->GetControlHandle() )
1219 DisposeControl( (ControlRef
) tool
->GetControlHandle() ) ;
1220 #if wxMAC_USE_NATIVE_TOOLBAR
1221 if ( tool
->GetToolbarItemRef() )
1222 CFRelease( tool
->GetToolbarItemRef() ) ;
1224 tool
->ClearControl() ;
1232 // and finally reposition all the controls after this one
1234 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
1236 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
1237 wxPoint pt
= tool2
->GetPosition() ;
1239 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1244 tool2
->SetPosition( pt
) ;
1247 InvalidateBestSize();
1251 void wxToolBar::OnPaint(wxPaintEvent
& event
)
1253 #if wxMAC_USE_NATIVE_TOOLBAR
1254 if ( m_macUsesNativeToolbar
)
1261 wxPaintDC
dc(this) ;
1264 GetSize( &w
, &h
) ;
1265 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1266 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1268 if ( UMAGetSystemVersion() >= 0x1030 )
1270 HIThemePlacardDrawInfo info
;
1271 memset( &info
, 0 , sizeof( info
) ) ;
1273 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1275 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1276 HIRect rect
= CGRectMake( 0 , 0 , w
, h
) ;
1277 HIThemeDrawPlacard( &rect
, & info
, cgContext
, kHIThemeOrientationNormal
) ;
1282 // leave the background as it is (striped or metal)
1285 wxMacPortSetter
helper(&dc
) ;
1287 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1288 dc
.YLOG2DEVMAC(h
) , dc
.XLOG2DEVMAC(w
) } ;
1290 if( toolbarrect.left < 0 )
1291 toolbarrect.left = 0 ;
1292 if ( toolbarrect.top < 0 )
1293 toolbarrect.top = 0 ;
1295 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1297 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1301 #if TARGET_API_MAC_OSX
1302 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1303 if ( UMAGetSystemVersion() >= 0x1030 )
1305 HIRect hiToolbarrect
= CGRectMake( dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1306 dc
.YLOG2DEVREL(h
) , dc
.XLOG2DEVREL(w
) );
1307 CGContextRef cgContext
;
1309 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
1310 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1311 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
1312 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
1315 HIThemeBackgroundDrawInfo drawInfo
;
1316 drawInfo
.version
= 0 ;
1317 drawInfo
.state
= kThemeStateActive
;
1318 drawInfo
.kind
= kThemeBackgroundMetal
;
1319 HIThemeApplyBackground( &hiToolbarrect
, &drawInfo
, cgContext
,kHIThemeOrientationNormal
) ;
1322 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1327 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1336 #endif // wxUSE_TOOLBAR