| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: gauge.h |
| 3 | // Purpose: wxGauge class |
| 4 | // Author: Stefan Csomor |
| 5 | // Modified by: |
| 6 | // Created: 1998-01-01 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Stefan Csomor |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_GAUGE_H_ |
| 13 | #define _WX_GAUGE_H_ |
| 14 | |
| 15 | #include "wx/control.h" |
| 16 | |
| 17 | WXDLLEXPORT_DATA(extern const char) wxGaugeNameStr[]; |
| 18 | |
| 19 | // Group box |
| 20 | class WXDLLEXPORT wxGauge: public wxGaugeBase |
| 21 | { |
| 22 | public: |
| 23 | inline wxGauge() { } |
| 24 | |
| 25 | inline wxGauge(wxWindow *parent, wxWindowID id, |
| 26 | int range, |
| 27 | const wxPoint& pos = wxDefaultPosition, |
| 28 | const wxSize& size = wxDefaultSize, |
| 29 | long style = wxGA_HORIZONTAL, |
| 30 | const wxValidator& validator = wxDefaultValidator, |
| 31 | const wxString& name = wxGaugeNameStr) |
| 32 | { |
| 33 | Create(parent, id, range, pos, size, style, validator, name); |
| 34 | } |
| 35 | |
| 36 | bool Create(wxWindow *parent, wxWindowID id, |
| 37 | int range, |
| 38 | const wxPoint& pos = wxDefaultPosition, |
| 39 | const wxSize& size = wxDefaultSize, |
| 40 | long style = wxGA_HORIZONTAL, |
| 41 | const wxValidator& validator = wxDefaultValidator, |
| 42 | const wxString& name = wxGaugeNameStr); |
| 43 | |
| 44 | // set gauge range/value |
| 45 | virtual void SetRange(int range); |
| 46 | virtual void SetValue(int pos); |
| 47 | virtual int GetValue() const ; |
| 48 | |
| 49 | void Pulse(); |
| 50 | |
| 51 | protected: |
| 52 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge) |
| 53 | }; |
| 54 | |
| 55 | #endif |
| 56 | // _WX_GAUGE_H_ |