]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gauge95.h
Refactoring: no real changes.
[wxWidgets.git] / include / wx / msw / gauge95.h
index 5346750970b0c6efaa6b658fdb37a1da7ae19cb3..13abb8a915b1a051c2ded17d3df07ad3b95ba93e 100644 (file)
@@ -6,25 +6,25 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _GAUGE95_H_
 #define _GAUGE95_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #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
 {
-    DECLARE_DYNAMIC_CLASS(wxGauge95)
-
 public:
     wxGauge95(void) { m_rangeMax = 0; m_gaugePos = 0; }
 
@@ -57,8 +57,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
@@ -71,10 +74,11 @@ protected:
     int      m_rangeMax;
     int      m_gaugePos;
 
-    virtual void DoSetSize(int x, int y,
-                           int width, int height,
-                           int sizeFlags = wxSIZE_AUTO);
+
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge95)
 };
 
+#endif // wxUSE_GAUGE
+
 #endif
     // _GAUGEMSW_H_