]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/gauge.h
added extend() method which realloc()s the buffer
[wxWidgets.git] / include / wx / motif / gauge.h
index d8c6e2edb32c3379ba934464868ba3dd16aab189..392f2568740e0d7ca2a239e65ba5423001cc3fe4 100644 (file)
 #ifndef _WX_GAUGE_H_
 #define _WX_GAUGE_H_
 
-#ifdef __GNUG__
-#pragma interface "gauge.h"
-#endif
-
-#include "wx/control.h"
-
-WXDLLEXPORT_DATA(extern const char*) wxGaugeNameStr;
-
 // Group box
-class WXDLLEXPORT wxGauge : public wxControl
+class WXDLLEXPORT wxGauge : public wxGaugeBase
 {
     DECLARE_DYNAMIC_CLASS(wxGauge)
         
@@ -48,25 +40,18 @@ public:
         const wxString& name = wxGaugeNameStr);
     
     void SetShadowWidth(int w);
-    void SetBezelFace(int w);
     void SetRange(int r);
     void SetValue(int pos);
     
     int GetShadowWidth() const ;
-    int GetBezelFace() const ;
     int GetRange() const ;
     int GetValue() const ;
     
     virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
-    
-    // Implementation
-    virtual void ChangeFont(bool keepOriginalSize = TRUE);
-    virtual void ChangeBackgroundColour();
-    virtual void ChangeForegroundColour();
-    
-protected:
-    int      m_rangeMax;
-    int      m_gaugePos;
+
+private:
+    virtual wxSize DoGetBestSize() const;
+    virtual void DoMoveWindow(int x, int y, int width, int height);
 };
 
 #endif