1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: The wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "toolbar.h"
20 #include "wx/toolbar.h"
21 #include "wx/notebook.h"
22 #include "wx/tabctrl.h"
23 #include "wx/bitmap.h"
25 #if !USE_SHARED_LIBRARY
26 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
28 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
29 EVT_MOUSE_EVENTS( wxToolBar::OnMouse
)
30 EVT_PAINT( wxToolBar::OnPaint
)
34 #include "wx/mac/uma.h"
35 #include "wx/geometry.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 class wxToolBarTool
: public wxToolBarToolBase
43 wxToolBarTool(wxToolBar
*tbar
,
45 const wxString
& label
,
46 const wxBitmap
& bmpNormal
,
47 const wxBitmap
& bmpDisabled
,
50 const wxString
& shortHelp
,
51 const wxString
& longHelp
) ;
53 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
54 : wxToolBarToolBase(tbar
, control
)
61 if ( m_controlHandle
)
62 DisposeControl( m_controlHandle
) ;
65 ControlHandle
GetControlHandle() { return m_controlHandle
; }
66 void SetControlHandle( ControlHandle handle
) { m_controlHandle
= handle
; }
68 void SetSize(const wxSize
& size
) ;
69 void SetPosition( const wxPoint
& position
) ;
70 wxSize
GetSize() const
74 return GetControl()->GetSize() ;
76 else if ( IsButton() )
78 return GetToolBar()->GetToolSize() ;
82 wxSize sz
= GetToolBar()->GetToolSize() ;
88 wxPoint
GetPosition() const
90 return wxPoint(m_x
, m_y
);
95 m_controlHandle
= NULL
;
97 ControlHandle m_controlHandle
;
103 // ============================================================================
105 // ============================================================================
107 // ----------------------------------------------------------------------------
109 // ----------------------------------------------------------------------------
111 void wxToolBarTool::SetSize(const wxSize
& size
)
115 GetControl()->SetSize( size
) ;
119 void wxToolBarTool::SetPosition(const wxPoint
& position
)
128 WindowRef rootwindow
= (WindowRef
) GetToolBar()->MacGetRootWindow() ;
129 GetToolBar()->MacWindowToRootWindow( &x
, &y
) ;
130 int mac_x
= x
+ position
.x
;
131 int mac_y
= y
+ position
.y
;
135 GetControlBounds( m_controlHandle
, &contrlRect
) ;
136 int former_mac_x
= contrlRect
.left
;
137 int former_mac_y
= contrlRect
.top
;
138 wxSize sz
= GetToolBar()->GetToolSize() ;
140 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
143 Rect inval
= { former_mac_y
, former_mac_x
, former_mac_y
+ sz
.y
, former_mac_x
+ sz
.x
} ;
144 InvalWindowRect( rootwindow
, &inval
) ;
146 UMAMoveControl( m_controlHandle
, mac_x
, mac_y
) ;
148 Rect inval
= { mac_y
, mac_x
, mac_y
+ sz
.y
, mac_x
+ sz
.x
} ;
149 InvalWindowRect( rootwindow
, &inval
) ;
153 else if ( IsControl() )
155 GetControl()->Move( position
) ;
159 const short kwxMacToolBarToolDefaultWidth
= 24 ;
160 const short kwxMacToolBarToolDefaultHeight
= 22 ;
161 const short kwxMacToolBarTopMargin
= 2 ;
162 const short kwxMacToolBarLeftMargin
= 2 ;
164 wxToolBarTool::wxToolBarTool(wxToolBar
*tbar
,
166 const wxString
& label
,
167 const wxBitmap
& bmpNormal
,
168 const wxBitmap
& bmpDisabled
,
170 wxObject
*clientData
,
171 const wxString
& shortHelp
,
172 const wxString
& longHelp
)
173 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
174 clientData
, shortHelp
, longHelp
)
178 WindowRef window
= (WindowRef
) tbar
->MacGetRootWindow() ;
179 wxSize toolSize
= tbar
->GetToolSize() ;
180 Rect toolrect
= { 0, 0 , toolSize
.y
, toolSize
.x
} ;
182 ControlButtonContentInfo info
;
183 wxMacCreateBitmapButton( &info
, GetNormalBitmap() ) ;
185 SInt16 behaviour
= kControlBehaviorOffsetContents
;
186 if ( CanBeToggled() )
187 behaviour
+= kControlBehaviorToggles
;
189 if ( info
.contentType
!= kControlNoContent
)
191 m_controlHandle
= ::NewControl( window
, &toolrect
, "\p" , false , 0 ,
192 behaviour
+ info
.contentType
, 0 , kControlBevelButtonNormalBevelProc
, (long) this ) ;
194 ::SetControlData( m_controlHandle
, kControlButtonPart
, kControlBevelButtonContentTag
, sizeof(info
) , (char*) &info
) ;
198 m_controlHandle
= ::NewControl( window
, &toolrect
, "\p" , false , 0 ,
199 behaviour
, 0 , kControlBevelButtonNormalBevelProc
, (long) this ) ;
201 UMAShowControl( m_controlHandle
) ;
204 UMADeactivateControl( m_controlHandle
) ;
206 if ( CanBeToggled() && IsToggled() )
208 ::SetControl32BitValue( m_controlHandle
, 1 ) ;
212 ::SetControl32BitValue( m_controlHandle
, 0 ) ;
215 ControlHandle container
= (ControlHandle
) tbar
->MacGetContainerForEmbedding() ;
216 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
217 ::EmbedControl( m_controlHandle
, container
) ;
221 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
222 const wxString
& label
,
223 const wxBitmap
& bmpNormal
,
224 const wxBitmap
& bmpDisabled
,
226 wxObject
*clientData
,
227 const wxString
& shortHelp
,
228 const wxString
& longHelp
)
230 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
231 clientData
, shortHelp
, longHelp
);
234 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
236 return new wxToolBarTool(this, control
);
239 void wxToolBar::Init()
243 m_defaultWidth
= kwxMacToolBarToolDefaultWidth
;
244 m_defaultHeight
= kwxMacToolBarToolDefaultHeight
;
247 bool wxToolBar::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
248 long style
, const wxString
& name
)
266 m_windowStyle
= style
;
267 parent
->AddChild(this);
269 m_backgroundColour
= parent
->GetBackgroundColour() ;
270 m_foregroundColour
= parent
->GetForegroundColour() ;
273 m_windowId
= NewControlId();
282 AdjustForParentClientOrigin(x
, y
, wxSIZE_USE_EXISTING
);
290 wxToolBar::~wxToolBar()
292 // we must refresh the frame size when the toolbar is deleted but the frame
293 // is not - otherwise toolbar leaves a hole in the place it used to occupy
296 bool wxToolBar::Realize()
298 if (m_tools
.GetCount() == 0)
301 int x
= m_xMargin
+ kwxMacToolBarLeftMargin
;
302 int y
= m_yMargin
+ kwxMacToolBarTopMargin
;
310 int maxToolWidth
= 0;
311 int maxToolHeight
= 0;
313 // Find the maximum tool width and height
314 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
317 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
318 wxSize sz
= tool
->GetSize() ;
320 if ( sz
.x
> maxToolWidth
)
321 maxToolWidth
= sz
.x
;
322 if (sz
.y
> maxToolHeight
)
323 maxToolHeight
= sz
.y
;
325 node
= node
->GetNext();
328 node
= m_tools
.GetFirst();
331 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
332 wxSize cursize
= tool
->GetSize() ;
334 // for the moment we just do a single row/column alignement
335 if ( x
+ cursize
.x
> maxWidth
)
336 maxWidth
= x
+ cursize
.x
;
337 if ( y
+ cursize
.y
> maxHeight
)
338 maxHeight
= y
+ cursize
.y
;
340 tool
->SetPosition( wxPoint( x
, y
) ) ;
342 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
351 node
= node
->GetNext();
354 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
356 if ( m_maxRows
== 0 )
358 // if not set yet, only one row
362 maxHeight
+= m_yMargin
+ kwxMacToolBarTopMargin
;
363 m_maxHeight
= maxHeight
;
367 if ( GetToolsCount() > 0 && m_maxRows
== 0 )
369 // if not set yet, have one column
370 SetRows(GetToolsCount());
373 maxWidth
+= m_xMargin
+ kwxMacToolBarLeftMargin
;
374 m_maxWidth
= maxWidth
;
377 SetSize(maxWidth
, maxHeight
);
382 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
384 m_defaultWidth
= size
.x
+4; m_defaultHeight
= size
.y
+4;
387 // The button size is bigger than the bitmap size
388 wxSize
wxToolBar::GetToolSize() const
390 return wxSize(m_defaultWidth
+ 4, m_defaultHeight
+ 4);
393 void wxToolBar::MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool WXUNUSED( mouseStillDown
) )
395 wxToolBarToolsList::Node
*node
;
396 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
398 wxToolBarTool
* tool
= (wxToolBarTool
*) node
->GetData() ;
399 if ( tool
->IsButton() )
401 if( tool
->GetControlHandle() == control
)
403 if ( tool
->CanBeToggled() )
405 tool
->Toggle( GetControl32BitValue( (ControlHandle
) control
) ) ;
407 OnLeftClick( tool
->GetId() , tool
-> IsToggled() ) ;
414 void wxToolBar::SetRows(int nRows
)
416 if ( nRows
== m_maxRows
)
418 // avoid resizing the frame uselessly
425 void wxToolBar::MacSuperChangedPosition()
427 wxWindow::MacSuperChangedPosition() ;
431 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
433 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
436 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData() ;
437 wxRect2DInt
r( tool
->GetPosition() , tool
->GetSize() ) ;
438 if ( r
.Contains( wxPoint( x
, y
) ) )
443 node
= node
->GetNext();
446 return (wxToolBarToolBase
*)NULL
;
449 wxString
wxToolBar::MacGetToolTipString( wxPoint
&pt
)
451 wxToolBarToolBase
* tool
= FindToolForPosition( pt
.x
, pt
.y
) ;
454 return tool
->GetShortHelp() ;
456 return wxEmptyString
;
459 void wxToolBar::DoEnableTool(wxToolBarToolBase
*t
, bool enable
)
464 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
465 if ( tool
->IsControl() )
467 tool
->GetControl()->Enable( enable
) ;
469 else if ( tool
->IsButton() )
472 UMAActivateControl( tool
->GetControlHandle() ) ;
474 UMADeactivateControl( tool
->GetControlHandle() ) ;
478 void wxToolBar::DoToggleTool(wxToolBarToolBase
*t
, bool toggle
)
483 wxToolBarTool
*tool
= (wxToolBarTool
*)t
;
484 if ( tool
->IsButton() )
486 ::SetControl32BitValue( tool
->GetControlHandle() , toggle
) ;
490 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
491 wxToolBarToolBase
*tool
)
493 // nothing special to do here - we relayout in Realize() later
499 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
501 wxFAIL_MSG( _T("not implemented") );
504 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
506 wxToolBarToolsList::Node
*node
;
507 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
509 wxToolBarToolBase
*tool2
= node
->GetData();
512 // let node point to the next node in the list
513 node
= node
->GetNext();
519 wxSize sz
= ((wxToolBarTool
*)tool
)->GetSize() ;
523 // and finally reposition all the controls after this one
525 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
527 wxToolBarTool
*tool2
= (wxToolBarTool
*) node
->GetData();
528 wxPoint pt
= tool2
->GetPosition() ;
530 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
538 tool2
->SetPosition( pt
) ;
544 void wxToolBar::OnPaint(wxPaintEvent
& event
)
547 wxMacPortSetter
helper(&dc
) ;
549 Rect toolbarrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) ,
550 dc
.YLOG2DEVMAC(m_height
) , dc
.XLOG2DEVMAC(m_width
) } ;
551 UMADrawThemePlacard( &toolbarrect
, IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
553 wxToolBarToolsList::Node
*node
;
554 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
556 wxToolBarTool
* tool
= (wxToolBarTool
*) node
->GetData() ;
557 if ( tool
->IsButton() )
559 UMADrawControl( tool
->GetControlHandle() ) ;
565 void wxToolBar::OnMouse( wxMouseEvent
&event
)
567 if (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
573 MacClientToRootWindow( &x
, &y
) ;
575 ControlHandle control
;
578 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
585 if ( !event
.m_leftDown
&& !event
.m_rightDown
)
586 modifiers
|= btnState
;
588 if ( event
.m_shiftDown
)
589 modifiers
|= shiftKey
;
591 if ( event
.m_controlDown
)
592 modifiers
|= controlKey
;
594 if ( event
.m_altDown
)
595 modifiers
|= optionKey
;
597 if ( event
.m_metaDown
)
598 modifiers
|= cmdKey
;
600 controlpart
= ::FindControl( localwhere
, window
, &control
) ;
602 if ( control
&& ::IsControlActive( control
) )
605 controlpart
= ::HandleControlClick( control
, localwhere
, modifiers
, (ControlActionUPP
) -1 ) ;
606 wxTheApp
->s_lastMouseDown
= 0 ;
607 if ( control
&& controlpart
!= kControlNoPart
) // otherwise we will get the event twice
609 MacHandleControlClick( control
, controlpart
, false /* not down anymore */ ) ;
617 #endif // wxUSE_TOOLBAR