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/toolbar.h"
22 #include "wx/notebook.h"
23 #include "wx/tabctrl.h"
24 #include "wx/bitmap.h"
26 #if !USE_SHARED_LIBRARY
27 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
29 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
30 EVT_PAINT( wxToolBar::OnPaint
)
34 #include "wx/mac/uma.h"
35 #include "wx/geometry.h"
38 const short kwxMacToolBarToolDefaultWidth
= 24 ;
39 const short kwxMacToolBarToolDefaultHeight
= 24 ;
40 const short kwxMacToolBarTopMargin
= 4 ;
41 const short kwxMacToolBarLeftMargin
= 4 ;
42 const short kwxMacToolBorder
= 0 ;
43 const short kwxMacToolSpacing
= 6 ;
45 const short kwxMacToolBarToolDefaultWidth
= 24 ;
46 const short kwxMacToolBarToolDefaultHeight
= 22 ;
47 const short kwxMacToolBarTopMargin
= 2 ;
48 const short kwxMacToolBarLeftMargin
= 2 ;
49 const short kwxMacToolBorder
= 4 ;
50 const short kwxMacToolSpacing
= 0 ;
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 class wxToolBarTool
: public wxToolBarToolBase
60 wxToolBarTool(wxToolBar
*tbar
,
62 const wxString
& label
,
63 const wxBitmap
& bmpNormal
,
64 const wxBitmap
& bmpDisabled
,
67 const wxString
& shortHelp
,
68 const wxString
& longHelp
) ;
70 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
71 : wxToolBarToolBase(tbar
, control
)
78 if ( m_controlHandle
)
79 DisposeControl( m_controlHandle
) ;
82 WXWidget
GetControlHandle() { return (WXWidget
) m_controlHandle
; }
83 void SetControlHandle( ControlRef handle
) { m_controlHandle
= handle
; }
85 void SetSize(const wxSize
& size
) ;
86 void SetPosition( const wxPoint
& position
) ;
88 wxSize
GetSize() const
92 return GetControl()->GetSize() ;
94 else if ( IsButton() )
96 return GetToolBar()->GetToolSize() ;
101 wxSize sz
= GetToolBar()->GetToolSize() ;
102 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
109 wxPoint
GetPosition() const
111 return wxPoint(m_x
, m_y
);
113 bool DoEnable( bool enable
) ;
115 void UpdateToggleImage( bool toggle
) ;
119 m_controlHandle
= NULL
;
121 ControlRef m_controlHandle
;
127 static const EventTypeSpec eventList
[] =
129 { kEventClassControl
, kEventControlHit
} ,
131 { kEventClassControl
, kEventControlHitTest
} ,
135 static pascal OSStatus
wxMacToolBarToolControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
137 OSStatus result
= eventNotHandledErr
;
139 wxMacCarbonEvent
cEvent( event
) ;
141 ControlRef controlRef
;
143 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
145 switch( GetEventKind( event
) )
147 case kEventControlHit
:
149 wxToolBarTool
* tbartool
= (wxToolBarTool
*)data
;
150 if ( tbartool
->CanBeToggled() )
153 ((wxToolBar
*)tbartool
->GetToolBar())->ToggleTool(tbartool
->GetId(), !tbartool
->IsToggled() );
155 ((wxToolBar
*)tbartool
->GetToolBar())->ToggleTool(tbartool
->GetId(), GetControl32BitValue((ControlRef
)tbartool
->GetControlHandle()));
158 ((wxToolBar
*)tbartool
->GetToolBar())->OnLeftClick( tbartool
->GetId() , tbartool
-> IsToggled() ) ;
163 case kEventControlHitTest
:
165 HIPoint pt
= cEvent
.GetParameter
<HIPoint
>(kEventParamMouseLocation
) ;
167 HIViewGetBounds( controlRef
, &rect
) ;
169 ControlPartCode pc
= kControlNoPart
;
170 if ( CGRectContainsPoint( rect
, pt
) )
171 pc
= kControlButtonPart
;
172 cEvent
.SetParameter( kEventParamControlPart
, typeControlPartCode
, pc
) ;
183 pascal OSStatus
wxMacToolBarToolEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
185 OSStatus result
= eventNotHandledErr
;
187 switch ( GetEventClass( event
) )
189 case kEventClassControl
:
190 result
= wxMacToolBarToolControlEventHandler( handler
, event
, data
) ;
198 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacToolBarToolEventHandler
)
200 // ============================================================================
202 // ============================================================================
204 // ----------------------------------------------------------------------------
206 // ----------------------------------------------------------------------------
208 bool wxToolBarTool::DoEnable(bool enable
)
212 GetControl()->Enable( enable
) ;
214 else if ( IsButton() )
216 #if TARGET_API_MAC_OSX
218 EnableControl( m_controlHandle
) ;
220 DisableControl( m_controlHandle
) ;
223 ActivateControl( m_controlHandle
) ;
225 DeactivateControl( m_controlHandle
) ;
230 void wxToolBarTool::SetSize(const wxSize
& size
)
234 GetControl()->SetSize( size
) ;
238 void wxToolBarTool::SetPosition(const wxPoint
& position
)
245 int mac_x
= position
.x
;
246 int mac_y
= position
.y
;
248 if ( ! GetToolBar()->MacGetTopLevelWindow()->MacUsesCompositing() )
250 WindowRef rootwindow
= (WindowRef
) GetToolBar()->MacGetTopLevelWindowRef() ;
251 GetToolBar()->MacWindowToRootWindow( &x
, &y
) ;
259 GetControlBounds( m_controlHandle
, &contrlRect
) ;
260 int former_mac_x
= contrlRect
.left
;
261 int former_mac_y
= contrlRect
.top
;
262 GetToolBar()->GetToolSize() ;
264 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
266 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
269 else if ( IsControl() )
271 GetControl()->Move( position
) ;
278 GetControlBounds( m_controlHandle
, &contrlRect
) ;
279 int former_mac_x
= contrlRect
.left
;
280 int former_mac_y
= contrlRect
.top
;
282 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
284 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
290 void wxToolBarTool::UpdateToggleImage( bool toggle
)
295 int w
= m_bmpNormal
.GetWidth() ;
296 int h
= m_bmpNormal
.GetHeight() ;
297 wxBitmap
bmp( w
, h
) ;
299 dc
.SelectObject( bmp
) ;
300 dc
.SetPen( wxNullPen
) ;
301 dc
.SetBackground( *wxWHITE
) ;
302 dc
.DrawRectangle( 0 , 0 , w
, h
) ;
303 dc
.DrawBitmap( m_bmpNormal
, 0 , 0 , true) ;
304 dc
.SelectObject( wxNullBitmap
) ;
305 ControlButtonContentInfo info
;
306 wxMacCreateBitmapButton( &info
, bmp
) ;
307 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
309 wxMacReleaseBitmapButton( &info
) ;
313 ControlButtonContentInfo info
;
314 wxMacCreateBitmapButton( &info
, m_bmpNormal
) ;
315 SetControlData( m_controlHandle
, 0, kControlIconContentTag
, sizeof( info
),
317 wxMacReleaseBitmapButton( &info
) ;
320 IconTransformType transform
= toggle
? kTransformSelected
: kTransformNone
;
321 SetControlData( m_controlHandle
, 0, kControlIconTransformTag
, sizeof( transform
),
323 HIViewSetNeedsDisplay( m_controlHandle
, true ) ;
326 ::SetControl32BitValue( m_controlHandle
, toggle
) ;
330 wxToolBarTool::wxToolBarTool(wxToolBar
*tbar
,
332 const wxString
& label
,
333 const wxBitmap
& bmpNormal
,
334 const wxBitmap
& bmpDisabled
,
336 wxObject
*clientData
,
337 const wxString
& shortHelp
,
338 const wxString
& longHelp
)
339 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
340 clientData
, shortHelp
, longHelp
)
344 WindowRef window
= (WindowRef
) tbar
->MacGetTopLevelWindowRef() ;
345 wxSize toolSize
= tbar
->GetToolSize() ;
346 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
} ;
348 if ( id
== wxID_SEPARATOR
)
352 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
354 toolrect
.bottom
= toolSize
.y
;
358 toolrect
.right
= toolSize
.x
;
361 // in flat style we need a visual separator
362 CreateSeparatorControl( window
, &toolrect
, &m_controlHandle
) ;
367 ControlButtonContentInfo info
;
368 wxMacCreateBitmapButton( &info
, GetNormalBitmap() , kControlContentIconRef
) ;
371 CreateIconControl( window
, &toolrect
, &info
, false , &m_controlHandle
) ;
373 SInt16 behaviour
= kControlBehaviorOffsetContents
;
374 if ( CanBeToggled() )
375 behaviour
+= kControlBehaviorToggles
;
376 CreateBevelButtonControl( window
, &toolrect
, CFSTR("") , kControlBevelButtonNormalBevel
, behaviour
, &info
,
377 0 , 0 , 0 , &m_controlHandle
) ;
380 wxMacReleaseBitmapButton( &info
) ;
382 SetBevelButtonTextPlacement( m_controlHandle , kControlBevelButtonPlaceBelowGraphic ) ;
383 UMASetControlTitle( m_controlHandle , label , wxFont::GetDefaultEncoding() ) ;
386 InstallControlEventHandler( (ControlRef
) m_controlHandle
, GetwxMacToolBarToolEventHandlerUPP(),
387 GetEventTypeCount(eventList
), eventList
, this,NULL
);
390 ControlRef container
= (ControlRef
) tbar
->GetHandle() ;
391 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
392 if ( m_controlHandle
)
394 UMAShowControl( m_controlHandle
) ;
395 ::EmbedControl( m_controlHandle
, container
) ;
397 if ( CanBeToggled() && IsToggled() )
399 UpdateToggleImage( true ) ;
404 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
405 const wxString
& label
,
406 const wxBitmap
& bmpNormal
,
407 const wxBitmap
& bmpDisabled
,
409 wxObject
*clientData
,
410 const wxString
& shortHelp
,
411 const wxString
& longHelp
)
413 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
414 clientData
, shortHelp
, longHelp
);
417 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
419 return new wxToolBarTool(this, control
);
422 void wxToolBar::Init()
426 m_defaultWidth
= kwxMacToolBarToolDefaultWidth
;
427 m_defaultHeight
= kwxMacToolBarToolDefaultHeight
;
430 bool wxToolBar::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
431 long style
, const wxString
& name
)
434 if ( !wxToolBarBase::Create( parent
, id
, pos
, size
, style
) )
440 wxToolBar::~wxToolBar()
442 // we must refresh the frame size when the toolbar is deleted but the frame
443 // is not - otherwise toolbar leaves a hole in the place it used to occupy
446 bool wxToolBar::Realize()
448 if (m_tools
.GetCount() == 0)
451 int x
= m_xMargin
+ kwxMacToolBarLeftMargin
;
452 int y
= m_yMargin
+ kwxMacToolBarTopMargin
;
460 int maxToolWidth
= 0;
461 int maxToolHeight
= 0;
463 // Find the maximum tool width and height
464 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
467 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
468 wxSize sz
= tool
->GetSize() ;
470 if ( sz
.x
> maxToolWidth
)
471 maxToolWidth
= sz
.x
;
472 if (sz
.y
> maxToolHeight
)
473 maxToolHeight
= sz
.y
;
475 node
= node
->GetNext();
478 bool lastWasRadio
= FALSE
;
479 node
= m_tools
.GetFirst();
482 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
483 wxSize cursize
= tool
->GetSize() ;
485 bool isRadio
= FALSE
;
487 if ( tool
->IsButton() && tool
->GetKind() == wxITEM_RADIO
)
491 if (tool
->Toggle(true))
493 DoToggleTool(tool
, true);
502 lastWasRadio
= isRadio
;
504 // for the moment we just do a single row/column alignement
505 if ( x
+ cursize
.x
> maxWidth
)
506 maxWidth
= x
+ cursize
.x
;
507 if ( y
+ cursize
.y
> maxHeight
)
508 maxHeight
= y
+ cursize
.y
;
510 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
512 int x1
= x
+ (maxToolWidth
- cursize
.x
)/2 ;
513 tool
->SetPosition( wxPoint( x1
, y
) ) ;
517 int y1
= y
+ (maxToolHeight
- cursize
.y
)/2 ;
518 tool
->SetPosition( wxPoint( x
, y1
) ) ;
520 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
523 y
+= kwxMacToolSpacing
;
528 x
+= kwxMacToolSpacing
;
531 node
= node
->GetNext();
534 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
536 if ( m_maxRows
== 0 )
538 // if not set yet, only one row
541 m_minWidth
= maxWidth
;
543 maxHeight
+= m_yMargin
+ kwxMacToolBarTopMargin
;
544 m_minHeight
= m_maxHeight
= maxHeight
;
548 if ( GetToolsCount() > 0 && m_maxRows
== 0 )
550 // if not set yet, have one column
551 SetRows(GetToolsCount());
553 m_minHeight
= maxHeight
;
555 maxWidth
+= m_xMargin
+ kwxMacToolBarLeftMargin
;
556 m_minWidth
= m_maxWidth
= maxWidth
;
559 SetSize( maxWidth
, maxHeight
);
560 InvalidateBestSize();
565 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
567 m_defaultWidth
= size
.x
+kwxMacToolBorder
; m_defaultHeight
= size
.y
+kwxMacToolBorder
;
570 // The button size is bigger than the bitmap size
571 wxSize
wxToolBar::GetToolSize() const
573 return wxSize(m_defaultWidth
+ kwxMacToolBorder
, m_defaultHeight
+ kwxMacToolBorder
);
576 void wxToolBar::SetRows(int nRows
)
578 if ( nRows
== m_maxRows
)
580 // avoid resizing the frame uselessly
587 void wxToolBar::MacSuperChangedPosition()
589 wxWindow::MacSuperChangedPosition() ;
593 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
595 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
598 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
599 wxRect2DInt
r( tool
->GetPosition() , tool
->GetSize() ) ;
600 if ( r
.Contains( wxPoint( x
, y
) ) )
605 node
= node
->GetNext();
608 return (wxToolBarToolBase
*)NULL
;
611 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
613 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
616 return tool
->GetShortHelp() ;
618 return wxEmptyString
;
621 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
623 ((wxToolBarTool
*)t
)->DoEnable( enable
) ;
626 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
628 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
629 if ( tool
->IsButton() )
631 tool
->UpdateToggleImage( toggle
) ;
635 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
636 wxToolBarToolBase
*tool
)
638 // nothing special to do here - we relayout in Realize() later
640 InvalidateBestSize();
645 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
647 wxFAIL_MSG( _T("not implemented") );
650 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
652 wxToolBarToolsList::compatibility_iterator node
;
653 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
655 wxToolBarToolBase
*tool2
= node
->GetData();
658 // let node point to the next node in the list
659 node
= node
->GetNext();
665 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
669 // and finally reposition all the controls after this one
671 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
673 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
674 wxPoint pt
= tool2
->GetPosition() ;
676 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
684 tool2
->SetPosition( pt
) ;
687 InvalidateBestSize();
691 void wxToolBar::OnPaint(wxPaintEvent
& event
)
694 #if wxMAC_USE_CORE_GRAPHICS
695 // leave the background as it is (striped or metal)
697 wxMacPortSetter
helper(&dc
) ;
701 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
702 dc
.YLOG2DEVMAC(h
) , dc
.XLOG2DEVMAC(w
) } ;
704 if( toolbarrect.left < 0 )
705 toolbarrect.left = 0 ;
706 if ( toolbarrect.top < 0 )
707 toolbarrect.top = 0 ;
709 if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() )
711 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
715 #if TARGET_API_MAC_OSX
716 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
717 if ( UMAGetSystemVersion() >= 0x1030 )
719 HIRect hiToolbarrect
= CGRectMake( dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
720 dc
.YLOG2DEVREL(h
) , dc
.XLOG2DEVREL(w
) );
721 CGContextRef cgContext
;
723 GetPortBounds( (CGrafPtr
) dc
.m_macPort
, &bounds
) ;
724 QDBeginCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
725 CGContextTranslateCTM( cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
726 CGContextScaleCTM( cgContext
, 1 , -1 ) ;
729 HIThemeBackgroundDrawInfo drawInfo
;
730 drawInfo
.version
= 0 ;
731 drawInfo
.state
= kThemeStateActive
;
732 drawInfo
.kind
= kThemeBackgroundMetal
;
733 HIThemeApplyBackground( &hiToolbarrect
, &drawInfo
, cgContext
,kHIThemeOrientationNormal
) ;
735 QDEndCGContext( (CGrafPtr
) dc
.m_macPort
, &cgContext
) ;
740 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
749 #endif // wxUSE_TOOLBAR