1998-06-28 11:34:42 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: gaugemsw.h
|
|
|
|
// Purpose: wxGauge class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-06-28 11:34:42 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _GAUGEMSW_H_
|
1999-05-25 13:23:09 +00:00
|
|
|
#define _GAUGEMSW_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "gaugemsw.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
1999-06-10 18:12:13 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
|
1999-05-25 13:23:09 +00:00
|
|
|
|
|
|
|
// Group box
|
|
|
|
class WXDLLEXPORT wxGaugeMSW: public wxControl
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxGaugeMSW)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxGaugeMSW(void) { m_rangeMax = 0; m_gaugePos = 0; }
|
|
|
|
|
|
|
|
wxGaugeMSW(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 *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);
|
|
|
|
|
|
|
|
void SetShadowWidth(int w);
|
|
|
|
void SetBezelFace(int w);
|
1999-02-22 11:01:13 +00:00
|
|
|
void SetRange(int r);
|
|
|
|
void SetValue(int pos);
|
|
|
|
|
|
|
|
int GetShadowWidth(void) const ;
|
|
|
|
int GetBezelFace(void) const ;
|
|
|
|
int GetRange(void) const ;
|
|
|
|
int GetValue(void) const ;
|
|
|
|
|
1999-05-25 23:27:00 +00:00
|
|
|
bool SetForegroundColour(const wxColour& col);
|
|
|
|
bool SetBackgroundColour(const wxColour& col);
|
1999-02-22 11:01:13 +00:00
|
|
|
|
2000-01-13 23:39:48 +00:00
|
|
|
// overriden base class virtuals
|
|
|
|
virtual bool AcceptsFocus() const { return FALSE; }
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
// Backward compatibility
|
1999-05-25 13:23:09 +00:00
|
|
|
#if WXWIN_COMPATIBILITY
|
|
|
|
void SetButtonColour(const wxColour& col) { SetForegroundColour(col); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_rangeMax;
|
|
|
|
int m_gaugePos;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _GAUGEMSW_H_
|