WX_DEFINE_LIST( wxRadioBoxButtonsInfoList );
extern bool g_blockEventsOnDrag;
-extern wxWindowGTK *g_delayedFocus;
//-----------------------------------------------------------------------------
// "clicked"
extern "C" {
static gint gtk_radiobox_keypress_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxRadioBox *rb )
{
- if (g_isIdle)
- wxapp_install_idle_handler();
+ // don't need to install idle handler, its done from "event" signal
if (!rb->m_hasVMT) return FALSE;
if (g_blockEventsOnDrag) return FALSE;
return FALSE;
}
- g_signal_stop_emission_by_name (widget, "key_press_event");
-
if ((gdk_event->keyval == GDK_Up) ||
(gdk_event->keyval == GDK_Left))
{
#endif // wxUSE_TOOLTIPS
-bool wxRadioBox::IsOwnGtkWindow( GdkWindow *window )
+GdkWindow *wxRadioBox::GTKGetWindow(wxArrayGdkWindows& windows) const
{
- if (window == m_widget->window)
- return true;
+ windows.push_back(m_widget->window);
wxRadioBoxButtonsInfoList::compatibility_iterator node = m_buttonsInfo.GetFirst();
while (node)
{
GtkWidget *button = GTK_WIDGET( node->GetData()->button );
- if (window == button->window)
- return true;
+ windows.push_back(button->window);
node = node->GetNext();
}
- return false;
+ return NULL;
}
void wxRadioBox::OnInternalIdle()
{
- // Check if we have to show window now
- if (GtkShowFromOnIdle()) return;
-
+ wxControl::OnInternalIdle();
+
if ( m_lostFocus )
{
m_hasFocus = false;
(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);
}
// static