comparison gtk/gtkplugin.c @ 15115:6cb9996fcc97

[gaim-migrate @ 17901] Rename gtkblist.c:_search_func to gtkutils.c:gaim_gtk_tree_view_search_equal_func. Use this in the buddylist, the statusbox dropdown and in the plugins dialog. This can also be used in the smiley-theme-list. Process Escape and Return key-presses in the statusbox dropdown. seanegan: I hope I didn't step on your toes O:-) committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 06 Dec 2006 07:24:41 +0000
parents 3248928fbb00
children d2409786013b
comparison
equal deleted inserted replaced
15114:c18c02aeb366 15115:6cb9996fcc97
597 #endif 597 #endif
598 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col); 598 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col);
599 gtk_tree_view_column_set_sort_column_id(col, 1); 599 gtk_tree_view_column_set_sort_column_id(col, 1);
600 g_object_unref(G_OBJECT(ls)); 600 g_object_unref(G_OBJECT(ls));
601 gtk_container_add(GTK_CONTAINER(sw), event_view); 601 gtk_container_add(GTK_CONTAINER(sw), event_view);
602 gtk_tree_view_set_search_column(GTK_TREE_VIEW(event_view), 1);
603 gtk_tree_view_set_search_equal_func(GTK_TREE_VIEW(event_view),
604 gaim_gtk_tree_view_search_equal_func, NULL, NULL);
602 605
603 expander = gtk_expander_new(_("<b>Plugin Details</b>")); 606 expander = gtk_expander_new(_("<b>Plugin Details</b>"));
604 gtk_expander_set_use_markup(GTK_EXPANDER(expander), TRUE); 607 gtk_expander_set_use_markup(GTK_EXPANDER(expander), TRUE);
605 plugin_details = gtk_label_new(NULL); 608 plugin_details = gtk_label_new(NULL);
606 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); 609 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE);