]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-dialogs.c
Merge branch 'status-icon-663567'
[empathy.git] / libempathy-gtk / empathy-individual-dialogs.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25 #include <stdlib.h>
26
27 #include <gtk/gtk.h>
28 #include <glib/gi18n-lib.h>
29
30 #include <telepathy-glib/util.h>
31 #include <folks/folks.h>
32 #include <folks/folks-telepathy.h>
33
34 #include <libempathy/empathy-individual-manager.h>
35 #include <libempathy/empathy-utils.h>
36 #include <libempathy/empathy-contact-manager.h>
37
38 #include "empathy-individual-dialogs.h"
39 #include "empathy-contact-widget.h"
40 #include "empathy-ui-utils.h"
41
42 #define BULLET_POINT "\342\200\242"
43
44 static GtkWidget *new_individual_dialog = NULL;
45
46 /*
47  *  New contact dialog
48  */
49
50 static void
51 can_add_contact_to_account (TpAccount *account,
52     EmpathyAccountChooserFilterResultCallback callback,
53     gpointer callback_data,
54     gpointer user_data)
55 {
56   EmpathyIndividualManager *individual_manager;
57   TpConnection *connection;
58   gboolean result;
59
60   connection = tp_account_get_connection (account);
61   if (connection == NULL)
62     {
63       callback (FALSE, callback_data);
64       return;
65     }
66
67   individual_manager = empathy_individual_manager_dup_singleton ();
68   result = empathy_connection_can_add_personas (connection);
69   g_object_unref (individual_manager);
70
71   callback (result, callback_data);
72 }
73
74 static void
75 new_individual_response_cb (GtkDialog *dialog,
76     gint response,
77     GtkWidget *contact_widget)
78 {
79   EmpathyIndividualManager *individual_manager;
80   EmpathyContact *contact;
81
82   individual_manager = empathy_individual_manager_dup_singleton ();
83   contact = empathy_contact_widget_get_contact (contact_widget);
84
85   if (contact && response == GTK_RESPONSE_OK)
86     empathy_individual_manager_add_from_contact (individual_manager, contact);
87
88   new_individual_dialog = NULL;
89   gtk_widget_destroy (GTK_WIDGET (dialog));
90   g_object_unref (individual_manager);
91 }
92
93 void
94 empathy_new_individual_dialog_show (GtkWindow *parent)
95 {
96   empathy_new_individual_dialog_show_with_individual (parent, NULL);
97 }
98
99 void
100 empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
101     FolksIndividual *individual)
102 {
103   GtkWidget *dialog;
104   GtkWidget *button;
105   EmpathyContact *contact = NULL;
106   GtkWidget *contact_widget;
107
108   g_return_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual));
109
110   if (new_individual_dialog)
111     {
112       gtk_window_present (GTK_WINDOW (new_individual_dialog));
113       return;
114     }
115
116   /* Create dialog */
117   dialog = gtk_dialog_new ();
118   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
119   gtk_window_set_title (GTK_WINDOW (dialog), _("New Contact"));
120
121   /* Cancel button */
122   button = gtk_button_new_with_label (GTK_STOCK_CANCEL);
123   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
124   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button,
125       GTK_RESPONSE_CANCEL);
126   gtk_widget_show (button);
127
128   /* Add button */
129   button = gtk_button_new_with_label (GTK_STOCK_ADD);
130   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
131   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_OK);
132   gtk_widget_show (button);
133
134   /* Contact info widget */
135   if (individual != NULL)
136     contact = empathy_contact_dup_from_folks_individual (individual);
137
138   contact_widget = empathy_contact_widget_new (contact,
139       EMPATHY_CONTACT_WIDGET_EDIT_ALIAS |
140       EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT |
141       EMPATHY_CONTACT_WIDGET_EDIT_ID |
142       EMPATHY_CONTACT_WIDGET_EDIT_GROUPS);
143   gtk_container_set_border_width (GTK_CONTAINER (contact_widget), 8);
144   gtk_box_pack_start (
145       GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
146       contact_widget, TRUE, TRUE, 0);
147   empathy_contact_widget_set_account_filter (contact_widget,
148       can_add_contact_to_account, NULL);
149   gtk_widget_show (contact_widget);
150
151   new_individual_dialog = dialog;
152
153   g_signal_connect (dialog, "response", G_CALLBACK (new_individual_response_cb),
154       contact_widget);
155
156   if (parent != NULL)
157     gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
158
159   gtk_widget_show (dialog);
160
161   tp_clear_object (&contact);
162 }
163
164 static char *
165 contact_pretty_name (TpContact *contact)
166 {
167   const char *alias = tp_contact_get_alias (contact);
168   const char *identifier = tp_contact_get_identifier (contact);
169
170   if (tp_strdiff (alias, identifier))
171     return g_strdup_printf ("%s (%s)", alias, identifier);
172   else
173     return g_strdup (alias);
174 }
175
176 /*
177  * Block contact dialog
178  */
179 gboolean
180 empathy_block_individual_dialog_show (GtkWindow *parent,
181     FolksIndividual *individual,
182     GdkPixbuf *avatar,
183     gboolean *abusive)
184 {
185   GtkWidget *dialog;
186   GtkWidget *abusive_check = NULL;
187   GeeSet *personas;
188   GeeIterator *iter;
189   GString *text = g_string_new ("");
190   GString *blocked_str = g_string_new ("");
191   GString *notblocked_str = g_string_new ("");
192   guint npersonas_blocked = 0, npersonas_notblocked = 0;
193   gboolean can_report_abuse = FALSE;
194   int res;
195
196   dialog = gtk_message_dialog_new (parent,
197       GTK_DIALOG_MODAL, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
198       _("Block %s?"),
199       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
200
201   if (avatar != NULL)
202     {
203       GtkWidget *image = gtk_image_new_from_pixbuf (avatar);
204       gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image);
205       gtk_widget_show (image);
206     }
207
208   /* build a list of personas that support blocking */
209   personas = folks_individual_get_personas (individual);
210   iter = gee_iterable_iterator (GEE_ITERABLE (personas));
211   while (gee_iterator_next (iter))
212     {
213       TpfPersona *persona = gee_iterator_get (iter);
214       TpContact *contact;
215       GString *s;
216       char *str;
217       TpConnection *conn;
218
219       if (!TPF_IS_PERSONA (persona))
220           goto while_finish;
221
222       contact = tpf_persona_get_contact (persona);
223       if (contact == NULL)
224         goto while_finish;
225
226       conn = tp_contact_get_connection (contact);
227
228       if (tp_proxy_has_interface_by_id (conn,
229             TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_BLOCKING))
230         {
231           s = blocked_str;
232           npersonas_blocked++;
233         }
234       else
235         {
236           s = notblocked_str;
237           npersonas_notblocked++;
238         }
239
240       if (tp_connection_can_report_abusive (conn))
241         can_report_abuse = TRUE;
242
243       str = contact_pretty_name (contact);
244       g_string_append_printf (s, "\n " BULLET_POINT " %s", str);
245       g_free (str);
246
247 while_finish:
248       g_clear_object (&persona);
249     }
250   g_clear_object (&iter);
251
252   g_string_append_printf (text,
253       _("Are you sure you want to block '%s' from contacting you again?"),
254       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
255
256   if (npersonas_blocked > 0)
257     g_string_append_printf (text, "\n\n%s\n%s",
258         ngettext ("The following identity will be blocked:",
259                   "The following identities will be blocked:",
260                   npersonas_blocked),
261         blocked_str->str);
262
263   if (npersonas_notblocked > 0)
264     g_string_append_printf (text, "\n\n%s\n%s",
265         ngettext ("The following identity can not be blocked:",
266                   "The following identities can not be blocked:",
267                   npersonas_notblocked),
268         notblocked_str->str);
269
270   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
271     "%s", text->str);
272
273   gtk_dialog_add_buttons (GTK_DIALOG (dialog),
274       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
275       _("_Block"), GTK_RESPONSE_REJECT,
276       NULL);
277
278   if (can_report_abuse)
279     {
280       GtkWidget *vbox;
281
282       vbox = gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (dialog));
283       abusive_check = gtk_check_button_new_with_mnemonic (
284           ngettext ("_Report this contact as abusive",
285                     "_Report these contacts as abusive",
286                     npersonas_blocked));
287
288       gtk_box_pack_start (GTK_BOX (vbox), abusive_check, FALSE, TRUE, 0);
289       gtk_widget_show (abusive_check);
290     }
291
292   g_string_free (text, TRUE);
293   g_string_free (blocked_str, TRUE);
294   g_string_free (notblocked_str, TRUE);
295
296   res = gtk_dialog_run (GTK_DIALOG (dialog));
297
298   if (abusive != NULL)
299     {
300       if (abusive_check != NULL)
301         *abusive = gtk_toggle_button_get_active (
302             GTK_TOGGLE_BUTTON (abusive_check));
303       else
304         *abusive = FALSE;
305     }
306
307   gtk_widget_destroy (dialog);
308
309   return res == GTK_RESPONSE_REJECT;
310 }