]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/gauge.h
1. added encoding param to wxFontEncoding::EnumFamilies() which allows to get
[wxWidgets.git] / include / wx / os2 / gauge.h
index bac0f982b5009cb64af4ffcf475e9b74b951d3ef..544b6330991083db9fadd92017770c6ce8c0310c 100644 (file)
@@ -1,26 +1,21 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        gauge.h
 // Purpose:     wxGauge class
-// Author:      AUTHOR
+// Author:      David Webster
 // Modified by:
-// Created:     ??/??/98
+// Created:     10/06/99
 // RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
-// Licence:    wxWindows licence
+// Copyright:   (c) David Webster
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #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
 {
   DECLARE_DYNAMIC_CLASS(wxGauge)
@@ -56,15 +51,14 @@ class WXDLLEXPORT wxGauge: public wxControl
   int GetRange() const ;
   int GetValue() const ;
 
-  void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  bool SetForegroundColour(const wxColour& col);
+  bool SetBackgroundColour(const wxColour& col);
 
   virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
 
  protected:
    int      m_rangeMax;
    int      m_gaugePos;
-private:
-  void SetSize(int width, int height) {wxWindow::SetSize(width, height);}
 };
 
 #endif