comparison console/gntplugin.c @ 14059:2d1b41e3cf0d

[gaim-migrate @ 16674] Add a way to change some preferences (the preferences for the conversations do not do anything yet). I used the request-api for this, which I think is cool. But too many preferences will make the dialog long, which may not fit in the screen. It looks alright for now though. You can pop the dialog up with "/prefs" command in a converastion. And some other minor fixes. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 09 Aug 2006 03:41:45 +0000
parents 7109e6397a31
children eaf7f35635bc
comparison
equal deleted inserted replaced
14058:32a71e64ceae 14059:2d1b41e3cf0d
126 gnt_tree_set_col_width(GNT_TREE(tree), 0, 30); 126 gnt_tree_set_col_width(GNT_TREE(tree), 0, 30);
127 g_signal_connect(G_OBJECT(tree), "toggled", G_CALLBACK(plugin_toggled_cb), NULL); 127 g_signal_connect(G_OBJECT(tree), "toggled", G_CALLBACK(plugin_toggled_cb), NULL);
128 g_signal_connect(G_OBJECT(tree), "selection_changed", G_CALLBACK(selection_changed), NULL); 128 g_signal_connect(G_OBJECT(tree), "selection_changed", G_CALLBACK(selection_changed), NULL);
129 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(reset_plugin_window), NULL); 129 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(reset_plugin_window), NULL);
130 130
131 gnt_tree_set_selected(GNT_TREE(tree), gaim_plugins_get_all()->data);
132
131 gnt_widget_show(window); 133 gnt_widget_show(window);
132 } 134 }
133 135