]>
Commit | Line | Data |
---|---|---|
24e97652 DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/cocoa/gauge.h | |
3 | // Purpose: wxGauge class | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/07/15 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2003 David Elliott | |
1b88201f | 9 | // Licence: wxWindows licence |
24e97652 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef __WX_COCOA_GAUGE_H__ | |
13 | #define __WX_COCOA_GAUGE_H__ | |
14 | ||
15 | // #include "wx/cocoa/NSProgressIndicator.h" | |
16 | ||
15bc1a64 DE |
17 | DECLARE_WXCOCOA_OBJC_CLASS(NSProgressIndicator); |
18 | ||
24e97652 DE |
19 | // ======================================================================== |
20 | // wxGauge | |
21 | // ======================================================================== | |
22 | class WXDLLEXPORT wxGauge: public wxGaugeBase// , protected wxCocoaNSProgressIndicator | |
23 | { | |
24 | DECLARE_DYNAMIC_CLASS(wxGauge) | |
25 | DECLARE_EVENT_TABLE() | |
26 | // WX_DECLARE_COCOA_OWNER(NSProgressIndicator,NSView,NSView) | |
27 | // ------------------------------------------------------------------------ | |
28 | // initialization | |
29 | // ------------------------------------------------------------------------ | |
30 | public: | |
31 | wxGauge() { } | |
32 | wxGauge(wxWindow *parent, wxWindowID winid, int range, | |
33 | const wxPoint& pos = wxDefaultPosition, | |
34 | const wxSize& size = wxDefaultSize, | |
35 | long style = wxGA_HORIZONTAL, | |
36 | const wxValidator& validator = wxDefaultValidator, | |
37 | const wxString& name = wxGaugeNameStr) | |
38 | { | |
39 | Create(parent, winid, range, pos, size, style, validator, name); | |
40 | } | |
41 | ||
42 | bool Create(wxWindow *parent, wxWindowID winid, int range, | |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, | |
4930046b | 45 | long style = wxGA_HORIZONTAL, |
24e97652 DE |
46 | const wxValidator& validator = wxDefaultValidator, |
47 | const wxString& name = wxGaugeNameStr); | |
48 | virtual ~wxGauge(); | |
49 | ||
50 | // ------------------------------------------------------------------------ | |
51 | // Cocoa callbacks | |
52 | // ------------------------------------------------------------------------ | |
15bc1a64 DE |
53 | public: |
54 | inline WX_NSProgressIndicator GetNSProgressIndicator() const { return (WX_NSProgressIndicator)m_cocoaNSView; } | |
24e97652 | 55 | protected: |
faad1887 DE |
56 | // NSProgressIndicator cannot be enabled/disabled |
57 | virtual void CocoaSetEnabled(bool enable) { } | |
24e97652 DE |
58 | // ------------------------------------------------------------------------ |
59 | // Implementation | |
60 | // ------------------------------------------------------------------------ | |
61 | public: | |
62 | // Pure Virtuals | |
363f7de0 DE |
63 | virtual int GetValue() const; |
64 | virtual void SetValue(int value); | |
24e97652 DE |
65 | |
66 | // retrieve/change the range | |
363f7de0 DE |
67 | virtual void SetRange(int maxValue); |
68 | int GetRange(void) const; | |
15bc1a64 DE |
69 | protected: |
70 | virtual wxSize DoGetBestSize() const; | |
24e97652 DE |
71 | }; |
72 | ||
1b88201f WS |
73 | #endif |
74 | // __WX_COCOA_GAUGE_H__ |