]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/toolbar.cpp
IsModal now has the newer meaning.
[wxWidgets.git] / src / mac / carbon / toolbar.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: toolbar.cpp
3 // Purpose: wxToolBar
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: The wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "toolbar.h"
14 #endif
15
16 #include "wx/wxprec.h"
17
18 #if wxUSE_TOOLBAR
19
20 #include "wx/wx.h"
21 #include "wx/bitmap.h"
22 #include "wx/toolbar.h"
23
24 IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxControl)
25
26 BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
27 EVT_PAINT( wxToolBar::OnPaint )
28 END_EVENT_TABLE()
29
30 #include "wx/mac/uma.h"
31 #include "wx/geometry.h"
32
33 #ifdef __WXMAC_OSX__
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
40 #else
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 ;
47 #endif
48
49 #pragma mark -
50 #pragma mark Tool Implementation
51
52
53 // ----------------------------------------------------------------------------
54 // private classes
55 // ----------------------------------------------------------------------------
56
57 // We have a dual implementation for each tool, ControlRef and HIToolbarItemRef
58
59 class wxToolBarTool : public wxToolBarToolBase
60 {
61 public:
62 wxToolBarTool(wxToolBar *tbar,
63 int id,
64 const wxString& label,
65 const wxBitmap& bmpNormal,
66 const wxBitmap& bmpDisabled,
67 wxItemKind kind,
68 wxObject *clientData,
69 const wxString& shortHelp,
70 const wxString& longHelp) ;
71
72 wxToolBarTool(wxToolBar *tbar, wxControl *control)
73 : wxToolBarToolBase(tbar, control)
74 {
75 Init() ;
76 if (control != NULL)
77 SetControlHandle( (ControlRef) control->GetHandle() ) ;
78 }
79
80 ~wxToolBarTool()
81 {
82 ClearControl() ;
83 if ( m_controlHandle )
84 DisposeControl( m_controlHandle ) ;
85 #if wxMAC_USE_NATIVE_TOOLBAR
86 if ( m_toolbarItemRef )
87 CFRelease( m_toolbarItemRef ) ;
88 #endif
89 }
90
91 WXWidget GetControlHandle()
92 {
93 return (WXWidget) m_controlHandle ;
94 }
95
96 void SetControlHandle( ControlRef handle )
97 {
98 m_controlHandle = handle ;
99 }
100
101 void SetPosition( const wxPoint& position ) ;
102
103 void ClearControl()
104 {
105 m_control = NULL ;
106 #if wxMAC_USE_NATIVE_TOOLBAR
107 m_toolbarItemRef = NULL ;
108 #endif
109 }
110
111 wxSize GetSize() const
112 {
113 if ( IsControl() )
114 {
115 return GetControl()->GetSize() ;
116 }
117 else if ( IsButton() )
118 {
119 return GetToolBar()->GetToolSize() ;
120 }
121 else
122 {
123 // separator size
124 wxSize sz = GetToolBar()->GetToolSize() ;
125 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL )
126 sz.y /= 4 ;
127 else
128 sz.x /= 4 ;
129 return sz ;
130 }
131 }
132 wxPoint GetPosition() const
133 {
134 return wxPoint(m_x, m_y);
135 }
136 bool DoEnable( bool enable ) ;
137
138 void UpdateToggleImage( bool toggle ) ;
139
140 #if wxMAC_USE_NATIVE_TOOLBAR
141 void SetToolbarItemRef( HIToolbarItemRef ref )
142 {
143 if ( m_controlHandle )
144 HideControl( m_controlHandle ) ;
145 if ( m_toolbarItemRef )
146 CFRelease( m_toolbarItemRef ) ;
147 m_toolbarItemRef = ref ;
148 if ( m_toolbarItemRef )
149 {
150 HIToolbarItemSetHelpText(
151 m_toolbarItemRef, wxMacCFStringHolder( GetShortHelp() , GetToolBar()->GetFont().GetEncoding() ) ,
152 wxMacCFStringHolder( GetLongHelp() , GetToolBar()->GetFont().GetEncoding() ) ) ;
153 }
154 }
155 HIToolbarItemRef GetToolbarItemRef() const
156 {
157 return m_toolbarItemRef ;
158 }
159
160 void SetIndex( CFIndex idx )
161 {
162 m_index = idx ;
163 }
164
165 CFIndex GetIndex() const
166 {
167 return m_index ;
168 }
169 #endif
170
171 private :
172 void Init()
173 {
174 m_controlHandle = NULL ;
175 #if wxMAC_USE_NATIVE_TOOLBAR
176 m_toolbarItemRef = NULL ;
177 m_index = -1 ;
178 #endif
179 }
180 ControlRef m_controlHandle ;
181 #if wxMAC_USE_NATIVE_TOOLBAR
182 HIToolbarItemRef m_toolbarItemRef ;
183 // position in its toolbar, -1 means not inserted
184 CFIndex m_index ;
185 #endif
186 wxCoord m_x;
187 wxCoord m_y;
188 };
189
190 static const EventTypeSpec eventList[] =
191 {
192 { kEventClassControl , kEventControlHit } ,
193 #ifdef __WXMAC_OSX__
194 { kEventClassControl , kEventControlHitTest } ,
195 #endif
196 } ;
197
198 static pascal OSStatus wxMacToolBarToolControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
199 {
200 OSStatus result = eventNotHandledErr ;
201
202 wxMacCarbonEvent cEvent( event ) ;
203
204 ControlRef controlRef ;
205
206 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
207
208 switch( GetEventKind( event ) )
209 {
210 case kEventControlHit :
211 {
212 wxToolBarTool* tbartool = (wxToolBarTool*)data ;
213 wxToolBar *tbar = tbartool != NULL ? ( wxToolBar * ) ( tbartool->GetToolBar() ) : NULL ;
214 if ((tbartool != NULL) && tbartool->CanBeToggled() )
215 {
216 bool shouldToggle;
217 #ifdef __WXMAC_OSX__
218 shouldToggle = !tbartool->IsToggled();
219 #else
220 shouldToggle = ( GetControl32BitValue((ControlRef) tbartool->GetControlHandle()) != 0 );
221 #endif
222 tbar->ToggleTool( tbartool->GetId(), shouldToggle );
223 }
224 if (tbartool != NULL)
225 tbar->OnLeftClick( tbartool->GetId(), tbartool->IsToggled() );
226 result = noErr;
227 }
228 break ;
229
230 #ifdef __WXMAC_OSX__
231 case kEventControlHitTest :
232 {
233 HIPoint pt = cEvent.GetParameter<HIPoint>(kEventParamMouseLocation) ;
234 HIRect rect ;
235 HIViewGetBounds( controlRef , &rect ) ;
236
237 ControlPartCode pc = kControlNoPart ;
238 if ( CGRectContainsPoint( rect , pt ) )
239 pc = kControlIconPart ;
240 cEvent.SetParameter( kEventParamControlPart , typeControlPartCode, pc ) ;
241 result = noErr ;
242 }
243 break ;
244 #endif
245
246 default :
247 break ;
248 }
249 return result ;
250 }
251
252 static pascal OSStatus wxMacToolBarToolEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
253 {
254 OSStatus result = eventNotHandledErr ;
255
256 switch ( GetEventClass( event ) )
257 {
258 case kEventClassControl :
259 result = wxMacToolBarToolControlEventHandler( handler, event, data ) ;
260 break ;
261
262 default :
263 break ;
264 }
265 return result ;
266 }
267
268 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler )
269
270 #if wxMAC_USE_NATIVE_TOOLBAR
271
272 //
273 // native toolbar
274 //
275
276 static const EventTypeSpec toolBarEventList[] =
277 {
278 { kEventClassToolbarItem , kEventToolbarItemPerformAction } ,
279 } ;
280
281 static pascal OSStatus wxMacToolBarCommandEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
282 {
283 OSStatus result = eventNotHandledErr ;
284
285 switch( GetEventKind( event ) )
286 {
287 case kEventToolbarItemPerformAction :
288 {
289 wxToolBarTool* tbartool = (wxToolBarTool*) data ;
290 if ( tbartool != NULL )
291 {
292 int toolID = tbartool->GetId();
293 wxToolBar *tbar = ( wxToolBar * ) ( tbartool->GetToolBar() );
294 if ( tbartool->CanBeToggled() )
295 {
296 if ( tbar )
297 tbar->ToggleTool(toolID, !tbartool->IsToggled() );
298 }
299 if ( tbar )
300 tbar->OnLeftClick( toolID , tbartool -> IsToggled() ) ;
301 result = noErr;
302 }
303 }
304 break ;
305
306 default :
307 break ;
308 }
309 return result ;
310 }
311
312 static pascal OSStatus wxMacToolBarEventHandler( EventHandlerCallRef handler, EventRef event, void *data )
313 {
314 OSStatus result = eventNotHandledErr ;
315 switch( GetEventClass( event ) )
316 {
317 case kEventClassToolbarItem :
318 result = wxMacToolBarCommandEventHandler( handler, event, data ) ;
319 break ;
320
321 default :
322 break ;
323 }
324 return result ;
325 }
326
327 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarEventHandler )
328
329 #endif
330
331 // ============================================================================
332 // implementation
333 // ============================================================================
334
335 // ----------------------------------------------------------------------------
336 // wxToolBarTool
337 // ----------------------------------------------------------------------------
338
339 bool wxToolBarTool::DoEnable(bool enable)
340 {
341 if ( IsControl() )
342 {
343 GetControl()->Enable( enable ) ;
344 }
345 else if ( IsButton() )
346 {
347 #if wxMAC_USE_NATIVE_TOOLBAR
348 if ( m_toolbarItemRef )
349 HIToolbarItemSetEnabled( m_toolbarItemRef , enable ) ;
350 #endif
351
352 if ( m_controlHandle )
353 {
354 #if TARGET_API_MAC_OSX
355 if ( enable )
356 EnableControl( m_controlHandle ) ;
357 else
358 DisableControl( m_controlHandle ) ;
359 #else
360 if ( enable )
361 ActivateControl( m_controlHandle ) ;
362 else
363 DeactivateControl( m_controlHandle ) ;
364 #endif
365 }
366 }
367 return true ;
368 }
369
370 void wxToolBarTool::SetPosition(const wxPoint& position)
371 {
372 m_x = position.x;
373 m_y = position.y;
374
375 int x , y ;
376 x = y = 0 ;
377 int mac_x = position.x ;
378 int mac_y = position.y ;
379
380 if ( ! GetToolBar()->MacGetTopLevelWindow()->MacUsesCompositing() )
381 {
382 GetToolBar()->MacWindowToRootWindow( &x , &y ) ;
383 mac_x += x;
384 mac_y += y;
385 }
386
387 if ( IsButton() )
388 {
389 Rect contrlRect ;
390 GetControlBounds( m_controlHandle , &contrlRect ) ;
391 int former_mac_x = contrlRect.left ;
392 int former_mac_y = contrlRect.top ;
393 GetToolBar()->GetToolSize() ;
394
395 if ( mac_x != former_mac_x || mac_y != former_mac_y )
396 {
397 UMAMoveControl( m_controlHandle , mac_x , mac_y ) ;
398 }
399 }
400 else if ( IsControl() )
401 {
402 GetControl()->Move( position ) ;
403 }
404 else
405 {
406 // separator
407 #ifdef __WXMAC_OSX__
408 Rect contrlRect ;
409 GetControlBounds( m_controlHandle , &contrlRect ) ;
410 int former_mac_x = contrlRect.left ;
411 int former_mac_y = contrlRect.top ;
412
413 if ( mac_x != former_mac_x || mac_y != former_mac_y )
414 {
415 UMAMoveControl( m_controlHandle , mac_x , mac_y ) ;
416 }
417 #endif
418 }
419 }
420
421 void wxToolBarTool::UpdateToggleImage( bool toggle )
422 {
423 #if wxMAC_USE_NATIVE_TOOLBAR
424
425 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_4
426 #define kHIToolbarItemSelected (1 << 7)
427 #endif
428
429 // FIXME: this should be a OSX v10.4 runtime check
430 if (m_toolbarItemRef != NULL)
431 {
432 OptionBits addAttrs, removeAttrs;
433 OSStatus result;
434
435 if (toggle)
436 {
437 addAttrs = kHIToolbarItemSelected;
438 removeAttrs = kHIToolbarItemNoAttributes;
439 }
440 else
441 {
442 addAttrs = kHIToolbarItemNoAttributes;
443 removeAttrs = kHIToolbarItemSelected;
444 }
445
446 result = HIToolbarItemChangeAttributes( m_toolbarItemRef, addAttrs, removeAttrs );
447 }
448 #endif
449
450 #ifdef __WXMAC_OSX__
451 if ( toggle )
452 {
453 int w = m_bmpNormal.GetWidth() ;
454 int h = m_bmpNormal.GetHeight() ;
455 wxBitmap bmp( w , h ) ;
456 wxMemoryDC dc ;
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 ) ;
468 }
469 else
470 {
471 ControlButtonContentInfo info ;
472 wxMacCreateBitmapButton( &info , m_bmpNormal ) ;
473 SetControlData( m_controlHandle , 0, kControlIconContentTag,
474 sizeof( info ), (Ptr)&info );
475 wxMacReleaseBitmapButton( &info ) ;
476 }
477
478 IconTransformType transform = toggle ? kTransformSelected : kTransformNone ;
479 SetControlData( m_controlHandle, 0, kControlIconTransformTag,
480 sizeof( transform ), (Ptr)&transform );
481 HIViewSetNeedsDisplay( m_controlHandle , true ) ;
482
483 #else
484 ::SetControl32BitValue( m_controlHandle , toggle ) ;
485 #endif
486 }
487
488 wxToolBarTool::wxToolBarTool(wxToolBar *tbar,
489 int id,
490 const wxString& label,
491 const wxBitmap& bmpNormal,
492 const wxBitmap& bmpDisabled,
493 wxItemKind kind,
494 wxObject *clientData,
495 const wxString& shortHelp,
496 const wxString& longHelp)
497 : wxToolBarToolBase(tbar, id, label, bmpNormal, bmpDisabled, kind,
498 clientData, shortHelp, longHelp)
499 {
500 Init();
501 }
502
503 #pragma mark -
504 #pragma mark Toolbar Implementation
505
506 wxToolBarToolBase *wxToolBar::CreateTool(int id,
507 const wxString& label,
508 const wxBitmap& bmpNormal,
509 const wxBitmap& bmpDisabled,
510 wxItemKind kind,
511 wxObject *clientData,
512 const wxString& shortHelp,
513 const wxString& longHelp)
514 {
515 return new wxToolBarTool(this, id, label, bmpNormal, bmpDisabled, kind,
516 clientData, shortHelp, longHelp);
517 }
518
519 wxToolBarToolBase *wxToolBar::CreateTool(wxControl *control)
520 {
521 return new wxToolBarTool(this, control);
522 }
523
524 void wxToolBar::Init()
525 {
526 m_maxWidth = -1;
527 m_maxHeight = -1;
528 m_defaultWidth = kwxMacToolBarToolDefaultWidth;
529 m_defaultHeight = kwxMacToolBarToolDefaultHeight;
530 #if wxMAC_USE_NATIVE_TOOLBAR
531 m_macHIToolbarRef = NULL ;
532 m_macUsesNativeToolbar = false ;
533 #endif
534 }
535
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
538 //
539 bool wxToolBar::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
540 long style, const wxString& name)
541 {
542 if ( !wxToolBarBase::Create( parent , id , pos , size , style, wxDefaultValidator, name ) )
543 return false ;
544
545 OSStatus err = 0;
546
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 );
551
552 if (m_macHIToolbarRef != NULL)
553 {
554 HIToolbarDisplayMode mode = kHIToolbarDisplayModeDefault ;
555 HIToolbarDisplaySize displaySize = kHIToolbarDisplaySizeSmall ;
556
557 if ( style & wxTB_NOICONS )
558 mode = kHIToolbarDisplayModeLabelOnly ;
559 else if ( style & wxTB_TEXT )
560 mode = kHIToolbarDisplayModeIconAndLabel ;
561 else
562 mode = kHIToolbarDisplayModeIconOnly ;
563
564 HIToolbarSetDisplayMode( (HIToolbarRef) m_macHIToolbarRef , mode ) ;
565 HIToolbarSetDisplaySize( (HIToolbarRef) m_macHIToolbarRef , displaySize ) ;
566 }
567 #endif
568
569 return (err == 0);
570 }
571
572 wxToolBar::~wxToolBar()
573 {
574 #if wxMAC_USE_NATIVE_TOOLBAR
575 if ( m_macHIToolbarRef )
576 {
577 // if this is the installed toolbar, then deinstall it
578 if (m_macUsesNativeToolbar)
579 MacInstallNativeToolbar( false );
580
581 CFRelease( (HIToolbarRef) m_macHIToolbarRef );
582 m_macHIToolbarRef = NULL;
583 }
584 #endif
585 }
586
587 bool wxToolBar::Show( bool show )
588 {
589 bool bResult;
590 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
591
592 bResult = (tlw != NULL);
593 if (bResult)
594 {
595 #if wxMAC_USE_NATIVE_TOOLBAR
596 bool ownToolbarInstalled = false;
597 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
598 if (ownToolbarInstalled)
599 {
600 bResult = ( IsWindowToolbarVisible(tlw) != show);
601 if ( bResult )
602 ShowHideWindowToolbar( tlw, show, false );
603 }
604 else
605 #endif
606 bResult = wxToolBarBase::Show( show );
607 }
608
609 return bResult;
610 }
611
612 bool wxToolBar::IsShown() const
613 {
614 bool bResult;
615
616 #if wxMAC_USE_NATIVE_TOOLBAR
617 bool ownToolbarInstalled ;
618 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
619 if (ownToolbarInstalled)
620 {
621 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
622 bResult = IsWindowToolbarVisible(tlw) ;
623 }
624 else
625 #endif
626 bResult = wxToolBarBase::IsShown();
627
628 return bResult;
629 }
630
631 void wxToolBar::DoGetSize( int *width, int *height ) const
632 {
633 #if wxMAC_USE_NATIVE_TOOLBAR
634 Rect boundsR;
635 bool ownToolbarInstalled;
636
637 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
638 if ( ownToolbarInstalled )
639 {
640 // TODO is this really a control ?
641 GetControlBounds( (ControlRef) m_macHIToolbarRef, &boundsR );
642 if ( width != NULL )
643 *width = boundsR.right - boundsR.left;
644 if ( height != NULL )
645 *height = boundsR.bottom - boundsR.top;
646 }
647 else
648 #endif
649 wxToolBarBase::DoGetSize( width, height );
650 }
651
652 wxSize wxToolBar::DoGetBestSize() const
653 {
654 int width , height ;
655 DoGetSize( &width , &height ) ;
656 return wxSize( width , height ) ;
657 }
658
659 void wxToolBar::SetWindowStyleFlag( long style )
660 {
661 wxToolBarBase::SetWindowStyleFlag( style );
662 #if wxMAC_USE_NATIVE_TOOLBAR
663 if (m_macHIToolbarRef != NULL)
664 {
665 HIToolbarDisplayMode mode = kHIToolbarDisplayModeDefault;
666
667 if ( style & wxTB_NOICONS )
668 mode = kHIToolbarDisplayModeLabelOnly;
669 else if ( style & wxTB_TEXT )
670 mode = kHIToolbarDisplayModeIconAndLabel;
671 else
672 mode = kHIToolbarDisplayModeIconOnly;
673
674 HIToolbarSetDisplayMode( (HIToolbarRef) m_macHIToolbarRef, mode );
675 }
676 #endif
677 }
678
679 #if wxMAC_USE_NATIVE_TOOLBAR
680 bool wxToolBar::MacWantsNativeToolbar()
681 {
682 return m_macUsesNativeToolbar;
683 }
684
685 bool wxToolBar::MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const
686 {
687 bool bResultV = false;
688
689 if (ownToolbarInstalled != NULL)
690 *ownToolbarInstalled = false;
691
692 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
693 if (tlw != NULL)
694 {
695 HIToolbarRef curToolbarRef = NULL;
696 OSStatus err = GetWindowToolbar( tlw, &curToolbarRef );
697 bResultV = ((err == 0) && (curToolbarRef != NULL));
698 if (bResultV && (ownToolbarInstalled != NULL))
699 *ownToolbarInstalled = (curToolbarRef == m_macHIToolbarRef);
700 }
701
702 return bResultV;
703 }
704
705 bool wxToolBar::MacInstallNativeToolbar(bool usesNative)
706 {
707 bool bResult = false;
708
709 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
710 if (tlw == NULL)
711 return bResult;
712
713 if (usesNative && (m_macHIToolbarRef == NULL))
714 return bResult;
715
716 if (usesNative && ((GetWindowStyleFlag() & wxTB_VERTICAL) != 0))
717 return bResult;
718
719 // check the existing toolbar
720 HIToolbarRef curToolbarRef = NULL;
721 OSStatus err = GetWindowToolbar( tlw, &curToolbarRef );
722 if (err != 0)
723 curToolbarRef = NULL;
724
725 m_macUsesNativeToolbar = usesNative;
726
727 if (m_macUsesNativeToolbar)
728 {
729 // only install toolbar if there isn't one installed already
730 if (curToolbarRef == NULL)
731 {
732 bResult = true;
733
734 SetWindowToolbar( tlw, (HIToolbarRef) m_macHIToolbarRef );
735 ShowHideWindowToolbar( tlw, true, false );
736 ChangeWindowAttributes( tlw, kWindowToolbarButtonAttribute, 0 );
737 SetAutomaticControlDragTrackingEnabledForWindow( tlw, true );
738
739 // FIXME: which is best, which is necessary?
740 //
741 // m_peer->SetVisibility( false, true );
742 //
743 //
744 Rect r = { 0 , 0 , 0 , 0 };
745 //
746 //
747 m_peer->SetRect( &r );
748 //
749 // FIXME: which is best, which is necessary?
750 //
751 SetSize( wxSIZE_AUTO_WIDTH, 0 );
752 //
753 m_peer->SetVisibility( false, true );
754 wxToolBarBase::Show( false );
755 }
756 }
757 else
758 {
759 // only deinstall toolbar if this is the installed one
760 if (m_macHIToolbarRef == curToolbarRef)
761 {
762 bResult = true;
763
764 ShowHideWindowToolbar( tlw, false, false );
765 ChangeWindowAttributes( tlw, 0 , kWindowToolbarButtonAttribute );
766 SetWindowToolbar( tlw, NULL );
767
768 // FIXME: which is best, which is necessary?
769 m_peer->SetVisibility( true, true );
770
771 //
772 // wxToolBarBase::Show( true );
773 //
774 }
775 }
776
777 if (bResult)
778 InvalidateBestSize();
779
780 // wxLogDebug( wxT(" --> [%lx] - result [%s]"), (long)this, bResult ? wxT("T") : wxT("F") );
781 return bResult;
782 }
783 #endif
784
785 bool wxToolBar::Realize()
786 {
787 if (m_tools.GetCount() == 0)
788 return false;
789
790 int x = m_xMargin + kwxMacToolBarLeftMargin;
791 int y = m_yMargin + kwxMacToolBarTopMargin;
792
793 int tw, th;
794 GetSize( &tw, &th );
795
796 int maxWidth = 0;
797 int maxHeight = 0;
798
799 int maxToolWidth = 0;
800 int maxToolHeight = 0;
801
802 // find the maximum tool width and height
803 wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst();
804 while ( node != NULL )
805 {
806 wxToolBarTool *tool = (wxToolBarTool *) node->GetData();
807
808 if ( tool != NULL )
809 {
810 wxSize sz = tool->GetSize();
811
812 if ( sz.x > maxToolWidth )
813 maxToolWidth = sz.x;
814 if ( sz.y > maxToolHeight )
815 maxToolHeight = sz.y;
816 }
817
818 node = node->GetNext();
819 }
820
821 bool lastIsRadio = false;
822 bool curIsRadio = false;
823 bool setChoiceInGroup = false;
824
825 node = m_tools.GetFirst();
826
827 #if wxMAC_USE_NATIVE_TOOLBAR
828 CFIndex currentPosition = 0 ;
829 bool insertAll = false ;
830 #endif // wxMAC_USE_NATIVE_TOOLBAR
831
832 while ( node != NULL )
833 {
834 wxToolBarTool *tool = (wxToolBarTool *) node->GetData();
835
836 if ( tool == NULL )
837 {
838 node = node->GetNext();
839 continue;
840 }
841
842 // set tool position
843 // for the moment just perform a single row/column alignment
844 wxSize cursize = tool->GetSize();
845 if ( x + cursize.x > maxWidth )
846 maxWidth = x + cursize.x;
847 if ( y + cursize.y > maxHeight )
848 maxHeight = y + cursize.y;
849
850 if ( GetWindowStyleFlag() & wxTB_VERTICAL )
851 {
852 int x1 = x + ( maxToolWidth - cursize.x ) / 2;
853 tool->SetPosition( wxPoint(x1, y) );
854 }
855 else
856 {
857 int y1 = y + ( maxToolHeight - cursize.y ) / 2;
858 tool->SetPosition( wxPoint(x, y1) );
859 }
860
861 // update the item positioning state
862 if ( GetWindowStyleFlag() & wxTB_VERTICAL )
863 y += cursize.y + kwxMacToolSpacing;
864 else
865 x += cursize.x + kwxMacToolSpacing;
866
867 #if wxMAC_USE_NATIVE_TOOLBAR
868 // install in native HIToolbar
869 if ( m_macHIToolbarRef != NULL )
870 {
871 HIToolbarItemRef hiItemRef = tool->GetToolbarItemRef();
872 if ( hiItemRef != NULL )
873 {
874 if ( tool->GetIndex() != currentPosition || insertAll == true )
875 {
876 OSStatus err = noErr ;
877 if ( !insertAll )
878 {
879 // if this is the first tool that gets newly inserted or repositioned
880 // first remove all 'old' tools from here to the right, because of this
881 // all following tools will have to be reinserted (insertAll). i = 100 because there's
882 // no way to determine how many there are in a toolbar, so just a high number :-(
883 for ( CFIndex i = 100 ; i >= currentPosition ; --i )
884 {
885 err = HIToolbarRemoveItemAtIndex( (HIToolbarRef) m_macHIToolbarRef , i ) ;
886 }
887 wxASSERT_MSG( err == noErr, _T("HIToolbarRemoveItemAtIndex failed") );
888 insertAll = true ;
889 }
890 err = HIToolbarInsertItemAtIndex( (HIToolbarRef) m_macHIToolbarRef, hiItemRef , currentPosition ) ;
891 wxASSERT_MSG( err == noErr, _T("HIToolbarInsertItemAtIndex failed") );
892 tool->SetIndex( currentPosition ) ;
893 }
894 currentPosition++ ;
895 }
896 }
897 #endif // wxMAC_USE_NATIVE_TOOLBAR
898
899 // update radio button (and group) state
900 lastIsRadio = curIsRadio;
901 curIsRadio = ( tool->IsButton() && (tool->GetKind() == wxITEM_RADIO) );
902
903 if ( !curIsRadio )
904 {
905 if ( tool->IsToggled() )
906 DoToggleTool( tool, true );
907
908 setChoiceInGroup = false;
909 }
910 else
911 {
912 if ( !lastIsRadio )
913 {
914 if ( tool->Toggle(true) )
915 {
916 DoToggleTool( tool, true );
917 setChoiceInGroup = true;
918 }
919 }
920 else if ( tool->IsToggled() )
921 {
922 if ( tool->IsToggled() )
923 DoToggleTool( tool, true );
924
925 wxToolBarToolsList::compatibility_iterator nodePrev = node->GetPrevious();
926 while ( nodePrev != NULL )
927 {
928 wxToolBarToolBase *toggleTool = nodePrev->GetData();
929 if ( (toggleTool == NULL) || !toggleTool->IsButton() || (toggleTool->GetKind() != wxITEM_RADIO) )
930 break;
931
932 if ( toggleTool->Toggle(false) )
933 DoToggleTool( toggleTool, false );
934
935 nodePrev = nodePrev->GetPrevious();
936 }
937 }
938 }
939
940 node = node->GetNext();
941 }
942
943 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL )
944 {
945 // if not set yet, only one row
946 if ( m_maxRows <= 0 )
947 SetRows( 1 );
948
949 m_minWidth = maxWidth;
950 maxWidth = tw;
951 maxHeight += m_yMargin + kwxMacToolBarTopMargin;
952 m_minHeight = m_maxHeight = maxHeight;
953 }
954 else
955 {
956 // if not set yet, have one column
957 if ( (GetToolsCount() > 0) && (m_maxRows <= 0) )
958 SetRows( GetToolsCount() );
959
960 m_minHeight = maxHeight;
961 maxHeight = th;
962 maxWidth += m_xMargin + kwxMacToolBarLeftMargin;
963 m_minWidth = m_maxWidth = maxWidth;
964 }
965
966 #if 0
967 // FIXME: should this be OSX-only?
968 {
969 bool wantNativeToolbar, ownToolbarInstalled;
970
971 // attempt to install the native toolbar
972 wantNativeToolbar = ((GetWindowStyleFlag() & wxTB_VERTICAL) == 0);
973 MacInstallNativeToolbar( wantNativeToolbar );
974 (void)MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
975 if (!ownToolbarInstalled)
976 {
977 SetSize( maxWidth, maxHeight );
978 InvalidateBestSize();
979 }
980 }
981 #else
982 SetSize( maxWidth, maxHeight );
983 InvalidateBestSize();
984 #endif
985
986 SetBestFittingSize();
987
988 return true;
989 }
990
991 void wxToolBar::SetToolBitmapSize(const wxSize& size)
992 {
993 m_defaultWidth = size.x + kwxMacToolBorder;
994 m_defaultHeight = size.y + kwxMacToolBorder;
995
996 #if wxMAC_USE_NATIVE_TOOLBAR
997 if (m_macHIToolbarRef != NULL)
998 {
999 int maxs = wxMax( size.x, size.y );
1000 HIToolbarDisplaySize sizeSpec ;
1001 if ( maxs > 32 )
1002 sizeSpec = kHIToolbarDisplaySizeNormal ;
1003 else if ( maxs > 24 )
1004 sizeSpec = kHIToolbarDisplaySizeDefault ;
1005 else
1006 sizeSpec = kHIToolbarDisplaySizeSmall ;
1007
1008 HIToolbarSetDisplaySize( (HIToolbarRef) m_macHIToolbarRef, sizeSpec );
1009 }
1010 #endif
1011 }
1012
1013 // The button size is bigger than the bitmap size
1014 wxSize wxToolBar::GetToolSize() const
1015 {
1016 return wxSize(m_defaultWidth + kwxMacToolBorder, m_defaultHeight + kwxMacToolBorder);
1017 }
1018
1019 void wxToolBar::SetRows(int nRows)
1020 {
1021 // avoid resizing the frame uselessly
1022 if ( nRows != m_maxRows )
1023 {
1024 m_maxRows = nRows;
1025 }
1026 }
1027
1028 void wxToolBar::MacSuperChangedPosition()
1029 {
1030 wxWindow::MacSuperChangedPosition();
1031 #if wxMAC_USE_NATIVE_TOOLBAR
1032 if (! m_macUsesNativeToolbar )
1033 #endif
1034 {
1035 Realize();
1036 }
1037 }
1038
1039 wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord x, wxCoord y) const
1040 {
1041 wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst();
1042 while ( node != NULL )
1043 {
1044 wxToolBarTool *tool = (wxToolBarTool *)node->GetData() ;
1045
1046 if (tool != NULL)
1047 {
1048 wxRect2DInt r( tool->GetPosition(), tool->GetSize() );
1049 if ( r.Contains( wxPoint( x, y ) ) )
1050 return tool;
1051 }
1052
1053 node = node->GetNext();
1054 }
1055
1056 return (wxToolBarToolBase *)NULL;
1057 }
1058
1059 wxString wxToolBar::MacGetToolTipString( wxPoint &pt )
1060 {
1061 wxToolBarToolBase* tool = FindToolForPosition( pt.x , pt.y ) ;
1062 if ( tool != NULL )
1063 return tool->GetShortHelp() ;
1064
1065 return wxEmptyString ;
1066 }
1067
1068 void wxToolBar::DoEnableTool(wxToolBarToolBase *t, bool enable)
1069 {
1070 if ( t != NULL )
1071 ((wxToolBarTool*)t)->DoEnable( enable ) ;
1072 }
1073
1074 void wxToolBar::DoToggleTool(wxToolBarToolBase *t, bool toggle)
1075 {
1076 wxToolBarTool *tool = (wxToolBarTool *)t;
1077 if ( ( tool != NULL ) && tool->IsButton() )
1078 tool->UpdateToggleImage( toggle );
1079 }
1080
1081 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos),
1082 wxToolBarToolBase *toolBase)
1083 {
1084 wxToolBarTool* tool = wx_static_cast( wxToolBarTool* , toolBase );
1085 if (tool == NULL)
1086 return false;
1087
1088 WindowRef window = (WindowRef) MacGetTopLevelWindowRef();
1089 wxSize toolSize = GetToolSize();
1090 Rect toolrect = { 0, 0 , toolSize.y , toolSize.x };
1091 ControlRef controlHandle = NULL;
1092 OSStatus err = 0;
1093
1094 switch (tool->GetStyle())
1095 {
1096 case wxTOOL_STYLE_SEPARATOR :
1097 {
1098 wxASSERT( tool->GetControlHandle() == NULL );
1099 toolSize.x /= 4;
1100 toolSize.y /= 4;
1101 if ( GetWindowStyleFlag() & wxTB_VERTICAL )
1102 toolrect.bottom = toolSize.y;
1103 else
1104 toolrect.right = toolSize.x;
1105
1106 #ifdef __WXMAC_OSX__
1107 // in flat style we need a visual separator
1108 #if wxMAC_USE_NATIVE_TOOLBAR
1109 HIToolbarItemRef item;
1110 err = HIToolbarItemCreate( kHIToolbarSeparatorIdentifier, kHIToolbarItemCantBeRemoved | kHIToolbarItemIsSeparator | kHIToolbarItemAllowDuplicates, &item );
1111 if (err == noErr)
1112 tool->SetToolbarItemRef( item );
1113 #endif // wxMAC_USE_NATIVE_TOOLBAR
1114 CreateSeparatorControl( window, &toolrect, &controlHandle );
1115 tool->SetControlHandle( controlHandle );
1116 #endif // __WXMAC_OSX__
1117 }
1118 break;
1119
1120 case wxTOOL_STYLE_BUTTON :
1121 {
1122 wxASSERT( tool->GetControlHandle() == NULL ) ;
1123 ControlButtonContentInfo info ;
1124 wxMacCreateBitmapButton( &info , tool->GetNormalBitmap() , kControlContentIconRef ) ;
1125
1126 if ( UMAGetSystemVersion() >= 0x1000)
1127 CreateIconControl( window , &toolrect , &info , false , &controlHandle ) ;
1128 else
1129 {
1130 SInt16 behaviour = kControlBehaviorOffsetContents ;
1131 if ( tool->CanBeToggled() )
1132 behaviour += kControlBehaviorToggles ;
1133 CreateBevelButtonControl( window , &toolrect , CFSTR("") ,
1134 kControlBevelButtonNormalBevel ,
1135 behaviour , &info ,
1136 0 , 0 , 0 , &controlHandle ) ;
1137 }
1138
1139 #if wxMAC_USE_NATIVE_TOOLBAR
1140 HIToolbarItemRef item ;
1141 wxString labelStr = wxString::Format(wxT("%xd"), (int)tool);
1142 err = HIToolbarItemCreate(
1143 wxMacCFStringHolder(labelStr, wxFont::GetDefaultEncoding()),
1144 kHIToolbarItemCantBeRemoved | kHIToolbarItemAnchoredLeft | kHIToolbarItemAllowDuplicates, &item );
1145 if (err == noErr)
1146 {
1147 InstallEventHandler( HIObjectGetEventTarget(item), GetwxMacToolBarEventHandlerUPP(),
1148 GetEventTypeCount(toolBarEventList), toolBarEventList, tool, NULL );
1149 HIToolbarItemSetLabel( item, wxMacCFStringHolder(tool->GetLabel(), m_font.GetEncoding()) );
1150 HIToolbarItemSetIconRef( item, info.u.iconRef );
1151 HIToolbarItemSetCommandID( item, kHIToolbarCommandPressAction );
1152 tool->SetToolbarItemRef( item );
1153 }
1154 #endif // wxMAC_USE_NATIVE_TOOLBAR
1155
1156 wxMacReleaseBitmapButton( &info ) ;
1157 /*
1158 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
1159 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
1160 */
1161
1162 InstallControlEventHandler( (ControlRef) controlHandle, GetwxMacToolBarToolEventHandlerUPP(),
1163 GetEventTypeCount(eventList), eventList, tool, NULL );
1164
1165 tool->SetControlHandle( controlHandle );
1166 }
1167 break;
1168
1169 case wxTOOL_STYLE_CONTROL :
1170 wxASSERT( tool->GetControl() != NULL );
1171 #if 0 // wxMAC_USE_NATIVE_TOOLBAR
1172 // FIXME: doesn't work yet...
1173 {
1174 HIToolbarItemRef item;
1175 wxString labelStr = wxString::Format( wxT("%xd"), (int) tool );
1176 result = HIToolbarItemCreate( wxMacCFStringHolder(labelStr, wxFont::GetDefaultEncoding()),
1177 kHIToolbarItemCantBeRemoved | kHIToolbarItemAnchoredLeft | kHIToolbarItemAllowDuplicates,
1178 &item );
1179 if ( result == 0 )
1180 {
1181 HIToolbarItemSetLabel( item, wxMacCFStringHolder(tool->GetLabel(), m_font.GetEncoding()) );
1182 HIToolbarItemSetCommandID( item, tool->GetId() );
1183 tool->SetToolbarItemRef( item );
1184
1185 controlHandle = ( ControlRef ) tool->GetControlHandle();
1186 wxASSERT_MSG( controlHandle != NULL, wxT("NULL tool control") );
1187
1188 // FIXME: is this necessary ??
1189 ::GetControlBounds( controlHandle, &toolrect );
1190 UMAMoveControl( controlHandle, -toolrect.left, -toolrect.top );
1191
1192 // FIXME: is this necessary ??
1193 InstallControlEventHandler( controlHandle, GetwxMacToolBarToolEventHandlerUPP(),
1194 GetEventTypeCount(eventList), eventList, tool, NULL );
1195 }
1196 }
1197
1198 #else
1199 // FIXME: right now there's nothing to do here
1200 #endif
1201 break;
1202
1203 default :
1204 break;
1205 }
1206
1207 if ( err == 0 )
1208 {
1209 if ( controlHandle )
1210 {
1211 ControlRef container = (ControlRef) GetHandle();
1212 wxASSERT_MSG( container != NULL, wxT("No valid mac container control") );
1213
1214 UMAShowControl( controlHandle );
1215 ::EmbedControl( controlHandle, container );
1216 }
1217
1218 if ( tool->CanBeToggled() && tool->IsToggled() )
1219 tool->UpdateToggleImage( true );
1220
1221 // nothing special to do here - we relayout in Realize() later
1222 tool->Attach(this);
1223 InvalidateBestSize();
1224 }
1225 else
1226 {
1227 wxString errMsg = wxString::Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long) err );
1228 wxASSERT_MSG( false, errMsg.c_str() );
1229 }
1230
1231 return( err == 0 );
1232 }
1233
1234 void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
1235 {
1236 wxFAIL_MSG( _T("not implemented") );
1237 }
1238
1239 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos), wxToolBarToolBase *toolbase)
1240 {
1241 wxToolBarTool* tool = wx_static_cast( wxToolBarTool* , toolbase ) ;
1242 wxToolBarToolsList::compatibility_iterator node;
1243 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1244 {
1245 wxToolBarToolBase *tool2 = node->GetData();
1246 if ( tool2 == tool )
1247 {
1248 // let node point to the next node in the list
1249 node = node->GetNext();
1250
1251 break;
1252 }
1253 }
1254
1255 wxSize sz = ((wxToolBarTool*)tool)->GetSize() ;
1256
1257 tool->Detach();
1258
1259 #if wxMAC_USE_NATIVE_TOOLBAR
1260 CFIndex removeIndex = tool->GetIndex();
1261 #endif // wxMAC_USE_NATIVE_TOOLBAR
1262
1263 switch ( tool->GetStyle() )
1264 {
1265 case wxTOOL_STYLE_CONTROL:
1266 {
1267 tool->GetControl()->Destroy();
1268 tool->ClearControl() ;
1269 }
1270 break;
1271
1272 case wxTOOL_STYLE_BUTTON:
1273 case wxTOOL_STYLE_SEPARATOR:
1274 if ( tool->GetControlHandle() )
1275 {
1276 DisposeControl( (ControlRef) tool->GetControlHandle() ) ;
1277 #if wxMAC_USE_NATIVE_TOOLBAR
1278 if ( removeIndex != -1 && m_macHIToolbarRef )
1279 {
1280 HIToolbarRemoveItemAtIndex( (HIToolbarRef) m_macHIToolbarRef , removeIndex ) ;
1281 tool->SetIndex( -1 ) ;
1282 }
1283 #endif // wxMAC_USE_NATIVE_TOOLBAR
1284 tool->ClearControl() ;
1285 }
1286 break;
1287
1288 default:
1289 break;
1290 }
1291
1292 // and finally reposition all the controls after this one
1293
1294 for ( /* node -> first after deleted */ ; node; node = node->GetNext() )
1295 {
1296 wxToolBarTool *tool2 = (wxToolBarTool*) node->GetData();
1297 wxPoint pt = tool2->GetPosition() ;
1298
1299 if ( GetWindowStyleFlag() & wxTB_VERTICAL )
1300 pt.y -= sz.y ;
1301 else
1302 pt.x -= sz.x ;
1303
1304 tool2->SetPosition( pt ) ;
1305
1306 #if wxMAC_USE_NATIVE_TOOLBAR
1307 if ( removeIndex != -1 && tool2->GetIndex() > removeIndex )
1308 tool2->SetIndex( tool2->GetIndex() - 1 ) ;
1309 #endif
1310
1311 }
1312
1313 InvalidateBestSize();
1314 return true ;
1315 }
1316
1317 void wxToolBar::OnPaint(wxPaintEvent& event)
1318 {
1319 #if wxMAC_USE_NATIVE_TOOLBAR
1320 if ( m_macUsesNativeToolbar )
1321 {
1322 event.Skip(true) ;
1323 return ;
1324 }
1325 #endif
1326
1327 wxPaintDC dc(this) ;
1328
1329 int w, h ;
1330 GetSize( &w , &h ) ;
1331 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1332 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1333 {
1334 if ( UMAGetSystemVersion() >= 0x1030 )
1335 {
1336 HIThemePlacardDrawInfo info ;
1337 memset( &info, 0 , sizeof( info ) ) ;
1338 info.version = 0 ;
1339 info.state = IsEnabled() ? kThemeStateActive : kThemeStateInactive ;
1340
1341 CGContextRef cgContext = (CGContextRef) MacGetCGContextRef() ;
1342 HIRect rect = CGRectMake( 0 , 0 , w , h ) ;
1343 HIThemeDrawPlacard( &rect , & info , cgContext, kHIThemeOrientationNormal) ;
1344 }
1345 }
1346 else
1347 {
1348 // leave the background as it is (striped or metal)
1349 }
1350 #else
1351 wxMacPortSetter helper(&dc) ;
1352
1353 Rect toolbarrect = { dc.YLOG2DEVMAC(0) , dc.XLOG2DEVMAC(0) ,
1354 dc.YLOG2DEVMAC(h) , dc.XLOG2DEVMAC(w) } ;
1355 /*
1356 if( toolbarrect.left < 0 )
1357 toolbarrect.left = 0 ;
1358 if ( toolbarrect.top < 0 )
1359 toolbarrect.top = 0 ;
1360 */
1361 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
1362 {
1363 UMADrawThemePlacard( &toolbarrect , IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1364 }
1365 else
1366 {
1367 #if TARGET_API_MAC_OSX
1368 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1369 if ( UMAGetSystemVersion() >= 0x1030 )
1370 {
1371 HIRect hiToolbarrect = CGRectMake( dc.YLOG2DEVMAC(0) , dc.XLOG2DEVMAC(0) ,
1372 dc.YLOG2DEVREL(h) , dc.XLOG2DEVREL(w) );
1373 CGContextRef cgContext ;
1374 Rect bounds ;
1375 GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;
1376 QDBeginCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
1377 CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
1378 CGContextScaleCTM( cgContext , 1 , -1 ) ;
1379
1380 {
1381 HIThemeBackgroundDrawInfo drawInfo ;
1382 drawInfo.version = 0 ;
1383 drawInfo.state = kThemeStateActive ;
1384 drawInfo.kind = kThemeBackgroundMetal ;
1385 HIThemeApplyBackground( &hiToolbarrect, &drawInfo , cgContext,kHIThemeOrientationNormal) ;
1386 }
1387
1388 QDEndCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
1389 }
1390 else
1391 #endif
1392 {
1393 UMADrawThemePlacard( &toolbarrect , IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1394 }
1395 #endif
1396 }
1397 #endif
1398
1399 event.Skip() ;
1400 }
1401
1402 #endif // wxUSE_TOOLBAR
1403