comparison pidgin/gtkplugin.c @ 19566:57d350900136

Tooltips can be for the buddylist or for conversation windows. A more appropriate fix for #2723.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 01 Sep 2007 23:50:22 +0000
parents 08db93bbd798
children b99a158ea85e
comparison
equal deleted inserted replaced
19565:4691b5f80ac8 19566:57d350900136
598 expander = gtk_expander_new(_("<b>Plugin Details</b>")); 598 expander = gtk_expander_new(_("<b>Plugin Details</b>"));
599 gtk_expander_set_use_markup(GTK_EXPANDER(expander), TRUE); 599 gtk_expander_set_use_markup(GTK_EXPANDER(expander), TRUE);
600 plugin_details = gtk_label_new(NULL); 600 plugin_details = gtk_label_new(NULL);
601 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE); 601 gtk_label_set_line_wrap(GTK_LABEL(plugin_details), TRUE);
602 gtk_container_add(GTK_CONTAINER(expander), plugin_details); 602 gtk_container_add(GTK_CONTAINER(expander), plugin_details);
603 gtk_expander_set_expanded(GTK_EXPANDER(expander), TRUE);
603 gtk_widget_set_sensitive(expander, FALSE); 604 gtk_widget_set_sensitive(expander, FALSE);
604 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(plugin_dialog)->vbox), expander, FALSE, FALSE, 0); 605 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(plugin_dialog)->vbox), expander, FALSE, FALSE, 0);
605 606
606 g_signal_connect (G_OBJECT (sel), "changed", G_CALLBACK (prefs_plugin_sel), NULL); 607 g_signal_connect (G_OBJECT (sel), "changed", G_CALLBACK (prefs_plugin_sel), NULL);
607 g_signal_connect(G_OBJECT(plugin_dialog), "response", G_CALLBACK(plugin_dialog_response_cb), sel); 608 g_signal_connect(G_OBJECT(plugin_dialog), "response", G_CALLBACK(plugin_dialog_response_cb), sel);