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
9 // Copyright: (c) 2004 Stefan Csomor
10 // License: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
16 WXDLLEXPORT_DATA(extern const char) wxCheckBoxNameStr
[];
19 class WXDLLEXPORT wxBitmapToggleButton
: public wxToggleButtonBase
22 wxBitmapToggleButton() {}
23 wxBitmapToggleButton(wxWindow
*parent
,
25 const wxBitmap
& label
,
26 const wxPoint
& pos
= wxDefaultPosition
,
27 const wxSize
& size
= wxDefaultSize
,
29 const wxValidator
& validator
= wxDefaultValidator
,
30 const wxString
& name
= wxCheckBoxNameStr
)
32 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
35 bool Create(wxWindow
*parent
,
37 const wxBitmap
& label
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxValidator
& validator
= wxDefaultValidator
,
42 const wxString
& name
= wxCheckBoxNameStr
);
44 virtual void SetValue(bool value
);
45 virtual bool GetValue() const ;
47 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
49 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 WXDLLEXPORT 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 wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
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_