]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/gauge95.h
cleanup: derive wxGauge from wxGaugeBase; removed redundant code from Create() (use...
[wxWidgets.git] / include / wx / msw / gauge95.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gauge95.h
3 // Purpose: wxGauge95 class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _GAUGE95_H_
13 #define _GAUGE95_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "gauge95.h"
17 #endif
18
19 #if wxUSE_SLIDER
20
21 #include "wx/control.h"
22
23 WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
24
25 // Group box
26 class WXDLLEXPORT wxGauge95 : public wxGaugeBase
27 {
28 public:
29 wxGauge95() { }
30
31 wxGauge95(wxWindow *parent,
32 wxWindowID id,
33 int range,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize,
36 long style = wxGA_HORIZONTAL,
37 const wxValidator& validator = wxDefaultValidator,
38 const wxString& name = wxGaugeNameStr)
39 {
40 (void)Create(parent, id, range, pos, size, style, validator, name);
41 }
42
43 bool Create(wxWindow *parent,
44 wxWindowID id,
45 int range,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
48 long style = wxGA_HORIZONTAL,
49 const wxValidator& validator = wxDefaultValidator,
50 const wxString& name = wxGaugeNameStr);
51
52 // set gauge range/value
53 virtual void SetRange(int range);
54 virtual void SetValue(int pos);
55
56 // overriden base class virtuals
57 virtual bool SetForegroundColour(const wxColour& col);
58 virtual bool SetBackgroundColour(const wxColour& col);
59
60 protected:
61 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
62 virtual wxSize DoGetBestSize() const;
63
64
65 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge95)
66 };
67
68 #endif // wxUSE_GAUGE
69
70 #endif
71 // _GAUGEMSW_H_