]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gauge95.h
Lots of updates for color dialog and sliders
[wxWidgets.git] / include / wx / msw / gauge95.h
index 5346750970b0c6efaa6b658fdb37a1da7ae19cb3..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_
 #pragma interface "gauge95.h"
 #endif
 
+#if wxUSE_SLIDER
+
 #include "wx/control.h"
 
-WXDLLEXPORT_DATA(extern const char*) wxGaugeNameStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
 
 // Group box
 class WXDLLEXPORT wxGauge95 : public wxControl
@@ -57,8 +59,11 @@ public:
     int GetRange(void) const ;
     int GetValue(void) const ;
 
-    void SetForegroundColour(const wxColour& col);
-    void SetBackgroundColour(const wxColour& col);
+    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
@@ -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_