]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gauge.h | |
3 | // Purpose: wxGauge class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_GAUGE_H_ | |
13 | #define _WX_GAUGE_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "gauge.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxGaugeNameStr; | |
22 | ||
23 | // Group box | |
bfc6fde4 | 24 | class WXDLLEXPORT wxGauge : public wxControl |
9b6dbb09 | 25 | { |
bfc6fde4 | 26 | DECLARE_DYNAMIC_CLASS(wxGauge) |
9b6dbb09 | 27 | |
bfc6fde4 VZ |
28 | public: |
29 | inline wxGauge() { m_rangeMax = 0; m_gaugePos = 0; } | |
9b6dbb09 | 30 | |
bfc6fde4 VZ |
31 | inline wxGauge(wxWindow *parent, wxWindowID id, |
32 | int range, | |
33 | const wxPoint& pos = wxDefaultPosition, | |
34 | const wxSize& size = wxDefaultSize, | |
35 | long style = wxGA_HORIZONTAL, | |
36 | const wxValidator& validator = wxDefaultValidator, | |
37 | const wxString& name = wxGaugeNameStr) | |
38 | { | |
39 | Create(parent, id, range, pos, size, style, validator, name); | |
40 | } | |
9b6dbb09 | 41 | |
bfc6fde4 VZ |
42 | bool Create(wxWindow *parent, wxWindowID id, |
43 | int range, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | long style = wxGA_HORIZONTAL, | |
47 | const wxValidator& validator = wxDefaultValidator, | |
48 | const wxString& name = wxGaugeNameStr); | |
9b6dbb09 | 49 | |
bfc6fde4 VZ |
50 | void SetShadowWidth(int w); |
51 | void SetBezelFace(int w); | |
52 | void SetRange(int r); | |
53 | void SetValue(int pos); | |
9b6dbb09 | 54 | |
bfc6fde4 VZ |
55 | int GetShadowWidth() const ; |
56 | int GetBezelFace() const ; | |
57 | int GetRange() const ; | |
58 | int GetValue() const ; | |
9b6dbb09 | 59 | |
bfc6fde4 | 60 | virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ; |
9b6dbb09 | 61 | |
bfc6fde4 VZ |
62 | // Implementation |
63 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
64 | virtual void ChangeBackgroundColour(); | |
65 | virtual void ChangeForegroundColour(); | |
0d57be45 | 66 | |
bfc6fde4 VZ |
67 | protected: |
68 | int m_rangeMax; | |
69 | int m_gaugePos; | |
9b6dbb09 JS |
70 | }; |
71 | ||
72 | #endif | |
73 | // _WX_GAUGE_H_ |