]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-dialogs.c
Style fixes from review
[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
37 #include "empathy-individual-dialogs.h"
38 #include "empathy-contact-widget.h"
39 #include "empathy-ui-utils.h"
40
41 #define BULLET_POINT "\342\200\242"
42
43 static GtkWidget *new_individual_dialog = NULL;
44
45 /*
46  *  New contact dialog
47  */
48
49 static void
50 can_add_contact_to_account (TpAccount *account,
51     EmpathyAccountChooserFilterResultCallback callback,
52     gpointer callback_data,
53     gpointer user_data)
54 {
55   EmpathyIndividualManager *individual_manager;
56   TpConnection *connection;
57   gboolean result;
58
59   connection = tp_account_get_connection (account);
60   if (connection == NULL)
61     {
62       callback (FALSE, callback_data);
63       return;
64     }
65
66   individual_manager = empathy_individual_manager_dup_singleton ();
67   result = empathy_connection_can_add_personas (connection);
68   g_object_unref (individual_manager);
69
70   callback (result, callback_data);
71 }
72
73 static void
74 new_individual_response_cb (GtkDialog *dialog,
75     gint response,
76     GtkWidget *contact_widget)
77 {
78   EmpathyIndividualManager *individual_manager;
79   EmpathyContact *contact;
80
81   individual_manager = empathy_individual_manager_dup_singleton ();
82   contact = empathy_contact_widget_get_contact (contact_widget);
83
84   if (contact && response == GTK_RESPONSE_OK)
85     empathy_individual_manager_add_from_contact (individual_manager, contact);
86
87   new_individual_dialog = NULL;
88   gtk_widget_destroy (GTK_WIDGET (dialog));
89   g_object_unref (individual_manager);
90 }
91
92 void
93 empathy_new_individual_dialog_show (GtkWindow *parent)
94 {
95   empathy_new_individual_dialog_show_with_individual (parent, NULL);
96 }
97
98 void
99 empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
100     FolksIndividual *individual)
101 {
102   GtkWidget *dialog;
103   GtkWidget *button;
104   EmpathyContact *contact = NULL;
105   GtkWidget *contact_widget;
106
107   g_return_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual));
108
109   if (new_individual_dialog)
110     {
111       gtk_window_present (GTK_WINDOW (new_individual_dialog));
112       return;
113     }
114
115   /* Create dialog */
116   dialog = gtk_dialog_new ();
117   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
118   gtk_window_set_title (GTK_WINDOW (dialog), _("New Contact"));
119
120   /* Cancel button */
121   button = gtk_button_new_with_label (GTK_STOCK_CANCEL);
122   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
123   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button,
124       GTK_RESPONSE_CANCEL);
125   gtk_widget_show (button);
126
127   /* Add button */
128   button = gtk_button_new_with_label (GTK_STOCK_ADD);
129   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
130   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_OK);
131   gtk_widget_show (button);
132
133   /* Contact info widget */
134   if (individual != NULL)
135     contact = empathy_contact_dup_from_folks_individual (individual);
136
137   contact_widget = empathy_contact_widget_new (contact,
138       EMPATHY_CONTACT_WIDGET_EDIT_ALIAS |
139       EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT |
140       EMPATHY_CONTACT_WIDGET_EDIT_ID |
141       EMPATHY_CONTACT_WIDGET_EDIT_GROUPS);
142   gtk_container_set_border_width (GTK_CONTAINER (contact_widget), 8);
143   gtk_box_pack_start (
144       GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
145       contact_widget, TRUE, TRUE, 0);
146   empathy_contact_widget_set_account_filter (contact_widget,
147       can_add_contact_to_account, NULL);
148   gtk_widget_show (contact_widget);
149
150   new_individual_dialog = dialog;
151
152   g_signal_connect (dialog, "response", G_CALLBACK (new_individual_response_cb),
153       contact_widget);
154
155   if (parent != NULL)
156     gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
157
158   gtk_widget_show (dialog);
159
160   tp_clear_object (&contact);
161 }
162
163 /*
164  * Block contact dialog
165  */
166 gboolean
167 empathy_block_individual_dialog_show (GtkWindow *parent,
168     FolksIndividual *individual,
169     gboolean *abusive)
170 {
171   EmpathyIndividualManager *manager =
172     empathy_individual_manager_dup_singleton ();
173   GtkWidget *dialog;
174   GtkWidget *abusive_check = NULL;
175   GList *personas, *l;
176   GString *str = g_string_new ("");
177   guint npersonas = 0;
178   gboolean can_report_abuse = FALSE;
179   int res;
180
181   dialog = gtk_message_dialog_new (parent,
182       GTK_DIALOG_MODAL, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
183       _("Block %s?"),
184       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
185
186   /* build a list of personas that support blocking */
187   personas = folks_individual_get_personas (individual);
188
189   for (l = personas; l != NULL; l = l->next)
190     {
191       TpfPersona *persona = l->data;
192       TpContact *contact;
193       EmpathyIndividualManagerFlags flags;
194
195       if (!TPF_IS_PERSONA (persona))
196           continue;
197
198       contact = tpf_persona_get_contact (persona);
199       flags = empathy_individual_manager_get_flags_for_connection (manager,
200           tp_contact_get_connection (contact));
201
202       if (!(flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_BLOCK))
203         continue;
204       else if (flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_REPORT_ABUSIVE)
205         can_report_abuse = TRUE;
206
207       g_string_append_printf (str, "\n " BULLET_POINT " %s",
208           tp_contact_get_identifier (contact));
209       npersonas++;
210     }
211
212   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
213     "%s\n%s",
214     ngettext ("Are you sure you want to block the following contact?",
215               "Are you sure you want to block the following contacts?",
216               npersonas),
217     str->str);
218
219   gtk_dialog_add_buttons (GTK_DIALOG (dialog),
220       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
221       _("_Block"), GTK_RESPONSE_REJECT,
222       NULL);
223
224   if (can_report_abuse)
225     {
226       GtkWidget *vbox;
227
228       vbox = gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (dialog));
229       abusive_check = gtk_check_button_new_with_mnemonic (
230           ngettext ("_Report this contact as abusive",
231                     "_Report these contacts as abusive",
232                     npersonas));
233
234       gtk_box_pack_start (GTK_BOX (vbox), abusive_check, FALSE, TRUE, 0);
235       gtk_widget_show (abusive_check);
236     }
237
238   g_object_unref (manager);
239   g_string_free (str, TRUE);
240
241   res = gtk_dialog_run (GTK_DIALOG (dialog));
242   gtk_widget_destroy (dialog);
243
244   if (abusive != NULL)
245     {
246       if (abusive_check != NULL)
247         *abusive = gtk_toggle_button_get_active (
248             GTK_TOGGLE_BUTTON (abusive_check));
249       else
250         *abusive = FALSE;
251     }
252
253   return res == GTK_RESPONSE_REJECT;
254 }