// buttons in the same group: Windows doesn't do it automatically
if ( m_isChecked )
{
+ // If another radiobutton in the group currently has the focus, we have to
+ // set it to this radiobutton, else the old readiobutton will be reselected
+ // automatically, if a parent window loses the focus and regains it.
+ bool shouldSetFocus = false;
+ wxWindow* pFocusWnd = FindFocus();
+
const wxWindowList& siblings = GetParent()->GetChildren();
wxWindowList::compatibility_iterator nodeThis = siblings.Find(this);
wxCHECK_RET( nodeThis, _T("radio button not a child of its parent?") );
if (btn)
{
+ if (btn == pFocusWnd)
+ shouldSetFocus = true;
+
btn->SetValue(false);
if ( btn->HasFlag(wxRB_GROUP) )
}
if (btn)
+ {
+ if (btn == pFocusWnd)
+ shouldSetFocus = true;
+
btn->SetValue(false);
+ }
}
+ if (shouldSetFocus)
+ SetFocus();
}
}
void wxRadioButton::Command (wxCommandEvent& event)
{
- SetValue(event.m_commandInt != 0);
+ SetValue(event.GetInt() != 0);
ProcessCommand(event);
}