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
;
160 void SetIndex( CFIndex idx
)
165 CFIndex
GetIndex() const
174 m_controlHandle
= NULL
;
175 #if wxMAC_USE_NATIVE_TOOLBAR
176 m_toolbarItemRef
= NULL
;
180 ControlRef m_controlHandle
;
181 #if wxMAC_USE_NATIVE_TOOLBAR
182 HIToolbarItemRef m_toolbarItemRef
;
183 // position in its toolbar, -1 means not inserted
190 static const EventTypeSpec eventList
[] =
192 { kEventClassControl
, kEventControlHit
} ,
194 { kEventClassControl
, kEventControlHitTest
} ,
198 static pascal OSStatus
wxMacToolBarToolControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
200 OSStatus result
= eventNotHandledErr
;
202 wxMacCarbonEvent
cEvent( event
) ;
204 ControlRef controlRef
;
206 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
208 switch( GetEventKind( event
) )
210 case kEventControlHit
:
212 wxToolBarTool
* tbartool
= (wxToolBarTool
*)data
;
213 wxToolBar
*tbar
= tbartool
!= NULL
? ( wxToolBar
* ) ( tbartool
->GetToolBar() ) : NULL
;
214 if ((tbartool
!= NULL
) && tbartool
->CanBeToggled() )
218 shouldToggle
= !tbartool
->IsToggled();
220 shouldToggle
= ( GetControl32BitValue((ControlRef
) tbartool
->GetControlHandle()) != 0 );
222 tbar
->ToggleTool( tbartool
->GetId(), shouldToggle
);
224 if (tbartool
!= NULL
)
225 tbar
->OnLeftClick( tbartool
->GetId(), tbartool
->IsToggled() );
231 case kEventControlHitTest
:
233 HIPoint pt
= cEvent
.GetParameter
<HIPoint
>(kEventParamMouseLocation
) ;
235 HIViewGetBounds( controlRef
, &rect
) ;
237 ControlPartCode pc
= kControlNoPart
;
238 if ( CGRectContainsPoint( rect
, pt
) )
239 pc
= kControlIconPart
;
240 cEvent
.SetParameter( kEventParamControlPart
, typeControlPartCode
, pc
) ;
252 static pascal OSStatus
wxMacToolBarToolEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
254 OSStatus result
= eventNotHandledErr
;
256 switch ( GetEventClass( event
) )
258 case kEventClassControl
:
259 result
= wxMacToolBarToolControlEventHandler( handler
, event
, data
) ;
268 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler
)
270 #if wxMAC_USE_NATIVE_TOOLBAR
276 static const EventTypeSpec toolBarEventList
[] =
278 { kEventClassToolbarItem
, kEventToolbarItemPerformAction
} ,
281 static pascal OSStatus
wxMacToolBarCommandEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
283 OSStatus result
= eventNotHandledErr
;
285 switch( GetEventKind( event
) )
287 case kEventToolbarItemPerformAction
:
289 wxToolBarTool
* tbartool
= (wxToolBarTool
*) data
;
290 if ( tbartool
!= NULL
)
292 int toolID
= tbartool
->GetId();
293 wxToolBar
*tbar
= ( wxToolBar
* ) ( tbartool
->GetToolBar() );
294 if ( tbartool
->CanBeToggled() )
297 tbar
->ToggleTool(toolID
, !tbartool
->IsToggled() );
300 tbar
->OnLeftClick( toolID
, tbartool
-> IsToggled() ) ;
312 static pascal OSStatus
wxMacToolBarEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
314 OSStatus result
= eventNotHandledErr
;
315 switch( GetEventClass( event
) )
317 case kEventClassToolbarItem
:
318 result
= wxMacToolBarCommandEventHandler( handler
, event
, data
) ;
327 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarEventHandler
)
331 // ============================================================================
333 // ============================================================================
335 // ----------------------------------------------------------------------------
337 // ----------------------------------------------------------------------------
339 bool wxToolBarTool::DoEnable(bool enable
)
343 GetControl()->Enable( enable
) ;
345 else if ( IsButton() )
347 #if wxMAC_USE_NATIVE_TOOLBAR
348 if ( m_toolbarItemRef
)
349 HIToolbarItemSetEnabled( m_toolbarItemRef
, enable
) ;
352 if ( m_controlHandle
)
354 #if TARGET_API_MAC_OSX
356 EnableControl( m_controlHandle
) ;
358 DisableControl( m_controlHandle
) ;
361 ActivateControl( m_controlHandle
) ;
363 DeactivateControl( m_controlHandle
) ;
370 void wxToolBarTool::SetPosition(const wxPoint
& position
)
377 int mac_x
= position
.x
;
378 int mac_y
= position
.y
;
380 if ( ! GetToolBar()->MacGetTopLevelWindow()->MacUsesCompositing() )
382 GetToolBar()->MacWindowToRootWindow( &x
, &y
) ;
390 GetControlBounds( m_controlHandle
, &contrlRect
) ;
391 int former_mac_x
= contrlRect
.left
;
392 int former_mac_y
= contrlRect
.top
;
393 GetToolBar()->GetToolSize() ;
395 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
397 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
400 else if ( IsControl() )
402 GetControl()->Move( position
) ;
409 GetControlBounds( m_controlHandle
, &contrlRect
) ;
410 int former_mac_x
= contrlRect
.left
;
411 int former_mac_y
= contrlRect
.top
;
413 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
415 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
421 void wxToolBarTool::UpdateToggleImage( bool toggle
)
423 #if wxMAC_USE_NATIVE_TOOLBAR
425 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4
426 #define kHIToolbarItemSelected (1 << 7)
429 // FIXME: this should be a OSX v10.4 runtime check
430 if (m_toolbarItemRef
!= NULL
)
432 OptionBits addAttrs
, removeAttrs
;
437 addAttrs
= kHIToolbarItemSelected
;
438 removeAttrs
= kHIToolbarItemNoAttributes
;
442 addAttrs
= kHIToolbarItemNoAttributes
;
443 removeAttrs
= kHIToolbarItemSelected
;
446 result
= HIToolbarItemChangeAttributes( m_toolbarItemRef
, addAttrs
, removeAttrs
);
453 int w
= m_bmpNormal
.GetWidth() ;
454 int h
= m_bmpNormal
.GetHeight() ;
455 wxBitmap
bmp( w
, h
) ;
457 dc
.SelectObject( bmp
) ;
458 dc
.SetPen( wxNullPen
) ;
459 dc
.SetBackground( *wxWHITE
) ;
460 dc
.DrawRectangle( 0 , 0 , w
, h
) ;
461 dc
.DrawBitmap( m_bmpNormal
, 0 , 0 , true) ;
462 dc
.SelectObject( wxNullBitmap
) ;
463 ControlButtonContentInfo info
;
464 wxMacCreateBitmapButton( &info
, bmp
) ;
465 SetControlData( m_controlHandle
, 0, kControlIconContentTag
,
466 sizeof( info
), (Ptr
)&info
);
467 wxMacReleaseBitmapButton( &info
) ;
471 ControlButtonContentInfo info
;
472 wxMacCreateBitmapButton( &info
, m_bmpNormal
) ;
473 SetControlData( m_controlHandle
, 0, kControlIconContentTag
,
474 sizeof( info
), (Ptr
)&info
);
475 wxMacReleaseBitmapButton( &info
) ;
478 IconTransformType transform
= toggle
? kTransformSelected
: kTransformNone
;
479 SetControlData( m_controlHandle
, 0, kControlIconTransformTag
,
480 sizeof( transform
), (Ptr
)&transform
);
481 HIViewSetNeedsDisplay( m_controlHandle
, true ) ;
484 ::SetControl32BitValue( m_controlHandle
, toggle
) ;
488 wxToolBarTool::wxToolBarTool(wxToolBar
*tbar
,
490 const wxString
& label
,
491 const wxBitmap
& bmpNormal
,
492 const wxBitmap
& bmpDisabled
,
494 wxObject
*clientData
,
495 const wxString
& shortHelp
,
496 const wxString
& longHelp
)
497 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
498 clientData
, shortHelp
, longHelp
)
504 #pragma mark Toolbar Implementation
506 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
507 const wxString
& label
,
508 const wxBitmap
& bmpNormal
,
509 const wxBitmap
& bmpDisabled
,
511 wxObject
*clientData
,
512 const wxString
& shortHelp
,
513 const wxString
& longHelp
)
515 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
516 clientData
, shortHelp
, longHelp
);
519 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
521 return new wxToolBarTool(this, control
);
524 void wxToolBar::Init()
528 m_defaultWidth
= kwxMacToolBarToolDefaultWidth
;
529 m_defaultHeight
= kwxMacToolBarToolDefaultHeight
;
530 #if wxMAC_USE_NATIVE_TOOLBAR
531 m_macHIToolbarRef
= NULL
;
532 m_macUsesNativeToolbar
= false ;
536 // also for the toolbar we have the dual implementation:
537 // only when MacInstallNativeToolbar is called is the native toolbar set as the window toolbar
539 bool wxToolBar::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
540 long style
, const wxString
& name
)
542 if ( !wxToolBarBase::Create( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
547 #if wxMAC_USE_NATIVE_TOOLBAR
548 wxString labelStr
= wxString::Format(wxT("%xd"), (int)this);
549 err
= HIToolbarCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding() ) , 0 ,
550 (HIToolbarRef
*) &m_macHIToolbarRef
);
552 if (m_macHIToolbarRef
!= NULL
)
554 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
555 HIToolbarDisplaySize displaySize
= kHIToolbarDisplaySizeSmall
;
557 if ( style
& wxTB_NOICONS
)
558 mode
= kHIToolbarDisplayModeLabelOnly
;
559 else if ( style
& wxTB_TEXT
)
560 mode
= kHIToolbarDisplayModeIconAndLabel
;
562 mode
= kHIToolbarDisplayModeIconOnly
;
564 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
) ;
565 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, displaySize
) ;
572 wxToolBar::~wxToolBar()
574 #if wxMAC_USE_NATIVE_TOOLBAR
575 if ( m_macHIToolbarRef
)
577 // if this is the installed toolbar, then deinstall it
578 if (m_macUsesNativeToolbar
)
579 MacInstallNativeToolbar( false );
581 CFRelease( (HIToolbarRef
) m_macHIToolbarRef
);
582 m_macHIToolbarRef
= NULL
;
587 bool wxToolBar::Show( bool show
)
590 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
592 bResult
= (tlw
!= NULL
);
595 #if wxMAC_USE_NATIVE_TOOLBAR
596 bool ownToolbarInstalled
= false;
597 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
598 if (ownToolbarInstalled
)
600 bResult
= ( IsWindowToolbarVisible(tlw
) != show
);
602 ShowHideWindowToolbar( tlw
, show
, false );
606 bResult
= wxToolBarBase::Show( show
);
612 bool wxToolBar::IsShown() const
616 #if wxMAC_USE_NATIVE_TOOLBAR
617 bool ownToolbarInstalled
;
618 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
619 if (ownToolbarInstalled
)
621 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
622 bResult
= IsWindowToolbarVisible(tlw
) ;
626 bResult
= wxToolBarBase::IsShown();
631 void wxToolBar::DoGetSize( int *width
, int *height
) const
633 #if wxMAC_USE_NATIVE_TOOLBAR
635 bool ownToolbarInstalled
;
637 MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
638 if ( ownToolbarInstalled
)
640 // TODO is this really a control ?
641 GetControlBounds( (ControlRef
) m_macHIToolbarRef
, &boundsR
);
643 *width
= boundsR
.right
- boundsR
.left
;
644 if ( height
!= NULL
)
645 *height
= boundsR
.bottom
- boundsR
.top
;
649 wxToolBarBase::DoGetSize( width
, height
);
652 void wxToolBar::SetWindowStyleFlag( long style
)
654 wxToolBarBase::SetWindowStyleFlag( style
);
655 #if wxMAC_USE_NATIVE_TOOLBAR
656 if (m_macHIToolbarRef
!= NULL
)
658 HIToolbarDisplayMode mode
= kHIToolbarDisplayModeDefault
;
660 if ( style
& wxTB_NOICONS
)
661 mode
= kHIToolbarDisplayModeLabelOnly
;
662 else if ( style
& wxTB_TEXT
)
663 mode
= kHIToolbarDisplayModeIconAndLabel
;
665 mode
= kHIToolbarDisplayModeIconOnly
;
667 HIToolbarSetDisplayMode( (HIToolbarRef
) m_macHIToolbarRef
, mode
);
672 #if wxMAC_USE_NATIVE_TOOLBAR
673 bool wxToolBar::MacWantsNativeToolbar()
675 return m_macUsesNativeToolbar
;
678 bool wxToolBar::MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled
) const
680 bool bResultV
= false;
682 if (ownToolbarInstalled
!= NULL
)
683 *ownToolbarInstalled
= false;
685 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
688 HIToolbarRef curToolbarRef
= NULL
;
689 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
690 bResultV
= ((err
== 0) && (curToolbarRef
!= NULL
));
691 if (bResultV
&& (ownToolbarInstalled
!= NULL
))
692 *ownToolbarInstalled
= (curToolbarRef
== m_macHIToolbarRef
);
698 bool wxToolBar::MacInstallNativeToolbar(bool usesNative
)
700 bool bResult
= false;
702 WindowRef tlw
= MAC_WXHWND(MacGetTopLevelWindowRef());
706 if (usesNative
&& (m_macHIToolbarRef
== NULL
))
709 if (usesNative
&& ((GetWindowStyleFlag() & wxTB_VERTICAL
) != 0))
712 // check the existing toolbar
713 HIToolbarRef curToolbarRef
= NULL
;
714 OSStatus err
= GetWindowToolbar( tlw
, &curToolbarRef
);
716 curToolbarRef
= NULL
;
718 m_macUsesNativeToolbar
= usesNative
;
720 if (m_macUsesNativeToolbar
)
722 // only install toolbar if there isn't one installed already
723 if (curToolbarRef
== NULL
)
727 SetWindowToolbar( tlw
, (HIToolbarRef
) m_macHIToolbarRef
);
728 ShowHideWindowToolbar( tlw
, true, false );
729 ChangeWindowAttributes( tlw
, kWindowToolbarButtonAttribute
, 0 );
730 SetAutomaticControlDragTrackingEnabledForWindow( tlw
, true );
732 // FIXME: which is best, which is necessary?
734 // m_peer->SetVisibility( false, true );
737 Rect r
= { 0 , 0 , 0 , 0 };
740 m_peer
->SetRect( &r
);
742 // FIXME: which is best, which is necessary?
744 SetSize( wxSIZE_AUTO_WIDTH
, 0 );
746 m_peer
->SetVisibility( false, true );
747 wxToolBarBase::Show( false );
752 // only deinstall toolbar if this is the installed one
753 if (m_macHIToolbarRef
== curToolbarRef
)
757 ShowHideWindowToolbar( tlw
, false, false );
758 ChangeWindowAttributes( tlw
, 0 , kWindowToolbarButtonAttribute
);
759 SetWindowToolbar( tlw
, NULL
);
761 // FIXME: which is best, which is necessary?
762 m_peer
->SetVisibility( true, true );
765 // wxToolBarBase::Show( true );
771 InvalidateBestSize();
773 // wxLogDebug( wxT(" --> [%lx] - result [%s]"), (long)this, bResult ? wxT("T") : wxT("F") );
778 bool wxToolBar::Realize()
780 if (m_tools
.GetCount() == 0)
783 int x
= m_xMargin
+ kwxMacToolBarLeftMargin
;
784 int y
= m_yMargin
+ kwxMacToolBarTopMargin
;
792 int maxToolWidth
= 0;
793 int maxToolHeight
= 0;
795 // find the maximum tool width and height
796 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
797 while ( node
!= NULL
)
799 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
803 wxSize sz
= tool
->GetSize();
805 if ( sz
.x
> maxToolWidth
)
807 if ( sz
.y
> maxToolHeight
)
808 maxToolHeight
= sz
.y
;
811 node
= node
->GetNext();
814 bool lastIsRadio
= false;
815 bool curIsRadio
= false;
816 bool setChoiceInGroup
= false;
818 node
= m_tools
.GetFirst();
820 #if wxMAC_USE_NATIVE_TOOLBAR
821 CFIndex currentPosition
= 0 ;
822 bool insertAll
= false ;
823 #endif // wxMAC_USE_NATIVE_TOOLBAR
825 while ( node
!= NULL
)
827 wxToolBarTool
*tool
= (wxToolBarTool
*) node
->GetData();
831 node
= node
->GetNext();
836 // for the moment just perform a single row/column alignment
837 wxSize cursize
= tool
->GetSize();
838 if ( x
+ cursize
.x
> maxWidth
)
839 maxWidth
= x
+ cursize
.x
;
840 if ( y
+ cursize
.y
> maxHeight
)
841 maxHeight
= y
+ cursize
.y
;
843 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
845 int x1
= x
+ ( maxToolWidth
- cursize
.x
) / 2;
846 tool
->SetPosition( wxPoint(x1
, y
) );
850 int y1
= y
+ ( maxToolHeight
- cursize
.y
) / 2;
851 tool
->SetPosition( wxPoint(x
, y1
) );
854 // update the item positioning state
855 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
856 y
+= cursize
.y
+ kwxMacToolSpacing
;
858 x
+= cursize
.x
+ kwxMacToolSpacing
;
860 #if wxMAC_USE_NATIVE_TOOLBAR
861 // install in native HIToolbar
862 if ( m_macHIToolbarRef
!= NULL
)
864 HIToolbarItemRef hiItemRef
= tool
->GetToolbarItemRef();
865 if ( hiItemRef
!= NULL
)
867 if ( tool
->GetIndex() != currentPosition
|| insertAll
== true )
869 OSStatus err
= noErr
;
872 // if this is the first tool that gets newly inserted or repositioned
873 // first remove all 'old' tools from here to the right, because of this
874 // all following tools will have to be reinserted (insertAll). i = 100 because there's
875 // no way to determine how many there are in a toolbar, so just a high number :-(
876 for ( CFIndex i
= 100 ; i
>= currentPosition
; --i
)
878 err
= HIToolbarRemoveItemAtIndex( (HIToolbarRef
) m_macHIToolbarRef
, i
) ;
880 wxASSERT_MSG( err
== noErr
, _T("HIToolbarRemoveItemAtIndex failed") );
883 err
= HIToolbarInsertItemAtIndex( (HIToolbarRef
) m_macHIToolbarRef
, hiItemRef
, currentPosition
) ;
884 wxASSERT_MSG( err
== noErr
, _T("HIToolbarInsertItemAtIndex failed") );
885 tool
->SetIndex( currentPosition
) ;
890 #endif // wxMAC_USE_NATIVE_TOOLBAR
892 // update radio button (and group) state
893 lastIsRadio
= curIsRadio
;
894 curIsRadio
= ( tool
->IsButton() && (tool
->GetKind() == wxITEM_RADIO
) );
898 if ( tool
->IsToggled() )
899 DoToggleTool( tool
, true );
901 setChoiceInGroup
= false;
907 if ( tool
->Toggle(true) )
909 DoToggleTool( tool
, true );
910 setChoiceInGroup
= true;
913 else if ( tool
->IsToggled() )
915 if ( tool
->IsToggled() )
916 DoToggleTool( tool
, true );
918 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
919 while ( nodePrev
!= NULL
)
921 wxToolBarToolBase
*toggleTool
= nodePrev
->GetData();
922 if ( (toggleTool
== NULL
) || !toggleTool
->IsButton() || (toggleTool
->GetKind() != wxITEM_RADIO
) )
925 if ( toggleTool
->Toggle(false) )
926 DoToggleTool( toggleTool
, false );
928 nodePrev
= nodePrev
->GetPrevious();
933 node
= node
->GetNext();
936 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
938 // if not set yet, only one row
939 if ( m_maxRows
<= 0 )
942 m_minWidth
= maxWidth
;
944 maxHeight
+= m_yMargin
+ kwxMacToolBarTopMargin
;
945 m_minHeight
= m_maxHeight
= maxHeight
;
949 // if not set yet, have one column
950 if ( (GetToolsCount() > 0) && (m_maxRows
<= 0) )
951 SetRows( GetToolsCount() );
953 m_minHeight
= maxHeight
;
955 maxWidth
+= m_xMargin
+ kwxMacToolBarLeftMargin
;
956 m_minWidth
= m_maxWidth
= maxWidth
;
960 // FIXME: should this be OSX-only?
962 bool wantNativeToolbar
, ownToolbarInstalled
;
964 // attempt to install the native toolbar
965 wantNativeToolbar
= ((GetWindowStyleFlag() & wxTB_VERTICAL
) == 0);
966 MacInstallNativeToolbar( wantNativeToolbar
);
967 (void)MacTopLevelHasNativeToolbar( &ownToolbarInstalled
);
968 if (!ownToolbarInstalled
)
970 SetSize( maxWidth
, maxHeight
);
971 InvalidateBestSize();
975 SetSize( maxWidth
, maxHeight
);
976 InvalidateBestSize();
979 SetBestFittingSize();
984 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
986 m_defaultWidth
= size
.x
+ kwxMacToolBorder
;
987 m_defaultHeight
= size
.y
+ kwxMacToolBorder
;
989 #if wxMAC_USE_NATIVE_TOOLBAR
990 if (m_macHIToolbarRef
!= NULL
)
992 int maxs
= wxMax( size
.x
, size
.y
);
993 HIToolbarDisplaySize sizeSpec
;
995 sizeSpec
= kHIToolbarDisplaySizeNormal
;
996 else if ( maxs
> 24 )
997 sizeSpec
= kHIToolbarDisplaySizeDefault
;
999 sizeSpec
= kHIToolbarDisplaySizeSmall
;
1001 HIToolbarSetDisplaySize( (HIToolbarRef
) m_macHIToolbarRef
, sizeSpec
);
1006 // The button size is bigger than the bitmap size
1007 wxSize
wxToolBar::GetToolSize() const
1009 return wxSize(m_defaultWidth
+ kwxMacToolBorder
, m_defaultHeight
+ kwxMacToolBorder
);
1012 void wxToolBar::SetRows(int nRows
)
1014 // avoid resizing the frame uselessly
1015 if ( nRows
!= m_maxRows
)
1021 void wxToolBar::MacSuperChangedPosition()
1023 wxWindow::MacSuperChangedPosition();
1024 #if wxMAC_USE_NATIVE_TOOLBAR
1025 if (! m_macUsesNativeToolbar
)
1032 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1034 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
1035 while ( node
!= NULL
)
1037 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
1041 wxRect2DInt
r( tool
->GetPosition(), tool
->GetSize() );
1042 if ( r
.Contains( wxPoint( x
, y
) ) )
1046 node
= node
->GetNext();
1049 return (wxToolBarToolBase
*)NULL
;
1052 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
1054 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
1056 return tool
->GetShortHelp() ;
1058 return wxEmptyString
;
1061 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
1064 ((wxToolBarTool
*)t
)->DoEnable( enable
) ;
1067 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
1069 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
1070 if ( ( tool
!= NULL
) && tool
->IsButton() )
1071 tool
->UpdateToggleImage( toggle
);
1074 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
1075 wxToolBarToolBase
*toolBase
)
1077 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolBase
);
1081 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef();
1082 wxSize toolSize
= GetToolSize();
1083 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
};
1084 ControlRef controlHandle
= NULL
;
1087 switch (tool
->GetStyle())
1089 case wxTOOL_STYLE_SEPARATOR
:
1091 wxASSERT( tool
->GetControlHandle() == NULL
);
1094 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1095 toolrect
.bottom
= toolSize
.y
;
1097 toolrect
.right
= toolSize
.x
;
1099 #ifdef __WXMAC_OSX__
1100 // in flat style we need a visual separator
1101 #if wxMAC_USE_NATIVE_TOOLBAR
1102 HIToolbarItemRef item
;
1103 err
= HIToolbarItemCreate( kHIToolbarSeparatorIdentifier
, kHIToolbarItemCantBeRemoved
| kHIToolbarItemIsSeparator
| kHIToolbarItemAllowDuplicates
, &item
);
1105 tool
->SetToolbarItemRef( item
);
1106 #endif // wxMAC_USE_NATIVE_TOOLBAR
1107 CreateSeparatorControl( window
, &toolrect
, &controlHandle
);
1108 tool
->SetControlHandle( controlHandle
);
1109 #endif // __WXMAC_OSX__
1113 case wxTOOL_STYLE_BUTTON
:
1115 wxASSERT( tool
->GetControlHandle() == NULL
) ;
1116 ControlButtonContentInfo info
;
1117 wxMacCreateBitmapButton( &info
, tool
->GetNormalBitmap() , kControlContentIconRef
) ;
1119 if ( UMAGetSystemVersion() >= 0x1000)
1120 CreateIconControl( window
, &toolrect
, &info
, false , &controlHandle
) ;
1123 SInt16 behaviour
= kControlBehaviorOffsetContents
;
1124 if ( tool
->CanBeToggled() )
1125 behaviour
+= kControlBehaviorToggles
;
1126 CreateBevelButtonControl( window
, &toolrect
, CFSTR("") ,
1127 kControlBevelButtonNormalBevel
,
1129 0 , 0 , 0 , &controlHandle
) ;
1132 #if wxMAC_USE_NATIVE_TOOLBAR
1133 HIToolbarItemRef item
;
1134 wxString labelStr
= wxString::Format(wxT("%xd"), (int)tool
);
1135 err
= HIToolbarItemCreate(
1136 wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1137 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
, &item
);
1140 InstallEventHandler( HIObjectGetEventTarget(item
), GetwxMacToolBarEventHandlerUPP(),
1141 GetEventTypeCount(toolBarEventList
), toolBarEventList
, tool
, NULL
);
1142 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1143 HIToolbarItemSetIconRef( item
, info
.u
.iconRef
);
1144 HIToolbarItemSetCommandID( item
, kHIToolbarCommandPressAction
);
1145 tool
->SetToolbarItemRef( item
);
1147 #endif // wxMAC_USE_NATIVE_TOOLBAR
1149 wxMacReleaseBitmapButton( &info
) ;
1151 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
1152 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
1155 InstallControlEventHandler( (ControlRef
) controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1156 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1158 tool
->SetControlHandle( controlHandle
);
1162 case wxTOOL_STYLE_CONTROL
:
1163 wxASSERT( tool
->GetControl() != NULL
);
1164 #if 0 // wxMAC_USE_NATIVE_TOOLBAR
1165 // FIXME: doesn't work yet...
1167 HIToolbarItemRef item
;
1168 wxString labelStr
= wxString::Format( wxT("%xd"), (int) tool
);
1169 result
= HIToolbarItemCreate( wxMacCFStringHolder(labelStr
, wxFont::GetDefaultEncoding()),
1170 kHIToolbarItemCantBeRemoved
| kHIToolbarItemAnchoredLeft
| kHIToolbarItemAllowDuplicates
,
1174 HIToolbarItemSetLabel( item
, wxMacCFStringHolder(tool
->GetLabel(), m_font
.GetEncoding()) );
1175 HIToolbarItemSetCommandID( item
, tool
->GetId() );
1176 tool
->SetToolbarItemRef( item
);
1178 controlHandle
= ( ControlRef
) tool
->GetControlHandle();
1179 wxASSERT_MSG( controlHandle
!= NULL
, wxT("NULL tool control") );
1181 // FIXME: is this necessary ??
1182 ::GetControlBounds( controlHandle
, &toolrect
);
1183 UMAMoveControl( controlHandle
, -toolrect
.left
, -toolrect
.top
);
1185 // FIXME: is this necessary ??
1186 InstallControlEventHandler( controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
1187 GetEventTypeCount(eventList
), eventList
, tool
, NULL
);
1192 // FIXME: right now there's nothing to do here
1202 if ( controlHandle
)
1204 ControlRef container
= (ControlRef
) GetHandle();
1205 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") );
1207 UMAShowControl( controlHandle
);
1208 ::EmbedControl( controlHandle
, container
);
1211 if ( tool
->CanBeToggled() && tool
->IsToggled() )
1212 tool
->UpdateToggleImage( true );
1214 // nothing special to do here - we relayout in Realize() later
1216 InvalidateBestSize();
1220 wxString errMsg
= wxString::Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long) err
);
1221 wxASSERT_MSG( false, errMsg
.c_str() );
1227 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1229 wxFAIL_MSG( _T("not implemented") );
1232 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*toolbase
)
1234 wxToolBarTool
* tool
= wx_static_cast( wxToolBarTool
* , toolbase
) ;
1235 wxToolBarToolsList::compatibility_iterator node
;
1236 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1238 wxToolBarToolBase
*tool2
= node
->GetData();
1239 if ( tool2
== tool
)
1241 // let node point to the next node in the list
1242 node
= node
->GetNext();
1248 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
1252 #if wxMAC_USE_NATIVE_TOOLBAR
1253 CFIndex removeIndex
= tool
->GetIndex();
1254 #endif // wxMAC_USE_NATIVE_TOOLBAR
1256 switch ( tool
->GetStyle() )
1258 case wxTOOL_STYLE_CONTROL
:
1260 tool
->GetControl()->Destroy();
1261 tool
->ClearControl() ;
1265 case wxTOOL_STYLE_BUTTON
:
1266 case wxTOOL_STYLE_SEPARATOR
:
1267 if ( tool
->GetControlHandle() )
1269 DisposeControl( (ControlRef
) tool
->GetControlHandle() ) ;
1270 #if wxMAC_USE_NATIVE_TOOLBAR
1271 if ( removeIndex
!= -1 && m_macHIToolbarRef
)
1273 HIToolbarRemoveItemAtIndex( (HIToolbarRef
) m_macHIToolbarRef
, removeIndex
) ;
1274 tool
->SetIndex( -1 ) ;
1276 #endif // wxMAC_USE_NATIVE_TOOLBAR
1277 tool
->ClearControl() ;
1285 // and finally reposition all the controls after this one
1287 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
1289 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
1290 wxPoint pt
= tool2
->GetPosition() ;
1292 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
1297 tool2
->SetPosition( pt
) ;
1299 #if wxMAC_USE_NATIVE_TOOLBAR
1300 if ( removeIndex
!= -1 && tool2
->GetIndex() > removeIndex
)
1301 tool2
->SetIndex( tool2
->GetIndex() - 1 ) ;
1306 InvalidateBestSize();
1310 void wxToolBar::OnPaint(wxPaintEvent
& event
)
1312 #if wxMAC_USE_NATIVE_TOOLBAR
1313 if ( m_macUsesNativeToolbar
)
1320 wxPaintDC
dc(this) ;
1323 GetSize( &w
, &h
) ;
1324 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1325 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1327 if ( UMAGetSystemVersion() >= 0x1030 )
1329 HIThemePlacardDrawInfo info
;
1330 memset( &info
, 0 , sizeof( info
) ) ;
1332 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1334 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1335 HIRect rect
= CGRectMake( 0 , 0 , w
, h
) ;
1336 HIThemeDrawPlacard( &rect
, & info
, cgContext
, kHIThemeOrientationNormal
) ;
1341 // leave the background as it is (striped or metal)
1344 wxMacPortSetter
helper(&dc
) ;
1346 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1347 dc
.YLOG2DEVMAC(h
) , dc
.XLOG2DEVMAC(w
) } ;
1349 if( toolbarrect.left < 0 )
1350 toolbarrect.left = 0 ;
1351 if ( toolbarrect.top < 0 )
1352 toolbarrect.top = 0 ;
1354 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1356 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1360 #if TARGET_API_MAC_OSX
1361 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1362 if ( UMAGetSystemVersion() >= 0x1030 )
1364 HIRect hiToolbarrect
= CGRectMake( dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
1365 dc
.YLOG2DEVREL(h
) , dc
.XLOG2DEVREL(w
) );
1366 CGContextRef cgContext
;
1368 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
1369 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1370 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
1371 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
1374 HIThemeBackgroundDrawInfo drawInfo
;
1375 drawInfo
.version
= 0 ;
1376 drawInfo
.state
= kThemeStateActive
;
1377 drawInfo
.kind
= kThemeBackgroundMetal
;
1378 HIThemeApplyBackground( &hiToolbarrect
, &drawInfo
, cgContext
,kHIThemeOrientationNormal
) ;
1381 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
1386 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1395 #endif // wxUSE_TOOLBAR