]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/gauge.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/gauge.h
3 // Purpose: wxGauge implementation for MSW
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_GAUGE_H_
13 #define _WX_MSW_GAUGE_H_
17 extern WXDLLIMPEXP_DATA_CORE(const char) wxGaugeNameStr
[];
20 class WXDLLIMPEXP_CORE wxGauge
: public wxGaugeBase
25 wxGauge(wxWindow
*parent
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
30 long style
= wxGA_HORIZONTAL
,
31 const wxValidator
& validator
= wxDefaultValidator
,
32 const wxString
& name
= wxGaugeNameStr
)
34 (void)Create(parent
, id
, range
, pos
, size
, style
, validator
, name
);
37 bool Create(wxWindow
*parent
,
40 const wxPoint
& pos
= wxDefaultPosition
,
41 const wxSize
& size
= wxDefaultSize
,
42 long style
= wxGA_HORIZONTAL
,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxGaugeNameStr
);
46 // set gauge range/value
47 virtual void SetRange(int range
);
48 virtual void SetValue(int pos
);
50 // overriden base class virtuals
51 virtual bool SetForegroundColour(const wxColour
& col
);
52 virtual bool SetBackgroundColour(const wxColour
& col
);
55 void SetIndeterminateMode();
56 void SetDeterminateMode();
59 WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
61 // returns true if the platform should explicitly apply a theme border
62 virtual bool CanApplyThemeBorder() const { return false; }
65 virtual wxSize
DoGetBestSize() const;
67 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge
)
72 #endif // _WX_MSW_GAUGE_H_