]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-widget.c
Use tp_connection_get_self_handle where needed
[empathy.git] / libempathy-gtk / empathy-contact-widget.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2009 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 <libmissioncontrol/mc-account.h>
31 #include <telepathy-glib/util.h>
32
33 #include <libempathy/empathy-tp-contact-factory.h>
34 #include <libempathy/empathy-contact-manager.h>
35 #include <libempathy/empathy-contact-list.h>
36 #include <libempathy/empathy-utils.h>
37
38 #include "empathy-contact-widget.h"
39 #include "empathy-account-chooser.h"
40 #include "empathy-avatar-chooser.h"
41 #include "empathy-avatar-image.h"
42 #include "empathy-ui-utils.h"
43
44 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
45 #include <libempathy/empathy-debug.h>
46
47 /* Delay before updating the widget when the id entry changed (seconds) */
48 #define ID_CHANGED_TIMEOUT 1
49
50 typedef struct
51 {
52   EmpathyTpContactFactory *factory;
53   EmpathyContactManager *manager;
54   EmpathyContact *contact;
55   EmpathyContactWidgetFlags flags;
56   guint widget_id_timeout;
57
58   GtkWidget *vbox_contact_widget;
59
60   /* Contact */
61   GtkWidget *vbox_contact;
62   GtkWidget *widget_avatar;
63   GtkWidget *widget_account;
64   GtkWidget *widget_id;
65   GtkWidget *widget_alias;
66   GtkWidget *label_alias;
67   GtkWidget *entry_alias;
68   GtkWidget *hbox_presence;
69   GtkWidget *image_state;
70   GtkWidget *label_status;
71   GtkWidget *table_contact;
72   GtkWidget *vbox_avatar;
73
74   /* Groups */
75   GtkWidget *vbox_groups;
76   GtkWidget *entry_group;
77   GtkWidget *button_group;
78   GtkWidget *treeview_groups;
79
80   /* Details */
81   GtkWidget *vbox_details;
82   GtkWidget *table_details;
83   GtkWidget *hbox_details_requested;
84
85   /* Client */
86   GtkWidget *vbox_client;
87   GtkWidget *table_client;
88   GtkWidget *hbox_client_requested;
89 } EmpathyContactWidget;
90
91 typedef struct
92 {
93   EmpathyContactWidget *information;
94   const gchar *name;
95   gboolean found;
96   GtkTreeIter found_iter;
97 } FindName;
98
99 static void contact_widget_destroy_cb (GtkWidget *widget,
100     EmpathyContactWidget *information);
101 static void contact_widget_remove_contact (EmpathyContactWidget *information);
102 static void contact_widget_set_contact (EmpathyContactWidget *information,
103     EmpathyContact *contact);
104 static void contact_widget_contact_setup (EmpathyContactWidget *information);
105 static void contact_widget_contact_update (EmpathyContactWidget *information);
106 static void contact_widget_change_contact (EmpathyContactWidget *information);
107 static void contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
108     EmpathyContactWidget *information);
109 static gboolean contact_widget_id_focus_out_cb (GtkWidget *widget,
110     GdkEventFocus *event, EmpathyContactWidget *information);
111 static gboolean contact_widget_entry_alias_focus_event_cb (
112     GtkEditable *editable, GdkEventFocus *event,
113     EmpathyContactWidget *information);
114 static void contact_widget_name_notify_cb (EmpathyContactWidget *information);
115 static void contact_widget_presence_notify_cb (
116     EmpathyContactWidget *information);
117 static void contact_widget_avatar_notify_cb (
118     EmpathyContactWidget *information);
119 static void contact_widget_groups_setup (
120     EmpathyContactWidget *information);
121 static void contact_widget_groups_update (EmpathyContactWidget *information);
122 static void contact_widget_model_setup (EmpathyContactWidget *information);
123 static void contact_widget_model_populate_columns (
124     EmpathyContactWidget *information);
125 static void contact_widget_groups_populate_data (
126     EmpathyContactWidget *information);
127 static void contact_widget_groups_notify_cb (
128     EmpathyContactWidget *information);
129 static gboolean contact_widget_model_find_name (
130     EmpathyContactWidget *information,const gchar *name, GtkTreeIter *iter);
131 static gboolean contact_widget_model_find_name_foreach (GtkTreeModel *model,
132     GtkTreePath *path, GtkTreeIter *iter, FindName *data);
133 static void contact_widget_cell_toggled (GtkCellRendererToggle *cell,
134     gchar *path_string, EmpathyContactWidget *information);
135 static void contact_widget_entry_group_changed_cb (GtkEditable *editable,
136     EmpathyContactWidget *information);
137 static void contact_widget_entry_group_activate_cb (GtkEntry *entry,
138     EmpathyContactWidget *information);
139 static void contact_widget_button_group_clicked_cb (GtkButton *button,
140     EmpathyContactWidget *information);
141 static void contact_widget_details_setup (EmpathyContactWidget *information);
142 static void contact_widget_details_update (EmpathyContactWidget *information);
143 static void contact_widget_client_setup (EmpathyContactWidget *information);
144 static void contact_widget_client_update (EmpathyContactWidget *information);
145
146 enum
147 {
148   COL_NAME,
149   COL_ENABLED,
150   COL_EDITABLE,
151   COL_COUNT
152 };
153
154 GtkWidget *
155 empathy_contact_widget_new (EmpathyContact *contact,
156                             EmpathyContactWidgetFlags flags)
157 {
158   EmpathyContactWidget *information;
159   GtkBuilder *gui;
160   TpConnection *connection;
161   gchar *filename;
162
163   g_return_val_if_fail (contact == NULL || EMPATHY_IS_CONTACT (contact), NULL);
164
165   information = g_slice_new0 (EmpathyContactWidget);
166   information->flags = flags;
167
168   filename = empathy_file_lookup ("empathy-contact-widget.ui",
169       "libempathy-gtk");
170   gui = empathy_builder_get_file (filename,
171        "vbox_contact_widget", &information->vbox_contact_widget,
172        "vbox_contact", &information->vbox_contact,
173        "hbox_presence", &information->hbox_presence,
174        "label_alias", &information->label_alias,
175        "image_state", &information->image_state,
176        "label_status", &information->label_status,
177        "table_contact", &information->table_contact,
178        "vbox_avatar", &information->vbox_avatar,
179        "vbox_groups", &information->vbox_groups,
180        "entry_group", &information->entry_group,
181        "button_group", &information->button_group,
182        "treeview_groups", &information->treeview_groups,
183        "vbox_details", &information->vbox_details,
184        "table_details", &information->table_details,
185        "hbox_details_requested", &information->hbox_details_requested,
186        "vbox_client", &information->vbox_client,
187        "table_client", &information->table_client,
188        "hbox_client_requested", &information->hbox_client_requested,
189        NULL);
190   g_free (filename);
191
192   empathy_builder_connect (gui, information,
193       "vbox_contact_widget", "destroy", contact_widget_destroy_cb,
194       "entry_group", "changed", contact_widget_entry_group_changed_cb,
195       "entry_group", "activate", contact_widget_entry_group_activate_cb,
196       "button_group", "clicked", contact_widget_button_group_clicked_cb,
197       NULL);
198
199   g_object_set_data (G_OBJECT (information->vbox_contact_widget),
200       "EmpathyContactWidget",
201       information);
202
203   /* Create widgets */
204   contact_widget_contact_setup (information);
205   contact_widget_groups_setup (information);
206   contact_widget_details_setup (information);
207   contact_widget_client_setup (information);
208
209   if (contact != NULL)
210       contact_widget_set_contact (information, contact);
211
212   return empathy_builder_unref_and_keep_widget (gui,
213     information->vbox_contact_widget);
214 }
215
216 EmpathyContact *
217 empathy_contact_widget_get_contact (GtkWidget *widget)
218 {
219   EmpathyContactWidget *information;
220
221   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
222
223   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
224   if (!information)
225       return NULL;
226
227   return information->contact;
228 }
229
230 void
231 empathy_contact_widget_set_contact (GtkWidget *widget,
232                                     EmpathyContact *contact)
233 {
234   EmpathyContactWidget *information;
235
236   g_return_if_fail (GTK_IS_WIDGET (widget));
237   g_return_if_fail (EMPATHY_IS_CONTACT (contact));
238
239   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
240   if (!information)
241     return;
242
243   contact_widget_set_contact (information, contact);
244 }
245
246 void
247 empathy_contact_widget_set_account_filter (
248     GtkWidget *widget,
249     EmpathyAccountChooserFilterFunc filter,
250     gpointer user_data)
251 {
252   EmpathyContactWidget *information;
253   EmpathyAccountChooser *chooser;
254
255   g_return_if_fail (GTK_IS_WIDGET (widget));
256
257   information = g_object_get_data (G_OBJECT (widget), "EmpathyContactWidget");
258   if (!information)
259     return;
260
261   chooser = EMPATHY_ACCOUNT_CHOOSER (information->widget_account);
262   if (chooser)
263       empathy_account_chooser_set_filter (chooser, filter, user_data);
264 }
265   
266 static void
267 contact_widget_destroy_cb (GtkWidget *widget,
268                            EmpathyContactWidget *information)
269 {
270   contact_widget_remove_contact (information);
271
272   if (information->widget_id_timeout != 0)
273     {
274       g_source_remove (information->widget_id_timeout);
275     }
276   if (information->manager)
277     {
278       g_object_unref (information->manager);
279     }   
280
281   g_slice_free (EmpathyContactWidget, information);
282 }
283
284 static void
285 contact_widget_remove_contact (EmpathyContactWidget *information)
286 {
287   if (information->contact)
288     {
289       g_signal_handlers_disconnect_by_func (information->contact,
290           contact_widget_name_notify_cb, information);
291       g_signal_handlers_disconnect_by_func (information->contact,
292           contact_widget_presence_notify_cb, information);
293       g_signal_handlers_disconnect_by_func (information->contact,
294           contact_widget_avatar_notify_cb, information);
295       g_signal_handlers_disconnect_by_func (information->contact,
296           contact_widget_groups_notify_cb, information);
297
298       g_object_unref (information->contact);
299       g_object_unref (information->factory);
300       information->contact = NULL;
301       information->factory = NULL;
302     }
303 }
304
305 static void
306 contact_widget_set_contact (EmpathyContactWidget *information,
307                             EmpathyContact *contact)
308 {
309   if (contact == information->contact)
310     return;
311
312   contact_widget_remove_contact (information);
313   if (contact)
314     {
315       TpConnection *connection;
316
317       connection = empathy_contact_get_connection (contact);
318       information->contact = g_object_ref (contact);
319       information->factory = empathy_tp_contact_factory_dup_singleton (connection);
320     }
321
322   /* Update information for widgets */
323   contact_widget_contact_update (information);
324   contact_widget_groups_update (information);
325   contact_widget_details_update (information);
326   contact_widget_client_update (information);
327 }
328
329 static gboolean
330 contact_widget_id_activate_timeout (EmpathyContactWidget *self)
331 {
332   contact_widget_change_contact (self);
333   return FALSE;
334 }
335
336 static void
337 contact_widget_id_changed_cb (GtkEntry *entry,
338                               EmpathyContactWidget *self)
339 {
340   if (self->widget_id_timeout != 0)
341     {   
342       g_source_remove (self->widget_id_timeout);
343     }
344
345   self->widget_id_timeout =
346     g_timeout_add_seconds (ID_CHANGED_TIMEOUT,
347         (GSourceFunc) contact_widget_id_activate_timeout, self);
348 }
349
350 static void
351 save_avatar_menu_activate_cb (GtkWidget *widget,
352                               EmpathyContactWidget *information)
353 {
354   GtkWidget *dialog;
355   EmpathyAvatar *avatar;
356   gchar *ext = NULL, *filename;
357
358   dialog = gtk_file_chooser_dialog_new (_("Save Avatar"),
359       NULL,
360       GTK_FILE_CHOOSER_ACTION_SAVE,
361       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
362       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
363       NULL);
364
365   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
366       TRUE);
367
368   /* look for the avatar extension */
369   avatar = empathy_contact_get_avatar (information->contact);
370   if (avatar->format != NULL)
371     {
372       gchar **splitted;
373
374       splitted = g_strsplit (avatar->format, "/", 2);
375       if (splitted[0] != NULL && splitted[1] != NULL)
376           ext = g_strdup (splitted[1]);
377
378       g_strfreev (splitted);
379     }
380   else
381     {
382       /* Avatar was loaded from the cache so was converted to PNG */
383       ext = g_strdup ("png");
384     }
385
386   if (ext != NULL)
387     {
388       gchar *id;
389
390       id = tp_escape_as_identifier (empathy_contact_get_id (
391             information->contact));
392
393       filename = g_strdup_printf ("%s.%s", id, ext);
394       gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), filename);
395
396       g_free (id);
397       g_free (ext);
398       g_free (filename);
399     }
400
401   if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
402     {
403       GError *error = NULL;
404
405       filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
406
407       if (!empathy_avatar_save_to_file (avatar, filename, &error))
408         {
409           /* Save error */
410           GtkWidget *dialog;
411
412           dialog = gtk_message_dialog_new (NULL, 0,
413               GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, 
414               _("Unable to save avatar"));
415
416           gtk_message_dialog_format_secondary_text (
417               GTK_MESSAGE_DIALOG (dialog), "%s", error->message);
418
419           g_signal_connect (dialog, "response",
420               G_CALLBACK (gtk_widget_destroy), NULL);
421
422           gtk_window_present (GTK_WINDOW (dialog));
423
424           g_clear_error (&error);
425         }
426
427       g_free (filename);
428     }
429
430   gtk_widget_destroy (dialog);
431 }
432
433 static void
434 popup_avatar_menu (EmpathyContactWidget *information,
435                    GtkWidget *parent,
436                    GdkEventButton *event)
437 {
438   GtkWidget *menu, *item;
439   gint button, event_time;
440
441   if (information->contact == NULL ||
442       empathy_contact_get_avatar (information->contact) == NULL)
443       return;
444
445   menu = gtk_menu_new ();
446
447   /* Add "Save as..." entry */
448   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SAVE_AS, NULL);
449   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
450   gtk_widget_show (item);
451
452   g_signal_connect (item, "activate",
453       G_CALLBACK (save_avatar_menu_activate_cb), information);
454
455   if (event)
456     {
457       button = event->button;
458       event_time = event->time;
459     }
460   else
461     {
462       button = 0;
463       event_time = gtk_get_current_event_time ();
464     }
465
466   gtk_menu_attach_to_widget (GTK_MENU (menu), parent, NULL);
467   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, 
468       button, event_time);
469 }
470
471 static gboolean
472 widget_avatar_popup_menu_cb (GtkWidget *widget,
473                              EmpathyContactWidget *information)
474 {
475   popup_avatar_menu (information, widget, NULL);
476
477   return TRUE;
478 }
479
480 static gboolean
481 widget_avatar_button_press_event_cb (GtkWidget *widget,
482                                      GdkEventButton *event,
483                                      EmpathyContactWidget *information)
484 {
485   /* Ignore double-clicks and triple-clicks */
486   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
487     {
488       popup_avatar_menu (information, widget, event);
489       return TRUE;
490     }
491
492   return FALSE;
493 }
494
495 static void
496 update_avatar_chooser_account_cb (EmpathyAccountChooser *account_chooser,
497                                   EmpathyAvatarChooser *avatar_chooser)
498 {
499   TpConnection *connection;
500
501   connection = empathy_account_chooser_get_connection (account_chooser);
502   g_object_set (avatar_chooser, "connection", connection, NULL);
503 }
504
505 static void
506 contact_widget_contact_setup (EmpathyContactWidget *information)
507 {
508   /* Setup account label/chooser */
509   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
510     {
511       information->widget_account = empathy_account_chooser_new ();
512
513       contact_widget_change_contact (information);
514       g_signal_connect_swapped (information->widget_account, "changed",
515             G_CALLBACK (contact_widget_change_contact),
516             information);
517     }
518   else
519     {
520       information->widget_account = gtk_label_new (NULL);
521       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
522         gtk_label_set_selectable (GTK_LABEL (information->widget_account), TRUE);
523       }
524       gtk_misc_set_alignment (GTK_MISC (information->widget_account), 0, 0.5);
525     }
526   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
527            information->widget_account,
528            1, 2, 0, 1);
529   gtk_widget_show (information->widget_account);
530
531   /* Set up avatar chooser/display */
532   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
533     {
534       information->widget_avatar = empathy_avatar_chooser_new ();
535       g_signal_connect (information->widget_avatar, "changed",
536             G_CALLBACK (contact_widget_avatar_changed_cb),
537             information);
538       if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
539         {
540           g_signal_connect (information->widget_account, "changed",
541               G_CALLBACK (update_avatar_chooser_account_cb),
542               information->widget_avatar);
543           update_avatar_chooser_account_cb (
544               EMPATHY_ACCOUNT_CHOOSER (information->widget_account),
545               EMPATHY_AVATAR_CHOOSER (information->widget_avatar));
546         }
547     }
548   else
549     {
550       information->widget_avatar = empathy_avatar_image_new ();
551
552       g_signal_connect (information->widget_avatar, "popup-menu",
553           G_CALLBACK (widget_avatar_popup_menu_cb), information);
554       g_signal_connect (information->widget_avatar, "button-press-event",
555           G_CALLBACK (widget_avatar_button_press_event_cb), information);
556     }
557
558   gtk_box_pack_start (GTK_BOX (information->vbox_avatar),
559           information->widget_avatar,
560           FALSE, FALSE,
561           6);
562   gtk_widget_show (information->widget_avatar);
563
564   /* Setup id label/entry */
565   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
566     {
567       information->widget_id = gtk_entry_new ();
568       g_signal_connect (information->widget_id, "focus-out-event",
569             G_CALLBACK (contact_widget_id_focus_out_cb),
570             information);
571       g_signal_connect (information->widget_id, "changed",
572             G_CALLBACK (contact_widget_id_changed_cb),
573             information);
574     }
575   else
576     {
577       information->widget_id = gtk_label_new (NULL);
578       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
579         gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE);
580       }
581       gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5);
582     }
583   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
584            information->widget_id,
585            1, 2, 1, 2);
586   gtk_widget_show (information->widget_id);
587
588   /* Setup alias label/entry */
589   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ALIAS)
590     {
591       information->widget_alias = gtk_entry_new ();
592       g_signal_connect (information->widget_alias, "focus-out-event",
593             G_CALLBACK (contact_widget_entry_alias_focus_event_cb),
594             information);
595       /* Make return activate the window default (the Close button) */
596       gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias),
597           TRUE);
598     }
599   else
600     {
601       information->widget_alias = gtk_label_new (NULL);
602       if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) {
603         gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE);
604       }
605       gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5);
606     }
607   gtk_table_attach_defaults (GTK_TABLE (information->table_contact),
608            information->widget_alias,
609            1, 2, 2, 3);
610   if (information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) {
611     gtk_label_set_selectable (GTK_LABEL (information->label_status), FALSE);
612   }
613   gtk_widget_show (information->widget_alias);
614 }
615
616 static void
617 contact_widget_contact_update (EmpathyContactWidget *information)
618 {
619   McAccount *account = NULL;
620   const gchar *id = NULL;
621
622   /* Connect and get info from new contact */
623   if (information->contact)
624     {
625       g_signal_connect_swapped (information->contact, "notify::name",
626           G_CALLBACK (contact_widget_name_notify_cb), information);
627       g_signal_connect_swapped (information->contact, "notify::presence",
628           G_CALLBACK (contact_widget_presence_notify_cb), information);
629       g_signal_connect_swapped (information->contact,
630           "notify::presence-message",
631           G_CALLBACK (contact_widget_presence_notify_cb), information);
632       g_signal_connect_swapped (information->contact, "notify::avatar",
633           G_CALLBACK (contact_widget_avatar_notify_cb), information);
634
635       account = empathy_contact_get_account (information->contact);
636       id = empathy_contact_get_id (information->contact);
637     }
638
639   /* Update account widget */
640   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT)
641     {
642       if (account)
643         {
644           g_signal_handlers_block_by_func (information->widget_account,
645                    contact_widget_change_contact,
646                    information);
647           empathy_account_chooser_set_account (
648               EMPATHY_ACCOUNT_CHOOSER (information->widget_account), account);
649           g_signal_handlers_unblock_by_func (information->widget_account,
650               contact_widget_change_contact, information);
651         }
652     }
653   else
654     {
655       if (account)
656         {
657           const gchar *name;
658
659           name = mc_account_get_display_name (account);
660           gtk_label_set_label (GTK_LABEL (information->widget_account), name);
661         }
662     }
663
664   /* Update id widget */
665   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
666       gtk_entry_set_text (GTK_ENTRY (information->widget_id), id ? id : "");
667   else
668       gtk_label_set_label (GTK_LABEL (information->widget_id), id ? id : "");
669
670   /* Update other widgets */
671   if (information->contact)
672     {
673       contact_widget_name_notify_cb (information);
674       contact_widget_presence_notify_cb (information);
675       contact_widget_avatar_notify_cb (information);
676
677       gtk_widget_show (information->label_alias);
678       gtk_widget_show (information->widget_alias);
679       gtk_widget_show (information->hbox_presence);
680       gtk_widget_show (information->widget_avatar);
681     }
682   else
683     {
684       gtk_widget_hide (information->label_alias);
685       gtk_widget_hide (information->widget_alias);
686       gtk_widget_hide (information->hbox_presence);
687       gtk_widget_hide (information->widget_avatar);
688     }
689 }
690
691 static void
692 contact_widget_got_contact_cb (EmpathyTpContactFactory *factory,
693                                EmpathyContact *contact,
694                                const GError *error,
695                                gpointer user_data,
696                                GObject *weak_object)
697 {
698   EmpathyContactWidget *information = user_data;
699
700   if (error != NULL)
701     {
702       DEBUG ("Error: %s", error->message);
703       return;
704     }
705
706   contact_widget_set_contact (information, contact);
707 }
708
709 static void
710 contact_widget_change_contact (EmpathyContactWidget *information)
711 {
712   EmpathyTpContactFactory *factory;
713   TpConnection *connection;
714
715   connection = empathy_account_chooser_get_connection (
716       EMPATHY_ACCOUNT_CHOOSER (information->widget_account));
717   if (!connection)
718       return;
719
720   factory = empathy_tp_contact_factory_dup_singleton (connection);
721   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_ID)
722     {
723       const gchar *id;
724
725       id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
726       if (!EMP_STR_EMPTY (id))
727         {
728           empathy_tp_contact_factory_get_from_id (factory, id,
729               contact_widget_got_contact_cb, information, NULL,
730               G_OBJECT (information->vbox_contact_widget));
731         }
732     }
733   else
734     {
735       empathy_tp_contact_factory_get_from_handle (factory,
736           tp_connection_get_self_handle (connection),
737           contact_widget_got_contact_cb, information, NULL,
738           G_OBJECT (information->vbox_contact_widget));
739     }
740
741   g_object_unref (factory);
742 }
743
744 static void
745 contact_widget_avatar_changed_cb (EmpathyAvatarChooser *chooser,
746                                   EmpathyContactWidget *information)
747 {
748   const gchar *data;
749   gsize size;
750   const gchar *mime_type;
751
752   empathy_avatar_chooser_get_image_data (
753       EMPATHY_AVATAR_CHOOSER (information->widget_avatar),
754       &data, &size, &mime_type);
755   empathy_tp_contact_factory_set_avatar (information->factory,
756       data, size, mime_type);
757 }
758
759 static gboolean
760 contact_widget_id_focus_out_cb (GtkWidget *widget,
761                                 GdkEventFocus *event,
762                                 EmpathyContactWidget *information)
763 {
764   contact_widget_change_contact (information);
765   return FALSE;
766 }
767
768 static gboolean
769 contact_widget_entry_alias_focus_event_cb (GtkEditable *editable,
770                                            GdkEventFocus *event,
771                                            EmpathyContactWidget *information)
772 {
773   if (information->contact)
774     {
775       const gchar *alias;
776
777       alias = gtk_entry_get_text (GTK_ENTRY (editable));
778       empathy_tp_contact_factory_set_alias (information->factory,
779           information->contact, alias);
780     }
781
782   return FALSE;
783 }
784
785 static void
786 contact_widget_name_notify_cb (EmpathyContactWidget *information)
787 {
788   if (GTK_IS_ENTRY (information->widget_alias))
789       gtk_entry_set_text (GTK_ENTRY (information->widget_alias),
790           empathy_contact_get_name (information->contact));
791   else
792       gtk_label_set_label (GTK_LABEL (information->widget_alias),
793           empathy_contact_get_name (information->contact));
794 }
795
796 static void
797 contact_widget_presence_notify_cb (EmpathyContactWidget *information)
798 {
799   gtk_label_set_text (GTK_LABEL (information->label_status),
800       empathy_contact_get_status (information->contact));
801   gtk_image_set_from_icon_name (GTK_IMAGE (information->image_state),
802       empathy_icon_name_for_contact (information->contact),
803       GTK_ICON_SIZE_BUTTON);
804 }
805
806 static void
807 contact_widget_avatar_notify_cb (EmpathyContactWidget *information)
808 {
809   EmpathyAvatar *avatar = NULL;
810
811   if (information->contact)
812       avatar = empathy_contact_get_avatar (information->contact);
813
814   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR)
815     {
816       g_signal_handlers_block_by_func (information->widget_avatar,
817           contact_widget_avatar_changed_cb,
818           information);
819       empathy_avatar_chooser_set (
820           EMPATHY_AVATAR_CHOOSER (information->widget_avatar), avatar);
821       g_signal_handlers_unblock_by_func (information->widget_avatar,
822           contact_widget_avatar_changed_cb, information);
823     }
824   else
825       empathy_avatar_image_set (
826           EMPATHY_AVATAR_IMAGE (information->widget_avatar), avatar);
827 }
828
829 static void
830 contact_widget_groups_setup (EmpathyContactWidget *information)
831 {
832   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS)
833     {
834       information->manager = empathy_contact_manager_dup_singleton ();
835       contact_widget_model_setup (information);
836     }
837 }
838
839 static void
840 contact_widget_groups_update (EmpathyContactWidget *information)
841 {
842   if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_GROUPS &&
843       information->contact)
844     {
845       g_signal_connect_swapped (information->contact, "notify::groups",
846           G_CALLBACK (contact_widget_groups_notify_cb), information);
847       contact_widget_groups_populate_data (information);
848
849       gtk_widget_show (information->vbox_groups);
850     }
851   else
852       gtk_widget_hide (information->vbox_groups);
853 }
854
855 static void
856 contact_widget_model_setup (EmpathyContactWidget *information)
857 {
858   GtkTreeView *view;
859   GtkListStore *store;
860   GtkTreeSelection *selection;
861
862   view = GTK_TREE_VIEW (information->treeview_groups);
863
864   store = gtk_list_store_new (COL_COUNT,
865       G_TYPE_STRING,   /* name */
866       G_TYPE_BOOLEAN,  /* enabled */
867       G_TYPE_BOOLEAN); /* editable */
868
869   gtk_tree_view_set_model (view, GTK_TREE_MODEL (store));
870
871   selection = gtk_tree_view_get_selection (view);
872   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
873
874   contact_widget_model_populate_columns (information);
875
876   gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
877       COL_NAME, GTK_SORT_ASCENDING);
878
879   g_object_unref (store);
880 }
881
882 static void
883 contact_widget_model_populate_columns (EmpathyContactWidget *information)
884 {
885   GtkTreeView *view;
886   GtkTreeModel *model;
887   GtkTreeViewColumn *column;
888   GtkCellRenderer  *renderer;
889   guint col_offset;
890
891   view = GTK_TREE_VIEW (information->treeview_groups);
892   model = gtk_tree_view_get_model (view);
893
894   renderer = gtk_cell_renderer_toggle_new ();
895   g_signal_connect (renderer, "toggled",
896       G_CALLBACK (contact_widget_cell_toggled), information);
897
898   column = gtk_tree_view_column_new_with_attributes (_("Select"), renderer,
899       "active", COL_ENABLED, NULL);
900
901   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
902   gtk_tree_view_column_set_fixed_width (column, 50);
903   gtk_tree_view_append_column (view, column);
904
905   renderer = gtk_cell_renderer_text_new ();
906   col_offset = gtk_tree_view_insert_column_with_attributes (view,
907       -1, _("Group"),
908       renderer,
909       "text", COL_NAME,
910       /* "editable", COL_EDITABLE, */
911       NULL);
912
913   g_object_set_data (G_OBJECT (renderer),
914       "column", GINT_TO_POINTER (COL_NAME));
915
916   column = gtk_tree_view_get_column (view, col_offset - 1);
917   gtk_tree_view_column_set_sort_column_id (column, COL_NAME);
918   gtk_tree_view_column_set_resizable (column,FALSE);
919   gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
920 }
921
922 static void
923 contact_widget_groups_populate_data (EmpathyContactWidget *information)
924 {
925   GtkTreeView *view;
926   GtkListStore *store;
927   GtkTreeIter iter;
928   GList *my_groups, *l;
929   GList *all_groups;
930
931   view = GTK_TREE_VIEW (information->treeview_groups);
932   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
933   gtk_list_store_clear (store);
934
935   all_groups = empathy_contact_list_get_all_groups (
936       EMPATHY_CONTACT_LIST (information->manager));
937   my_groups = empathy_contact_list_get_groups (
938       EMPATHY_CONTACT_LIST (information->manager),
939       information->contact);
940
941   for (l = all_groups; l; l = l->next)
942     {
943       const gchar *group_str;
944       gboolean enabled;
945
946       group_str = l->data;
947
948       enabled = g_list_find_custom (my_groups,
949           group_str, (GCompareFunc) strcmp) != NULL;
950
951       gtk_list_store_append (store, &iter);
952       gtk_list_store_set (store, &iter,
953           COL_NAME, group_str,
954           COL_EDITABLE, TRUE,
955           COL_ENABLED, enabled,
956           -1);
957     }
958
959   g_list_foreach (all_groups, (GFunc) g_free, NULL);
960   g_list_foreach (my_groups, (GFunc) g_free, NULL);
961   g_list_free (all_groups);
962   g_list_free (my_groups);
963 }
964
965 static void
966 contact_widget_groups_notify_cb (EmpathyContactWidget *information)
967 {
968   /* FIXME: not implemented */
969 }
970
971 static gboolean
972 contact_widget_model_find_name (EmpathyContactWidget *information,
973                                 const gchar *name,
974                                 GtkTreeIter *iter)
975 {
976   GtkTreeView *view;
977   GtkTreeModel *model;
978   FindName data;
979
980   if (EMP_STR_EMPTY (name))
981       return FALSE;
982
983   data.information = information;
984   data.name = name;
985   data.found = FALSE;
986
987   view = GTK_TREE_VIEW (information->treeview_groups);
988   model = gtk_tree_view_get_model (view);
989
990   gtk_tree_model_foreach (model,
991       (GtkTreeModelForeachFunc) contact_widget_model_find_name_foreach,
992       &data);
993
994   if (data.found == TRUE)
995     {
996       *iter = data.found_iter;
997       return TRUE;
998     }
999
1000   return FALSE;
1001 }
1002
1003 static gboolean
1004 contact_widget_model_find_name_foreach (GtkTreeModel *model,
1005                                         GtkTreePath *path,
1006                                         GtkTreeIter *iter,
1007                                         FindName *data)
1008 {
1009   gchar *name;
1010
1011   gtk_tree_model_get (model, iter,
1012       COL_NAME, &name,
1013       -1);
1014
1015   if (!name)
1016       return FALSE;
1017
1018   if (data->name && strcmp (data->name, name) == 0)
1019     {
1020       data->found = TRUE;
1021       data->found_iter = *iter;
1022
1023       g_free (name);
1024
1025       return TRUE;
1026     }
1027
1028   g_free (name);
1029
1030   return FALSE;
1031 }
1032
1033 static void
1034 contact_widget_cell_toggled (GtkCellRendererToggle *cell,
1035                              gchar *path_string,
1036                              EmpathyContactWidget *information)
1037 {
1038   GtkTreeView *view;
1039   GtkTreeModel *model;
1040   GtkListStore *store;
1041   GtkTreePath *path;
1042   GtkTreeIter iter;
1043   gboolean enabled;
1044   gchar *group;
1045
1046   view = GTK_TREE_VIEW (information->treeview_groups);
1047   model = gtk_tree_view_get_model (view);
1048   store = GTK_LIST_STORE (model);
1049
1050   path = gtk_tree_path_new_from_string (path_string);
1051
1052   gtk_tree_model_get_iter (model, &iter, path);
1053   gtk_tree_model_get (model, &iter,
1054       COL_ENABLED, &enabled,
1055       COL_NAME, &group,
1056       -1);
1057
1058   gtk_list_store_set (store, &iter, COL_ENABLED, !enabled, -1);
1059   gtk_tree_path_free (path);
1060
1061   if (group)
1062     {
1063       if (enabled)
1064         {
1065           empathy_contact_list_remove_from_group (
1066               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1067               group);
1068         }
1069       else
1070         {
1071           empathy_contact_list_add_to_group (
1072               EMPATHY_CONTACT_LIST (information->manager), information->contact,
1073               group);
1074         }
1075       g_free (group);
1076     }
1077 }
1078
1079 static void
1080 contact_widget_entry_group_changed_cb (GtkEditable *editable,
1081                                        EmpathyContactWidget *information)
1082 {
1083   GtkTreeIter iter;
1084   const gchar *group;
1085
1086   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1087
1088   if (contact_widget_model_find_name (information, group, &iter))
1089       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
1090   else
1091       gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
1092           !EMP_STR_EMPTY (group));
1093 }
1094
1095 static void
1096 contact_widget_entry_group_activate_cb (GtkEntry *entry,
1097                                         EmpathyContactWidget  *information)
1098 {
1099   gtk_widget_activate (GTK_WIDGET (information->button_group));
1100 }
1101
1102 static void
1103 contact_widget_button_group_clicked_cb (GtkButton *button,
1104                                         EmpathyContactWidget *information)
1105 {
1106   GtkTreeView *view;
1107   GtkListStore *store;
1108   GtkTreeIter iter;
1109   const gchar *group;
1110
1111   view = GTK_TREE_VIEW (information->treeview_groups);
1112   store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
1113
1114   group = gtk_entry_get_text (GTK_ENTRY (information->entry_group));
1115
1116   gtk_list_store_append (store, &iter);
1117   gtk_list_store_set (store, &iter,
1118       COL_NAME, group,
1119       COL_ENABLED, TRUE,
1120       -1);
1121
1122   empathy_contact_list_add_to_group (
1123       EMPATHY_CONTACT_LIST (information->manager), information->contact,
1124       group);
1125 }
1126
1127 static void
1128 contact_widget_details_setup (EmpathyContactWidget *information)
1129 {
1130   /* FIXME: Needs new telepathy spec */
1131   gtk_widget_hide (information->vbox_details);
1132 }
1133
1134 static void
1135 contact_widget_details_update (EmpathyContactWidget *information)
1136 {
1137   /* FIXME: Needs new telepathy spec */
1138 }
1139
1140 static void
1141 contact_widget_client_setup (EmpathyContactWidget *information)
1142 {
1143   /* FIXME: Needs new telepathy spec */
1144   gtk_widget_hide (information->vbox_client);
1145 }
1146
1147 static void
1148 contact_widget_client_update (EmpathyContactWidget *information)
1149 {
1150   /* FIXME: Needs new telepathy spec */
1151 }