// implementation only from now on
virtual void Command(wxCommandEvent& event);
- virtual void ApplyParentThemeBackground(const wxColour& bg)
- { SetBackgroundColour(bg); }
+ void SetGroup(uint8_t group);
+ // send a notification event, return true if processed
+ bool SendClickEvent();
protected:
virtual wxSize DoGetBestSize() const;
// common part of all ctors
void Init();
+ uint8_t m_groupID;
+
+ // pushButtonCtl or checkboxCtl
+ int m_radioStyle;
DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
};