X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..c5602b4a8d5c6d0208b21859f9081aa51bea908a:/src/mac/carbon/spinbutt.cpp diff --git a/src/mac/carbon/spinbutt.cpp b/src/mac/carbon/spinbutt.cpp index 5ee91f60f3..98272dc92a 100644 --- a/src/mac/carbon/spinbutt.cpp +++ b/src/mac/carbon/spinbutt.cpp @@ -6,7 +6,7 @@ // Created: 1998-01-01 // RCS-ID: $Id$ // Copyright: (c) Stefan Csomor -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -30,6 +30,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent) #endif +extern ControlActionUPP wxMacLiveScrollbarActionUPP ; + wxSpinButton::wxSpinButton() : wxSpinButtonBase() { @@ -52,9 +54,11 @@ bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, c Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; + m_peer = new wxMacControl() ; verify_noerr ( CreateLittleArrowsControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , 0 , m_min , m_max , 1 , - (ControlRef*) &m_macControl ) ) ; + m_peer->GetControlRefAddr() ) ); + m_peer->SetActionProc( wxMacLiveScrollbarActionUPP ) ; MacPostControlCreate(pos,size) ; return TRUE; @@ -91,8 +95,8 @@ void wxSpinButton::SetRange(int minVal, int maxVal) { m_min = minVal; m_max = maxVal; - SetControl32BitMaximum( (ControlRef) m_macControl , maxVal ) ; - SetControl32BitMinimum((ControlRef) m_macControl , minVal ) ; + m_peer->SetMaximum( maxVal ) ; + m_peer->SetMinimum( minVal ) ; } void wxSpinButton::MacHandleValueChanged( int inc ) @@ -135,7 +139,7 @@ void wxSpinButton::MacHandleValueChanged( int inc ) { m_value = oldValue ; } - SetControl32BitValue( (ControlRef) m_macControl , m_value ) ; + m_peer->SetValue( m_value ) ; /* always send a thumbtrack event */ if (scrollEvent != wxEVT_SCROLL_THUMBTRACK) @@ -148,8 +152,26 @@ void wxSpinButton::MacHandleValueChanged( int inc ) } } +void wxSpinButton::MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool mouseStillDown ) +{ + int nScrollInc = 0; + + switch( controlpart ) + { + case kControlUpButtonPart : + nScrollInc = 1; + break ; + case kControlDownButtonPart : + nScrollInc = -1; + break ; + } + MacHandleValueChanged( nScrollInc ) ; +} + wxInt32 wxSpinButton::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF event ) { + /* + // these have been handled by the live action proc already int nScrollInc = 0; wxMacCarbonEvent cEvent( (EventRef) event ) ; @@ -163,6 +185,7 @@ wxInt32 wxSpinButton::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVEN break ; } MacHandleValueChanged( nScrollInc ) ; + */ return noErr ; }