after the GDK_BUTTON_RELEASE event after the GDK_2BUTTON_PRESS event */
static gint
-gtk_listbox_button_release_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxListBox *listbox )
+gtk_listbox_button_release_callback( GtkWidget * WXUNUSED(widget),
+ GdkEventButton * WXUNUSED(gdk_event),
+ wxListBox *listbox )
{
if (g_isIdle) wxapp_install_idle_handler();
//-----------------------------------------------------------------------------
static gint
-gtk_listbox_button_press_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxListBox *listbox )
+gtk_listbox_button_press_callback( GtkWidget *widget,
+ GdkEventButton *gdk_event,
+ wxListBox *listbox )
{
if (g_isIdle) wxapp_install_idle_handler();
listbox->GetEventHandler()->ProcessEvent( event );
}
#endif // wxUSE_CHECKLISTBOX
-
+
/* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
g_hasDoubleClicked = (gdk_event->type == GDK_2BUTTON_PRESS);
// "select" and "deselect"
//-----------------------------------------------------------------------------
+static void gtk_listitem_select_callback( GtkWidget *WXUNUSED(widget), wxListBox *listbox );
+
+static void gtk_listitem_deselect_callback( GtkWidget *widget, wxListBox *listbox )
+{
+ gtk_listitem_select_callback( widget, listbox );
+}
+
static void gtk_listitem_select_callback( GtkWidget *WXUNUSED(widget), wxListBox *listbox )
{
if (g_isIdle) wxapp_install_idle_handler();
m_needParent = TRUE;
m_acceptsFocus = TRUE;
- PreCreation( parent, id, pos, size, style, name );
-
- SetValidator( validator );
+ if (!PreCreation( parent, pos, size ) ||
+ !CreateBase( parent, id, pos, size, style, validator, name ))
+ {
+ wxFAIL_MSG( _T("wxListBox creation failed") );
+ return FALSE;
+ }
m_widget = gtk_scrolled_window_new( (GtkAdjustment*) NULL, (GtkAdjustment*) NULL );
if (style & wxLB_ALWAYS_SB)
if (style & wxLB_MULTIPLE)
gtk_signal_connect( GTK_OBJECT(list_item), "deselect",
- GTK_SIGNAL_FUNC(gtk_listitem_select_callback), (gpointer)this );
+ GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback), (gpointer)this );
gtk_signal_connect( GTK_OBJECT(list_item),
"button_press_event",
return;
}
-
+
wxArrayString deletedLabels;
wxArrayPtrVoid deletedData;
wxArrayInt deletedChecks; // only for check list boxes
// save data
void *clientData = NULL;
wxNode *node = NULL;
-
+
if ( n < (int)m_clientObjectList.GetCount() )
node = m_clientObjectList.Nth( n );
if ( !clientData )
{
if ( n < (int)m_clientDataList.GetCount() )
- node = m_clientDataList.Nth( n );
+ node = m_clientDataList.Nth( n );
if ( node )
{
if (HasFlag(wxLB_MULTIPLE))
gtk_signal_connect( GTK_OBJECT(list_item), "deselect",
- GTK_SIGNAL_FUNC(gtk_listitem_select_callback), (gpointer)this );
+ GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback), (gpointer)this );
gtk_signal_connect( GTK_OBJECT(list_item),
"button_press_event",
{
gtk_widget_realize( list_item );
gtk_widget_realize( GTK_BIN(list_item)->child );
-
- if (m_widgetStyle) ApplyWidgetStyle();
+
+ //if (m_widgetStyle) ApplyWidgetStyle();
+ if (m_widgetStyle) {
+ // Apply current widget style to the new list_item
+ gtk_widget_set_style( GTK_WIDGET( list_item ), m_widgetStyle );
+ GtkBin *bin = GTK_BIN( list_item );
+ GtkWidget *label = GTK_WIDGET( bin->child );
+ gtk_widget_set_style( label, m_widgetStyle );
+ }
#if wxUSE_DRAG_AND_DROP
#ifndef NEW_GTK_DND_CODE
{
wxCHECK_RET( m_list != NULL, _T("invalid listbox") );
+ DisableEvents();
+
gtk_list_unselect_item( m_list, n );
+
+ EnableEvents();
}
int wxListBox::FindString( const wxString &item ) const
return str;
}
-
+
wxFAIL_MSG(_T("wrong listbox index"));
return _T("");
{
wxCHECK_RET( m_list != NULL, _T("invalid listbox") );
+ DisableEvents();
+
if (select)
gtk_list_select_item( m_list, n );
else
gtk_list_unselect_item( m_list, n );
+
+ EnableEvents();
}
void wxListBox::SetString( int n, const wxString &string )
GList *child = m_list->children;
while (child)
{
- gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), wxConvLocal.cWX2MB(tip), (gchar*) NULL );
+ gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), wxConvCurrent->cWX2MB(tip), (gchar*) NULL );
child = child->next;
}
}
}
#endif
+void wxListBox::DisableEvents()
+{
+ GList *child = m_list->children;
+ while (child)
+ {
+ gtk_signal_disconnect_by_func( GTK_OBJECT(child->data),
+ GTK_SIGNAL_FUNC(gtk_listitem_select_callback), (gpointer)this );
+
+ if (HasFlag(wxLB_MULTIPLE))
+ gtk_signal_disconnect_by_func( GTK_OBJECT(child->data),
+ GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback), (gpointer)this );
+
+ child = child->next;
+ }
+}
+
+void wxListBox::EnableEvents()
+{
+ GList *child = m_list->children;
+ while (child)
+ {
+ gtk_signal_connect( GTK_OBJECT(child->data), "select",
+ GTK_SIGNAL_FUNC(gtk_listitem_select_callback), (gpointer)this );
+
+ if (HasFlag(wxLB_MULTIPLE))
+ gtk_signal_connect( GTK_OBJECT(child->data), "deselect",
+ GTK_SIGNAL_FUNC(gtk_listitem_deselect_callback), (gpointer)this );
+
+ child = child->next;
+ }
+}
+
GtkWidget *wxListBox::GetConnectWidget()
{
return GTK_WIDGET(m_list);
}
}
-#endif
\ No newline at end of file
+#endif