+extern const wxChar *wxCheckBoxNameStr;
+
+//-----------------------------------------------------------------------------
+// wxToggleBitmapButton
+//-----------------------------------------------------------------------------
+
+class wxToggleBitmapButton: public wxControl
+{
+public:
+ // construction/destruction
+ wxToggleBitmapButton() {}
+ wxToggleBitmapButton(wxWindow *parent,
+ wxWindowID id,
+ const wxBitmap& label,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxCheckBoxNameStr)
+ {
+ Create(parent, id, label, pos, size, style, validator, name);
+ }