void wxRadioButton::Init()
{
m_radioStyle = pushButtonCtl;
+ m_groupID = 0;
}
bool wxRadioButton::Create(wxWindow *parent,
m_radioStyle == checkboxCtl ? checkboxCtl : pushButtonCtl,
label,
pos,
- size
+ size,
+ m_groupID
);
}
+void wxRadioButton::SetGroup(uint8_t group)
+{
+ m_groupID = group;
+}
+
// ----------------------------------------------------------------------------
// wxRadioButton functions
// ----------------------------------------------------------------------------