X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/54da4255a20216b070ec044ae2b8af75e9f2681f..c9eee7f035ebc6b5c044475d508b018ae9fb5bc2:/include/wx/os2/gauge.h diff --git a/include/wx/os2/gauge.h b/include/wx/os2/gauge.h index ce19d9ef1f..1b308d2c43 100644 --- a/include/wx/os2/gauge.h +++ b/include/wx/os2/gauge.h @@ -1,69 +1,77 @@ ///////////////////////////////////////////////////////////////////////////// // 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) - public: - inline wxGauge() { m_rangeMax = 0; m_gaugePos = 0; } +public: + inline wxGauge() { m_nRangeMax = 0; m_nGaugePos = 0; } + + inline wxGauge( wxWindow* pParent + ,wxWindowID vId + ,int nRange + ,const wxPoint& rPos = wxDefaultPosition + ,const wxSize& rSize = wxDefaultSize + ,long lStyle = wxGA_HORIZONTAL + ,const wxValidator& rValidator = wxDefaultValidator + ,const wxString& rsName = wxGaugeNameStr + ) + { + Create( pParent + ,vId + ,nRange + ,rPos + ,rSize + ,lStyle + ,rValidator + ,rsName + ); + } - inline wxGauge(wxWindow *parent, wxWindowID id, - int range, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - long style = wxGA_HORIZONTAL, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxGaugeNameStr) - { - Create(parent, id, range, pos, size, style, validator, name); - } + bool Create( wxWindow* pParent + ,wxWindowID vId + ,int nRange + ,const wxPoint& rPos = wxDefaultPosition + ,const wxSize& rSize = wxDefaultSize + ,long lStyle = wxGA_HORIZONTAL + ,const wxValidator& rValidator = wxDefaultValidator + ,const wxString& rsName = wxGaugeNameStr + ); - bool Create(wxWindow *parent, wxWindowID id, - int range, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - long style = wxGA_HORIZONTAL, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxGaugeNameStr); + int GetShadowWidth(void) const; + int GetBezelFace(void) const; + int GetRange(void) const; + int GetValue(void) const; - void SetShadowWidth(int w); - void SetBezelFace(int w); - void SetRange(int r); - void SetValue(int pos); + bool SetBackgroundColour(const wxColour& rColour); + void SetBezelFace(int nWidth); + bool SetForegroundColour(const wxColour& rColour); + void SetRange(int nRange); + void SetShadowWidth(int nWidth); + void SetValue(int nPos); - int GetShadowWidth() const ; - int GetBezelFace() const ; - int GetRange() const ; - int GetValue() const ; + inline virtual bool AcceptsFocus(void) const { return FALSE; } + inline virtual void Command(wxCommandEvent& WXUNUSED(rEvent)) {}; - void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); +protected: + int m_nRangeMax; + int m_nGaugePos; - virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ; +private: + DECLARE_DYNAMIC_CLASS(wxGauge) +}; // end of CLASS wxGauge - protected: - int m_rangeMax; - int m_gaugePos; -}; +#endif // _WX_GAUGE_H_ -#endif - // _WX_GAUGE_H_