- return false;
-}
-
-void wxRadioBox::OnInternalIdle()
-{
- // Check if we have to show window now
- if (GtkShowFromOnIdle()) return;
-
- if ( m_lostFocus )
- {
- m_hasFocus = false;
- m_lostFocus = false;
-
- wxFocusEvent event( wxEVT_KILL_FOCUS, GetId() );
- event.SetEventObject( this );
-
- (void)GetEventHandler()->ProcessEvent( event );
- }
-
- if (g_delayedFocus == this)
- {
- if (GTK_WIDGET_REALIZED(m_widget))
- {
- g_delayedFocus = NULL;
- SetFocus();
- }
- }
-
- if (wxUpdateUIEvent::CanUpdate(this))
- UpdateWindowUI(wxUPDATE_UI_FROMIDLE);