Mercurial > pidgin
annotate finch/gntplugin.c @ 16974:e7d59fa4faaf
Add a Google Talk icon from Vinicius Depizzol.
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Wed, 09 May 2007 21:50:29 +0000 |
| parents | beb960114f7d |
| children | a924c94ce5da |
| rev | line source |
|---|---|
| 15817 | 1 /** |
| 2 * @file gntplugin.c GNT Plugins API | |
|
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
15870
diff
changeset
|
3 * @ingroup finch |
| 15817 | 4 * |
|
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
5 * finch |
| 15817 | 6 * |
|
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
7 * Finch is the legal property of its developers, whose names are too numerous |
| 15817 | 8 * to list here. Please refer to the COPYRIGHT file distributed with this |
| 9 * source distribution. | |
| 10 * | |
| 11 * This program is free software; you can redistribute it and/or modify | |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation; either version 2 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * This program is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with this program; if not, write to the Free Software | |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 */ | |
| 25 #include <gnt.h> | |
| 26 #include <gntbox.h> | |
| 27 #include <gntbutton.h> | |
| 28 #include <gntlabel.h> | |
| 29 #include <gntline.h> | |
| 30 #include <gnttree.h> | |
| 31 | |
| 32 #include "notify.h" | |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
33 #include "request.h" |
| 15817 | 34 |
| 15822 | 35 #include "finch.h" |
| 15817 | 36 #include "gntplugin.h" |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
37 #include "gntrequest.h" |
| 15817 | 38 |
| 39 static struct | |
| 40 { | |
| 41 GntWidget *tree; | |
| 42 GntWidget *window; | |
| 43 GntWidget *aboot; | |
| 44 GntWidget *conf; | |
| 45 } plugins; | |
| 46 | |
| 47 static GHashTable *confwins; | |
| 48 | |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
49 static void process_pref_frame(PurplePluginPrefFrame *frame); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
50 |
| 15817 | 51 static void |
| 15822 | 52 decide_conf_button(PurplePlugin *plugin) |
| 15817 | 53 { |
| 15822 | 54 if (purple_plugin_is_loaded(plugin) && |
| 55 ((PURPLE_IS_GNT_PLUGIN(plugin) && | |
| 56 FINCH_PLUGIN_UI_INFO(plugin) != NULL) || | |
| 15817 | 57 (plugin->info->prefs_info && |
| 58 plugin->info->prefs_info->get_plugin_pref_frame))) | |
| 59 gnt_widget_set_visible(plugins.conf, TRUE); | |
| 60 else | |
| 61 gnt_widget_set_visible(plugins.conf, FALSE); | |
| 62 | |
| 63 gnt_box_readjust(GNT_BOX(plugins.window)); | |
| 64 gnt_widget_draw(plugins.window); | |
| 65 } | |
| 66 | |
| 67 static void | |
| 15822 | 68 plugin_toggled_cb(GntWidget *tree, PurplePlugin *plugin, gpointer null) |
| 15817 | 69 { |
|
16254
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
70 /* TODO: Mark these strings for translation after the freeze */ |
| 15817 | 71 if (gnt_tree_get_choice(GNT_TREE(tree), plugin)) |
| 72 { | |
|
16254
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
73 if (!purple_plugin_load(plugin)) { |
| 15822 | 74 purple_notify_error(NULL, "ERROR", "loading plugin failed", NULL); |
|
16254
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
75 gnt_tree_set_choice(GNT_TREE(tree), plugin, FALSE); |
|
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
76 } |
| 15817 | 77 } |
| 78 else | |
| 79 { | |
| 80 GntWidget *win; | |
| 81 | |
|
16254
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
82 if (!purple_plugin_unload(plugin)) { |
| 15822 | 83 purple_notify_error(NULL, "ERROR", "unloading plugin failed", NULL); |
|
16254
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
84 gnt_tree_set_choice(GNT_TREE(tree), plugin, TRUE); |
|
c3052de39110
If a plugin failed to load/unload, don't pretend that it worked
Richard Nelson <wabz@pidgin.im>
parents:
16194
diff
changeset
|
85 } |
| 15817 | 86 |
| 87 if ((win = g_hash_table_lookup(confwins, plugin)) != NULL) | |
| 88 { | |
| 89 gnt_widget_destroy(win); | |
| 90 } | |
| 91 } | |
| 92 decide_conf_button(plugin); | |
| 93 finch_plugins_save_loaded(); | |
| 94 } | |
| 95 | |
| 96 /* Xerox */ | |
| 97 void | |
| 98 finch_plugins_save_loaded(void) | |
| 99 { | |
|
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16310
diff
changeset
|
100 purple_plugins_save_loaded("/finch/plugins/loaded"); |
| 15817 | 101 } |
| 102 | |
| 103 static void | |
| 104 selection_changed(GntWidget *widget, gpointer old, gpointer current, gpointer null) | |
| 105 { | |
| 15822 | 106 PurplePlugin *plugin = current; |
| 15817 | 107 char *text; |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
108 GList *list = NULL, *iter = NULL; |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
109 |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
110 /* If the selected plugin was unseen before, mark it as seen. But save the list |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
111 * only when the plugin list is closed. So if the user enables a plugin, and it |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
112 * crashes, it won't get marked as seen so the user can fix the bug and still |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
113 * quickly find the plugin in the list. |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
114 * I probably mean 'plugin developers' by 'users' here. */ |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
115 list = g_object_get_data(G_OBJECT(widget), "seen-list"); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
116 if (list) |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
117 iter = g_list_find_custom(list, plugin->path, (GCompareFunc)strcmp); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
118 if (!iter) { |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
119 list = g_list_prepend(list, g_strdup(plugin->path)); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
120 g_object_set_data(G_OBJECT(widget), "seen-list", list); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
121 } |
| 15817 | 122 |
| 123 /* XXX: Use formatting and stuff */ | |
| 124 gnt_text_view_clear(GNT_TEXT_VIEW(plugins.aboot)); | |
| 125 text = g_strdup_printf(_("Name: %s\nVersion: %s\nDescription: %s\nAuthor: %s\nWebsite: %s\nFilename: %s\n"), | |
| 126 SAFE(plugin->info->name), SAFE(plugin->info->version), SAFE(plugin->info->description), | |
| 127 SAFE(plugin->info->author), SAFE(plugin->info->homepage), SAFE(plugin->path)); | |
| 128 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(plugins.aboot), | |
| 129 text, GNT_TEXT_FLAG_NORMAL); | |
| 130 gnt_text_view_scroll(GNT_TEXT_VIEW(plugins.aboot), 0); | |
| 131 g_free(text); | |
| 132 decide_conf_button(plugin); | |
| 133 } | |
| 134 | |
| 135 static void | |
| 136 reset_plugin_window(GntWidget *window, gpointer null) | |
| 137 { | |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
138 GList *list = g_object_get_data(G_OBJECT(plugins.tree), "seen-list"); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
139 purple_prefs_set_path_list("/finch/plugins/seen", list); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
140 g_list_foreach(list, (GFunc)g_free, NULL); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
141 g_list_free(list); |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
142 |
| 15817 | 143 plugins.window = NULL; |
| 144 plugins.tree = NULL; | |
| 145 plugins.aboot = NULL; | |
| 146 } | |
| 147 | |
| 148 static int | |
| 15822 | 149 plugin_compare(PurplePlugin *p1, PurplePlugin *p2) |
| 15817 | 150 { |
| 151 char *s1 = g_utf8_strup(p1->info->name, -1); | |
| 152 char *s2 = g_utf8_strup(p2->info->name, -1); | |
| 153 int ret = g_utf8_collate(s1, s2); | |
| 154 g_free(s1); | |
| 155 g_free(s2); | |
| 156 return ret; | |
| 157 } | |
| 158 | |
| 159 static void | |
| 160 confwin_init() | |
| 161 { | |
| 162 confwins = g_hash_table_new(g_direct_hash, g_direct_equal); | |
| 163 } | |
| 164 | |
| 165 static void | |
| 166 remove_confwin(GntWidget *window, gpointer plugin) | |
| 167 { | |
| 168 g_hash_table_remove(confwins, plugin); | |
| 169 } | |
| 170 | |
| 171 static void | |
| 172 configure_plugin_cb(GntWidget *button, gpointer null) | |
| 173 { | |
| 15822 | 174 PurplePlugin *plugin; |
| 15817 | 175 FinchPluginFrame callback; |
| 176 | |
| 177 g_return_if_fail(plugins.tree != NULL); | |
| 178 | |
| 179 plugin = gnt_tree_get_selection_data(GNT_TREE(plugins.tree)); | |
| 15822 | 180 if (!purple_plugin_is_loaded(plugin)) |
| 15817 | 181 { |
| 15822 | 182 purple_notify_error(plugin, _("Error"), |
| 15817 | 183 _("Plugin need to be loaded before you can configure it."), NULL); |
| 184 return; | |
| 185 } | |
| 186 | |
| 187 if (confwins && g_hash_table_lookup(confwins, plugin)) | |
| 188 return; | |
| 189 | |
| 15822 | 190 if (PURPLE_IS_GNT_PLUGIN(plugin) && |
| 191 (callback = FINCH_PLUGIN_UI_INFO(plugin)) != NULL) | |
| 15817 | 192 { |
| 193 GntWidget *window = gnt_vbox_new(FALSE); | |
| 194 GntWidget *box, *button; | |
| 195 | |
| 196 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
| 197 gnt_box_set_title(GNT_BOX(window), plugin->info->name); | |
| 198 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
| 199 | |
| 200 box = callback(); | |
| 201 gnt_box_add_widget(GNT_BOX(window), box); | |
| 202 | |
| 203 box = gnt_hbox_new(FALSE); | |
| 204 gnt_box_add_widget(GNT_BOX(window), box); | |
| 205 | |
| 206 button = gnt_button_new(_("Close")); | |
| 207 gnt_box_add_widget(GNT_BOX(box), button); | |
| 208 g_signal_connect_swapped(G_OBJECT(button), "activate", | |
| 209 G_CALLBACK(gnt_widget_destroy), window); | |
| 210 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(remove_confwin), plugin); | |
| 211 | |
| 212 gnt_widget_show(window); | |
| 213 | |
| 214 if (confwins == NULL) | |
| 215 confwin_init(); | |
| 216 g_hash_table_insert(confwins, plugin, window); | |
| 217 } | |
| 218 else if (plugin->info->prefs_info && | |
| 219 plugin->info->prefs_info->get_plugin_pref_frame) | |
| 220 { | |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
221 process_pref_frame(plugin->info->prefs_info->get_plugin_pref_frame(plugin)); |
| 15817 | 222 return; |
| 223 } | |
| 224 else | |
| 225 { | |
| 15822 | 226 purple_notify_info(plugin, _("Error"), |
| 15817 | 227 _("No configuration options for this plugin."), NULL); |
| 228 return; | |
| 229 } | |
| 230 } | |
| 231 | |
| 232 void finch_plugins_show_all() | |
| 233 { | |
| 234 GntWidget *window, *tree, *box, *aboot, *button; | |
| 235 GList *iter; | |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
236 GList *seen; |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
237 |
| 15817 | 238 if (plugins.window) |
| 239 return; | |
| 240 | |
| 15822 | 241 purple_plugins_probe(G_MODULE_SUFFIX); |
| 15817 | 242 |
| 243 plugins.window = window = gnt_vbox_new(FALSE); | |
| 244 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
| 245 gnt_box_set_title(GNT_BOX(window), _("Plugins")); | |
| 246 gnt_box_set_pad(GNT_BOX(window), 0); | |
| 247 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
| 248 | |
| 249 gnt_box_add_widget(GNT_BOX(window), | |
| 250 gnt_label_new(_("You can (un)load plugins from the following list."))); | |
| 251 gnt_box_add_widget(GNT_BOX(window), gnt_hline_new()); | |
| 252 | |
| 253 box = gnt_hbox_new(FALSE); | |
| 254 gnt_box_add_widget(GNT_BOX(window), box); | |
| 255 gnt_box_add_widget(GNT_BOX(window), gnt_hline_new()); | |
| 256 | |
| 257 gnt_box_set_pad(GNT_BOX(box), 0); | |
| 258 plugins.tree = tree = gnt_tree_new(); | |
| 259 gnt_tree_set_compare_func(GNT_TREE(tree), (GCompareFunc)plugin_compare); | |
| 260 GNT_WIDGET_SET_FLAGS(tree, GNT_WIDGET_NO_BORDER); | |
| 261 gnt_box_add_widget(GNT_BOX(box), tree); | |
| 262 gnt_box_add_widget(GNT_BOX(box), gnt_vline_new()); | |
| 263 | |
| 264 plugins.aboot = aboot = gnt_text_view_new(); | |
| 265 gnt_widget_set_size(aboot, 40, 20); | |
| 266 gnt_box_add_widget(GNT_BOX(box), aboot); | |
| 267 | |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
268 seen = purple_prefs_get_path_list("/finch/plugins/seen"); |
| 15822 | 269 for (iter = purple_plugins_get_all(); iter; iter = iter->next) |
| 15817 | 270 { |
| 15822 | 271 PurplePlugin *plug = iter->data; |
| 15817 | 272 |
| 15822 | 273 if (plug->info->type != PURPLE_PLUGIN_STANDARD || |
| 274 (plug->info->flags & PURPLE_PLUGIN_FLAG_INVISIBLE) || | |
| 15817 | 275 plug->error) |
| 276 continue; | |
| 277 | |
| 278 gnt_tree_add_choice(GNT_TREE(tree), plug, | |
| 279 gnt_tree_create_row(GNT_TREE(tree), plug->info->name), NULL, NULL); | |
| 15822 | 280 gnt_tree_set_choice(GNT_TREE(tree), plug, purple_plugin_is_loaded(plug)); |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
281 if (!g_list_find_custom(seen, plug->path, (GCompareFunc)strcmp)) |
|
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
282 gnt_tree_set_row_flags(GNT_TREE(tree), plug, GNT_TEXT_FLAG_BOLD); |
| 15817 | 283 } |
| 284 gnt_tree_set_col_width(GNT_TREE(tree), 0, 30); | |
| 285 g_signal_connect(G_OBJECT(tree), "toggled", G_CALLBACK(plugin_toggled_cb), NULL); | |
| 286 g_signal_connect(G_OBJECT(tree), "selection_changed", G_CALLBACK(selection_changed), NULL); | |
|
16941
beb960114f7d
I liked Etan's suggestion in devel. Now, Finch will bold unseen plugins in the plugin dialog. A plugin is considered 'seen' only after the details of the plugin is viewed by the user.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16439
diff
changeset
|
287 g_object_set_data(G_OBJECT(tree), "seen-list", seen); |
| 15817 | 288 |
| 289 box = gnt_hbox_new(FALSE); | |
| 290 gnt_box_add_widget(GNT_BOX(window), box); | |
| 291 | |
| 292 button = gnt_button_new(_("Close")); | |
| 293 gnt_box_add_widget(GNT_BOX(box), button); | |
| 294 g_signal_connect_swapped(G_OBJECT(button), "activate", | |
| 295 G_CALLBACK(gnt_widget_destroy), window); | |
| 296 | |
| 297 plugins.conf = button = gnt_button_new(_("Configure Plugin")); | |
| 298 gnt_box_add_widget(GNT_BOX(box), button); | |
| 299 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(configure_plugin_cb), NULL); | |
| 300 | |
| 301 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(reset_plugin_window), NULL); | |
| 302 | |
| 303 gnt_widget_show(window); | |
| 304 | |
| 305 decide_conf_button(gnt_tree_get_selection_data(GNT_TREE(tree))); | |
| 306 } | |
| 307 | |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
308 static void |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
309 process_pref_frame(PurplePluginPrefFrame *frame) |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
310 { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
311 PurpleRequestField *field; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
312 PurpleRequestFields *fields; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
313 PurpleRequestFieldGroup *group = NULL; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
314 GList *prefs; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
315 |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
316 fields = purple_request_fields_new(); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
317 |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
318 for (prefs = purple_plugin_pref_frame_get_prefs(frame); prefs; prefs = prefs->next) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
319 PurplePluginPref *pref = prefs->data; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
320 const char *name = purple_plugin_pref_get_name(pref); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
321 const char *label = purple_plugin_pref_get_label(pref); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
322 if(name == NULL) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
323 if(label == NULL) |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
324 continue; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
325 |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
326 if(purple_plugin_pref_get_type(pref) == PURPLE_PLUGIN_PREF_INFO) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
327 field = purple_request_field_label_new("*", purple_plugin_pref_get_label(pref)); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
328 purple_request_field_group_add_field(group, field); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
329 } else { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
330 group = purple_request_field_group_new(label); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
331 purple_request_fields_add_group(fields, group); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
332 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
333 continue; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
334 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
335 |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
336 field = NULL; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
337 switch(purple_prefs_get_type(name)) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
338 case PURPLE_PREF_BOOLEAN: |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
339 field = purple_request_field_bool_new(name, label, purple_prefs_get_bool(name)); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
340 break; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
341 case PURPLE_PREF_INT: |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
342 field = purple_request_field_int_new(name, label, purple_prefs_get_int(name)); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
343 break; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
344 case PURPLE_PREF_STRING: |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
345 field = purple_request_field_string_new(name, label, purple_prefs_get_string(name), |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
346 purple_plugin_pref_get_format_type(pref) & PURPLE_STRING_FORMAT_TYPE_MULTILINE); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
347 break; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
348 default: |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
349 break; |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
350 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
351 if (field) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
352 if (group == NULL) { |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
353 group = purple_request_field_group_new(_("Preferences")); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
354 purple_request_fields_add_group(fields, group); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
355 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
356 purple_request_field_group_add_field(group, field); |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
357 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
358 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
359 |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
360 purple_request_fields(NULL, _("Preferences"), NULL, NULL, fields, |
|
16439
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16424
diff
changeset
|
361 _("Save"), G_CALLBACK(finch_request_save_in_prefs), _("Cancel"), NULL, |
|
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16424
diff
changeset
|
362 NULL, NULL, NULL, |
|
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16424
diff
changeset
|
363 NULL); |
|
16310
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
364 } |
|
8c89913276b3
Implement the plugin-pref ui using the request api. The preferences for the core plugins can now be modified from Finch. And no new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16254
diff
changeset
|
365 |
