Mercurial > pidgin
annotate finch/gntplugin.c @ 16839:9bbae267b314
CARLOSMERAHORTI says:
> This change adds the same line ^^^^^ look!
(and something in spanish that I didn't understand, I hope he was suitably
insulting me for my slip up)
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 03 May 2007 23:41:30 +0000 |
parents | 08db93bbd798 |
children | beb960114f7d |
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; |
108 | |
109 /* XXX: Use formatting and stuff */ | |
110 gnt_text_view_clear(GNT_TEXT_VIEW(plugins.aboot)); | |
111 text = g_strdup_printf(_("Name: %s\nVersion: %s\nDescription: %s\nAuthor: %s\nWebsite: %s\nFilename: %s\n"), | |
112 SAFE(plugin->info->name), SAFE(plugin->info->version), SAFE(plugin->info->description), | |
113 SAFE(plugin->info->author), SAFE(plugin->info->homepage), SAFE(plugin->path)); | |
114 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(plugins.aboot), | |
115 text, GNT_TEXT_FLAG_NORMAL); | |
116 gnt_text_view_scroll(GNT_TEXT_VIEW(plugins.aboot), 0); | |
117 g_free(text); | |
118 decide_conf_button(plugin); | |
119 } | |
120 | |
121 static void | |
122 reset_plugin_window(GntWidget *window, gpointer null) | |
123 { | |
124 plugins.window = NULL; | |
125 plugins.tree = NULL; | |
126 plugins.aboot = NULL; | |
127 } | |
128 | |
129 static int | |
15822 | 130 plugin_compare(PurplePlugin *p1, PurplePlugin *p2) |
15817 | 131 { |
132 char *s1 = g_utf8_strup(p1->info->name, -1); | |
133 char *s2 = g_utf8_strup(p2->info->name, -1); | |
134 int ret = g_utf8_collate(s1, s2); | |
135 g_free(s1); | |
136 g_free(s2); | |
137 return ret; | |
138 } | |
139 | |
140 static void | |
141 confwin_init() | |
142 { | |
143 confwins = g_hash_table_new(g_direct_hash, g_direct_equal); | |
144 } | |
145 | |
146 static void | |
147 remove_confwin(GntWidget *window, gpointer plugin) | |
148 { | |
149 g_hash_table_remove(confwins, plugin); | |
150 } | |
151 | |
152 static void | |
153 configure_plugin_cb(GntWidget *button, gpointer null) | |
154 { | |
15822 | 155 PurplePlugin *plugin; |
15817 | 156 FinchPluginFrame callback; |
157 | |
158 g_return_if_fail(plugins.tree != NULL); | |
159 | |
160 plugin = gnt_tree_get_selection_data(GNT_TREE(plugins.tree)); | |
15822 | 161 if (!purple_plugin_is_loaded(plugin)) |
15817 | 162 { |
15822 | 163 purple_notify_error(plugin, _("Error"), |
15817 | 164 _("Plugin need to be loaded before you can configure it."), NULL); |
165 return; | |
166 } | |
167 | |
168 if (confwins && g_hash_table_lookup(confwins, plugin)) | |
169 return; | |
170 | |
15822 | 171 if (PURPLE_IS_GNT_PLUGIN(plugin) && |
172 (callback = FINCH_PLUGIN_UI_INFO(plugin)) != NULL) | |
15817 | 173 { |
174 GntWidget *window = gnt_vbox_new(FALSE); | |
175 GntWidget *box, *button; | |
176 | |
177 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
178 gnt_box_set_title(GNT_BOX(window), plugin->info->name); | |
179 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
180 | |
181 box = callback(); | |
182 gnt_box_add_widget(GNT_BOX(window), box); | |
183 | |
184 box = gnt_hbox_new(FALSE); | |
185 gnt_box_add_widget(GNT_BOX(window), box); | |
186 | |
187 button = gnt_button_new(_("Close")); | |
188 gnt_box_add_widget(GNT_BOX(box), button); | |
189 g_signal_connect_swapped(G_OBJECT(button), "activate", | |
190 G_CALLBACK(gnt_widget_destroy), window); | |
191 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(remove_confwin), plugin); | |
192 | |
193 gnt_widget_show(window); | |
194 | |
195 if (confwins == NULL) | |
196 confwin_init(); | |
197 g_hash_table_insert(confwins, plugin, window); | |
198 } | |
199 else if (plugin->info->prefs_info && | |
200 plugin->info->prefs_info->get_plugin_pref_frame) | |
201 { | |
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
|
202 process_pref_frame(plugin->info->prefs_info->get_plugin_pref_frame(plugin)); |
15817 | 203 return; |
204 } | |
205 else | |
206 { | |
15822 | 207 purple_notify_info(plugin, _("Error"), |
15817 | 208 _("No configuration options for this plugin."), NULL); |
209 return; | |
210 } | |
211 } | |
212 | |
213 void finch_plugins_show_all() | |
214 { | |
215 GntWidget *window, *tree, *box, *aboot, *button; | |
216 GList *iter; | |
217 if (plugins.window) | |
218 return; | |
219 | |
15822 | 220 purple_plugins_probe(G_MODULE_SUFFIX); |
15817 | 221 |
222 plugins.window = window = gnt_vbox_new(FALSE); | |
223 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
224 gnt_box_set_title(GNT_BOX(window), _("Plugins")); | |
225 gnt_box_set_pad(GNT_BOX(window), 0); | |
226 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
227 | |
228 gnt_box_add_widget(GNT_BOX(window), | |
229 gnt_label_new(_("You can (un)load plugins from the following list."))); | |
230 gnt_box_add_widget(GNT_BOX(window), gnt_hline_new()); | |
231 | |
232 box = gnt_hbox_new(FALSE); | |
233 gnt_box_add_widget(GNT_BOX(window), box); | |
234 gnt_box_add_widget(GNT_BOX(window), gnt_hline_new()); | |
235 | |
236 gnt_box_set_pad(GNT_BOX(box), 0); | |
237 plugins.tree = tree = gnt_tree_new(); | |
238 gnt_tree_set_compare_func(GNT_TREE(tree), (GCompareFunc)plugin_compare); | |
239 GNT_WIDGET_SET_FLAGS(tree, GNT_WIDGET_NO_BORDER); | |
240 gnt_box_add_widget(GNT_BOX(box), tree); | |
241 gnt_box_add_widget(GNT_BOX(box), gnt_vline_new()); | |
242 | |
243 plugins.aboot = aboot = gnt_text_view_new(); | |
244 gnt_widget_set_size(aboot, 40, 20); | |
245 gnt_box_add_widget(GNT_BOX(box), aboot); | |
246 | |
15822 | 247 for (iter = purple_plugins_get_all(); iter; iter = iter->next) |
15817 | 248 { |
15822 | 249 PurplePlugin *plug = iter->data; |
15817 | 250 |
15822 | 251 if (plug->info->type != PURPLE_PLUGIN_STANDARD || |
252 (plug->info->flags & PURPLE_PLUGIN_FLAG_INVISIBLE) || | |
15817 | 253 plug->error) |
254 continue; | |
255 | |
256 gnt_tree_add_choice(GNT_TREE(tree), plug, | |
257 gnt_tree_create_row(GNT_TREE(tree), plug->info->name), NULL, NULL); | |
15822 | 258 gnt_tree_set_choice(GNT_TREE(tree), plug, purple_plugin_is_loaded(plug)); |
15817 | 259 } |
260 gnt_tree_set_col_width(GNT_TREE(tree), 0, 30); | |
261 g_signal_connect(G_OBJECT(tree), "toggled", G_CALLBACK(plugin_toggled_cb), NULL); | |
262 g_signal_connect(G_OBJECT(tree), "selection_changed", G_CALLBACK(selection_changed), NULL); | |
263 | |
264 box = gnt_hbox_new(FALSE); | |
265 gnt_box_add_widget(GNT_BOX(window), box); | |
266 | |
267 button = gnt_button_new(_("Close")); | |
268 gnt_box_add_widget(GNT_BOX(box), button); | |
269 g_signal_connect_swapped(G_OBJECT(button), "activate", | |
270 G_CALLBACK(gnt_widget_destroy), window); | |
271 | |
272 plugins.conf = button = gnt_button_new(_("Configure Plugin")); | |
273 gnt_box_add_widget(GNT_BOX(box), button); | |
274 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(configure_plugin_cb), NULL); | |
275 | |
276 g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(reset_plugin_window), NULL); | |
277 | |
278 gnt_widget_show(window); | |
279 | |
280 decide_conf_button(gnt_tree_get_selection_data(GNT_TREE(tree))); | |
281 } | |
282 | |
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
|
283 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
|
284 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
|
285 { |
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
|
286 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
|
287 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
|
288 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
|
289 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
|
290 |
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
|
291 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
|
292 |
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
|
293 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
|
294 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
|
295 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
|
296 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
|
297 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
|
298 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
|
299 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
|
300 |
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
|
301 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
|
302 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
|
303 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
|
304 } 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
|
305 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
|
306 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
|
307 } |
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 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
|
309 } |
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 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
|
312 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
|
313 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
|
314 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
|
315 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
|
316 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
|
317 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
|
318 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
|
319 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
|
320 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
|
321 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
|
322 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
|
323 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
|
324 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
|
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 (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
|
327 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
|
328 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
|
329 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
|
330 } |
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_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
|
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 } |
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 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
|
336 _("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
|
337 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
|
338 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
|
339 } |
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 |