1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under Palm OS.
5 // Author: William Osborne - minimal working wxPalmOS port
6 // Modified by: Wlodzimierz ABX Skiba - native implementation
9 // Copyright: (c) William Osborne, Wlodzimierz Skiba
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
16 #include "wx/checkbox.h" // wxCheckBoxNameStr, in datacmn.cpp
17 //WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxCheckBoxNameStr[];
19 // Checkbox item (single checkbox)
20 class WXDLLIMPEXP_CORE wxToggleButton
: public wxToggleButtonBase
24 wxToggleButton(wxWindow
*parent
,
26 const wxString
& label
,
27 const wxPoint
& pos
= wxDefaultPosition
,
28 const wxSize
& size
= wxDefaultSize
,
30 const wxValidator
& validator
= wxDefaultValidator
,
31 const wxString
& name
= wxCheckBoxNameStr
)
33 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
36 bool Create(wxWindow
*parent
,
38 const wxString
& label
,
39 const wxPoint
& pos
= wxDefaultPosition
,
40 const wxSize
& size
= wxDefaultSize
,
42 const wxValidator
& validator
= wxDefaultValidator
,
43 const wxString
& name
= wxCheckBoxNameStr
);
45 virtual void SetValue(bool value
);
46 virtual bool GetValue() const ;
48 virtual void Command(wxCommandEvent
& event
);
50 // send a notification event, return true if processed
51 bool SendClickEvent();
54 virtual wxSize
DoGetBestSize() const;
55 virtual wxBorder
GetDefaultBorder() const;
58 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton
)
61 #endif // _WX_TOGGLEBUTTON_H_