// Set the label
virtual void SetLabel(const wxString& label) { wxControl::SetLabel(label); }
virtual void SetLabel(const wxBitmap& label);
- bool Enable(bool enable = TRUE);
+ bool Enable(bool enable = true);
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
private:
+ typedef wxToggleButtonBase base_type;
+
DECLARE_DYNAMIC_CLASS(wxBitmapToggleButton)
};
// Set the label
void SetLabel(const wxString& label);
- bool Enable(bool enable = TRUE);
+ bool Enable(bool enable = true);
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
private:
+ typedef wxToggleButtonBase base_type;
+
DECLARE_DYNAMIC_CLASS(wxToggleButton)
};