X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/808e3bce622d9ec7ae8c43581472ae699ed47221..b03896f1af50d3619454d4488fbf41e8cb9c18c3:/include/wx/palmos/radiobut.h diff --git a/include/wx/palmos/radiobut.h b/include/wx/palmos/radiobut.h index 90ffc63c18..db4746f1d3 100644 --- a/include/wx/palmos/radiobut.h +++ b/include/wx/palmos/radiobut.h @@ -51,6 +51,11 @@ public: // implementation only from now on virtual void Command(wxCommandEvent& event); + void SetGroup(uint8_t group); + + // send a notification event, return true if processed + bool SendClickEvent(); + virtual void ApplyParentThemeBackground(const wxColour& bg) { SetBackgroundColour(bg); } @@ -62,6 +67,10 @@ private: // common part of all ctors void Init(); + uint8_t m_groupID; + + // pushButtonCtl or checkboxCtl + ControlStyleType m_radioStyle; DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton) };