]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gauge95.h
compilation fixes (I wonder how did you people ever compile it...)
[wxWidgets.git] / include / wx / msw / gauge95.h
index 0bab3e716331fd4e18493598dc6e4178b533cc91..c1ab4ab1d0b0929f604217bea5e8a4b255aeec99 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _GAUGE95_H_
@@ -16,6 +16,8 @@
 #pragma interface "gauge95.h"
 #endif
 
+#if wxUSE_SLIDER
+
 #include "wx/control.h"
 
 WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
@@ -60,6 +62,9 @@ public:
     bool SetForegroundColour(const wxColour& col);
     bool SetBackgroundColour(const wxColour& col);
 
+    // overriden base class virtuals
+    virtual bool AcceptsFocus() const { return FALSE; }
+
     // Backward compatibility
 #if WXWIN_COMPATIBILITY
     void SetButtonColour(const wxColour& col) { SetForegroundColour(col); }
@@ -70,11 +75,9 @@ public:
 protected:
     int      m_rangeMax;
     int      m_gaugePos;
-
-    virtual void DoSetSize(int x, int y,
-                           int width, int height,
-                           int sizeFlags = wxSIZE_AUTO);
 };
 
+#endif // wxUSE_GAUGE
+
 #endif
     // _GAUGEMSW_H_