/////////////////////////////////////////////////////////////////////////////
-// Name: wx/gtk/tglbtn.h
+// Name: wx/gtk1/tglbtn.h
// Purpose: Declaration of the wxToggleButton class, which implements a
// toggle button under wxGTK.
// Author: John Norris, minor changes by Axel Schlueter
// global data
//-----------------------------------------------------------------------------
-extern WXDLLIMPEXP_CORE const wxChar *wxCheckBoxNameStr;
+extern WXDLLIMPEXP_CORE const wxChar wxCheckBoxNameStr[];
//-----------------------------------------------------------------------------
// wxToggleBitmapButton
bool GetValue() const;
// Set the label
- void SetLabel(const wxBitmap& label);
+ virtual void SetLabel(const wxString& label) { wxControl::SetLabel(label); }
+ virtual void SetLabel(const wxBitmap& label);
bool Enable(bool enable = TRUE);
static wxVisualAttributes
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
-
+
// implementation
bool m_blockEvent;