X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/808e3bce622d9ec7ae8c43581472ae699ed47221..72e4e6a397fd04e6d8e0cc5ae22aaba740c3c8bc:/include/wx/palmos/radiobut.h?ds=inline diff --git a/include/wx/palmos/radiobut.h b/include/wx/palmos/radiobut.h index 90ffc63c18..21a6701324 100644 --- a/include/wx/palmos/radiobut.h +++ b/include/wx/palmos/radiobut.h @@ -51,9 +51,10 @@ public: // 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; @@ -62,6 +63,10 @@ private: // common part of all ctors void Init(); + uint8_t m_groupID; + + // pushButtonCtl or checkboxCtl + int m_radioStyle; DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton) };