]>
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 | |
65571936 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_GAUGE_H_ | |
13 | #define _WX_GAUGE_H_ | |
14 | ||
9b6dbb09 | 15 | // Group box |
93e73c74 | 16 | class WXDLLEXPORT wxGauge : public wxGaugeBase |
9b6dbb09 | 17 | { |
bfc6fde4 | 18 | DECLARE_DYNAMIC_CLASS(wxGauge) |
83df96d6 | 19 | |
bfc6fde4 VZ |
20 | public: |
21 | inline wxGauge() { m_rangeMax = 0; m_gaugePos = 0; } | |
83df96d6 | 22 | |
bfc6fde4 | 23 | inline wxGauge(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
24 | int range, |
25 | const wxPoint& pos = wxDefaultPosition, | |
26 | const wxSize& size = wxDefaultSize, | |
27 | long style = wxGA_HORIZONTAL, | |
28 | const wxValidator& validator = wxDefaultValidator, | |
29 | const wxString& name = wxGaugeNameStr) | |
bfc6fde4 VZ |
30 | { |
31 | Create(parent, id, range, pos, size, style, validator, name); | |
32 | } | |
83df96d6 | 33 | |
bfc6fde4 | 34 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
35 | int range, |
36 | const wxPoint& pos = wxDefaultPosition, | |
37 | const wxSize& size = wxDefaultSize, | |
38 | long style = wxGA_HORIZONTAL, | |
39 | const wxValidator& validator = wxDefaultValidator, | |
40 | const wxString& name = wxGaugeNameStr); | |
41 | ||
bfc6fde4 | 42 | void SetShadowWidth(int w); |
bfc6fde4 VZ |
43 | void SetRange(int r); |
44 | void SetValue(int pos); | |
83df96d6 | 45 | |
bfc6fde4 | 46 | int GetShadowWidth() const ; |
bfc6fde4 VZ |
47 | int GetRange() const ; |
48 | int GetValue() const ; | |
83df96d6 | 49 | |
bfc6fde4 | 50 | virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ; |
93e73c74 MB |
51 | |
52 | private: | |
53 | virtual wxSize DoGetBestSize() const; | |
54 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
9b6dbb09 JS |
55 | }; |
56 | ||
57 | #endif | |
83df96d6 | 58 | // _WX_GAUGE_H_ |