]> git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/carbon/tglbtn.h
insert missing iclude file
[wxWidgets.git] / include / wx / osx / carbon / tglbtn.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under wxMac.
5 // Author: Stefan Csomor
6 // Modified by:
7 // Created: 08.02.01
8 // RCS-ID: $Id$
9 // Copyright: (c) 2004 Stefan Csomor
10 // License: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
15
16 WXDLLIMPEXP_DATA_CORE(extern const char) wxCheckBoxNameStr[];
17
18
19 class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButtonBase
20 {
21 public:
22 wxBitmapToggleButton() {}
23 wxBitmapToggleButton(wxWindow *parent,
24 wxWindowID id,
25 const wxBitmap& label,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
28 long style = 0,
29 const wxValidator& validator = wxDefaultValidator,
30 const wxString& name = wxCheckBoxNameStr)
31 {
32 Create(parent, id, label, pos, size, style, validator, name);
33 }
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 const wxBitmap& label,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString& name = wxCheckBoxNameStr);
43
44 virtual void SetValue(bool value);
45 virtual bool GetValue() const ;
46
47 virtual bool HandleClicked( double timestampsec );
48
49 virtual void Command(wxCommandEvent& event);
50
51 private:
52 wxBitmap m_bitmap;
53
54 protected:
55 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
56 virtual wxSize DoGetBestSize() const;
57
58 private:
59 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton)
60 };
61
62
63 class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase
64 {
65 public:
66 wxToggleButton() {}
67 wxToggleButton(wxWindow *parent,
68 wxWindowID id,
69 const wxString& label,
70 const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize,
72 long style = 0,
73 const wxValidator& validator = wxDefaultValidator,
74 const wxString& name = wxCheckBoxNameStr)
75 {
76 Create(parent, id, label, pos, size, style, validator, name);
77 }
78
79 bool Create(wxWindow *parent,
80 wxWindowID id,
81 const wxString& label,
82 const wxPoint& pos = wxDefaultPosition,
83 const wxSize& size = wxDefaultSize,
84 long style = 0,
85 const wxValidator& validator = wxDefaultValidator,
86 const wxString& name = wxCheckBoxNameStr);
87
88 virtual void SetValue(bool value);
89 virtual bool GetValue() const ;
90
91 virtual bool HandleClicked( double timestampsec );
92
93 virtual void Command(wxCommandEvent& event);
94
95 protected:
96 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
97 virtual wxSize DoGetBestSize() const;
98
99 private:
100 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
101 };
102
103 #endif // _WX_TOGGLEBUTTON_H_
104