2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: gauge.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxGauge
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
2010-07-13 13:29:13 +00:00
|
|
|
// Licence: wxWindows licence
|
2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-09-16 17:03:01 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxGauge style flags
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define wxGA_HORIZONTAL wxHORIZONTAL
|
|
|
|
#define wxGA_VERTICAL wxVERTICAL
|
|
|
|
|
|
|
|
// Win32 only, is default (and only) on some other platforms
|
|
|
|
#define wxGA_SMOOTH 0x0020
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
@class wxGauge
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-05-02 04:12:39 +00:00
|
|
|
A gauge is a horizontal or vertical bar which shows a quantity (often
|
|
|
|
time).
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
wxGauge supports two working modes: determinate and indeterminate progress.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-05-02 04:12:39 +00:00
|
|
|
The first is the usual working mode (see SetValue() and SetRange()) while
|
|
|
|
the second can be used when the program is doing some processing but you
|
|
|
|
don't know how much progress is being done. In this case, you can
|
|
|
|
periodically call the Pulse() function to make the progress bar switch to
|
|
|
|
indeterminate mode (graphically it's usually a set of blocks which move or
|
|
|
|
bounce in the bar control).
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
wxGauge supports dynamic switch between these two work modes.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
There are no user commands for the gauge.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@beginStyleTable
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxGA_HORIZONTAL}
|
2008-03-08 13:52:38 +00:00
|
|
|
Creates a horizontal gauge.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxGA_VERTICAL}
|
2008-03-08 13:52:38 +00:00
|
|
|
Creates a vertical gauge.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxGA_SMOOTH}
|
2008-03-08 13:52:38 +00:00
|
|
|
Creates smooth progress bar with one pixel wide update step (not
|
|
|
|
supported by all platforms).
|
|
|
|
@endStyleTable
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxcore}
|
|
|
|
@category{ctrl}
|
2012-11-03 18:32:50 +00:00
|
|
|
@appearance{gauge}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
@see wxSlider, wxScrollBar
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
class wxGauge : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
2008-05-02 04:12:39 +00:00
|
|
|
/**
|
|
|
|
Default constructor.
|
|
|
|
*/
|
|
|
|
wxGauge();
|
2008-11-22 14:18:05 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
Constructor, creating and showing a gauge.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param parent
|
2008-03-09 12:33:59 +00:00
|
|
|
Window parent.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param id
|
2008-03-09 12:33:59 +00:00
|
|
|
Window identifier.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param range
|
2008-11-22 14:18:05 +00:00
|
|
|
Integer range (maximum value) of the gauge.
|
|
|
|
See SetRange() for more details about the meaning of this value
|
|
|
|
when using the gauge in indeterminate mode.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param pos
|
2008-03-09 12:33:59 +00:00
|
|
|
Window position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param size
|
2008-03-09 12:33:59 +00:00
|
|
|
Window size.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param style
|
2008-05-02 04:12:39 +00:00
|
|
|
Gauge style.
|
2008-11-14 18:17:21 +00:00
|
|
|
@param validator
|
|
|
|
Window validator.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param name
|
2008-03-09 12:33:59 +00:00
|
|
|
Window name.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see Create()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
wxGauge(wxWindow* parent, wxWindowID id, int range,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxGA_HORIZONTAL,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2008-11-09 16:46:52 +00:00
|
|
|
const wxString& name = wxGaugeNameStr);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor, destroying the gauge.
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
virtual ~wxGauge();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-05-02 04:12:39 +00:00
|
|
|
Creates the gauge for two-step construction. See wxGauge() for further
|
|
|
|
details.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
bool Create(wxWindow* parent, wxWindowID id, int range,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
2008-10-28 15:36:26 +00:00
|
|
|
const wxSize& size = wxDefaultSize, long style = wxGA_HORIZONTAL,
|
2008-03-08 13:52:38 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2008-10-28 15:36:26 +00:00
|
|
|
const wxString& name = wxGaugeNameStr);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the width of the 3D bezel face.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@remarks This method is not implemented (returns 0) for most platforms.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see SetBezelFace()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
int GetBezelFace() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the maximum position of the gauge.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see SetRange()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
int GetRange() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the 3D shadow margin width.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@remarks This method is not implemented (returns 0) for most platforms.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see SetShadowWidth()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
int GetShadowWidth() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the current position of the gauge.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see SetValue()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
int GetValue() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-03-08 14:43:31 +00:00
|
|
|
Returns @true if the gauge is vertical (has @c wxGA_VERTICAL style) and
|
2008-03-08 13:52:38 +00:00
|
|
|
@false otherwise.
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
bool IsVertical() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-05-02 04:12:39 +00:00
|
|
|
Switch the gauge to indeterminate mode (if required) and makes the
|
|
|
|
gauge move a bit to indicate the user that some progress has been made.
|
|
|
|
|
|
|
|
@note After calling this function the value returned by GetValue() is
|
2011-03-22 14:17:38 +00:00
|
|
|
undefined and thus you need to explicitly call SetValue() if you
|
2008-05-02 04:12:39 +00:00
|
|
|
want to restore the determinate mode.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
virtual void Pulse();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the 3D bezel face width.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@remarks This method is not implemented (doesn't do anything) for most
|
2008-03-09 12:33:59 +00:00
|
|
|
platforms.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see GetBezelFace()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void SetBezelFace(int width);
|
|
|
|
|
|
|
|
/**
|
2008-05-02 04:12:39 +00:00
|
|
|
Sets the range (maximum value) of the gauge. This function makes the
|
|
|
|
gauge switch to determinate mode, if it's not already.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-11-22 14:18:05 +00:00
|
|
|
When the gauge is in indeterminate mode, under wxMSW the gauge
|
|
|
|
repeatedly goes from zero to @a range and back; under other ports
|
|
|
|
when in indeterminate mode, the @a range setting is ignored.
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see GetRange()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void SetRange(int range);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the 3D shadow width.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@remarks This method is not implemented (doesn't do anything) for most
|
2008-03-09 12:33:59 +00:00
|
|
|
platforms.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void SetShadowWidth(int width);
|
|
|
|
|
|
|
|
/**
|
2008-05-02 04:12:39 +00:00
|
|
|
Sets the position of the gauge. The @a pos must be between 0 and the
|
|
|
|
gauge range as returned by GetRange(), inclusive.
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
This function makes the gauge switch to determinate mode, if it was in
|
|
|
|
indeterminate mode before.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param pos
|
2008-03-09 12:33:59 +00:00
|
|
|
Position for the gauge level.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see GetValue()
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void SetValue(int pos);
|
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|