]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-dialogs.c
Port EmpathyContactManager to the new singleton policy.
[empathy.git] / libempathy-gtk / empathy-contact-dialogs.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 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 <glade/glade.h>
29 #include <glib/gi18n-lib.h>
30
31 #include <libmissioncontrol/mission-control.h>
32
33 #include <libempathy/empathy-contact-manager.h>
34 #include <libempathy/empathy-contact-list.h>
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-contact-dialogs.h"
38 #include "empathy-contact-widget.h"
39 #include "empathy-ui-utils.h"
40
41 static GList *subscription_dialogs = NULL;
42 static GList *information_dialogs = NULL;
43 static GtkWidget *new_contact_dialog = NULL;
44
45
46 static gint
47 contact_dialogs_find (GtkDialog      *dialog,
48                       EmpathyContact *contact)
49 {
50         GtkWidget     *contact_widget;
51         EmpathyContact *this_contact;
52
53         contact_widget = g_object_get_data (G_OBJECT (dialog), "contact_widget");
54         this_contact = empathy_contact_widget_get_contact (contact_widget);
55
56         return contact != this_contact;
57 }
58
59 /*
60  *  Subscription dialog
61  */
62
63 static void
64 subscription_dialog_response_cb (GtkDialog *dialog,
65                                  gint       response,
66                                  GtkWidget *contact_widget)
67 {
68         EmpathyContactManager *manager;
69         EmpathyContact        *contact;
70
71         manager = empathy_contact_manager_dup_singleton ();
72         contact = empathy_contact_widget_get_contact (contact_widget);
73
74         if (response == GTK_RESPONSE_YES) {
75                 empathy_contact_list_add (EMPATHY_CONTACT_LIST (manager),
76                                           contact, "");
77         }
78         else if (response == GTK_RESPONSE_NO) {
79                 empathy_contact_list_remove (EMPATHY_CONTACT_LIST (manager),
80                                              contact, "");
81         }
82
83         subscription_dialogs = g_list_remove (subscription_dialogs, dialog);
84         gtk_widget_destroy (GTK_WIDGET (dialog));
85         g_object_unref (manager);
86 }
87
88 void
89 empathy_subscription_dialog_show (EmpathyContact *contact,
90                                   GtkWindow     *parent)
91 {
92         GtkWidget *dialog;
93         GtkWidget *hbox_subscription;
94         GtkWidget *contact_widget;
95         GList     *l;
96         gchar     *filename;
97
98         g_return_if_fail (EMPATHY_IS_CONTACT (contact));
99
100         l = g_list_find_custom (subscription_dialogs,
101                                 contact,
102                                 (GCompareFunc) contact_dialogs_find);
103         if (l) {
104                 gtk_window_present (GTK_WINDOW (l->data));
105                 return;
106         }
107
108         filename = empathy_file_lookup ("empathy-contact-dialogs.glade",
109                                         "libempathy-gtk");
110         empathy_glade_get_file_simple (filename,
111                                       "subscription_request_dialog",
112                                       NULL,
113                                       "subscription_request_dialog", &dialog,
114                                       "hbox_subscription", &hbox_subscription,
115                                       NULL);
116         g_free (filename);
117
118         contact_widget = empathy_contact_widget_new (contact,
119                                                      EMPATHY_CONTACT_WIDGET_EDIT_ALIAS |
120                                                      EMPATHY_CONTACT_WIDGET_EDIT_GROUPS);
121         gtk_box_pack_end (GTK_BOX (hbox_subscription),
122                           contact_widget,
123                           TRUE, TRUE,
124                           0);
125
126         g_object_set_data (G_OBJECT (dialog), "contact_widget", contact_widget);
127         subscription_dialogs = g_list_prepend (subscription_dialogs, dialog);
128
129         g_signal_connect (dialog, "response",
130                           G_CALLBACK (subscription_dialog_response_cb),
131                           contact_widget);
132
133         if (parent) {
134                 gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
135         }
136
137         gtk_widget_show (dialog);
138 }
139
140 /*
141  *  Information dialog
142  */
143
144 static void
145 contact_information_response_cb (GtkDialog *dialog,
146                                  gint       response,
147                                  GtkWidget *contact_widget)
148 {
149         information_dialogs = g_list_remove (information_dialogs, dialog);
150         gtk_widget_destroy (GTK_WIDGET (dialog));
151 }
152
153 void
154 empathy_contact_information_dialog_show (EmpathyContact *contact,
155                                          GtkWindow      *parent,
156                                          gboolean        edit,
157                                          gboolean        is_user)
158 {
159         GtkWidget                *dialog;
160         GtkWidget                *button;
161         GtkWidget                *contact_widget;
162         GList                    *l;
163         EmpathyContactWidgetFlags flags = 0;
164
165         g_return_if_fail (EMPATHY_IS_CONTACT (contact));
166
167         l = g_list_find_custom (information_dialogs,
168                                 contact,
169                                 (GCompareFunc) contact_dialogs_find);
170         if (l) {
171                 gtk_window_present (GTK_WINDOW (l->data));
172                 return;
173         }
174
175         /* Create dialog */
176         dialog = gtk_dialog_new ();
177         gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
178         gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
179         if (is_user) {
180                 gtk_window_set_title (GTK_WINDOW (dialog), _("Personal Information"));
181         }
182         else if (edit) {
183                 gtk_window_set_title (GTK_WINDOW (dialog), _("Edit Contact Information"));
184         }
185         else {
186                 gtk_window_set_title (GTK_WINDOW (dialog), _("Contact Information"));
187         }
188
189         /* Close button */
190         button = gtk_button_new_with_label (GTK_STOCK_CLOSE);
191         gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
192         gtk_dialog_add_action_widget (GTK_DIALOG (dialog),
193                                       button,
194                                       GTK_RESPONSE_CLOSE);
195         GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
196         gtk_window_set_default (GTK_WINDOW (dialog), button);
197         gtk_widget_show (button);
198
199         /* Contact info widget */
200         if (edit) {
201                 flags |= EMPATHY_CONTACT_WIDGET_EDIT_ALIAS;
202         }
203         if (is_user) {
204                 flags |= EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT;
205                 flags |= EMPATHY_CONTACT_WIDGET_EDIT_AVATAR;
206         }
207         if (!is_user && edit) {
208                 flags |= EMPATHY_CONTACT_WIDGET_EDIT_GROUPS;
209         }
210         contact_widget = empathy_contact_widget_new (contact, flags);
211         gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
212                             contact_widget,
213                             TRUE, TRUE, 0);
214         if (flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT) {
215                 empathy_contact_widget_set_account_filter (contact_widget,
216                                                            empathy_account_chooser_filter_is_connected,
217                                                            NULL);
218         }
219
220         g_object_set_data (G_OBJECT (dialog), "contact_widget", contact_widget);
221         information_dialogs = g_list_prepend (information_dialogs, dialog);
222
223         g_signal_connect (dialog, "response",
224                           G_CALLBACK (contact_information_response_cb),
225                           contact_widget);
226
227         if (parent) {
228                 gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
229         }
230
231         gtk_widget_show (dialog);
232 }
233
234 /*
235  *  New contact dialog
236  */
237
238 static gboolean
239 can_add_contact_to_account (McAccount *account,
240                             gpointer   user_data)
241 {
242         EmpathyContactManager *mgr;
243         gboolean               result;
244
245         mgr = empathy_contact_manager_dup_singleton ();
246         result = empathy_contact_manager_can_add (mgr, account);
247         g_object_unref (mgr);
248
249         return result;
250 }
251
252 static void
253 new_contact_response_cb (GtkDialog *dialog,
254                          gint       response,
255                          GtkWidget *contact_widget)
256 {
257         EmpathyContactManager *manager;
258         EmpathyContact         *contact;
259
260         manager = empathy_contact_manager_dup_singleton ();
261         contact = empathy_contact_widget_get_contact (contact_widget);
262
263         if (contact && response == GTK_RESPONSE_OK) {
264                 empathy_contact_list_add (EMPATHY_CONTACT_LIST (manager),
265                                           contact,
266                                           _("I would like to add you to my contact list."));
267         }
268
269         new_contact_dialog = NULL;
270         gtk_widget_destroy (GTK_WIDGET (dialog));
271         g_object_unref (manager);
272 }
273
274 void
275 empathy_new_contact_dialog_show (GtkWindow *parent)
276 {
277         GtkWidget *dialog;
278         GtkWidget *button;
279         GtkWidget *contact_widget;
280
281         if (new_contact_dialog) {
282                 gtk_window_present (GTK_WINDOW (new_contact_dialog));
283                 return;
284         }
285
286         /* Create dialog */
287         dialog = gtk_dialog_new ();
288         gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
289         gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
290         gtk_window_set_title (GTK_WINDOW (dialog), _("New Contact"));
291
292         /* Cancel button */
293         button = gtk_button_new_with_label (GTK_STOCK_CANCEL);
294         gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
295         gtk_dialog_add_action_widget (GTK_DIALOG (dialog),
296                                       button,
297                                       GTK_RESPONSE_CANCEL);
298         gtk_widget_show (button);
299         
300         /* Add button */
301         button = gtk_button_new_with_label (GTK_STOCK_ADD);
302         gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
303         gtk_dialog_add_action_widget (GTK_DIALOG (dialog),
304                                       button,
305                                       GTK_RESPONSE_OK);
306         gtk_widget_show (button);
307
308         /* Contact info widget */
309         contact_widget = empathy_contact_widget_new (NULL,
310                                                      EMPATHY_CONTACT_WIDGET_EDIT_ALIAS |
311                                                      EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT |
312                                                      EMPATHY_CONTACT_WIDGET_EDIT_ID |
313                                                      EMPATHY_CONTACT_WIDGET_EDIT_GROUPS);
314         gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
315                             contact_widget,
316                             TRUE, TRUE, 0);
317         empathy_contact_widget_set_account_filter (contact_widget,
318                                                    can_add_contact_to_account,
319                                                    NULL);
320
321         new_contact_dialog = dialog;
322
323         g_signal_connect (dialog, "response",
324                           G_CALLBACK (new_contact_response_cb),
325                           contact_widget);
326
327         if (parent) {
328                 gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
329         }
330
331         gtk_widget_show (dialog);
332 }
333