]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/gauge.h
Do not derive wxCursor from wxBitmap, plus misc cleanup.
[wxWidgets.git] / include / wx / motif / gauge.h
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 WXDLLEXPORT_DATA(extern const char*) wxGaugeNameStr;
20
21 // Group box
22 class WXDLLEXPORT wxGauge : public wxGaugeBase
23 {
24 DECLARE_DYNAMIC_CLASS(wxGauge)
25
26 public:
27 inline wxGauge() { m_rangeMax = 0; m_gaugePos = 0; }
28
29 inline wxGauge(wxWindow *parent, wxWindowID id,
30 int range,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = wxGA_HORIZONTAL,
34 const wxValidator& validator = wxDefaultValidator,
35 const wxString& name = wxGaugeNameStr)
36 {
37 Create(parent, id, range, pos, size, style, validator, name);
38 }
39
40 bool Create(wxWindow *parent, wxWindowID id,
41 int range,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = wxGA_HORIZONTAL,
45 const wxValidator& validator = wxDefaultValidator,
46 const wxString& name = wxGaugeNameStr);
47
48 void SetShadowWidth(int w);
49 void SetRange(int r);
50 void SetValue(int pos);
51
52 int GetShadowWidth() const ;
53 int GetRange() const ;
54 int GetValue() const ;
55
56 virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
57
58 private:
59 virtual wxSize DoGetBestSize() const;
60 virtual void DoMoveWindow(int x, int y, int width, int height);
61 };
62
63 #endif
64 // _WX_GAUGE_H_