moving implementation out of class declaration
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -336,9 +336,33 @@ public :
|
|||||||
|
|
||||||
bool Ok() const { return m_controlRef != NULL ; }
|
bool Ok() const { return m_controlRef != NULL ; }
|
||||||
|
|
||||||
OSStatus SetData( ControlPartCode inPartCode , ResType inTag , Size inSize , const void * inData ) ;
|
void operator= (ControlRef c) { m_controlRef = c ; }
|
||||||
OSStatus GetData( ControlPartCode inPartCode , ResType inTag , Size inBufferSize , void * inOutBuffer , Size * outActualSize ) ;
|
operator ControlRef () { return m_controlRef; }
|
||||||
OSStatus GetDataSize( ControlPartCode inPartCode , ResType inTag , Size * outActualSize ) ;
|
operator ControlRef * () { return &m_controlRef; }
|
||||||
|
|
||||||
|
// accessing data and values
|
||||||
|
|
||||||
|
virtual OSStatus SetData( ControlPartCode inPartCode , ResType inTag , Size inSize , const void * inData ) ;
|
||||||
|
virtual OSStatus GetData( ControlPartCode inPartCode , ResType inTag , Size inBufferSize , void * inOutBuffer , Size * outActualSize ) ;
|
||||||
|
virtual OSStatus GetDataSize( ControlPartCode inPartCode , ResType inTag , Size * outActualSize ) ;
|
||||||
|
virtual OSStatus SendEvent( EventRef ref , OptionBits inOptions = 0 ) ;
|
||||||
|
virtual OSStatus SendHICommand( HICommand &command , OptionBits inOptions = 0 ) ;
|
||||||
|
|
||||||
|
OSStatus SendHICommand( UInt32 commandID , OptionBits inOptions = 0 ) ;
|
||||||
|
|
||||||
|
SInt32 GetValue() const ;
|
||||||
|
SInt32 GetMaximum() const ;
|
||||||
|
SInt32 GetMinimum() const ;
|
||||||
|
|
||||||
|
void SetValue( SInt32 v ) ;
|
||||||
|
void SetMinimum( SInt32 v ) ;
|
||||||
|
void SetMaximum( SInt32 v ) ;
|
||||||
|
|
||||||
|
void SetValueAndRange( SInt32 value , SInt32 minimum , SInt32 maximum ) ;
|
||||||
|
void SetRange( SInt32 minimum , SInt32 maximum ) ;
|
||||||
|
|
||||||
|
// templated helpers
|
||||||
|
|
||||||
Size GetDataSize( ControlPartCode inPartCode , ResType inTag )
|
Size GetDataSize( ControlPartCode inPartCode , ResType inTag )
|
||||||
{
|
{
|
||||||
Size sz ;
|
Size sz ;
|
||||||
@@ -365,37 +389,10 @@ public :
|
|||||||
return value ;
|
return value ;
|
||||||
}
|
}
|
||||||
|
|
||||||
OSStatus SendEvent( EventRef ref , OptionBits inOptions = 0 ) ;
|
|
||||||
OSStatus SendHICommand( HICommand &command , OptionBits inOptions = 0 ) ;
|
|
||||||
OSStatus SendHICommand( UInt32 commandID , OptionBits inOptions = 0 ) ;
|
|
||||||
|
|
||||||
// Flash the control for the specified amount of time
|
// Flash the control for the specified amount of time
|
||||||
void Flash( ControlPartCode part , UInt32 ticks = 8 ) ;
|
void Flash( ControlPartCode part , UInt32 ticks = 8 ) ;
|
||||||
|
|
||||||
SInt32 GetValue() { return ::GetControl32BitValue( m_controlRef ) ; }
|
|
||||||
SInt32 GetMaximum() { return ::GetControl32BitMaximum( m_controlRef ) ; }
|
|
||||||
SInt32 GetMinimum() { return ::GetControl32BitMinimum( m_controlRef ) ; }
|
|
||||||
|
|
||||||
void SetValue( SInt32 v ) { ::SetControl32BitValue( m_controlRef , v ) ; }
|
|
||||||
void SetMinimum( SInt32 v ) { ::SetControl32BitMinimum( m_controlRef , v ) ; }
|
|
||||||
void SetMaximum( SInt32 v ) { ::SetControl32BitMaximum( m_controlRef , v ) ; }
|
|
||||||
|
|
||||||
void SetValueAndRange( SInt32 value , SInt32 minimum , SInt32 maximum )
|
|
||||||
{
|
|
||||||
::SetControl32BitMinimum( m_controlRef , minimum ) ;
|
|
||||||
::SetControl32BitMaximum( m_controlRef , maximum ) ;
|
|
||||||
::SetControl32BitValue( m_controlRef , value ) ;
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetRange( SInt32 minimum , SInt32 maximum )
|
|
||||||
{
|
|
||||||
::SetControl32BitMinimum( m_controlRef , minimum ) ;
|
|
||||||
::SetControl32BitMaximum( m_controlRef , maximum ) ;
|
|
||||||
}
|
|
||||||
|
|
||||||
void operator= (ControlRef c) { m_controlRef = c ; }
|
|
||||||
operator ControlRef () { return m_controlRef; }
|
|
||||||
operator ControlRef * () { return &m_controlRef; }
|
|
||||||
protected :
|
protected :
|
||||||
ControlRef m_controlRef ;
|
ControlRef m_controlRef ;
|
||||||
} ;
|
} ;
|
||||||
|
Reference in New Issue
Block a user