Mercurial > pidgin
annotate src/gtkprivacy.c @ 9953:d908907d9441
[gaim-migrate @ 10849]
grim | patch -p0 && cvs commit
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sun, 05 Sep 2004 06:29:51 +0000 |
parents | 4a15962c344a |
children | a485dedd6ba2 |
rev | line source |
---|---|
6371 | 1 /** |
2 * @file gtkprivacy.c GTK+ Privacy UI | |
3 * @ingroup gtkui | |
4 * | |
5 * gaim | |
6 * | |
8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
6371 | 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 */ | |
9791 | 25 #include "internal.h" |
26 #include "gtkgaim.h" | |
6371 | 27 |
28 #include "connection.h" | |
29 #include "debug.h" | |
30 #include "privacy.h" | |
31 #include "request.h" | |
32 #include "util.h" | |
33 | |
34 #include "gtkprivacy.h" | |
35 #include "gtkutils.h" | |
36 | |
37 typedef struct | |
38 { | |
39 GtkWidget *win; | |
40 | |
41 GtkWidget *type_menu; | |
42 | |
43 GtkWidget *add_button; | |
44 GtkWidget *remove_button; | |
45 GtkWidget *clear_button; | |
46 | |
47 GtkWidget *button_box; | |
48 GtkWidget *allow_widget; | |
49 GtkWidget *block_widget; | |
50 | |
51 GtkListStore *allow_store; | |
52 GtkListStore *block_store; | |
53 | |
54 GtkWidget *allow_list; | |
55 GtkWidget *block_list; | |
56 | |
57 gboolean in_allow_list; | |
58 | |
59 GaimAccount *account; | |
60 | |
61 } GaimGtkPrivacyDialog; | |
62 | |
63 typedef struct | |
64 { | |
65 GaimAccount *account; | |
66 char *name; | |
67 gboolean block; | |
68 | |
69 } GaimGtkPrivacyRequestData; | |
70 | |
71 static struct | |
72 { | |
73 const char *text; | |
74 int num; | |
75 | |
76 } menu_entries[] = | |
77 { | |
8175 | 78 { N_("Allow all users to contact me"), GAIM_PRIVACY_ALLOW_ALL }, |
79 { N_("Allow only the users on my buddy list"), GAIM_PRIVACY_ALLOW_BUDDYLIST }, | |
80 { N_("Allow only the users below"), GAIM_PRIVACY_ALLOW_USERS }, | |
81 { N_("Block all users"), GAIM_PRIVACY_DENY_ALL }, | |
82 { N_("Block only the users below"), GAIM_PRIVACY_DENY_USERS } | |
6371 | 83 }; |
84 | |
85 static size_t menu_entry_count = sizeof(menu_entries) / sizeof(*menu_entries); | |
86 | |
87 static GaimGtkPrivacyDialog *privacy_dialog = NULL; | |
88 | |
89 static void | |
90 rebuild_allow_list(GaimGtkPrivacyDialog *dialog) | |
91 { | |
92 GSList *l; | |
93 GtkTreeIter iter; | |
94 | |
95 gtk_list_store_clear(dialog->allow_store); | |
96 | |
97 for (l = dialog->account->permit; l != NULL; l = l->next) { | |
98 gtk_list_store_append(dialog->allow_store, &iter); | |
99 gtk_list_store_set(dialog->allow_store, &iter, 0, l->data, -1); | |
100 } | |
101 } | |
102 | |
103 static void | |
104 rebuild_block_list(GaimGtkPrivacyDialog *dialog) | |
105 { | |
106 GSList *l; | |
107 GtkTreeIter iter; | |
108 | |
109 gtk_list_store_clear(dialog->block_store); | |
110 | |
111 for (l = dialog->account->deny; l != NULL; l = l->next) { | |
112 gtk_list_store_append(dialog->block_store, &iter); | |
113 gtk_list_store_set(dialog->block_store, &iter, 0, l->data, -1); | |
114 } | |
115 } | |
116 | |
117 static const char * | |
118 find_permit_block_by_name(GSList *list, const char *name) | |
119 { | |
120 const char *temp_name; | |
121 GSList *l; | |
122 | |
123 for (l = list; l != NULL; l = l->next) { | |
124 temp_name = (const char *)l->data; | |
125 | |
126 if (!gaim_utf8_strcasecmp(name, temp_name)) | |
127 return temp_name; | |
128 } | |
129 | |
130 return NULL; | |
131 } | |
132 | |
133 static void | |
134 user_selected_cb(GtkTreeSelection *sel, GaimGtkPrivacyDialog *dialog) | |
135 { | |
136 gtk_widget_set_sensitive(dialog->remove_button, TRUE); | |
137 } | |
138 | |
139 static GtkWidget * | |
140 build_list(GaimGtkPrivacyDialog *dialog, GtkListStore *model, | |
141 GtkWidget **ret_treeview) | |
142 { | |
143 GtkWidget *sw; | |
144 GtkWidget *treeview; | |
145 GtkCellRenderer *rend; | |
146 GtkTreeViewColumn *column; | |
147 GtkTreeSelection *sel; | |
148 | |
149 sw = gtk_scrolled_window_new(NULL, NULL); | |
150 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), | |
7931 | 151 GTK_POLICY_AUTOMATIC, |
152 GTK_POLICY_ALWAYS); | |
153 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); | |
6371 | 154 |
155 treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); | |
156 *ret_treeview = treeview; | |
157 | |
158 rend = gtk_cell_renderer_text_new(); | |
159 | |
160 column = gtk_tree_view_column_new_with_attributes(NULL, rend, | |
161 "text", 0, | |
162 NULL); | |
163 gtk_tree_view_column_set_clickable(GTK_TREE_VIEW_COLUMN(column), TRUE); | |
164 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column); | |
165 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE); | |
7931 | 166 gtk_container_add(GTK_CONTAINER(sw), treeview); |
6374
ca73fdf3eb38
[gaim-migrate @ 6879]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
167 |
6371 | 168 gtk_widget_show(treeview); |
169 | |
170 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); | |
171 | |
172 g_signal_connect(G_OBJECT(sel), "changed", | |
173 G_CALLBACK(user_selected_cb), dialog); | |
174 | |
6374
ca73fdf3eb38
[gaim-migrate @ 6879]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
175 gtk_widget_set_size_request(sw, -1, 200); |
ca73fdf3eb38
[gaim-migrate @ 6879]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
176 |
6371 | 177 return sw; |
178 } | |
179 | |
180 static GtkWidget * | |
181 build_allow_list(GaimGtkPrivacyDialog *dialog) | |
182 { | |
183 GtkWidget *widget; | |
184 GtkWidget *list; | |
185 | |
186 dialog->allow_store = gtk_list_store_new(1, G_TYPE_STRING); | |
187 | |
188 widget = build_list(dialog, dialog->allow_store, &list); | |
189 | |
190 dialog->allow_list = list; | |
191 | |
192 rebuild_allow_list(dialog); | |
193 | |
194 return widget; | |
195 } | |
196 | |
197 static GtkWidget * | |
198 build_block_list(GaimGtkPrivacyDialog *dialog) | |
199 { | |
200 GtkWidget *widget; | |
201 GtkWidget *list; | |
202 | |
203 dialog->block_store = gtk_list_store_new(1, G_TYPE_STRING); | |
204 | |
205 widget = build_list(dialog, dialog->block_store, &list); | |
206 | |
207 dialog->block_list = list; | |
208 | |
209 rebuild_block_list(dialog); | |
210 | |
211 return widget; | |
212 } | |
213 | |
214 static gint | |
215 destroy_cb(GtkWidget *w, GdkEvent *event, GaimGtkPrivacyDialog *dialog) | |
216 { | |
7165 | 217 gaim_gtk_privacy_dialog_hide(); |
6371 | 218 |
219 return 0; | |
220 } | |
221 | |
222 static void | |
223 select_account_cb(GtkWidget *dropdown, GaimAccount *account, | |
224 GaimGtkPrivacyDialog *dialog) | |
225 { | |
226 int i; | |
227 | |
228 dialog->account = account; | |
229 | |
230 for (i = 0; i < menu_entry_count; i++) { | |
231 if (menu_entries[i].num == account->perm_deny) { | |
232 gtk_option_menu_set_history(GTK_OPTION_MENU(dialog->type_menu), i); | |
233 break; | |
234 } | |
235 } | |
236 | |
237 rebuild_allow_list(dialog); | |
238 rebuild_block_list(dialog); | |
239 } | |
240 | |
241 static void | |
242 type_changed_cb(GtkOptionMenu *optmenu, GaimGtkPrivacyDialog *dialog) | |
243 { | |
8275 | 244 int new_type = menu_entries[gtk_option_menu_get_history(optmenu)].num; |
6371 | 245 |
8520 | 246 dialog->account->perm_deny = new_type; |
6371 | 247 serv_set_permit_deny(gaim_account_get_connection(dialog->account)); |
248 | |
249 gtk_widget_hide(dialog->allow_widget); | |
250 gtk_widget_hide(dialog->block_widget); | |
251 gtk_widget_hide(dialog->button_box); | |
252 | |
8175 | 253 if (new_type == GAIM_PRIVACY_ALLOW_USERS) { |
6371 | 254 gtk_widget_show(dialog->allow_widget); |
255 gtk_widget_show(dialog->button_box); | |
256 dialog->in_allow_list = TRUE; | |
257 } | |
8175 | 258 else if (new_type == GAIM_PRIVACY_DENY_USERS) { |
6371 | 259 gtk_widget_show(dialog->block_widget); |
260 gtk_widget_show(dialog->button_box); | |
261 dialog->in_allow_list = FALSE; | |
262 } | |
263 } | |
264 | |
265 static void | |
266 add_cb(GtkWidget *button, GaimGtkPrivacyDialog *dialog) | |
267 { | |
268 if (dialog->in_allow_list) | |
269 gaim_gtk_request_add_permit(dialog->account, NULL); | |
270 else | |
271 gaim_gtk_request_add_block(dialog->account, NULL); | |
272 } | |
273 | |
274 static void | |
275 remove_cb(GtkWidget *button, GaimGtkPrivacyDialog *dialog) | |
276 { | |
277 GtkTreeIter iter; | |
278 GtkTreeModel *model; | |
279 GtkTreeSelection *sel; | |
280 char *name; | |
281 | |
282 if (dialog->in_allow_list && dialog->allow_store == NULL) | |
283 return; | |
284 | |
285 if (!dialog->in_allow_list && dialog->block_store == NULL) | |
286 return; | |
287 | |
288 if (dialog->in_allow_list) { | |
289 model = GTK_TREE_MODEL(dialog->allow_store); | |
290 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(dialog->allow_list)); | |
291 } | |
292 else { | |
293 model = GTK_TREE_MODEL(dialog->block_store); | |
294 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(dialog->block_list)); | |
295 } | |
296 | |
297 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
298 gtk_tree_model_get(model, &iter, 0, &name, -1); | |
299 else | |
300 return; | |
301 | |
302 if (dialog->in_allow_list) { | |
6375
72023626d5b8
[gaim-migrate @ 6880]
Christian Hammond <chipx86@chipx86.com>
parents:
6374
diff
changeset
|
303 if (find_permit_block_by_name(dialog->account->permit, name)) |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
304 gaim_privacy_permit_remove(dialog->account, name, FALSE); |
6371 | 305 } |
306 else { | |
6375
72023626d5b8
[gaim-migrate @ 6880]
Christian Hammond <chipx86@chipx86.com>
parents:
6374
diff
changeset
|
307 if (find_permit_block_by_name(dialog->account->deny, name)) |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
308 gaim_privacy_deny_remove(dialog->account, name, FALSE); |
6371 | 309 } |
310 } | |
311 | |
312 static void | |
313 clear_cb(GtkWidget *button, GaimGtkPrivacyDialog *dialog) | |
314 { | |
8556 | 315 GSList *l; |
316 if (dialog->in_allow_list) | |
317 l = dialog->account->permit; | |
318 else | |
319 l = dialog->account->deny; | |
320 while (l) { | |
321 char *user; | |
322 user = l->data; | |
323 l = l->next; | |
324 if (dialog->in_allow_list) | |
325 gaim_privacy_permit_remove(dialog->account, user, FALSE); | |
326 else | |
327 gaim_privacy_deny_remove(dialog->account, user, FALSE); | |
328 } | |
6371 | 329 } |
330 | |
331 static void | |
7165 | 332 close_cb(GtkWidget *button, GaimGtkPrivacyDialog *dialog) |
6371 | 333 { |
7165 | 334 gtk_widget_destroy(dialog->win); |
335 | |
6371 | 336 gaim_gtk_privacy_dialog_hide(); |
337 } | |
338 | |
6646
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
339 static gboolean |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
340 check_account_func(GaimAccount *account) |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
341 { |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
342 GaimConnection *gc = gaim_account_get_connection(account); |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
343 GaimPluginProtocolInfo *prpl_info = NULL; |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
344 |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
345 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl); |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
346 |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
347 return (prpl_info->set_permit_deny != NULL); |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
348 } |
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
349 |
8938 | 350 gboolean |
351 gaim_gtk_privacy_is_showable() | |
352 { | |
353 GList *c; | |
354 GaimConnection *gc; | |
355 | |
356 for (c = gaim_connections_get_all(); c != NULL; c = c->next) { | |
357 gc = c->data; | |
358 | |
359 if (check_account_func(gaim_connection_get_account(gc))) | |
360 return TRUE; | |
361 } | |
362 | |
363 return FALSE; | |
364 } | |
365 | |
6371 | 366 static GaimGtkPrivacyDialog * |
367 privacy_dialog_new(void) | |
368 { | |
369 GaimGtkPrivacyDialog *dialog; | |
370 GtkWidget *bbox; | |
371 GtkWidget *hbox; | |
372 GtkWidget *vbox; | |
373 GtkWidget *button; | |
374 GtkWidget *dropdown; | |
375 GtkWidget *label; | |
376 GtkWidget *menu; | |
377 GtkWidget *sep; | |
378 int selected = 0; | |
379 int i; | |
380 | |
381 dialog = g_new0(GaimGtkPrivacyDialog, 1); | |
382 | |
383 dialog->win = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
384 gtk_window_set_resizable(GTK_WINDOW(dialog->win), FALSE); | |
385 gtk_window_set_role(GTK_WINDOW(dialog->win), "privacy"); | |
386 gtk_window_set_title(GTK_WINDOW(dialog->win), _("Privacy")); | |
387 gtk_container_set_border_width(GTK_CONTAINER(dialog->win), 12); | |
388 | |
389 g_signal_connect(G_OBJECT(dialog->win), "delete_event", | |
390 G_CALLBACK(destroy_cb), dialog); | |
391 | |
392 /* Main vbox */ | |
393 vbox = gtk_vbox_new(FALSE, 12); | |
394 gtk_container_add(GTK_CONTAINER(dialog->win), vbox); | |
395 gtk_widget_show(vbox); | |
396 | |
397 /* Description label */ | |
398 label = gtk_label_new( | |
399 _("Changes to privacy settings take effect immediately.")); | |
400 | |
401 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
402 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
403 gtk_widget_show(label); | |
404 | |
405 /* Hbox for the accounts drop-down and label. */ | |
406 hbox = gtk_hbox_new(FALSE, 12); | |
407 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
408 gtk_widget_show(hbox); | |
409 | |
410 /* "Set privacy for:" label */ | |
411 label = gtk_label_new(_("Set privacy for:")); | |
412 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
413 gtk_widget_show(label); | |
414 | |
415 /* Accounts drop-down */ | |
8940 | 416 dropdown = gaim_gtk_account_option_menu_new(NULL, FALSE, |
6371 | 417 G_CALLBACK(select_account_cb), |
6646
b89d98f0bf79
[gaim-migrate @ 7171]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
418 check_account_func, dialog); |
6371 | 419 gtk_box_pack_start(GTK_BOX(hbox), dropdown, FALSE, FALSE, 0); |
420 gtk_widget_show(dropdown); | |
8137 | 421 gaim_set_accessible_label (dropdown, label); |
8940 | 422 dialog->account = gaim_gtk_account_option_menu_get_selected(dropdown); |
6371 | 423 |
424 /* Add the drop-down list with the allow/block types. */ | |
425 dialog->type_menu = gtk_option_menu_new(); | |
426 gtk_box_pack_start(GTK_BOX(vbox), dialog->type_menu, FALSE, FALSE, 0); | |
427 gtk_widget_show(dialog->type_menu); | |
428 | |
429 /* Build the menu for that. */ | |
430 menu = gtk_menu_new(); | |
431 | |
432 for (i = 0; i < menu_entry_count; i++) { | |
433 gaim_new_item(menu, _(menu_entries[i].text)); | |
434 | |
435 if (menu_entries[i].num == dialog->account->perm_deny) | |
436 selected = i; | |
437 } | |
438 | |
439 gtk_option_menu_set_menu(GTK_OPTION_MENU(dialog->type_menu), menu); | |
440 gtk_option_menu_set_history(GTK_OPTION_MENU(dialog->type_menu), selected); | |
441 | |
442 g_signal_connect(G_OBJECT(dialog->type_menu), "changed", | |
443 G_CALLBACK(type_changed_cb), dialog); | |
444 | |
445 /* Build the treeview for the allow list. */ | |
446 dialog->allow_widget = build_allow_list(dialog); | |
447 gtk_box_pack_start(GTK_BOX(vbox), dialog->allow_widget, TRUE, TRUE, 0); | |
448 | |
449 /* Build the treeview for the block list. */ | |
450 dialog->block_widget = build_block_list(dialog); | |
451 gtk_box_pack_start(GTK_BOX(vbox), dialog->block_widget, TRUE, TRUE, 0); | |
452 | |
453 /* Add the button box for Add, Remove, Clear */ | |
454 dialog->button_box = bbox = gtk_hbutton_box_new(); | |
455 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_SPREAD); | |
456 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
457 | |
458 /* Add button */ | |
459 button = gtk_button_new_from_stock(GTK_STOCK_ADD); | |
460 dialog->add_button = button; | |
461 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
462 gtk_widget_show(button); | |
463 | |
464 g_signal_connect(G_OBJECT(button), "clicked", | |
465 G_CALLBACK(add_cb), dialog); | |
466 | |
467 /* Remove button */ | |
468 button = gtk_button_new_from_stock(GTK_STOCK_REMOVE); | |
469 dialog->remove_button = button; | |
470 gtk_widget_set_sensitive(button, FALSE); | |
471 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
472 gtk_widget_show(button); | |
473 | |
474 g_signal_connect(G_OBJECT(button), "clicked", | |
475 G_CALLBACK(remove_cb), dialog); | |
476 | |
477 /* Clear button */ | |
478 button = gtk_button_new_from_stock(GTK_STOCK_CLEAR); | |
479 dialog->clear_button = button; | |
480 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
481 gtk_widget_show(button); | |
482 | |
483 g_signal_connect(G_OBJECT(button), "clicked", | |
484 G_CALLBACK(clear_cb), dialog); | |
485 | |
486 /* Separator */ | |
487 sep = gtk_hseparator_new(); | |
488 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); | |
489 gtk_widget_show(sep); | |
490 | |
491 /* Another button box. */ | |
492 bbox = gtk_hbutton_box_new(); | |
493 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
494 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
495 gtk_widget_show(bbox); | |
496 | |
497 /* Close button */ | |
498 button = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
499 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
500 gtk_widget_show(button); | |
501 | |
502 g_signal_connect(G_OBJECT(button), "clicked", | |
503 G_CALLBACK(close_cb), dialog); | |
504 | |
8175 | 505 if (dialog->account->perm_deny == GAIM_PRIVACY_ALLOW_USERS) { |
6371 | 506 gtk_widget_show(dialog->allow_widget); |
507 gtk_widget_show(dialog->button_box); | |
508 dialog->in_allow_list = TRUE; | |
509 } | |
8175 | 510 else if (dialog->account->perm_deny == GAIM_PRIVACY_DENY_USERS) { |
6371 | 511 gtk_widget_show(dialog->block_widget); |
512 gtk_widget_show(dialog->button_box); | |
513 dialog->in_allow_list = FALSE; | |
514 } | |
515 | |
516 return dialog; | |
517 } | |
518 | |
519 void | |
520 gaim_gtk_privacy_dialog_show(void) | |
521 { | |
522 if (privacy_dialog == NULL) | |
523 privacy_dialog = privacy_dialog_new(); | |
524 | |
525 gtk_widget_show(privacy_dialog->win); | |
526 gdk_window_raise(privacy_dialog->win->window); | |
527 } | |
528 | |
529 void | |
530 gaim_gtk_privacy_dialog_hide(void) | |
531 { | |
532 if (privacy_dialog == NULL) | |
533 return; | |
534 | |
7165 | 535 g_free(privacy_dialog); |
6371 | 536 privacy_dialog = NULL; |
537 } | |
538 | |
539 static void | |
540 destroy_request_data(GaimGtkPrivacyRequestData *data) | |
541 { | |
542 if (data->name != NULL) | |
543 g_free(data->name); | |
544 | |
545 g_free(data); | |
546 } | |
547 | |
548 static void | |
549 confirm_permit_block_cb(GaimGtkPrivacyRequestData *data, int option) | |
550 { | |
551 if (data->block) | |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
552 gaim_privacy_deny_add(data->account, data->name, FALSE); |
6371 | 553 else |
6378
01289157fc37
[gaim-migrate @ 6883]
Christian Hammond <chipx86@chipx86.com>
parents:
6375
diff
changeset
|
554 gaim_privacy_permit_add(data->account, data->name, FALSE); |
6371 | 555 |
556 destroy_request_data(data); | |
557 } | |
558 | |
559 static void | |
560 add_permit_block_cb(GaimGtkPrivacyRequestData *data, const char *name) | |
561 { | |
562 data->name = g_strdup(name); | |
563 | |
564 confirm_permit_block_cb(data, 0); | |
565 } | |
566 | |
567 void | |
568 gaim_gtk_request_add_permit(GaimAccount *account, const char *name) | |
569 { | |
570 GaimGtkPrivacyRequestData *data; | |
571 | |
572 g_return_if_fail(account != NULL); | |
573 | |
574 data = g_new0(GaimGtkPrivacyRequestData, 1); | |
575 data->account = account; | |
576 data->name = g_strdup(name); | |
577 data->block = FALSE; | |
578 | |
579 if (name == NULL) { | |
580 gaim_request_input(account, _("Permit User"), | |
581 _("Type a user you permit to contact you."), | |
582 _("Please enter the name of the user you wish to be " | |
583 "able to contact you."), | |
8697 | 584 NULL, FALSE, FALSE, NULL, |
6371 | 585 _("Permit"), G_CALLBACK(add_permit_block_cb), |
586 _("Cancel"), G_CALLBACK(destroy_request_data), | |
587 data); | |
588 } | |
589 else { | |
590 char *primary = g_strdup_printf(_("Allow %s to contact you?"), name); | |
591 char *secondary = | |
592 g_strdup_printf(_("Are you sure you wish to allow " | |
593 "%s to contact you?"), name); | |
594 | |
595 | |
596 gaim_request_action(account, _("Permit User"), primary, secondary, | |
597 0, data, 2, | |
598 _("Permit"), G_CALLBACK(confirm_permit_block_cb), | |
599 _("Cancel"), G_CALLBACK(destroy_request_data)); | |
600 | |
601 g_free(primary); | |
602 g_free(secondary); | |
603 } | |
604 } | |
605 | |
606 void | |
607 gaim_gtk_request_add_block(GaimAccount *account, const char *name) | |
608 { | |
609 GaimGtkPrivacyRequestData *data; | |
610 | |
611 g_return_if_fail(account != NULL); | |
612 | |
613 data = g_new0(GaimGtkPrivacyRequestData, 1); | |
614 data->account = account; | |
615 data->name = g_strdup(name); | |
616 data->block = TRUE; | |
617 | |
618 if (name == NULL) { | |
619 gaim_request_input(account, _("Block User"), | |
620 _("Type a user to block."), | |
621 _("Please enter the name of the user you wish to block."), | |
8697 | 622 NULL, FALSE, FALSE, NULL, |
6371 | 623 _("Block"), G_CALLBACK(add_permit_block_cb), |
624 _("Cancel"), G_CALLBACK(destroy_request_data), | |
625 data); | |
626 } | |
627 else { | |
628 char *primary = g_strdup_printf(_("Block %s?"), name); | |
629 char *secondary = | |
630 g_strdup_printf(_("Are you sure you want to block %s?"), name); | |
631 | |
632 gaim_request_action(account, _("Block User"), primary, secondary, | |
633 0, data, 2, | |
634 _("Block"), G_CALLBACK(confirm_permit_block_cb), | |
635 _("Cancel"), G_CALLBACK(destroy_request_data)); | |
636 | |
637 g_free(primary); | |
638 g_free(secondary); | |
639 } | |
640 } | |
641 | |
642 static void | |
643 gaim_gtk_permit_added_removed(GaimAccount *account, const char *name) | |
644 { | |
645 if (privacy_dialog != NULL) | |
646 rebuild_allow_list(privacy_dialog); | |
647 } | |
648 | |
649 static void | |
650 gaim_gtk_deny_added_removed(GaimAccount *account, const char *name) | |
651 { | |
652 if (privacy_dialog != NULL) | |
653 rebuild_block_list(privacy_dialog); | |
654 } | |
655 | |
656 static GaimPrivacyUiOps privacy_ops = | |
657 { | |
658 gaim_gtk_permit_added_removed, | |
659 gaim_gtk_permit_added_removed, | |
660 gaim_gtk_deny_added_removed, | |
661 gaim_gtk_deny_added_removed | |
662 }; | |
663 | |
664 GaimPrivacyUiOps * | |
665 gaim_gtk_privacy_get_ui_ops(void) | |
666 { | |
667 return &privacy_ops; | |
668 } | |
669 | |
670 void | |
671 gaim_gtk_privacy_init(void) | |
672 { | |
673 } |