]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: gauge.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __GTKGAUGEH__ | |
12 | #define __GTKGAUGEH__ | |
13 | ||
14 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | ||
20 | #if wxUSE_GAUGE | |
21 | ||
22 | #include "wx/object.h" | |
23 | #include "wx/list.h" | |
24 | #include "wx/control.h" | |
25 | ||
26 | //----------------------------------------------------------------------------- | |
27 | // classes | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | class wxGauge; | |
31 | ||
32 | //----------------------------------------------------------------------------- | |
33 | // global data | |
34 | //----------------------------------------------------------------------------- | |
35 | ||
36 | extern const wxChar* wxGaugeNameStr; | |
37 | ||
38 | //----------------------------------------------------------------------------- | |
39 | // wxGaugeBox | |
40 | //----------------------------------------------------------------------------- | |
41 | ||
42 | class wxGauge: public wxControl | |
43 | { | |
44 | public: | |
45 | wxGauge() { Init(); } | |
46 | ||
47 | wxGauge( wxWindow *parent, | |
48 | wxWindowID id, | |
49 | int range, | |
50 | const wxPoint& pos = wxDefaultPosition, | |
51 | const wxSize& size = wxDefaultSize, | |
52 | long style = wxGA_HORIZONTAL, | |
53 | const wxValidator& validator = wxDefaultValidator, | |
54 | const wxString& name = wxGaugeNameStr ) | |
55 | { | |
56 | Init(); | |
57 | ||
58 | Create(parent, id, range, pos, size, style, validator, name); | |
59 | } | |
60 | ||
61 | bool Create( wxWindow *parent, | |
62 | wxWindowID id, int range, | |
63 | const wxPoint& pos = wxDefaultPosition, | |
64 | const wxSize& size = wxDefaultSize, | |
65 | long style = wxGA_HORIZONTAL, | |
66 | const wxValidator& validator = wxDefaultValidator, | |
67 | const wxString& name = wxGaugeNameStr ); | |
68 | ||
69 | void SetShadowWidth( int WXUNUSED(w) ) { } | |
70 | void SetBezelFace( int WXUNUSED(w) ) { } | |
71 | void SetRange( int r ); | |
72 | void SetValue( int pos ); | |
73 | int GetShadowWidth() const { return 0; }; | |
74 | int GetBezelFace() const { return 0; }; | |
75 | int GetRange() const; | |
76 | int GetValue() const; | |
77 | ||
78 | bool IsVertical() const { return HasFlag(wxGA_VERTICAL); } | |
79 | ||
80 | static wxVisualAttributes | |
81 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
82 | ||
83 | // implementation | |
84 | // ------------- | |
85 | ||
86 | void ApplyWidgetStyle(); | |
87 | ||
88 | // the max and current gauge values | |
89 | int m_rangeMax, | |
90 | m_gaugePos; | |
91 | ||
92 | // obsolete functions, don't use | |
93 | #if WXWIN_COMPATIBILITY_2_2 | |
94 | bool GetProgressBar() const { return true; } | |
95 | #endif // WXWIN_COMPATIBILITY_2_2 | |
96 | ||
97 | protected: | |
98 | // common part of all ctors | |
99 | void Init() { m_rangeMax = m_gaugePos = 0; } | |
100 | ||
101 | // set the gauge value to the value of m_gaugePos | |
102 | void DoSetGauge(); | |
103 | ||
104 | virtual wxSize DoGetBestSize() const; | |
105 | ||
106 | virtual wxVisualAttributes GetDefaultAttributes() const; | |
107 | ||
108 | private: | |
109 | DECLARE_DYNAMIC_CLASS(wxGauge) | |
110 | }; | |
111 | ||
112 | #endif | |
113 | ||
114 | #endif // __GTKGAUGEH__ |