1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under wxOS2.
5 // Author: Dave Webster
9 // Copyright: (c) 2005 David A Webster
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
16 extern WXDLLIMPEXP_DATA_CORE(const char) wxCheckBoxNameStr
[];
18 // Checkbox item (single checkbox)
19 class WXDLLIMPEXP_CORE wxToggleButton
: public wxToggleButtonBase
23 wxToggleButton(wxWindow
*parent
,
25 const wxString
& 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 wxString
& 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 bool OS2Command(WXUINT param
, WXWORD id
);
48 virtual void Command(wxCommandEvent
& event
);
51 virtual wxSize
DoGetBestSize() const;
52 virtual wxBorder
GetDefaultBorder() const;
53 virtual WXDWORD
OS2GetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const;
56 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton
)
59 #endif // _WX_TOGGLEBUTTON_H_