]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/toolbar.cpp
fixing toolbar repositioning (iOS)
[wxWidgets.git] / src / osx / carbon / toolbar.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
524c47aa 2// Name: src/osx/carbon/toolbar.cpp
489468fe
SC
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: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#if wxUSE_TOOLBAR
15
16#include "wx/toolbar.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/wx.h"
20#endif
21
22#include "wx/app.h"
524c47aa 23#include "wx/osx/private.h"
489468fe
SC
24#include "wx/geometry.h"
25#include "wx/sysopt.h"
26
27
28const short kwxMacToolBarToolDefaultWidth = 16;
29const short kwxMacToolBarToolDefaultHeight = 16;
30const short kwxMacToolBarTopMargin = 4;
31const short kwxMacToolBarLeftMargin = 4;
32const short kwxMacToolBorder = 0;
33const short kwxMacToolSpacing = 6;
34
489468fe
SC
35BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
36 EVT_PAINT( wxToolBar::OnPaint )
37END_EVENT_TABLE()
38
39
40#pragma mark -
41#pragma mark Tool Implementation
42
489468fe
SC
43// ----------------------------------------------------------------------------
44// private classes
45// ----------------------------------------------------------------------------
46
47// We have a dual implementation for each tool, ControlRef and HIToolbarItemRef
48
49// when embedding native controls in the native toolbar we must make sure the
50// control does not get deleted behind our backs, so the retain count gets increased
51// (after creation it is 1), first be the creation of the custom HIToolbarItem wrapper
52// object, and second by the code 'creating' the custom HIView (which is the same as the
53// already existing native control, therefore we just increase the ref count)
54// when this view is removed from the native toolbar its count gets decremented again
55// and when the HITooolbarItem wrapper object gets destroyed it is decremented as well
56// so in the end the control lives with a refcount of one and can be disposed of by the
57// wxControl code. For embedded controls on a non-native toolbar this ref count is less
58// so we can only test against a range, not a specific value of the refcount.
59
60class wxToolBarTool : public wxToolBarToolBase
61{
62public:
63 wxToolBarTool(
64 wxToolBar *tbar,
65 int id,
66 const wxString& label,
67 const wxBitmap& bmpNormal,
68 const wxBitmap& bmpDisabled,
69 wxItemKind kind,
70 wxObject *clientData,
71 const wxString& shortHelp,
72 const wxString& longHelp );
73
74 wxToolBarTool(wxToolBar *tbar, wxControl *control, const wxString& label)
75 : wxToolBarToolBase(tbar, control, label)
76 {
77 Init();
78 if (control != NULL)
79 SetControlHandle( (ControlRef) control->GetHandle() );
80 }
81
82 virtual ~wxToolBarTool()
83 {
84 ClearControl();
85 }
86
87 WXWidget GetControlHandle()
88 {
89 return (WXWidget) m_controlHandle;
90 }
91
92 void SetControlHandle( ControlRef handle )
93 {
94 m_controlHandle = handle;
95 }
96
97 void SetPosition( const wxPoint& position );
98
99 void ClearControl()
100 {
101 if ( m_controlHandle )
102 {
103 if ( !IsControl() )
104 DisposeControl( m_controlHandle );
105 else
106 {
107 // the embedded control is not under the responsibility of the tool, it gets disposed of in the
108 // proper wxControl destructor
109 }
110 m_controlHandle = NULL ;
111 }
112
292e5e1f 113#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
114 if ( m_toolbarItemRef )
115 {
116 CFIndex count = CFGetRetainCount( m_toolbarItemRef ) ;
117 // different behaviour under Leopard
118 if ( UMAGetSystemVersion() < 0x1050 )
119 {
120 if ( count != 1 )
121 {
122 wxFAIL_MSG("Reference count of native tool was not 1 in wxToolBarTool destructor");
123 }
124 }
125 wxTheApp->MacAddToAutorelease(m_toolbarItemRef);
126 CFRelease(m_toolbarItemRef);
127 m_toolbarItemRef = NULL;
128 }
292e5e1f 129#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
130 }
131
132 wxSize GetSize() const
133 {
134 wxSize curSize;
135
136 if ( IsControl() )
137 {
138 curSize = GetControl()->GetSize();
139 }
140 else if ( IsButton() )
141 {
142 curSize = GetToolBar()->GetToolSize();
143 }
144 else
145 {
146 // separator size
147 curSize = GetToolBar()->GetToolSize();
f0ceebb7 148 if ( GetToolBar()->GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT) )
489468fe
SC
149 curSize.y /= 4;
150 else
151 curSize.x /= 4;
152 }
153
154 return curSize;
155 }
156
157 wxPoint GetPosition() const
158 {
159 return wxPoint( m_x, m_y );
160 }
161
2bed17c8 162 virtual bool Enable( bool enable );
489468fe
SC
163
164 void UpdateToggleImage( bool toggle );
165
2bed17c8 166 virtual bool Toggle(bool toggle)
489468fe 167 {
2bed17c8
SC
168 if ( wxToolBarToolBase::Toggle( toggle ) == false )
169 return false;
bb2212e6 170
2bed17c8
SC
171 UpdateToggleImage(toggle);
172 return true;
173 }
bb2212e6 174
2bed17c8
SC
175 void UpdateHelpStrings()
176 {
bb2212e6 177#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
178 if ( m_toolbarItemRef )
179 {
402c3347 180 wxFontEncoding enc = GetToolBarFontEncoding();
489468fe
SC
181
182 HIToolbarItemSetHelpText(
183 m_toolbarItemRef,
184 wxCFStringRef( GetShortHelp(), enc ),
185 wxCFStringRef( GetLongHelp(), enc ) );
186 }
2bed17c8 187#endif
489468fe 188 }
bb2212e6 189
2bed17c8 190 virtual bool SetShortHelp(const wxString& help)
489468fe 191 {
2bed17c8
SC
192 if ( wxToolBarToolBase::SetShortHelp( help ) == false )
193 return false;
bb2212e6
VZ
194
195 UpdateHelpStrings();
2bed17c8 196 return true;
489468fe 197 }
bb2212e6 198
2bed17c8 199 virtual bool SetLongHelp(const wxString& help)
489468fe 200 {
2bed17c8
SC
201 if ( wxToolBarToolBase::SetLongHelp( help ) == false )
202 return false;
203
204 UpdateHelpStrings();
205 return true;
489468fe
SC
206 }
207
bb2212e6 208 virtual void SetNormalBitmap(const wxBitmap& bmp)
489468fe 209 {
2bed17c8
SC
210 wxToolBarToolBase::SetNormalBitmap(bmp);
211 UpdateToggleImage(CanBeToggled() && IsToggled());
489468fe 212 }
bb2212e6 213
e3e061ee
VZ
214 virtual void SetLabel(const wxString& label)
215 {
216 wxToolBarToolBase::SetLabel(label);
2bed17c8 217#if wxOSX_USE_NATIVE_TOOLBAR
e3e061ee
VZ
218 if ( m_toolbarItemRef )
219 {
e3e061ee
VZ
220 // strip mnemonics from the label for compatibility with the usual
221 // labels in wxStaticText sense
222 wxString labelStr = wxStripMenuCodes(label);
223
402c3347
VZ
224 HIToolbarItemSetLabel(
225 m_toolbarItemRef,
226 wxCFStringRef(labelStr, GetToolBarFontEncoding()) );
e3e061ee 227 }
2bed17c8
SC
228#endif
229 }
230
231#if wxOSX_USE_NATIVE_TOOLBAR
232 void SetToolbarItemRef( HIToolbarItemRef ref )
233 {
234 if ( m_controlHandle )
235 HideControl( m_controlHandle );
236 if ( m_toolbarItemRef )
237 CFRelease( m_toolbarItemRef );
238
239 m_toolbarItemRef = ref;
240 UpdateHelpStrings();
241 }
242
243 HIToolbarItemRef GetToolbarItemRef() const
244 {
245 return m_toolbarItemRef;
246 }
247
248 void SetIndex( CFIndex idx )
249 {
250 m_index = idx;
251 }
252
253 CFIndex GetIndex() const
254 {
255 return m_index;
e3e061ee
VZ
256 }
257#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
258
259private:
402c3347
VZ
260#if wxOSX_USE_NATIVE_TOOLBAR
261 wxFontEncoding GetToolBarFontEncoding() const
262 {
263 wxFont f;
402c3347
VZ
264 if ( GetToolBar() )
265 f = GetToolBar()->GetFont();
266 return f.IsOk() ? f.GetEncoding() : wxFont::GetDefaultEncoding();
267 }
268#endif // wxOSX_USE_NATIVE_TOOLBAR
269
489468fe
SC
270 void Init()
271 {
272 m_controlHandle = NULL;
273
292e5e1f 274#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
275 m_toolbarItemRef = NULL;
276 m_index = -1;
277#endif
278 }
279
280 ControlRef m_controlHandle;
281 wxCoord m_x;
282 wxCoord m_y;
283
292e5e1f 284#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
285 HIToolbarItemRef m_toolbarItemRef;
286 // position in its toolbar, -1 means not inserted
287 CFIndex m_index;
288#endif
289};
290
291static const EventTypeSpec eventList[] =
292{
293 { kEventClassControl, kEventControlHit },
294 { kEventClassControl, kEventControlHitTest },
295};
296
297static pascal OSStatus wxMacToolBarToolControlEventHandler( EventHandlerCallRef WXUNUSED(handler), EventRef event, void *data )
298{
299 OSStatus result = eventNotHandledErr;
300 ControlRef controlRef;
301 wxMacCarbonEvent cEvent( event );
302
303 cEvent.GetParameter( kEventParamDirectObject, &controlRef );
304
305 switch ( GetEventKind( event ) )
306 {
307 case kEventControlHit:
308 {
309 wxToolBarTool *tbartool = (wxToolBarTool*)data;
310 wxToolBar *tbar = tbartool != NULL ? (wxToolBar*) (tbartool->GetToolBar()) : NULL;
311 if ((tbartool != NULL) && tbartool->CanBeToggled())
312 {
313 bool shouldToggle;
314
315 shouldToggle = !tbartool->IsToggled();
316
317 tbar->ToggleTool( tbartool->GetId(), shouldToggle );
318 }
319
320 if (tbartool != NULL)
321 tbar->OnLeftClick( tbartool->GetId(), tbartool->IsToggled() );
322 result = noErr;
323 }
324 break;
325
326 case kEventControlHitTest:
327 {
328 HIPoint pt = cEvent.GetParameter<HIPoint>(kEventParamMouseLocation);
329 HIRect rect;
330 HIViewGetBounds( controlRef, &rect );
331
332 ControlPartCode pc = kControlNoPart;
333 if ( CGRectContainsPoint( rect, pt ) )
334 pc = kControlIconPart;
335 cEvent.SetParameter( kEventParamControlPart, typeControlPartCode, pc );
336 result = noErr;
337 }
338 break;
339
340 default:
341 break;
342 }
343
344 return result;
345}
346
347static pascal OSStatus wxMacToolBarToolEventHandler( EventHandlerCallRef handler, EventRef event, void *data )
348{
349 OSStatus result = eventNotHandledErr;
350
351 switch ( GetEventClass( event ) )
352 {
353 case kEventClassControl:
354 result = wxMacToolBarToolControlEventHandler( handler, event, data );
355 break;
356
357 default:
358 break;
359 }
360
361 return result;
362}
363
364DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler )
365
292e5e1f 366#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
367
368static const EventTypeSpec toolBarEventList[] =
369{
370 { kEventClassToolbarItem, kEventToolbarItemPerformAction },
371};
372
373static pascal OSStatus wxMacToolBarCommandEventHandler( EventHandlerCallRef WXUNUSED(handler), EventRef event, void *data )
374{
375 OSStatus result = eventNotHandledErr;
376
377 switch ( GetEventKind( event ) )
378 {
379 case kEventToolbarItemPerformAction:
380 {
381 wxToolBarTool* tbartool = (wxToolBarTool*) data;
382 if ( tbartool != NULL )
383 {
384 wxToolBar *tbar = (wxToolBar*)(tbartool->GetToolBar());
385 int toolID = tbartool->GetId();
386
387 if ( tbartool->CanBeToggled() )
388 {
389 if ( tbar != NULL )
390 tbar->ToggleTool(toolID, !tbartool->IsToggled() );
391 }
392
393 if ( tbar != NULL )
394 tbar->OnLeftClick( toolID, tbartool->IsToggled() );
395 result = noErr;
396 }
397 }
398 break;
399
400 default:
401 break;
402 }
403
404 return result;
405}
406
407static pascal OSStatus wxMacToolBarEventHandler( EventHandlerCallRef handler, EventRef event, void *data )
408{
409 OSStatus result = eventNotHandledErr;
410
411 switch ( GetEventClass( event ) )
412 {
413 case kEventClassToolbarItem:
414 result = wxMacToolBarCommandEventHandler( handler, event, data );
415 break;
416
417 default:
418 break;
419 }
420
421 return result;
422}
423
424DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarEventHandler )
425
426#endif
427
2bed17c8 428bool wxToolBarTool::Enable( bool enable )
489468fe 429{
2bed17c8
SC
430 if ( wxToolBarToolBase::Enable( enable ) == false )
431 return false;
bb2212e6 432
489468fe
SC
433 if ( IsControl() )
434 {
435 GetControl()->Enable( enable );
436 }
437 else if ( IsButton() )
438 {
292e5e1f 439#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
440 if ( m_toolbarItemRef != NULL )
441 HIToolbarItemSetEnabled( m_toolbarItemRef, enable );
442#endif
443
444 if ( m_controlHandle != NULL )
445 {
446 if ( enable )
447 EnableControl( m_controlHandle );
448 else
449 DisableControl( m_controlHandle );
450 }
451 }
452
453 return true;
454}
455
456void wxToolBarTool::SetPosition( const wxPoint& position )
457{
458 m_x = position.x;
459 m_y = position.y;
460
461 int mac_x = position.x;
462 int mac_y = position.y;
463
464 if ( IsButton() )
465 {
466 Rect contrlRect;
467 GetControlBounds( m_controlHandle, &contrlRect );
468 int former_mac_x = contrlRect.left;
469 int former_mac_y = contrlRect.top;
470 GetToolBar()->GetToolSize();
471
472 if ( mac_x != former_mac_x || mac_y != former_mac_y )
473 {
474 ::MoveControl( m_controlHandle, mac_x, mac_y );
475 }
476 }
477 else if ( IsControl() )
478 {
479 // embedded native controls are moved by the OS
292e5e1f 480#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
481 if ( ((wxToolBar*)GetToolBar())->MacWantsNativeToolbar() == false )
482#endif
483 {
484 GetControl()->Move( position );
485 }
486 }
487 else
488 {
489 // separator
490 Rect contrlRect;
491 GetControlBounds( m_controlHandle, &contrlRect );
492 int former_mac_x = contrlRect.left;
493 int former_mac_y = contrlRect.top;
494
495 if ( mac_x != former_mac_x || mac_y != former_mac_y )
496 ::MoveControl( m_controlHandle, mac_x, mac_y );
497 }
498}
499
500void wxToolBarTool::UpdateToggleImage( bool toggle )
501{
502 if ( toggle )
503 {
f656d379
RR
504 int w = m_bmpNormal.GetWidth() + 6;
505 int h = m_bmpNormal.GetHeight() + 6;
489468fe
SC
506 wxBitmap bmp( w, h );
507 wxMemoryDC dc;
508
509 dc.SelectObject( bmp );
f656d379
RR
510 wxColour mid_grey_75 = wxColour(128, 128, 128, 196);
511 wxColour light_grey_75 = wxColour(196, 196, 196, 196);
512 dc.GradientFillLinear( wxRect(1, 1, w - 1, h-1),
513 light_grey_75, mid_grey_75, wxNORTH);
514 wxColour black_50 = wxColour(0, 0, 0, 127);
515 dc.SetPen( wxPen(black_50) );
516 dc.DrawRoundedRectangle( 0, 0, w, h, 1.5 );
517 dc.DrawBitmap( m_bmpNormal, 3, 3, true );
489468fe
SC
518 dc.SelectObject( wxNullBitmap );
519 ControlButtonContentInfo info;
520 wxMacCreateBitmapButton( &info, bmp );
521 SetControlData( m_controlHandle, 0, kControlIconContentTag, sizeof(info), (Ptr)&info );
292e5e1f 522#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
523 if (m_toolbarItemRef != NULL)
524 {
525 ControlButtonContentInfo info2;
526 wxMacCreateBitmapButton( &info2, bmp, kControlContentCGImageRef);
527 HIToolbarItemSetImage( m_toolbarItemRef, info2.u.imageRef );
528 wxMacReleaseBitmapButton( &info2 );
529 }
530#endif
531 wxMacReleaseBitmapButton( &info );
532 }
533 else
534 {
535 ControlButtonContentInfo info;
536 wxMacCreateBitmapButton( &info, m_bmpNormal );
537 SetControlData( m_controlHandle, 0, kControlIconContentTag, sizeof(info), (Ptr)&info );
292e5e1f 538#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
539 if (m_toolbarItemRef != NULL)
540 {
541 ControlButtonContentInfo info2;
542 wxMacCreateBitmapButton( &info2, m_bmpNormal, kControlContentCGImageRef);
543 HIToolbarItemSetImage( m_toolbarItemRef, info2.u.imageRef );
544 wxMacReleaseBitmapButton( &info2 );
545 }
546#endif
547 wxMacReleaseBitmapButton( &info );
548 }
549
550 IconTransformType transform = toggle ? kTransformSelected : kTransformNone;
551 SetControlData(
552 m_controlHandle, 0, kControlIconTransformTag,
553 sizeof(transform), (Ptr)&transform );
554 HIViewSetNeedsDisplay( m_controlHandle, true );
555
556}
557
558wxToolBarTool::wxToolBarTool(
559 wxToolBar *tbar,
560 int id,
561 const wxString& label,
562 const wxBitmap& bmpNormal,
563 const wxBitmap& bmpDisabled,
564 wxItemKind kind,
565 wxObject *clientData,
566 const wxString& shortHelp,
567 const wxString& longHelp )
568 :
569 wxToolBarToolBase(
570 tbar, id, label, bmpNormal, bmpDisabled, kind,
571 clientData, shortHelp, longHelp )
572{
573 Init();
574}
575
576#pragma mark -
577#pragma mark Toolbar Implementation
578
579wxToolBarToolBase *wxToolBar::CreateTool(
580 int id,
581 const wxString& label,
582 const wxBitmap& bmpNormal,
583 const wxBitmap& bmpDisabled,
584 wxItemKind kind,
585 wxObject *clientData,
586 const wxString& shortHelp,
587 const wxString& longHelp )
588{
589 return new wxToolBarTool(
590 this, id, label, bmpNormal, bmpDisabled, kind,
591 clientData, shortHelp, longHelp );
592}
593
594wxToolBarToolBase *
595wxToolBar::CreateTool(wxControl *control, const wxString& label)
596{
597 return new wxToolBarTool(this, control, label);
598}
599
600void wxToolBar::Init()
601{
602 m_maxWidth = -1;
603 m_maxHeight = -1;
604 m_defaultWidth = kwxMacToolBarToolDefaultWidth;
605 m_defaultHeight = kwxMacToolBarToolDefaultHeight;
606
292e5e1f 607#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 608 m_macToolbar = NULL;
489468fe
SC
609 m_macUsesNativeToolbar = false;
610#endif
611}
612
613#define kControlToolbarItemClassID CFSTR( "org.wxwidgets.controltoolbaritem" )
614
615const EventTypeSpec kEvents[] =
616{
617 { kEventClassHIObject, kEventHIObjectConstruct },
618 { kEventClassHIObject, kEventHIObjectInitialize },
619 { kEventClassHIObject, kEventHIObjectDestruct },
620
621 { kEventClassToolbarItem, kEventToolbarItemCreateCustomView }
622};
623
624const EventTypeSpec kViewEvents[] =
625{
626 { kEventClassControl, kEventControlGetSizeConstraints }
627};
628
629struct ControlToolbarItem
630{
631 HIToolbarItemRef toolbarItem;
632 HIViewRef viewRef;
633 wxSize lastValidSize ;
634};
635
636static pascal OSStatus ControlToolbarItemHandler( EventHandlerCallRef inCallRef, EventRef inEvent, void* inUserData )
637{
638 OSStatus result = eventNotHandledErr;
639 ControlToolbarItem* object = (ControlToolbarItem*)inUserData;
640
641 switch ( GetEventClass( inEvent ) )
642 {
643 case kEventClassHIObject:
644 switch ( GetEventKind( inEvent ) )
645 {
646 case kEventHIObjectConstruct:
647 {
648 HIObjectRef toolbarItem;
649 ControlToolbarItem* item;
650
651 GetEventParameter( inEvent, kEventParamHIObjectInstance, typeHIObjectRef, NULL,
652 sizeof( HIObjectRef ), NULL, &toolbarItem );
653
654 item = (ControlToolbarItem*) malloc(sizeof(ControlToolbarItem)) ;
655 item->toolbarItem = toolbarItem ;
656 item->lastValidSize = wxSize(-1,-1);
657 item->viewRef = NULL ;
658
659 SetEventParameter( inEvent, kEventParamHIObjectInstance, typeVoidPtr, sizeof( void * ), &item );
660
661 result = noErr ;
662 }
663 break;
664
665 case kEventHIObjectInitialize:
666 result = CallNextEventHandler( inCallRef, inEvent );
667 if ( result == noErr )
668 {
669 CFDataRef data;
670 GetEventParameter( inEvent, kEventParamToolbarItemConfigData, typeCFTypeRef, NULL,
671 sizeof( CFTypeRef ), NULL, &data );
672
673 HIViewRef viewRef ;
674
675 wxASSERT_MSG( CFDataGetLength( data ) == sizeof( viewRef ) , wxT("Illegal Data passed") ) ;
676 memcpy( &viewRef , CFDataGetBytePtr( data ) , sizeof( viewRef ) ) ;
677
678 object->viewRef = (HIViewRef) viewRef ;
679 // make sure we keep that control during our lifetime
680 CFRetain( object->viewRef ) ;
681
682 verify_noerr(InstallEventHandler( GetControlEventTarget( viewRef ), ControlToolbarItemHandler,
683 GetEventTypeCount( kViewEvents ), kViewEvents, object, NULL ));
684 result = noErr ;
685 }
686 break;
687
688 case kEventHIObjectDestruct:
689 {
690 HIViewRef viewRef = object->viewRef ;
691 if( viewRef && IsValidControlHandle( viewRef) )
692 {
693 // depending whether the wxControl corresponding to this HIView has already been destroyed or
694 // not, ref counts differ, so we cannot assert a special value
695 CFIndex count = CFGetRetainCount( viewRef ) ;
696 if ( count >= 1 )
697 {
489468fe
SC
698 CFRelease( viewRef ) ;
699 }
700 }
701 free( object ) ;
702 result = noErr;
703 }
704 break;
705 }
706 break;
707
708 case kEventClassToolbarItem:
709 switch ( GetEventKind( inEvent ) )
710 {
711 case kEventToolbarItemCreateCustomView:
712 {
713 HIViewRef viewRef = object->viewRef ;
714 HIViewRemoveFromSuperview( viewRef ) ;
715 HIViewSetVisible(viewRef, true) ;
716 CFRetain( viewRef ) ;
717 result = SetEventParameter( inEvent, kEventParamControlRef, typeControlRef, sizeof( HIViewRef ), &viewRef );
718 }
719 break;
720 }
721 break;
722
723 case kEventClassControl:
724 switch ( GetEventKind( inEvent ) )
725 {
726 case kEventControlGetSizeConstraints:
727 {
b2680ced 728 wxWindow* wxwindow = wxFindWindowFromWXWidget( (WXWidget) object->viewRef ) ;
489468fe
SC
729 if ( wxwindow )
730 {
731 // during toolbar layout the native window sometimes gets negative sizes,
732 // sometimes it just gets shrunk behind our back, so in order to avoid
733 // ever shrinking more, once a valid size is captured, we keep it
734
735 wxSize sz = object->lastValidSize;
736 if ( sz.x <= 0 || sz.y <= 0 )
737 {
738 sz = wxwindow->GetSize() ;
739 sz.x -= wxwindow->MacGetLeftBorderSize() + wxwindow->MacGetRightBorderSize();
740 sz.y -= wxwindow->MacGetTopBorderSize() + wxwindow->MacGetBottomBorderSize();
741 if ( sz.x > 0 && sz.y > 0 )
742 object->lastValidSize = sz ;
743 else
744 sz = wxSize(0,0) ;
745 }
746
747 // Extra width to avoid edge of combobox being cut off
748 sz.x += 3;
749
750 HISize min, max;
751 min.width = max.width = sz.x ;
752 min.height = max.height = sz.y ;
753
754 result = SetEventParameter( inEvent, kEventParamMinimumSize, typeHISize,
755 sizeof( HISize ), &min );
756
757 result = SetEventParameter( inEvent, kEventParamMaximumSize, typeHISize,
758 sizeof( HISize ), &max );
759 result = noErr ;
760 }
761 }
762 break;
763 }
764 break;
765 }
766
767 return result;
768}
769
770void RegisterControlToolbarItemClass()
771{
772 static bool sRegistered;
773
774 if ( !sRegistered )
775 {
776 HIObjectRegisterSubclass( kControlToolbarItemClassID, kHIToolbarItemClassID, 0,
777 ControlToolbarItemHandler, GetEventTypeCount( kEvents ), kEvents, 0, NULL );
778
779 sRegistered = true;
780 }
781}
782
783HIToolbarItemRef CreateControlToolbarItem(CFStringRef inIdentifier, CFTypeRef inConfigData)
784{
785 RegisterControlToolbarItemClass();
786
787 OSStatus err;
788 EventRef event;
789 UInt32 options = kHIToolbarItemAllowDuplicates;
790 HIToolbarItemRef result = NULL;
791
792 err = CreateEvent( NULL, kEventClassHIObject, kEventHIObjectInitialize, GetCurrentEventTime(), 0, &event );
793 require_noerr( err, CantCreateEvent );
794
795 SetEventParameter( event, kEventParamAttributes, typeUInt32, sizeof( UInt32 ), &options );
796 SetEventParameter( event, kEventParamToolbarItemIdentifier, typeCFStringRef, sizeof( CFStringRef ), &inIdentifier );
797
798 if ( inConfigData )
799 SetEventParameter( event, kEventParamToolbarItemConfigData, typeCFTypeRef, sizeof( CFTypeRef ), &inConfigData );
800
801 err = HIObjectCreate( kControlToolbarItemClassID, event, (HIObjectRef*)&result );
802 check_noerr( err );
803
804 ReleaseEvent( event );
805CantCreateEvent :
806 return result ;
807}
808
292e5e1f 809#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
810static const EventTypeSpec kToolbarEvents[] =
811{
812 { kEventClassToolbar, kEventToolbarGetDefaultIdentifiers },
813 { kEventClassToolbar, kEventToolbarGetAllowedIdentifiers },
814 { kEventClassToolbar, kEventToolbarCreateItemWithIdentifier },
815};
816
817static OSStatus ToolbarDelegateHandler(EventHandlerCallRef WXUNUSED(inCallRef),
818 EventRef inEvent,
819 void* WXUNUSED(inUserData))
820{
821 OSStatus result = eventNotHandledErr;
822 // Not yet needed
823 // wxToolBar* toolbar = (wxToolBar*) inUserData ;
824 CFMutableArrayRef array;
825
826 switch ( GetEventKind( inEvent ) )
827 {
828 case kEventToolbarGetDefaultIdentifiers:
829 {
830 GetEventParameter( inEvent, kEventParamMutableArray, typeCFMutableArrayRef, NULL,
831 sizeof( CFMutableArrayRef ), NULL, &array );
832 // not implemented yet
833 // GetToolbarDefaultItems( array );
834 result = noErr;
835 }
836 break;
837
838 case kEventToolbarGetAllowedIdentifiers:
839 {
840 GetEventParameter( inEvent, kEventParamMutableArray, typeCFMutableArrayRef, NULL,
841 sizeof( CFMutableArrayRef ), NULL, &array );
842 // not implemented yet
843 // GetToolbarAllowedItems( array );
844 result = noErr;
845 }
846 break;
847 case kEventToolbarCreateItemWithIdentifier:
848 {
849 HIToolbarItemRef item = NULL;
850 CFTypeRef data = NULL;
851 CFStringRef identifier = NULL ;
852
853 GetEventParameter( inEvent, kEventParamToolbarItemIdentifier, typeCFStringRef, NULL,
854 sizeof( CFStringRef ), NULL, &identifier );
855
856 GetEventParameter( inEvent, kEventParamToolbarItemConfigData, typeCFTypeRef, NULL,
857 sizeof( CFTypeRef ), NULL, &data );
858
859 if ( CFStringCompare( kControlToolbarItemClassID, identifier, kCFCompareBackwards ) == kCFCompareEqualTo )
860 {
861 item = CreateControlToolbarItem( kControlToolbarItemClassID, data );
862 if ( item )
863 {
864 SetEventParameter( inEvent, kEventParamToolbarItem, typeHIToolbarItemRef,
865 sizeof( HIToolbarItemRef ), &item );
866 result = noErr;
867 }
868 }
869
870 }
871 break;
872 }
873 return result ;
874}
292e5e1f 875#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
876
877// also for the toolbar we have the dual implementation:
878// only when MacInstallNativeToolbar is called is the native toolbar set as the window toolbar
879
880bool wxToolBar::Create(
881 wxWindow *parent,
882 wxWindowID id,
883 const wxPoint& pos,
884 const wxSize& size,
885 long style,
886 const wxString& name )
887{
888 if ( !wxToolBarBase::Create( parent, id, pos, size, style, wxDefaultValidator, name ) )
889 return false;
890
891 FixupStyle();
892
893 OSStatus err = noErr;
894
292e5e1f 895#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
896 if (parent->IsKindOf(CLASSINFO(wxFrame)) && wxSystemOptions::GetOptionInt(wxT("mac.toolbar.no-native")) != 1)
897 {
898 wxString labelStr = wxString::Format( wxT("%p"), this );
899 err = HIToolbarCreate(
900 wxCFStringRef( labelStr, wxFont::GetDefaultEncoding() ), 0,
524c47aa 901 (HIToolbarRef*) &m_macToolbar );
489468fe 902
524c47aa 903 if (m_macToolbar != NULL)
489468fe 904 {
524c47aa 905 InstallEventHandler( HIObjectGetEventTarget((HIToolbarRef)m_macToolbar ), ToolbarDelegateHandler,
489468fe
SC
906 GetEventTypeCount( kToolbarEvents ), kToolbarEvents, this, NULL );
907
908 HIToolbarDisplayMode mode = kHIToolbarDisplayModeDefault;
909 HIToolbarDisplaySize displaySize = kHIToolbarDisplaySizeSmall;
910
911 if ( style & wxTB_NOICONS )
912 mode = kHIToolbarDisplayModeLabelOnly;
913 else if ( style & wxTB_TEXT )
914 mode = kHIToolbarDisplayModeIconAndLabel;
915 else
916 mode = kHIToolbarDisplayModeIconOnly;
917
524c47aa
SC
918 HIToolbarSetDisplayMode( (HIToolbarRef) m_macToolbar, mode );
919 HIToolbarSetDisplaySize( (HIToolbarRef) m_macToolbar, displaySize );
489468fe
SC
920 }
921 }
292e5e1f 922#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
923
924 return (err == noErr);
925}
926
927wxToolBar::~wxToolBar()
928{
e6b3b53c 929#if wxOSX_USE_NATIVE_TOOLBAR
3cd37395
VZ
930 // We could be not using a native tool bar at all, this happens when we're
931 // created with something other than the frame as parent for example.
932 if ( !m_macToolbar )
933 return;
934
1665389a
KO
935 CFIndex count = CFGetRetainCount( m_macToolbar ) ;
936 // Leopard seems to have one refcount more, so we cannot check reliably at the moment
937 if ( UMAGetSystemVersion() < 0x1050 )
489468fe 938 {
1665389a 939 if ( count != 1 )
489468fe 940 {
1665389a 941 wxFAIL_MSG("Reference count of native control was not 1 in wxToolBar destructor");
489468fe 942 }
489468fe 943 }
1665389a
KO
944 CFRelease( (HIToolbarRef)m_macToolbar );
945 m_macToolbar = NULL;
e6b3b53c 946#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
947}
948
949bool wxToolBar::Show( bool show )
950{
951 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
952 bool bResult = (tlw != NULL);
953
954 if (bResult)
955 {
292e5e1f 956#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
957 bool ownToolbarInstalled = false;
958 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
959 if (ownToolbarInstalled)
960 {
961 bResult = (IsWindowToolbarVisible( tlw ) != show);
962 if ( bResult )
963 ShowHideWindowToolbar( tlw, show, false );
964 }
965 else
966 bResult = wxToolBarBase::Show( show );
967#else
968
969 bResult = wxToolBarBase::Show( show );
970#endif
971 }
972
973 return bResult;
974}
975
976bool wxToolBar::IsShown() const
977{
978 bool bResult;
979
292e5e1f 980#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
981 bool ownToolbarInstalled;
982
983 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
984 if (ownToolbarInstalled)
985 {
986 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
987 bResult = IsWindowToolbarVisible( tlw );
988 }
989 else
990 bResult = wxToolBarBase::IsShown();
991#else
992
993 bResult = wxToolBarBase::IsShown();
994#endif
995
996 return bResult;
997}
998
999void wxToolBar::DoGetSize( int *width, int *height ) const
1000{
292e5e1f 1001#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1002 Rect boundsR;
1003 bool ownToolbarInstalled;
1004
1005 MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
1006 if ( ownToolbarInstalled )
1007 {
1008 // TODO: is this really a control ?
524c47aa 1009 GetControlBounds( (ControlRef) m_macToolbar, &boundsR );
489468fe
SC
1010 if ( width != NULL )
1011 *width = boundsR.right - boundsR.left;
1012 if ( height != NULL )
1013 *height = boundsR.bottom - boundsR.top;
1014 }
1015 else
1016 wxToolBarBase::DoGetSize( width, height );
1017
1018#else
1019 wxToolBarBase::DoGetSize( width, height );
1020#endif
1021}
1022
1023wxSize wxToolBar::DoGetBestSize() const
1024{
1025 int width, height;
1026
1027 DoGetSize( &width, &height );
1028
1029 return wxSize( width, height );
1030}
1031
1032void wxToolBar::SetWindowStyleFlag( long style )
1033{
1034 wxToolBarBase::SetWindowStyleFlag( style );
1035
292e5e1f 1036#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1037 if (m_macToolbar != NULL)
489468fe
SC
1038 {
1039 HIToolbarDisplayMode mode = kHIToolbarDisplayModeDefault;
1040
1041 if ( style & wxTB_NOICONS )
1042 mode = kHIToolbarDisplayModeLabelOnly;
1043 else if ( style & wxTB_TEXT )
1044 mode = kHIToolbarDisplayModeIconAndLabel;
1045 else
1046 mode = kHIToolbarDisplayModeIconOnly;
1047
524c47aa 1048 HIToolbarSetDisplayMode( (HIToolbarRef) m_macToolbar, mode );
489468fe
SC
1049 }
1050#endif
1051}
1052
292e5e1f 1053#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1054bool wxToolBar::MacWantsNativeToolbar()
1055{
1056 return m_macUsesNativeToolbar;
1057}
1058
1059bool wxToolBar::MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const
1060{
1061 bool bResultV = false;
1062
1063 if (ownToolbarInstalled != NULL)
1064 *ownToolbarInstalled = false;
1065
1066 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
1067 if (tlw != NULL)
1068 {
1069 HIToolbarRef curToolbarRef = NULL;
1070 OSStatus err = GetWindowToolbar( tlw, &curToolbarRef );
1071 bResultV = ((err == noErr) && (curToolbarRef != NULL));
1072 if (bResultV && (ownToolbarInstalled != NULL))
524c47aa 1073 *ownToolbarInstalled = (curToolbarRef == m_macToolbar);
489468fe
SC
1074 }
1075
1076 return bResultV;
1077}
1078
1079bool wxToolBar::MacInstallNativeToolbar(bool usesNative)
1080{
1081 bool bResult = false;
1082
524c47aa 1083 if (usesNative && (m_macToolbar == NULL))
489468fe
SC
1084 return bResult;
1085
f0ceebb7 1086 if (usesNative && ((GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT|wxTB_BOTTOM)) != 0))
489468fe
SC
1087 return bResult;
1088
1089 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
1090 if (tlw == NULL)
1091 return bResult;
1092
1093 // check the existing toolbar
1094 HIToolbarRef curToolbarRef = NULL;
1095 OSStatus err = GetWindowToolbar( tlw, &curToolbarRef );
1096 if (err != noErr)
1097 curToolbarRef = NULL;
1098
1099 m_macUsesNativeToolbar = usesNative;
1100
1101 if (m_macUsesNativeToolbar)
1102 {
1103 // only install toolbar if there isn't one installed already
1104 if (curToolbarRef == NULL)
1105 {
1106 bResult = true;
1107
524c47aa 1108 SetWindowToolbar( tlw, (HIToolbarRef) m_macToolbar );
bb2212e6 1109
b0184e59
RR
1110 // ShowHideWindowToolbar will make the wxFrame grow
1111 // which we don't want in this case
1112 wxSize sz = GetParent()->GetSize();
489468fe 1113 ShowHideWindowToolbar( tlw, true, false );
b0184e59
RR
1114 // Restore the orginal size
1115 GetParent()->SetSize( sz );
bb2212e6 1116
489468fe 1117 ChangeWindowAttributes( tlw, kWindowToolbarButtonAttribute, 0 );
bb2212e6 1118
489468fe 1119 SetAutomaticControlDragTrackingEnabledForWindow( tlw, true );
bb2212e6 1120
b2680ced 1121 m_peer->Move(0,0,0,0 );
489468fe 1122 SetSize( wxSIZE_AUTO_WIDTH, 0 );
b2680ced 1123 m_peer->SetVisibility( false );
489468fe
SC
1124 wxToolBarBase::Show( false );
1125 }
1126 }
1127 else
1128 {
1129 // only deinstall toolbar if this is the installed one
524c47aa 1130 if (m_macToolbar == curToolbarRef)
489468fe
SC
1131 {
1132 bResult = true;
1133
1134 ShowHideWindowToolbar( tlw, false, false );
1135 ChangeWindowAttributes( tlw, 0, kWindowToolbarButtonAttribute );
1665389a 1136 MacUninstallNativeToolbar();
489468fe 1137
b2680ced 1138 m_peer->SetVisibility( true );
489468fe
SC
1139 }
1140 }
1141
1142 if (bResult)
1143 InvalidateBestSize();
1144
1145// wxLogDebug( wxT(" --> [%lx] - result [%s]"), (long)this, bResult ? wxT("T") : wxT("F") );
1146 return bResult;
1147}
1665389a
KO
1148
1149void wxToolBar::MacUninstallNativeToolbar()
1150{
1151 if (!m_macToolbar)
1152 return;
ce00f59b 1153
1665389a
KO
1154 WindowRef tlw = MAC_WXHWND(MacGetTopLevelWindowRef());
1155 if (tlw)
1156 SetWindowToolbar( tlw, NULL );
1157}
489468fe
SC
1158#endif
1159
1160bool wxToolBar::Realize()
1161{
bb2212e6 1162 if ( !wxToolBarBase::Realize() )
489468fe 1163 return false;
bb2212e6 1164
b0184e59 1165 wxSize tlw_sz = GetParent()->GetSize();
489468fe
SC
1166
1167 int maxWidth = 0;
1168 int maxHeight = 0;
1169
1170 int maxToolWidth = 0;
1171 int maxToolHeight = 0;
1172
1173 int x = m_xMargin + kwxMacToolBarLeftMargin;
1174 int y = m_yMargin + kwxMacToolBarTopMargin;
1175
1176 int tw, th;
1177 GetSize( &tw, &th );
1178
1179 // find the maximum tool width and height
1180 wxToolBarTool *tool;
1181 wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst();
1182 while ( node )
1183 {
1184 tool = (wxToolBarTool *) node->GetData();
1185 if ( tool != NULL )
1186 {
1187 wxSize sz = tool->GetSize();
1188
1189 if ( sz.x > maxToolWidth )
1190 maxToolWidth = sz.x;
1191 if ( sz.y > maxToolHeight )
1192 maxToolHeight = sz.y;
1193 }
1194
1195 node = node->GetNext();
1196 }
1197
1198 bool lastIsRadio = false;
1199 bool curIsRadio = false;
1200
292e5e1f 1201#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1202 CFIndex currentPosition = 0;
1203 bool insertAll = false;
1204
524c47aa 1205 HIToolbarRef refTB = (HIToolbarRef)m_macToolbar;
b2680ced
SC
1206 wxFont f;
1207 wxFontEncoding enc;
1208 f = GetFont();
1209 if ( f.IsOk() )
1210 enc = f.GetEncoding();
1211 else
1212 enc = wxFont::GetDefaultEncoding();
489468fe
SC
1213#endif
1214
1215 node = m_tools.GetFirst();
1216 while ( node )
1217 {
1218 tool = (wxToolBarTool*) node->GetData();
1219 if ( tool == NULL )
1220 {
1221 node = node->GetNext();
1222 continue;
1223 }
1224
1225 // set tool position:
1226 // for the moment just perform a single row/column alignment
1227 wxSize cursize = tool->GetSize();
1228 if ( x + cursize.x > maxWidth )
1229 maxWidth = x + cursize.x;
1230 if ( y + cursize.y > maxHeight )
1231 maxHeight = y + cursize.y;
1232
f0ceebb7 1233 if ( GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT) )
489468fe
SC
1234 {
1235 int x1 = x + ( maxToolWidth - cursize.x ) / 2;
1236 tool->SetPosition( wxPoint(x1, y) );
1237 }
1238 else
1239 {
1240 int y1 = y + ( maxToolHeight - cursize.y ) / 2;
1241 tool->SetPosition( wxPoint(x, y1) );
1242 }
1243
1244 // update the item positioning state
f0ceebb7 1245 if ( GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT) )
489468fe
SC
1246 y += cursize.y + kwxMacToolSpacing;
1247 else
1248 x += cursize.x + kwxMacToolSpacing;
1249
292e5e1f 1250#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1251 // install in native HIToolbar
1252 if ( refTB )
1253 {
1254 HIToolbarItemRef hiItemRef = tool->GetToolbarItemRef();
1255 if ( hiItemRef != NULL )
1256 {
b2680ced
SC
1257 // since setting the help texts is non-virtual we have to update
1258 // the strings now
489468fe
SC
1259 if ( insertAll || (tool->GetIndex() != currentPosition) )
1260 {
1261 OSStatus err = noErr;
1262 if ( !insertAll )
1263 {
1264 insertAll = true;
1265
1266 // if this is the first tool that gets newly inserted or repositioned
1267 // first remove all 'old' tools from here to the right, because of this
1268 // all following tools will have to be reinserted (insertAll).
1269 for ( wxToolBarToolsList::compatibility_iterator node2 = m_tools.GetLast();
1270 node2 != node;
1271 node2 = node2->GetPrevious() )
1272 {
1273 wxToolBarTool *tool2 = (wxToolBarTool*) node2->GetData();
1274
1275 const long idx = tool2->GetIndex();
1276 if ( idx != -1 )
1277 {
1278 if ( tool2->IsControl() )
1279 {
1280 CFIndex count = CFGetRetainCount( tool2->GetControl()->GetPeer()->GetControlRef() ) ;
1281 if ( count != 3 && count != 2 )
1282 {
1283 wxFAIL_MSG("Reference count of native tool was illegal before removal");
1284 }
1285
1286 wxASSERT( IsValidControlHandle(tool2->GetControl()->GetPeer()->GetControlRef() )) ;
1287 }
1288 err = HIToolbarRemoveItemAtIndex(refTB, idx);
1289 if ( err != noErr )
1290 {
1291 wxLogDebug(wxT("HIToolbarRemoveItemAtIndex(%ld) failed [%ld]"),
1292 idx, (long)err);
1293 }
1294 if ( tool2->IsControl() )
1295 {
1296 CFIndex count = CFGetRetainCount( tool2->GetControl()->GetPeer()->GetControlRef() ) ;
1297 if ( count != 2 )
1298 {
1299 wxFAIL_MSG("Reference count of native tool was not 2 after removal");
1300 }
1301
1302 wxASSERT( IsValidControlHandle(tool2->GetControl()->GetPeer()->GetControlRef() )) ;
1303 }
1304
1305 tool2->SetIndex(-1);
1306 }
1307 }
1308 }
1309
1310 err = HIToolbarInsertItemAtIndex( refTB, hiItemRef, currentPosition );
1311 if (err != noErr)
1312 {
1313 wxLogDebug( wxT("HIToolbarInsertItemAtIndex failed [%ld]"), (long)err );
1314 }
1315
1316 tool->SetIndex( currentPosition );
1317 if ( tool->IsControl() )
1318 {
1319 CFIndex count = CFGetRetainCount( tool->GetControl()->GetPeer()->GetControlRef() ) ;
1320 if ( count != 3 && count != 2 )
1321 {
1322 wxFAIL_MSG("Reference count of native tool was illegal before removal");
1323 }
1324 wxASSERT( IsValidControlHandle(tool->GetControl()->GetPeer()->GetControlRef() )) ;
bd044e27
VZ
1325
1326 wxString label = tool->GetLabel();
1327 if ( !label.empty() )
1328 HIToolbarItemSetLabel( hiItemRef, wxCFStringRef(label, GetFont().GetEncoding()) );
489468fe
SC
1329 }
1330 }
1331
1332 currentPosition++;
1333 }
1334 }
1335#endif
1336
1337 // update radio button (and group) state
1338 lastIsRadio = curIsRadio;
1339 curIsRadio = ( tool->IsButton() && (tool->GetKind() == wxITEM_RADIO) );
1340
1341 if ( !curIsRadio )
1342 {
1343 if ( tool->IsToggled() )
1344 DoToggleTool( tool, true );
1345 }
1346 else
1347 {
1348 if ( !lastIsRadio )
1349 {
1350 if ( tool->Toggle( true ) )
1351 {
1352 DoToggleTool( tool, true );
1353 }
1354 }
1355 else if ( tool->IsToggled() )
1356 {
1357 if ( tool->IsToggled() )
1358 DoToggleTool( tool, true );
1359
1360 wxToolBarToolsList::compatibility_iterator nodePrev = node->GetPrevious();
1361 while ( nodePrev )
1362 {
1363 wxToolBarToolBase *toggleTool = nodePrev->GetData();
1364 if ( (toggleTool == NULL) || !toggleTool->IsButton() || (toggleTool->GetKind() != wxITEM_RADIO) )
1365 break;
1366
1367 if ( toggleTool->Toggle( false ) )
1368 DoToggleTool( toggleTool, false );
1369
1370 nodePrev = nodePrev->GetPrevious();
1371 }
1372 }
1373 }
1374
1375 node = node->GetNext();
1376 }
1377
b0184e59
RR
1378 if (m_macUsesNativeToolbar)
1379 GetParent()->SetSize( tlw_sz );
bb2212e6 1380
f0ceebb7 1381 if ( GetWindowStyleFlag() & (wxTB_TOP|wxTB_BOTTOM) )
489468fe
SC
1382 {
1383 // if not set yet, only one row
1384 if ( m_maxRows <= 0 )
1385 SetRows( 1 );
1386
1387 m_minWidth = maxWidth;
489468fe
SC
1388 maxHeight += m_yMargin + kwxMacToolBarTopMargin;
1389 m_minHeight = m_maxHeight = maxHeight;
1390 }
1391 else
1392 {
1393 // if not set yet, have one column
1394 if ( (GetToolsCount() > 0) && (m_maxRows <= 0) )
1395 SetRows( GetToolsCount() );
1396
1397 m_minHeight = maxHeight;
489468fe
SC
1398 maxWidth += m_xMargin + kwxMacToolBarLeftMargin;
1399 m_minWidth = m_maxWidth = maxWidth;
1400 }
1401
1402#if 0
1403 // FIXME: should this be OSX-only?
1404 {
1405 bool wantNativeToolbar, ownToolbarInstalled;
1406
1407 // attempt to install the native toolbar
f0ceebb7 1408 wantNativeToolbar = ((GetWindowStyleFlag() & (wxTB_LEFT|wxTB_BOTTOM|wxTB_RIGHT)) == 0);
489468fe
SC
1409 MacInstallNativeToolbar( wantNativeToolbar );
1410 (void)MacTopLevelHasNativeToolbar( &ownToolbarInstalled );
1411 if (!ownToolbarInstalled)
1412 {
1413 SetSize( maxWidth, maxHeight );
1414 InvalidateBestSize();
1415 }
1416 }
1417#else
1418 SetSize( maxWidth, maxHeight );
1419 InvalidateBestSize();
1420#endif
1421
1422 SetInitialSize();
1423
1424 return true;
1425}
1426
1427void wxToolBar::SetToolBitmapSize(const wxSize& size)
1428{
1429 m_defaultWidth = size.x + kwxMacToolBorder;
1430 m_defaultHeight = size.y + kwxMacToolBorder;
1431
292e5e1f 1432#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1433 if (m_macToolbar != NULL)
489468fe
SC
1434 {
1435 int maxs = wxMax( size.x, size.y );
1436 HIToolbarDisplaySize sizeSpec;
1437 if ( maxs > 32 )
1438 sizeSpec = kHIToolbarDisplaySizeNormal;
1439 else if ( maxs > 24 )
1440 sizeSpec = kHIToolbarDisplaySizeDefault;
1441 else
1442 sizeSpec = kHIToolbarDisplaySizeSmall;
1443
524c47aa 1444 HIToolbarSetDisplaySize( (HIToolbarRef) m_macToolbar, sizeSpec );
489468fe
SC
1445 }
1446#endif
1447}
1448
1449// The button size is bigger than the bitmap size
1450wxSize wxToolBar::GetToolSize() const
1451{
1452 return wxSize(m_defaultWidth + kwxMacToolBorder, m_defaultHeight + kwxMacToolBorder);
1453}
1454
1455void wxToolBar::SetRows(int nRows)
1456{
1457 // avoid resizing the frame uselessly
1458 if ( nRows != m_maxRows )
1459 m_maxRows = nRows;
1460}
1461
1462void wxToolBar::MacSuperChangedPosition()
1463{
1464 wxWindow::MacSuperChangedPosition();
1465
292e5e1f 1466#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1467 if (! m_macUsesNativeToolbar )
1468 Realize();
1469#else
1470
1471 Realize();
1472#endif
1473}
1474
1475void wxToolBar::SetToolNormalBitmap( int id, const wxBitmap& bitmap )
1476{
5c33522f 1477 wxToolBarTool* tool = static_cast<wxToolBarTool*>(FindById(id));
489468fe
SC
1478 if ( tool )
1479 {
1480 wxCHECK_RET( tool->IsButton(), wxT("Can only set bitmap on button tools."));
1481
1482 tool->SetNormalBitmap(bitmap);
1483
1484 // a side-effect of the UpdateToggleImage function is that it always changes the bitmap used on the button.
1485 tool->UpdateToggleImage( tool->CanBeToggled() && tool->IsToggled() );
1486 }
1487}
1488
1489void wxToolBar::SetToolDisabledBitmap( int id, const wxBitmap& bitmap )
1490{
5c33522f 1491 wxToolBarTool* tool = static_cast<wxToolBarTool*>(FindById(id));
489468fe
SC
1492 if ( tool )
1493 {
1494 wxCHECK_RET( tool->IsButton(), wxT("Can only set bitmap on button tools."));
1495
1496 tool->SetDisabledBitmap(bitmap);
1497
1498 // TODO: what to do for this one?
1499 }
1500}
1501
1502wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord x, wxCoord y) const
1503{
1504 wxToolBarTool *tool;
1505 wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst();
1506 while ( node )
1507 {
1508 tool = (wxToolBarTool *)node->GetData();
1509 if (tool != NULL)
1510 {
1511 wxRect2DInt r( tool->GetPosition(), tool->GetSize() );
1512 if ( r.Contains( wxPoint( x, y ) ) )
1513 return tool;
1514 }
1515
1516 node = node->GetNext();
1517 }
1518
d3b9f782 1519 return NULL;
489468fe
SC
1520}
1521
1522wxString wxToolBar::MacGetToolTipString( wxPoint &pt )
1523{
1524 wxToolBarToolBase *tool = FindToolForPosition( pt.x, pt.y );
1525 if ( tool != NULL )
1526 return tool->GetShortHelp();
1527
1528 return wxEmptyString;
1529}
1530
2bed17c8 1531void wxToolBar::DoEnableTool(wxToolBarToolBase *WXUNUSED(t), bool WXUNUSED(enable))
489468fe 1532{
2bed17c8 1533 // everything already done in the tool's implementation
489468fe
SC
1534}
1535
a4fec5b4 1536void wxToolBar::DoToggleTool(wxToolBarToolBase *WXUNUSED(t), bool WXUNUSED(toggle))
489468fe 1537{
2bed17c8 1538 // everything already done in the tool's implementation
489468fe
SC
1539}
1540
1541bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *toolBase)
1542{
5c33522f 1543 wxToolBarTool *tool = static_cast< wxToolBarTool*>(toolBase );
489468fe
SC
1544 if (tool == NULL)
1545 return false;
1546
1547 WindowRef window = (WindowRef) MacGetTopLevelWindowRef();
1548 wxSize toolSize = GetToolSize();
1549 Rect toolrect = { 0, 0, toolSize.y, toolSize.x };
1550 ControlRef controlHandle = NULL;
1551 OSStatus err = 0;
1552
292e5e1f 1553#if wxOSX_USE_NATIVE_TOOLBAR
489468fe 1554 wxString label = tool->GetLabel();
524c47aa 1555 if (m_macToolbar && !label.empty() )
489468fe
SC
1556 {
1557 // strip mnemonics from the label for compatibility
1558 // with the usual labels in wxStaticText sense
1559 label = wxStripMenuCodes(label);
1560 }
292e5e1f 1561#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1562
1563 switch (tool->GetStyle())
1564 {
1565 case wxTOOL_STYLE_SEPARATOR:
1566 {
1567 wxASSERT( tool->GetControlHandle() == NULL );
1568 toolSize.x /= 4;
1569 toolSize.y /= 4;
f0ceebb7 1570 if ( GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT) )
489468fe
SC
1571 toolrect.bottom = toolSize.y;
1572 else
1573 toolrect.right = toolSize.x;
1574
1575 // in flat style we need a visual separator
292e5e1f 1576#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1577 if (m_macToolbar != NULL)
489468fe
SC
1578 {
1579 HIToolbarItemRef item;
1580 err = HIToolbarItemCreate(
1581 kHIToolbarSeparatorIdentifier,
1582 kHIToolbarItemCantBeRemoved | kHIToolbarItemIsSeparator | kHIToolbarItemAllowDuplicates,
1583 &item );
1584 if (err == noErr)
1585 tool->SetToolbarItemRef( item );
1586 }
1587 else
1588 err = noErr;
292e5e1f 1589#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1590
1591 CreateSeparatorControl( window, &toolrect, &controlHandle );
1592 tool->SetControlHandle( controlHandle );
1593 }
1594 break;
1595
1596 case wxTOOL_STYLE_BUTTON:
1597 {
1598 wxASSERT( tool->GetControlHandle() == NULL );
1599 ControlButtonContentInfo info;
1600 wxMacCreateBitmapButton( &info, tool->GetNormalBitmap() );
1601
1602 if ( UMAGetSystemVersion() >= 0x1000)
1603 {
1604 // contrary to the docs this control only works with iconrefs
1605 ControlButtonContentInfo info;
1606 wxMacCreateBitmapButton( &info, tool->GetNormalBitmap(), kControlContentIconRef );
1607 CreateIconControl( window, &toolrect, &info, false, &controlHandle );
1608 wxMacReleaseBitmapButton( &info );
1609 }
1610 else
1611 {
1612 SInt16 behaviour = kControlBehaviorOffsetContents;
1613 if ( tool->CanBeToggled() )
1614 behaviour |= kControlBehaviorToggles;
1615 err = CreateBevelButtonControl( window,
1616 &toolrect, CFSTR(""), kControlBevelButtonNormalBevel,
1617 behaviour, &info, 0, 0, 0, &controlHandle );
1618 }
1619
292e5e1f 1620#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1621 if (m_macToolbar != NULL)
489468fe
SC
1622 {
1623 HIToolbarItemRef item;
1624 wxString labelStr = wxString::Format(wxT("%p"), tool);
1625 err = HIToolbarItemCreate(
1626 wxCFStringRef(labelStr, wxFont::GetDefaultEncoding()),
1627 kHIToolbarItemCantBeRemoved | kHIToolbarItemAnchoredLeft | kHIToolbarItemAllowDuplicates, &item );
1628 if (err == noErr)
1629 {
1630 ControlButtonContentInfo info2;
1631 wxMacCreateBitmapButton( &info2, tool->GetNormalBitmap(), kControlContentCGImageRef);
1632
1633 InstallEventHandler(
1634 HIObjectGetEventTarget(item), GetwxMacToolBarEventHandlerUPP(),
1635 GetEventTypeCount(toolBarEventList), toolBarEventList, tool, NULL );
1636 HIToolbarItemSetLabel( item, wxCFStringRef(label, GetFont().GetEncoding()) );
1637 HIToolbarItemSetImage( item, info2.u.imageRef );
1638 HIToolbarItemSetCommandID( item, kHIToolbarCommandPressAction );
1639 tool->SetToolbarItemRef( item );
1640
1641 wxMacReleaseBitmapButton( &info2 );
1642 }
1643 }
1644 else
1645 err = noErr;
292e5e1f 1646#endif // wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1647
1648 wxMacReleaseBitmapButton( &info );
1649
1650#if 0
1651 SetBevelButtonTextPlacement( m_controlHandle, kControlBevelButtonPlaceBelowGraphic );
1652 SetControlTitleWithCFString( m_controlHandle , wxCFStringRef( label, wxFont::GetDefaultEncoding() );
1653#endif
1654
1655 InstallControlEventHandler(
1656 (ControlRef) controlHandle, GetwxMacToolBarToolEventHandlerUPP(),
1657 GetEventTypeCount(eventList), eventList, tool, NULL );
1658
1659 tool->SetControlHandle( controlHandle );
1660 }
1661 break;
1662
1663 case wxTOOL_STYLE_CONTROL:
1664
292e5e1f 1665#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1666 if (m_macToolbar != NULL)
489468fe 1667 {
9a83f860 1668 wxCHECK_MSG( tool->GetControl(), false, wxT("control must be non-NULL") );
489468fe
SC
1669 HIToolbarItemRef item;
1670 HIViewRef viewRef = (HIViewRef) tool->GetControl()->GetHandle() ;
1671 CFDataRef data = CFDataCreate( kCFAllocatorDefault , (UInt8*) &viewRef , sizeof(viewRef) ) ;
524c47aa 1672 err = HIToolbarCreateItemWithIdentifier((HIToolbarRef) m_macToolbar,kControlToolbarItemClassID,
489468fe
SC
1673 data , &item ) ;
1674
1675 if (err == noErr)
1676 {
1677 tool->SetToolbarItemRef( item );
1678 }
1679 CFRelease( data ) ;
1680 }
1681 else
1682 {
1683 err = noErr;
1684 break;
1685 }
1686#else
1687 // right now there's nothing to do here
1688#endif
1689 break;
1690
1691 default:
1692 break;
1693 }
1694
1695 if ( err == noErr )
1696 {
1697 if ( controlHandle )
1698 {
1699 ControlRef container = (ControlRef) GetHandle();
1700 wxASSERT_MSG( container != NULL, wxT("No valid Mac container control") );
1701
1702 SetControlVisibility( controlHandle, true, true );
1703 ::EmbedControl( controlHandle, container );
1704 }
1705
1706 if ( tool->CanBeToggled() && tool->IsToggled() )
1707 tool->UpdateToggleImage( true );
1708
1709 // nothing special to do here - we relayout in Realize() later
1710 InvalidateBestSize();
1711 }
1712 else
1713 {
1714 wxFAIL_MSG( wxString::Format( wxT("wxToolBar::DoInsertTool - failure [%ld]"), (long)err ) );
1715 }
1716
1717 return (err == noErr);
1718}
1719
1720void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
1721{
2bed17c8 1722 // nothing to do
489468fe
SC
1723}
1724
1725bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos), wxToolBarToolBase *toolbase)
1726{
5c33522f 1727 wxToolBarTool* tool = static_cast< wxToolBarTool*>(toolbase );
489468fe
SC
1728 wxToolBarToolsList::compatibility_iterator node;
1729 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1730 {
1731 wxToolBarToolBase *tool2 = node->GetData();
1732 if ( tool2 == tool )
1733 {
1734 // let node point to the next node in the list
1735 node = node->GetNext();
1736
1737 break;
1738 }
1739 }
1740
1741 wxSize sz = ((wxToolBarTool*)tool)->GetSize();
1742
292e5e1f 1743#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1744 CFIndex removeIndex = tool->GetIndex();
1745#endif
1746
292e5e1f 1747#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1748 if (m_macToolbar != NULL)
489468fe 1749 {
524c47aa 1750 if ( removeIndex != -1 && m_macToolbar )
489468fe 1751 {
524c47aa 1752 HIToolbarRemoveItemAtIndex( (HIToolbarRef) m_macToolbar, removeIndex );
489468fe
SC
1753 tool->SetIndex( -1 );
1754 }
1755 }
1756#endif
1757
1758 tool->ClearControl();
1759
1760 // and finally reposition all the controls after this one
1761
1762 for ( /* node -> first after deleted */; node; node = node->GetNext() )
1763 {
1764 wxToolBarTool *tool2 = (wxToolBarTool*) node->GetData();
1765 wxPoint pt = tool2->GetPosition();
1766
f0ceebb7 1767 if ( GetWindowStyleFlag() & (wxTB_LEFT|wxTB_RIGHT) )
489468fe
SC
1768 pt.y -= sz.y;
1769 else
1770 pt.x -= sz.x;
1771
1772 tool2->SetPosition( pt );
1773
292e5e1f 1774#if wxOSX_USE_NATIVE_TOOLBAR
524c47aa 1775 if (m_macToolbar != NULL)
489468fe
SC
1776 {
1777 if ( removeIndex != -1 && tool2->GetIndex() > removeIndex )
1778 tool2->SetIndex( tool2->GetIndex() - 1 );
1779 }
1780#endif
1781 }
1782
1783 InvalidateBestSize();
1784
1785 return true;
1786}
1787
1788void wxToolBar::OnPaint(wxPaintEvent& event)
1789{
292e5e1f 1790#if wxOSX_USE_NATIVE_TOOLBAR
489468fe
SC
1791 if ( m_macUsesNativeToolbar )
1792 {
1793 event.Skip(true);
1794 return;
1795 }
1796#endif
1797
1798 wxPaintDC dc(this);
1799
1800 int w, h;
1801 GetSize( &w, &h );
1802
b2680ced 1803 bool drawMetalTheme = MacGetTopLevelWindow()->GetExtraStyle() & wxFRAME_EX_METAL;
489468fe
SC
1804
1805 if ( !drawMetalTheme )
1806 {
1807 HIThemePlacardDrawInfo info;
1808 memset( &info, 0, sizeof(info) );
1809 info.version = 0;
1810 info.state = IsEnabled() ? kThemeStateActive : kThemeStateInactive;
1811
1812 CGContextRef cgContext = (CGContextRef) MacGetCGContextRef();
1813 HIRect rect = CGRectMake( 0, 0, w, h );
1814 HIThemeDrawPlacard( &rect, &info, cgContext, kHIThemeOrientationNormal );
1815 }
1816 else
1817 {
1818 // leave the background as it is (striped or metal)
1819 }
1820
1821 event.Skip();
1822}
1823
1824#endif // wxUSE_TOOLBAR