1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: gauge.h
|
|
|
|
// Purpose: wxGauge class
|
1999-10-08 03:39:11 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-08 03:39:11 +00:00
|
|
|
// Created: 10/06/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-08 03:39:11 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_GAUGE_H_
|
|
|
|
#define _WX_GAUGE_H_
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxGauge: public wxControl
|
|
|
|
{
|
2001-12-17 22:56:41 +00:00
|
|
|
public:
|
|
|
|
inline wxGauge() { m_nRangeMax = 0; m_nGaugePos = 0; }
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
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
|
|
|
|
);
|
|
|
|
}
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
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
|
|
|
|
);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
int GetShadowWidth(void) const;
|
|
|
|
int GetBezelFace(void) const;
|
|
|
|
int GetRange(void) const;
|
|
|
|
int GetValue(void) const;
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
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);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
inline virtual bool AcceptsFocus(void) const { return FALSE; }
|
|
|
|
inline virtual void Command(wxCommandEvent& WXUNUSED(rEvent)) {};
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
protected:
|
|
|
|
int m_nRangeMax;
|
|
|
|
int m_nGaugePos;
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2001-12-17 22:56:41 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxGauge)
|
|
|
|
}; // end of CLASS wxGauge
|
|
|
|
|
|
|
|
#endif // _WX_GAUGE_H_
|
1999-07-29 05:11:30 +00:00
|
|
|
|