]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/spinbutt_osx.cpp
support for file types in save panel
[wxWidgets.git] / src / osx / spinbutt_osx.cpp
index b8c669c1543108803328562254b06e05b65533f8..5e3408d5193c62b6fdf37f2c2d808fd9873acaa8 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id: spinbutt.cpp 54129 2008-06-11 19:30:52Z SC $
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:       wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 #include "wx/osx/private.h"
 
 
-IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
-IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent)
-
-
 wxSpinButton::wxSpinButton()
    : wxSpinButtonBase()
 {
@@ -40,10 +36,10 @@ bool wxSpinButton::Create( wxWindow *parent,
 
     if (!parent)
         return false;
-    
+
     m_peer = wxWidgetImpl::CreateSpinButton( this , parent, id, 0, m_min, m_max, pos, size,
         style, GetExtraStyle() );
-        
+
     MacPostControlCreate( pos, size );
 
     return true;
@@ -69,9 +65,9 @@ void wxSpinButton::SetRange(int minVal, int maxVal)
     m_max = maxVal;
     m_peer->SetMaximum( maxVal );
     m_peer->SetMinimum( minVal );
-}   
-    
-void wxSpinButton::SendThumbTrackEvent() 
+}
+
+void wxSpinButton::SendThumbTrackEvent()
 {
     wxSpinEvent event( wxEVT_SCROLL_THUMBTRACK, GetId() );
     event.SetPosition( GetValue() );
@@ -79,7 +75,7 @@ void wxSpinButton::SendThumbTrackEvent()
     HandleWindowEvent( event );
 }
 
-bool wxSpinButton::OSXHandleClicked( double timestampsec )
+bool wxSpinButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
 {
     // all events have already been processed
     return true;
@@ -94,7 +90,7 @@ void wxSpinButton::TriggerScrollEvent(wxEventType scrollEvent)
 {
     int inc = 0;
 
-    if ( scrollEvent == wxEVT_SCROLL_LINEUP )    
+    if ( scrollEvent == wxEVT_SCROLL_LINEUP )
     {
         inc = 1;
     }
@@ -102,9 +98,9 @@ void wxSpinButton::TriggerScrollEvent(wxEventType scrollEvent)
     {
         inc = -1;
     }
-    
+
     // trigger scroll events
-    
+
     int oldValue = GetValue() ;
 
     int newValue = oldValue + inc;