1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under wxMac.
5 // Author: Stefan Csomor
9 // Copyright: (c) 2004 Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
16 class WXDLLIMPEXP_CORE wxBitmapToggleButton
: public wxToggleButtonBase
19 wxBitmapToggleButton() {}
20 wxBitmapToggleButton(wxWindow
*parent
,
22 const wxBitmap
& label
,
23 const wxPoint
& pos
= wxDefaultPosition
,
24 const wxSize
& size
= wxDefaultSize
,
26 const wxValidator
& validator
= wxDefaultValidator
,
27 const wxString
& name
= wxCheckBoxNameStr
)
29 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
32 bool Create(wxWindow
*parent
,
34 const wxBitmap
& label
,
35 const wxPoint
& pos
= wxDefaultPosition
,
36 const wxSize
& size
= wxDefaultSize
,
38 const wxValidator
& validator
= wxDefaultValidator
,
39 const wxString
& name
= wxCheckBoxNameStr
);
41 virtual void SetValue(bool value
);
42 virtual bool GetValue() const ;
44 virtual bool OSXHandleClicked( double timestampsec
);
46 virtual void Command(wxCommandEvent
& event
);
55 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
56 virtual wxSize
DoGetBestSize() const;
59 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton
)
63 class WXDLLIMPEXP_CORE wxToggleButton
: public wxToggleButtonBase
67 wxToggleButton(wxWindow
*parent
,
69 const wxString
& label
,
70 const wxPoint
& pos
= wxDefaultPosition
,
71 const wxSize
& size
= wxDefaultSize
,
73 const wxValidator
& validator
= wxDefaultValidator
,
74 const wxString
& name
= wxCheckBoxNameStr
)
76 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
79 bool Create(wxWindow
*parent
,
81 const wxString
& label
,
82 const wxPoint
& pos
= wxDefaultPosition
,
83 const wxSize
& size
= wxDefaultSize
,
85 const wxValidator
& validator
= wxDefaultValidator
,
86 const wxString
& name
= wxCheckBoxNameStr
);
88 virtual void SetValue(bool value
);
89 virtual bool GetValue() const ;
91 virtual bool OSXHandleClicked( double timestampsec
);
93 virtual void Command(wxCommandEvent
& event
);
96 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
97 virtual wxSize
DoGetBestSize() const;
100 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton
)
103 #endif // _WX_TOGGLEBUTTON_H_