]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-roster-view.c
roster-view: use a signal instead of a cb to handle individual tooltips
[empathy.git] / libempathy-gtk / empathy-roster-view.c
1 #include "config.h"
2
3 #include "empathy-roster-view.h"
4
5 #include <glib/gi18n-lib.h>
6
7 #include <libempathy-gtk/empathy-roster-contact.h>
8 #include <libempathy-gtk/empathy-roster-group.h>
9 #include <libempathy-gtk/empathy-ui-utils.h>
10
11 G_DEFINE_TYPE (EmpathyRosterView, empathy_roster_view, EGG_TYPE_LIST_BOX)
12
13 /* Flashing delay for icons (milliseconds). */
14 #define FLASH_TIMEOUT 500
15
16 enum
17 {
18   PROP_MANAGER = 1,
19   PROP_SHOW_OFFLINE,
20   PROP_SHOW_GROUPS,
21   PROP_EMPTY,
22   N_PROPS
23 };
24
25 enum
26 {
27   SIG_INDIVIDUAL_ACTIVATED,
28   SIG_POPUP_INDIVIDUAL_MENU,
29   SIG_EVENT_ACTIVATED,
30   SIG_INDIVIDUAL_TOOLTIP,
31   LAST_SIGNAL
32 };
33
34 static guint signals[LAST_SIGNAL];
35
36 #define NO_GROUP "X-no-group"
37 #define UNGROUPED _("Ungrouped")
38 #define TOP_GROUP _("Top Contacts")
39
40 struct _EmpathyRosterViewPriv
41 {
42   EmpathyIndividualManager *manager;
43
44   /* FolksIndividual (borrowed) -> GHashTable (
45    * (gchar * group_name) -> EmpathyRosterContact (borrowed))
46    *
47    * When not using groups, this hash just have one element mapped
48    * from the special NO_GROUP key. We could use it as a set but
49    * I prefer to stay coherent in the way this hash is managed.
50    */
51   GHashTable *roster_contacts;
52   /* (gchar *group_name) -> EmpathyRosterGroup (borrowed) */
53   GHashTable *roster_groups;
54   /* Hash of the EmpathyRosterContact currently displayed */
55   GHashTable *displayed_contacts;
56
57   guint last_event_id;
58   /* queue of (Event *). The most recent events are in the head of the queue
59    * so we always display the icon of the oldest one. */
60   GQueue *events;
61   guint flash_id;
62   gboolean display_flash_event;
63
64   gboolean show_offline;
65   gboolean show_groups;
66   gboolean empty;
67
68   EmpathyLiveSearch *search;
69 };
70
71 typedef struct
72 {
73   guint id;
74   FolksIndividual *individual;
75   gchar *icon;
76   gpointer user_data;
77 } Event;
78
79 static Event *
80 event_new (guint id,
81     FolksIndividual *individual,
82     const gchar *icon,
83     gpointer user_data)
84 {
85   Event *event = g_slice_new (Event);
86
87   event->id = id;
88   event->individual = g_object_ref (individual);
89   event->icon = g_strdup (icon);
90   event->user_data = user_data;
91   return event;
92 }
93
94 static void
95 event_free (gpointer data)
96 {
97   Event *event = data;
98   g_object_unref (event->individual);
99   g_free (event->icon);
100
101   g_slice_free (Event, event);
102 }
103
104 static void
105 empathy_roster_view_get_property (GObject *object,
106     guint property_id,
107     GValue *value,
108     GParamSpec *pspec)
109 {
110   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
111
112   switch (property_id)
113     {
114       case PROP_MANAGER:
115         g_value_set_object (value, self->priv->manager);
116         break;
117       case PROP_SHOW_OFFLINE:
118         g_value_set_boolean (value, self->priv->show_offline);
119         break;
120       case PROP_SHOW_GROUPS:
121         g_value_set_boolean (value, self->priv->show_groups);
122         break;
123       case PROP_EMPTY:
124         g_value_set_boolean (value, self->priv->empty);
125         break;
126       default:
127         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
128         break;
129     }
130 }
131
132 static void
133 empathy_roster_view_set_property (GObject *object,
134     guint property_id,
135     const GValue *value,
136     GParamSpec *pspec)
137 {
138   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
139
140   switch (property_id)
141     {
142       case PROP_MANAGER:
143         g_assert (self->priv->manager == NULL); /* construct only */
144         self->priv->manager = g_value_dup_object (value);
145         break;
146       case PROP_SHOW_OFFLINE:
147         empathy_roster_view_show_offline (self, g_value_get_boolean (value));
148         break;
149       case PROP_SHOW_GROUPS:
150         empathy_roster_view_show_groups (self, g_value_get_boolean (value));
151         break;
152       default:
153         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
154         break;
155     }
156 }
157
158 static void
159 roster_contact_changed_cb (GtkWidget *child,
160     GParamSpec *spec,
161     EmpathyRosterView *self)
162 {
163   egg_list_box_child_changed (EGG_LIST_BOX (self), child);
164 }
165
166 static GtkWidget *
167 add_roster_contact (EmpathyRosterView *self,
168     FolksIndividual *individual,
169     const gchar *group)
170 {
171   GtkWidget *contact;
172
173   contact = empathy_roster_contact_new (individual, group);
174
175   /* Need to refilter if online is changed */
176   g_signal_connect (contact, "notify::online",
177       G_CALLBACK (roster_contact_changed_cb), self);
178
179   /* Need to resort if alias is changed */
180   g_signal_connect (contact, "notify::alias",
181       G_CALLBACK (roster_contact_changed_cb), self);
182
183   gtk_widget_show (contact);
184   gtk_container_add (GTK_CONTAINER (self), contact);
185
186   return contact;
187 }
188
189 static void
190 group_expanded_cb (EmpathyRosterGroup *group,
191     GParamSpec *spec,
192     EmpathyRosterView *self)
193 {
194   GList *widgets, *l;
195
196   widgets = empathy_roster_group_get_widgets (group);
197   for (l = widgets; l != NULL; l = g_list_next (l))
198     {
199       egg_list_box_child_changed (EGG_LIST_BOX (self), l->data);
200     }
201
202   g_list_free (widgets);
203 }
204
205 static EmpathyRosterGroup *
206 lookup_roster_group (EmpathyRosterView *self,
207     const gchar *group)
208 {
209   return g_hash_table_lookup (self->priv->roster_groups, group);
210 }
211
212 static EmpathyRosterGroup *
213 ensure_roster_group (EmpathyRosterView *self,
214     const gchar *group)
215 {
216   GtkWidget *roster_group;
217
218   roster_group = (GtkWidget *) lookup_roster_group (self, group);
219   if (roster_group != NULL)
220     return EMPATHY_ROSTER_GROUP (roster_group);
221
222   if (!tp_strdiff (group, TOP_GROUP))
223     roster_group = empathy_roster_group_new (group, "emblem-favorite-symbolic");
224   else
225     roster_group = empathy_roster_group_new (group, NULL);
226
227   g_signal_connect (roster_group, "notify::expanded",
228       G_CALLBACK (group_expanded_cb), self);
229
230   gtk_widget_show (roster_group);
231   gtk_container_add (GTK_CONTAINER (self), roster_group);
232
233   g_hash_table_insert (self->priv->roster_groups, g_strdup (group),
234       roster_group);
235
236   return EMPATHY_ROSTER_GROUP (roster_group);
237 }
238
239 static void
240 update_group_widgets (EmpathyRosterView *self,
241     EmpathyRosterGroup *group,
242     EmpathyRosterContact *contact,
243     gboolean add)
244 {
245   guint old_count, count;
246
247   old_count = empathy_roster_group_get_widgets_count (group);
248
249   if (add)
250     count = empathy_roster_group_add_widget (group, GTK_WIDGET (contact));
251   else
252     count = empathy_roster_group_remove_widget (group, GTK_WIDGET (contact));
253
254   if (count != old_count)
255     egg_list_box_child_changed (EGG_LIST_BOX (self), GTK_WIDGET (group));
256 }
257
258 static void
259 add_to_group (EmpathyRosterView *self,
260     FolksIndividual *individual,
261     const gchar *group)
262 {
263   GtkWidget *contact;
264   GHashTable *contacts;
265   EmpathyRosterGroup *roster_group = NULL;
266
267   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
268   if (contacts == NULL)
269     return;
270
271   if (tp_strdiff (group, NO_GROUP))
272     roster_group = ensure_roster_group (self, group);
273
274   contact = add_roster_contact (self, individual, group);
275   g_hash_table_insert (contacts, g_strdup (group), contact);
276
277   if (roster_group != NULL)
278     {
279       update_group_widgets (self, roster_group,
280           EMPATHY_ROSTER_CONTACT (contact), TRUE);
281     }
282 }
283
284 static void
285 individual_added (EmpathyRosterView *self,
286     FolksIndividual *individual)
287 {
288   GHashTable *contacts;
289
290   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
291   if (contacts != NULL)
292     return;
293
294   contacts = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
295
296   g_hash_table_insert (self->priv->roster_contacts, individual, contacts);
297
298   if (!self->priv->show_groups)
299     {
300       add_to_group (self, individual, NO_GROUP);
301     }
302   else
303     {
304       GeeSet *groups;
305       GList *tops;
306
307       tops = empathy_individual_manager_get_top_individuals (self->priv->manager);
308
309       if (folks_favourite_details_get_is_favourite (
310             FOLKS_FAVOURITE_DETAILS (individual)) || 
311           g_list_index (tops, individual) != -1)
312         {
313           add_to_group (self, individual, TOP_GROUP);
314         }
315
316       groups = folks_group_details_get_groups (
317           FOLKS_GROUP_DETAILS (individual));
318
319       if (gee_collection_get_size (GEE_COLLECTION (groups)) > 0)
320         {
321           GeeIterator *iter = gee_iterable_iterator (GEE_ITERABLE (groups));
322
323           while (iter != NULL && gee_iterator_next (iter))
324             {
325               gchar *group = gee_iterator_get (iter);
326
327               add_to_group (self, individual, group);
328
329               g_free (group);
330             }
331
332           g_clear_object (&iter);
333         }
334       else
335         {
336           /* No group, adds to Ungrouped */
337           add_to_group (self, individual, UNGROUPED);
338         }
339     }
340 }
341
342 static void
343 set_event_icon_on_individual (EmpathyRosterView *self,
344     FolksIndividual *individual,
345     const gchar *icon)
346 {
347   GHashTable *contacts;
348   GHashTableIter iter;
349   gpointer v;
350
351   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
352   if (contacts == NULL)
353     return;
354
355   g_hash_table_iter_init (&iter, contacts);
356   while (g_hash_table_iter_next (&iter, NULL, &v))
357     {
358       EmpathyRosterContact *contact =v;
359
360       empathy_roster_contact_set_event_icon (contact, icon);
361     }
362 }
363
364 static void
365 flash_event (Event *event,
366     EmpathyRosterView *self)
367 {
368   set_event_icon_on_individual (self, event->individual, event->icon);
369 }
370
371 static void
372 unflash_event (Event *event,
373     EmpathyRosterView *self)
374 {
375   set_event_icon_on_individual (self, event->individual, NULL);
376 }
377
378 static gboolean
379 flash_cb (gpointer data)
380 {
381   EmpathyRosterView *self = data;
382
383   if (self->priv->display_flash_event)
384     {
385       g_queue_foreach (self->priv->events, (GFunc) flash_event, self);
386       self->priv->display_flash_event = FALSE;
387     }
388   else
389     {
390       g_queue_foreach (self->priv->events, (GFunc) unflash_event, self);
391       self->priv->display_flash_event = TRUE;
392     }
393
394   return TRUE;
395 }
396
397 static void
398 start_flashing (EmpathyRosterView *self)
399 {
400   if (self->priv->flash_id != 0)
401     return;
402
403   self->priv->display_flash_event = TRUE;
404
405   self->priv->flash_id = g_timeout_add (FLASH_TIMEOUT,
406       flash_cb, self);
407 }
408
409 static void
410 stop_flashing (EmpathyRosterView *self)
411 {
412   if (self->priv->flash_id == 0)
413     return;
414
415   g_source_remove (self->priv->flash_id);
416   self->priv->flash_id = 0;
417 }
418
419 static void
420 remove_event (EmpathyRosterView *self,
421     Event *event)
422 {
423   unflash_event (event, self);
424   g_queue_remove (self->priv->events, event);
425
426   if (g_queue_get_length (self->priv->events) == 0)
427     {
428       stop_flashing (self);
429     }
430 }
431
432 static void
433 remove_all_individual_event (EmpathyRosterView *self,
434     FolksIndividual *individual)
435 {
436   GList *l;
437
438   for (l = g_queue_peek_head_link (self->priv->events); l != NULL;
439       l = g_list_next (l))
440     {
441       Event *event = l->data;
442
443       if (event->individual == individual)
444         {
445           remove_event (self, event);
446           return;
447         }
448     }
449 }
450
451 static void
452 individual_removed (EmpathyRosterView *self,
453     FolksIndividual *individual)
454 {
455   GHashTable *contacts;
456   GHashTableIter iter;
457   gpointer key, value;
458
459   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
460   if (contacts == NULL)
461     return;
462
463   remove_all_individual_event (self, individual);
464
465   g_hash_table_iter_init (&iter, contacts);
466   while (g_hash_table_iter_next (&iter, &key, &value))
467     {
468       const gchar *group_name = key;
469       GtkWidget *contact = value;
470       EmpathyRosterGroup *group;
471
472       group = lookup_roster_group (self, group_name);
473       if (group != NULL)
474         {
475           update_group_widgets (self, group,
476               EMPATHY_ROSTER_CONTACT (contact), FALSE);
477         }
478
479       gtk_container_remove (GTK_CONTAINER (self), contact);
480     }
481
482   g_hash_table_remove (self->priv->roster_contacts, individual);
483 }
484
485 static void
486 members_changed_cb (EmpathyIndividualManager *manager,
487     const gchar *message,
488     GList *added,
489     GList *removed,
490     TpChannelGroupChangeReason reason,
491     EmpathyRosterView *self)
492 {
493   GList *l;
494
495   for (l = added; l != NULL; l = g_list_next (l))
496     {
497       FolksIndividual *individual = l->data;
498
499       individual_added (self, individual);
500     }
501
502   for (l = removed; l != NULL; l = g_list_next (l))
503     {
504       FolksIndividual *individual = l->data;
505
506       individual_removed (self, individual);
507     }
508 }
509
510 static gint
511 compare_roster_contacts_by_alias (EmpathyRosterContact *a,
512     EmpathyRosterContact *b)
513 {
514   FolksIndividual *ind_a, *ind_b;
515   const gchar *alias_a, *alias_b;
516
517   ind_a = empathy_roster_contact_get_individual (a);
518   ind_b = empathy_roster_contact_get_individual (b);
519
520   alias_a = folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (ind_a));
521   alias_b = folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (ind_b));
522
523   return g_ascii_strcasecmp (alias_a, alias_b);
524 }
525
526 static gboolean
527 contact_is_favourite (EmpathyRosterContact *contact)
528 {
529   FolksIndividual *individual;
530
531   individual = empathy_roster_contact_get_individual (contact);
532
533   return folks_favourite_details_get_is_favourite (
534       FOLKS_FAVOURITE_DETAILS (individual));
535 }
536
537 static gboolean
538 contact_in_top (EmpathyRosterView *self,
539     EmpathyRosterContact *contact)
540 {
541   FolksIndividual *individual;
542   GList *tops;
543
544   if (contact_is_favourite (contact))
545     return TRUE;
546
547   individual = empathy_roster_contact_get_individual (contact);
548
549   tops = empathy_individual_manager_get_top_individuals (self->priv->manager);
550
551   if (g_list_index (tops, individual) != -1)
552     return TRUE;
553
554   return FALSE;
555 }
556
557 static gint
558 compare_roster_contacts_no_group (EmpathyRosterView *self,
559     EmpathyRosterContact *a,
560     EmpathyRosterContact *b)
561 {
562   gboolean top_a, top_b;
563
564   top_a = contact_in_top (self, a);
565   top_b = contact_in_top (self, b);
566
567   if (top_a == top_b)
568     /* Both contacts are in the top of the roster (or not). Sort them
569      * alphabetically */
570     return compare_roster_contacts_by_alias (a, b);
571   else if (top_a)
572     return -1;
573   else
574     return 1;
575 }
576
577 static gint
578 compare_group_names (const gchar *group_a,
579     const gchar *group_b)
580 {
581   if (!tp_strdiff (group_a, TOP_GROUP))
582     return -1;
583
584   if (!tp_strdiff (group_b, TOP_GROUP))
585     return 1;
586
587   return g_ascii_strcasecmp (group_a, group_b);
588 }
589
590 static gint
591 compare_roster_contacts_with_groups (EmpathyRosterView *self,
592     EmpathyRosterContact *a,
593     EmpathyRosterContact *b)
594 {
595   const gchar *group_a, *group_b;
596
597   group_a = empathy_roster_contact_get_group (a);
598   group_b = empathy_roster_contact_get_group (b);
599
600   if (!tp_strdiff (group_a, group_b))
601     /* Same group, compare the contacts */
602     return compare_roster_contacts_by_alias (a, b);
603
604   /* Sort by group */
605   return compare_group_names (group_a, group_b);
606 }
607
608 static gint
609 compare_roster_contacts (EmpathyRosterView *self,
610     EmpathyRosterContact *a,
611     EmpathyRosterContact *b)
612 {
613   if (!self->priv->show_groups)
614     return compare_roster_contacts_no_group (self, a, b);
615   else
616     return compare_roster_contacts_with_groups (self, a, b);
617 }
618
619 static gint
620 compare_roster_groups (EmpathyRosterGroup *a,
621     EmpathyRosterGroup *b)
622 {
623   const gchar *name_a, *name_b;
624
625   name_a = empathy_roster_group_get_name (a);
626   name_b = empathy_roster_group_get_name (b);
627
628   return compare_group_names (name_a, name_b);
629 }
630
631 static gint
632 compare_contact_group (EmpathyRosterContact *contact,
633     EmpathyRosterGroup *group)
634 {
635   const char *contact_group, *group_name;
636
637   contact_group = empathy_roster_contact_get_group (contact);
638   group_name = empathy_roster_group_get_name (group);
639
640   if (!tp_strdiff (contact_group, group_name))
641     /* @contact is in @group, @group has to be displayed first */
642     return 1;
643
644   /* @contact is in a different group, sort by group name */
645   return compare_group_names (contact_group, group_name);
646 }
647
648 static gint
649 roster_view_sort (gconstpointer a,
650     gconstpointer b,
651     gpointer user_data)
652 {
653   EmpathyRosterView *self = user_data;
654
655   if (EMPATHY_IS_ROSTER_CONTACT (a) && EMPATHY_IS_ROSTER_CONTACT (b))
656     return compare_roster_contacts (self, EMPATHY_ROSTER_CONTACT (a),
657         EMPATHY_ROSTER_CONTACT (b));
658   else if (EMPATHY_IS_ROSTER_GROUP (a) && EMPATHY_IS_ROSTER_GROUP (b))
659     return compare_roster_groups (EMPATHY_ROSTER_GROUP (a),
660         EMPATHY_ROSTER_GROUP (b));
661   else if (EMPATHY_IS_ROSTER_CONTACT (a) && EMPATHY_IS_ROSTER_GROUP (b))
662     return compare_contact_group (EMPATHY_ROSTER_CONTACT (a),
663         EMPATHY_ROSTER_GROUP (b));
664   else if (EMPATHY_IS_ROSTER_GROUP (a) && EMPATHY_IS_ROSTER_CONTACT (b))
665     return -1 * compare_contact_group (EMPATHY_ROSTER_CONTACT (b),
666         EMPATHY_ROSTER_GROUP (a));
667
668   g_return_val_if_reached (0);
669 }
670
671 static void
672 update_separator (GtkWidget **separator,
673     GtkWidget *child,
674     GtkWidget *before,
675     gpointer user_data)
676 {
677   if (before == NULL)
678     {
679       /* No separator before the first row */
680       g_clear_object (separator);
681       return;
682     }
683
684   if (*separator != NULL)
685     return;
686
687   *separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
688   g_object_ref_sink (*separator);
689 }
690
691 static gboolean
692 is_searching (EmpathyRosterView *self)
693 {
694   if (self->priv->search == NULL)
695     return FALSE;
696
697   return gtk_widget_get_visible (GTK_WIDGET (self->priv->search));
698 }
699
700 static void
701 update_empty (EmpathyRosterView *self,
702     gboolean empty)
703 {
704   if (self->priv->empty == empty)
705     return;
706
707   self->priv->empty = empty;
708   g_object_notify (G_OBJECT (self), "empty");
709 }
710
711 static void
712 add_to_displayed (EmpathyRosterView *self,
713     EmpathyRosterContact *contact)
714 {
715   FolksIndividual *individual;
716   GHashTable *contacts;
717   GHashTableIter iter;
718   gpointer v;
719
720   if (g_hash_table_lookup (self->priv->displayed_contacts, contact) != NULL)
721     return;
722
723   g_hash_table_add (self->priv->displayed_contacts, contact);
724   update_empty (self, FALSE);
725
726   /* Groups of this contact may now be displayed if we just displays the first
727    * child in this group. */
728   individual = empathy_roster_contact_get_individual (contact);
729   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
730   if (contacts == NULL)
731     return;
732
733   g_hash_table_iter_init (&iter, contacts);
734   while (g_hash_table_iter_next (&iter, NULL, &v))
735     {
736       GtkWidget *group = GTK_WIDGET (v);
737
738       egg_list_box_child_changed (EGG_LIST_BOX (self), group);
739     }
740 }
741
742 static void
743 remove_from_displayed (EmpathyRosterView *self,
744     EmpathyRosterContact *contact)
745 {
746   g_hash_table_remove (self->priv->displayed_contacts, contact);
747
748   if (g_hash_table_size (self->priv->displayed_contacts) == 0)
749     update_empty (self, TRUE);
750 }
751
752 /**
753  * check if @contact should be displayed according to @self's current status
754  * and without consideration for the state of @contact's groups.
755  */
756 static gboolean
757 contact_should_be_displayed (EmpathyRosterView *self,
758     EmpathyRosterContact *contact)
759 {
760   if (is_searching (self))
761     {
762       FolksIndividual *individual;
763
764       individual = empathy_roster_contact_get_individual (contact);
765
766       return empathy_individual_match_string (individual,
767           empathy_live_search_get_text (self->priv->search),
768           empathy_live_search_get_words (self->priv->search));
769     }
770   else
771     {
772       if (self->priv->show_offline)
773         {
774           return TRUE;
775         }
776       else if (!self->priv->show_groups &&
777           contact_is_favourite (contact))
778         {
779           /* Always display favourite contacts in non-group mode. In the group
780            * mode we'll display only the one in the 'top' section. */
781           return TRUE;
782         }
783       else
784         {
785           return empathy_roster_contact_is_online (contact);
786         }
787     }
788 }
789
790 static gboolean
791 filter_contact (EmpathyRosterView *self,
792     EmpathyRosterContact *contact)
793 {
794   gboolean displayed;
795
796   displayed = contact_should_be_displayed (self, contact);
797
798   if (self->priv->show_groups)
799     {
800       const gchar *group_name;
801       EmpathyRosterGroup *group;
802
803       group_name = empathy_roster_contact_get_group (contact);
804       group = lookup_roster_group (self, group_name);
805
806       if (!tp_strdiff (group_name, TOP_GROUP) &&
807           contact_is_favourite (contact))
808         displayed = TRUE;
809
810       if (group != NULL)
811         {
812           /* When searching, always display even if the group is closed */
813           if (!is_searching (self) &&
814               !gtk_expander_get_expanded (GTK_EXPANDER (group)))
815             displayed = FALSE;
816         }
817     }
818
819   if (displayed)
820     {
821       add_to_displayed (self, contact);
822     }
823   else
824     {
825       remove_from_displayed (self, contact);
826     }
827
828   return displayed;
829 }
830
831 static gboolean
832 filter_group (EmpathyRosterView *self,
833     EmpathyRosterGroup *group)
834 {
835   GList *widgets, *l;
836
837   /* Display the group if it contains at least one displayed contact */
838   widgets = empathy_roster_group_get_widgets (group);
839   for (l = widgets; l != NULL; l = g_list_next (l))
840     {
841       EmpathyRosterContact *contact = l->data;
842
843       if (contact_should_be_displayed (self, contact))
844         return TRUE;
845     }
846
847   return FALSE;
848 }
849
850 static gboolean
851 filter_list (GtkWidget *child,
852     gpointer user_data)
853 {
854   EmpathyRosterView *self = user_data;
855
856   if (EMPATHY_IS_ROSTER_CONTACT (child))
857     return filter_contact (self, EMPATHY_ROSTER_CONTACT (child));
858
859   else if (EMPATHY_IS_ROSTER_GROUP (child))
860     return filter_group (self, EMPATHY_ROSTER_GROUP (child));
861
862   g_return_val_if_reached (FALSE);
863 }
864
865 /* @list: GList of EmpathyRosterContact
866  *
867  * Returns: %TRUE if @list contains an EmpathyRosterContact associated with
868  * @individual */
869 static gboolean
870 individual_in_list (FolksIndividual *individual,
871     GList *list)
872 {
873   GList *l;
874
875   for (l = list; l != NULL; l = g_list_next (l))
876     {
877       EmpathyRosterContact *contact = l->data;
878
879       if (empathy_roster_contact_get_individual (contact) == individual)
880         return TRUE;
881     }
882
883   return FALSE;
884 }
885
886 static void
887 populate_view (EmpathyRosterView *self)
888 {
889   GList *individuals, *l;
890
891   individuals = empathy_individual_manager_get_members (self->priv->manager);
892   for (l = individuals; l != NULL; l = g_list_next (l))
893     {
894       FolksIndividual *individual = l->data;
895
896       individual_added (self, individual);
897     }
898
899   g_list_free (individuals);
900 }
901
902 static void
903 remove_from_group (EmpathyRosterView *self,
904     FolksIndividual *individual,
905     const gchar *group)
906 {
907   GHashTable *contacts;
908   GtkWidget *contact;
909   EmpathyRosterGroup *roster_group;
910
911   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
912   if (contacts == NULL)
913     return;
914
915   contact = g_hash_table_lookup (contacts, group);
916   if (contact == NULL)
917     return;
918
919   g_hash_table_remove (contacts, group);
920
921   if (g_hash_table_size (contacts) == 0)
922     {
923       add_to_group (self, individual, UNGROUPED);
924     }
925
926   roster_group = lookup_roster_group (self, group);
927
928   if (roster_group != NULL)
929     {
930       update_group_widgets (self, roster_group,
931           EMPATHY_ROSTER_CONTACT (contact), FALSE);
932     }
933
934   gtk_container_remove (GTK_CONTAINER (self), contact);
935 }
936
937 static void
938 update_top_contacts (EmpathyRosterView *self)
939 {
940   GList *tops, *l;
941   GList *to_add = NULL, *to_remove = NULL;
942   EmpathyRosterGroup *group;
943
944   if (!self->priv->show_groups)
945     {
946       egg_list_box_resort (EGG_LIST_BOX (self));
947       return;
948     }
949
950   tops = empathy_individual_manager_get_top_individuals (self->priv->manager);
951
952   group = g_hash_table_lookup (self->priv->roster_groups, TOP_GROUP);
953   if (group == NULL)
954     {
955       to_add = g_list_copy (tops);
956     }
957   else
958     {
959       GList *contacts;
960
961       contacts = empathy_roster_group_get_widgets (group);
962
963       /* Check which EmpathyRosterContact have to be removed */
964       for (l = contacts; l != NULL; l = g_list_next (l))
965         {
966           EmpathyRosterContact *contact = l->data;
967           FolksIndividual *individual;
968
969           if (contact_is_favourite (contact))
970             continue;
971
972           individual = empathy_roster_contact_get_individual (contact);
973
974           if (g_list_find (tops, individual) == NULL)
975             to_remove = g_list_prepend (to_remove, individual);
976         }
977
978       /* Check which EmpathyRosterContact have to be added */
979       for (l = tops; l != NULL; l = g_list_next (l))
980         {
981           FolksIndividual *individual = l->data;
982
983           if (!individual_in_list (individual, contacts))
984             to_add = g_list_prepend (to_add, individual);
985         }
986     }
987
988   for (l = to_add; l != NULL; l = g_list_next (l))
989     add_to_group (self, l->data, TOP_GROUP);
990
991   for (l = to_remove; l != NULL; l = g_list_next (l))
992     remove_from_group (self, l->data, TOP_GROUP);
993
994   g_list_free (to_add);
995   g_list_free (to_remove);
996 }
997
998 static void
999 groups_changed_cb (EmpathyIndividualManager *manager,
1000     FolksIndividual *individual,
1001     gchar *group,
1002     gboolean is_member,
1003     EmpathyRosterView *self)
1004 {
1005   if (!self->priv->show_groups)
1006     return;
1007
1008   if (is_member)
1009     {
1010       add_to_group (self, individual, group);
1011     }
1012   else
1013     {
1014       remove_from_group (self, individual, group);
1015     }
1016 }
1017
1018 static void
1019 top_individuals_changed_cb (EmpathyIndividualManager *manager,
1020     GParamSpec *spec,
1021     EmpathyRosterView *self)
1022 {
1023   update_top_contacts (self);
1024 }
1025
1026 static void
1027 favourites_changed_cb (EmpathyIndividualManager *manager,
1028     FolksIndividual *individual,
1029     gboolean favourite,
1030     EmpathyRosterView *self)
1031 {
1032   GHashTable *contacts;
1033
1034   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
1035   if (contacts == NULL)
1036     return;
1037
1038   if (self->priv->show_groups)
1039     {
1040       if (favourite)
1041         add_to_group (self, individual, TOP_GROUP);
1042       else
1043         remove_from_group (self, individual, TOP_GROUP);
1044     }
1045   else
1046     {
1047       GtkWidget *contact;
1048
1049       contact = g_hash_table_lookup (contacts, NO_GROUP);
1050       if (contact == NULL)
1051         return;
1052
1053       egg_list_box_child_changed (EGG_LIST_BOX (self), contact);
1054     }
1055 }
1056
1057 static void
1058 empathy_roster_view_constructed (GObject *object)
1059 {
1060   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
1061   void (*chain_up) (GObject *) =
1062       ((GObjectClass *) empathy_roster_view_parent_class)->constructed;
1063
1064   if (chain_up != NULL)
1065     chain_up (object);
1066
1067   g_assert (EMPATHY_IS_INDIVIDUAL_MANAGER (self->priv->manager));
1068
1069   populate_view (self);
1070
1071   tp_g_signal_connect_object (self->priv->manager, "members-changed",
1072       G_CALLBACK (members_changed_cb), self, 0);
1073   tp_g_signal_connect_object (self->priv->manager, "groups-changed",
1074       G_CALLBACK (groups_changed_cb), self, 0);
1075   tp_g_signal_connect_object (self->priv->manager, "notify::top-individuals",
1076       G_CALLBACK (top_individuals_changed_cb), self, 0);
1077   tp_g_signal_connect_object (self->priv->manager, "notify::favourites-changed",
1078       G_CALLBACK (favourites_changed_cb), self, 0);
1079
1080   egg_list_box_set_sort_func (EGG_LIST_BOX (self),
1081       roster_view_sort, self, NULL);
1082
1083   egg_list_box_set_separator_funcs (EGG_LIST_BOX (self), update_separator,
1084       self, NULL);
1085
1086   egg_list_box_set_filter_func (EGG_LIST_BOX (self), filter_list, self, NULL);
1087
1088   egg_list_box_set_activate_on_single_click (EGG_LIST_BOX (self), FALSE);
1089 }
1090
1091 static void
1092 empathy_roster_view_dispose (GObject *object)
1093 {
1094   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
1095   void (*chain_up) (GObject *) =
1096       ((GObjectClass *) empathy_roster_view_parent_class)->dispose;
1097
1098   stop_flashing (self);
1099
1100   empathy_roster_view_set_live_search (self, NULL);
1101   g_clear_object (&self->priv->manager);
1102
1103   if (chain_up != NULL)
1104     chain_up (object);
1105 }
1106
1107 static void
1108 empathy_roster_view_finalize (GObject *object)
1109 {
1110   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
1111   void (*chain_up) (GObject *) =
1112       ((GObjectClass *) empathy_roster_view_parent_class)->finalize;
1113
1114   g_hash_table_unref (self->priv->roster_contacts);
1115   g_hash_table_unref (self->priv->roster_groups);
1116   g_hash_table_unref (self->priv->displayed_contacts);
1117   g_queue_free_full (self->priv->events, event_free);
1118
1119   if (chain_up != NULL)
1120     chain_up (object);
1121 }
1122
1123 static void
1124 empathy_roster_view_child_activated (EggListBox *box,
1125     GtkWidget *child)
1126 {
1127   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (box);
1128   EmpathyRosterContact *contact;
1129   FolksIndividual *individual;
1130   GList *l;
1131
1132   if (!EMPATHY_IS_ROSTER_CONTACT (child))
1133     return;
1134
1135   contact = EMPATHY_ROSTER_CONTACT (child);
1136   individual = empathy_roster_contact_get_individual (contact);
1137
1138   /* Activate the oldest event associated with this contact, if any */
1139   for (l = g_queue_peek_tail_link (self->priv->events); l != NULL;
1140       l = g_list_previous (l))
1141     {
1142       Event *event = l->data;
1143
1144       if (event->individual == individual)
1145         {
1146           g_signal_emit (box, signals[SIG_EVENT_ACTIVATED], 0, individual,
1147               event->user_data);
1148           return;
1149         }
1150     }
1151
1152   g_signal_emit (box, signals[SIG_INDIVIDUAL_ACTIVATED], 0, individual);
1153 }
1154
1155 static void
1156 fire_popup_individual_menu (EmpathyRosterView *self,
1157     GtkWidget *child,
1158     guint button,
1159     guint time)
1160 {
1161   EmpathyRosterContact *contact;
1162   FolksIndividual *individual;
1163
1164   if (!EMPATHY_IS_ROSTER_CONTACT (child))
1165     return;
1166
1167   contact = EMPATHY_ROSTER_CONTACT (child);
1168   individual = empathy_roster_contact_get_individual (contact);
1169
1170   g_signal_emit (self, signals[SIG_POPUP_INDIVIDUAL_MENU], 0,
1171       individual, button, time);
1172 }
1173
1174 static gboolean
1175 empathy_roster_view_button_press_event (GtkWidget *widget,
1176     GdkEventButton *event)
1177 {
1178   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (widget);
1179   gboolean (*chain_up) (GtkWidget *, GdkEventButton *) =
1180       ((GtkWidgetClass *) empathy_roster_view_parent_class)->button_press_event;
1181
1182   if (event->button == 3)
1183     {
1184       GtkWidget *child;
1185
1186       child = egg_list_box_get_child_at_y (EGG_LIST_BOX (self), event->y);
1187
1188       if (child != NULL)
1189         {
1190           egg_list_box_select_child (EGG_LIST_BOX (self), child);
1191
1192           fire_popup_individual_menu (self, child, event->button, event->time);
1193         }
1194     }
1195
1196   return chain_up (widget, event);
1197 }
1198
1199 static gboolean
1200 empathy_roster_view_key_press_event (GtkWidget *widget,
1201     GdkEventKey *event)
1202 {
1203   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (widget);
1204   gboolean (*chain_up) (GtkWidget *, GdkEventKey *) =
1205       ((GtkWidgetClass *) empathy_roster_view_parent_class)->key_press_event;
1206
1207   if (event->keyval == GDK_KEY_Menu)
1208     {
1209       GtkWidget *child;
1210
1211       child = egg_list_box_get_selected_child (EGG_LIST_BOX (self));
1212
1213       if (child != NULL)
1214         fire_popup_individual_menu (self, child, 0, event->time);
1215     }
1216
1217   return chain_up (widget, event);
1218 }
1219
1220 static gboolean
1221 empathy_roster_view_query_tooltip (GtkWidget *widget,
1222     gint x,
1223     gint y,
1224     gboolean keyboard_mode,
1225     GtkTooltip *tooltip)
1226 {
1227   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (widget);
1228   GtkWidget *child;
1229   EmpathyRosterContact *contact;
1230   FolksIndividual *individual;
1231   gboolean result;
1232
1233   child = egg_list_box_get_child_at_y (EGG_LIST_BOX (self), y);
1234   if (!EMPATHY_IS_ROSTER_CONTACT (child))
1235     return FALSE;
1236
1237   contact = EMPATHY_ROSTER_CONTACT (child);
1238   individual = empathy_roster_contact_get_individual (contact);
1239
1240   g_signal_emit (self, signals[SIG_INDIVIDUAL_TOOLTIP], 0,
1241       individual, keyboard_mode, tooltip, &result);
1242
1243   if (result)
1244     {
1245       GtkAllocation allocation;
1246
1247       gtk_widget_get_allocation (child, &allocation);
1248       gtk_tooltip_set_tip_area (tooltip, (GdkRectangle *) &allocation);
1249     }
1250
1251   return result;
1252 }
1253
1254 static void
1255 empathy_roster_view_remove (GtkContainer *container,
1256     GtkWidget *widget)
1257 {
1258   EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (container);
1259   void (*chain_up) (GtkContainer *, GtkWidget *) =
1260       ((GtkContainerClass *) empathy_roster_view_parent_class)->remove;
1261
1262   chain_up (container, widget);
1263
1264   if (EMPATHY_IS_ROSTER_CONTACT (widget))
1265     remove_from_displayed (self, (EmpathyRosterContact *) widget);
1266 }
1267
1268 static void
1269 empathy_roster_view_class_init (
1270     EmpathyRosterViewClass *klass)
1271 {
1272   GObjectClass *oclass = G_OBJECT_CLASS (klass);
1273   EggListBoxClass *box_class = EGG_LIST_BOX_CLASS (klass);
1274   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
1275   GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
1276   GParamSpec *spec;
1277
1278   oclass->get_property = empathy_roster_view_get_property;
1279   oclass->set_property = empathy_roster_view_set_property;
1280   oclass->constructed = empathy_roster_view_constructed;
1281   oclass->dispose = empathy_roster_view_dispose;
1282   oclass->finalize = empathy_roster_view_finalize;
1283
1284   widget_class->button_press_event = empathy_roster_view_button_press_event;
1285   widget_class->key_press_event = empathy_roster_view_key_press_event;
1286   widget_class->query_tooltip = empathy_roster_view_query_tooltip;
1287
1288   container_class->remove = empathy_roster_view_remove;
1289
1290   box_class->child_activated = empathy_roster_view_child_activated;
1291
1292   spec = g_param_spec_object ("manager", "Manager",
1293       "EmpathyIndividualManager",
1294       EMPATHY_TYPE_INDIVIDUAL_MANAGER,
1295       G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
1296   g_object_class_install_property (oclass, PROP_MANAGER, spec);
1297
1298   spec = g_param_spec_boolean ("show-offline", "Show Offline",
1299       "Show offline contacts",
1300       FALSE,
1301       G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
1302   g_object_class_install_property (oclass, PROP_SHOW_OFFLINE, spec);
1303
1304   spec = g_param_spec_boolean ("show-groups", "Show Groups",
1305       "Show groups",
1306       FALSE,
1307       G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
1308   g_object_class_install_property (oclass, PROP_SHOW_GROUPS, spec);
1309
1310   spec = g_param_spec_boolean ("empty", "Empty",
1311       "Is the view currently empty?",
1312       FALSE,
1313       G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
1314   g_object_class_install_property (oclass, PROP_EMPTY, spec);
1315
1316   signals[SIG_INDIVIDUAL_ACTIVATED] = g_signal_new ("individual-activated",
1317       G_OBJECT_CLASS_TYPE (klass),
1318       G_SIGNAL_RUN_LAST,
1319       0, NULL, NULL, NULL,
1320       G_TYPE_NONE,
1321       1, FOLKS_TYPE_INDIVIDUAL);
1322
1323   signals[SIG_POPUP_INDIVIDUAL_MENU] = g_signal_new ("popup-individual-menu",
1324       G_OBJECT_CLASS_TYPE (klass),
1325       G_SIGNAL_RUN_LAST,
1326       0, NULL, NULL, NULL,
1327       G_TYPE_NONE,
1328       3, FOLKS_TYPE_INDIVIDUAL, G_TYPE_UINT, G_TYPE_UINT);
1329
1330   signals[SIG_EVENT_ACTIVATED] = g_signal_new ("event-activated",
1331       G_OBJECT_CLASS_TYPE (klass),
1332       G_SIGNAL_RUN_LAST,
1333       0, NULL, NULL, NULL,
1334       G_TYPE_NONE,
1335       2, FOLKS_TYPE_INDIVIDUAL, G_TYPE_POINTER);
1336
1337   signals[SIG_INDIVIDUAL_TOOLTIP] = g_signal_new ("individual-tooltip",
1338       G_OBJECT_CLASS_TYPE (klass),
1339       G_SIGNAL_RUN_LAST,
1340       0, g_signal_accumulator_true_handled, NULL, NULL,
1341       G_TYPE_BOOLEAN,
1342       3, FOLKS_TYPE_INDIVIDUAL, G_TYPE_BOOLEAN, GTK_TYPE_TOOLTIP);
1343
1344   g_type_class_add_private (klass, sizeof (EmpathyRosterViewPriv));
1345 }
1346
1347 static void
1348 empathy_roster_view_init (EmpathyRosterView *self)
1349 {
1350   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1351       EMPATHY_TYPE_ROSTER_VIEW, EmpathyRosterViewPriv);
1352
1353   self->priv->roster_contacts = g_hash_table_new_full (NULL, NULL,
1354       NULL, (GDestroyNotify) g_hash_table_unref);
1355   self->priv->roster_groups = g_hash_table_new_full (g_str_hash, g_str_equal,
1356       g_free, NULL);
1357   self->priv->displayed_contacts = g_hash_table_new (NULL, NULL);
1358
1359   self->priv->events = g_queue_new ();
1360
1361   self->priv->empty = TRUE;
1362 }
1363
1364 GtkWidget *
1365 empathy_roster_view_new (EmpathyIndividualManager *manager)
1366 {
1367   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_MANAGER (manager), NULL);
1368
1369   return g_object_new (EMPATHY_TYPE_ROSTER_VIEW,
1370       "manager", manager,
1371       NULL);
1372 }
1373
1374 EmpathyIndividualManager *
1375 empathy_roster_view_get_manager (EmpathyRosterView *self)
1376 {
1377   return self->priv->manager;
1378 }
1379
1380 void
1381 empathy_roster_view_show_offline (EmpathyRosterView *self,
1382     gboolean show)
1383 {
1384   if (self->priv->show_offline == show)
1385     return;
1386
1387   self->priv->show_offline = show;
1388   egg_list_box_refilter (EGG_LIST_BOX (self));
1389
1390   g_object_notify (G_OBJECT (self), "show-offline");
1391 }
1392
1393 static void
1394 clear_view (EmpathyRosterView *self)
1395 {
1396   gtk_container_foreach (GTK_CONTAINER (self),
1397       (GtkCallback) gtk_widget_destroy, NULL);
1398
1399   g_hash_table_remove_all (self->priv->roster_contacts);
1400   g_hash_table_remove_all (self->priv->roster_groups);
1401   g_hash_table_remove_all (self->priv->displayed_contacts);
1402 }
1403
1404 void
1405 empathy_roster_view_show_groups (EmpathyRosterView *self,
1406     gboolean show)
1407 {
1408   if (self->priv->show_groups == show)
1409     return;
1410
1411   self->priv->show_groups = show;
1412
1413   /* TODO: block sort/filter? */
1414   clear_view (self);
1415   populate_view (self);
1416
1417   g_object_notify (G_OBJECT (self), "show-groups");
1418 }
1419
1420 static void
1421 select_first_contact (EmpathyRosterView *self)
1422 {
1423   GList *children, *l;
1424
1425   children = gtk_container_get_children (GTK_CONTAINER (self));
1426   for (l = children; l != NULL; l = g_list_next (l))
1427     {
1428       GtkWidget *child = l->data;
1429
1430       if (!gtk_widget_get_child_visible (child))
1431         continue;
1432
1433       if (!EMPATHY_IS_ROSTER_CONTACT (child))
1434         continue;
1435
1436       egg_list_box_select_child (EGG_LIST_BOX (self), child);
1437       break;
1438     }
1439
1440   g_list_free (children);
1441 }
1442
1443 static void
1444 search_text_notify_cb (EmpathyLiveSearch *search,
1445     GParamSpec *pspec,
1446     EmpathyRosterView *self)
1447 {
1448   egg_list_box_refilter (EGG_LIST_BOX (self));
1449
1450   select_first_contact (self);
1451 }
1452
1453 static void
1454 search_activate_cb (GtkWidget *search,
1455   EmpathyRosterView *self)
1456 {
1457   EggListBox *box = EGG_LIST_BOX (self);
1458   GtkWidget *child;
1459
1460   child = egg_list_box_get_selected_child (box);
1461   if (child == NULL)
1462     return;
1463
1464   empathy_roster_view_child_activated (box, child);
1465 }
1466
1467 void
1468 empathy_roster_view_set_live_search (EmpathyRosterView *self,
1469     EmpathyLiveSearch *search)
1470 {
1471   if (self->priv->search != NULL)
1472     {
1473       g_signal_handlers_disconnect_by_func (self->priv->search,
1474           search_text_notify_cb, self);
1475       g_signal_handlers_disconnect_by_func (self->priv->search,
1476           search_activate_cb, self);
1477
1478       g_clear_object (&self->priv->search);
1479     }
1480
1481   if (search == NULL)
1482     return;
1483
1484   self->priv->search = g_object_ref (search);
1485
1486   g_signal_connect (self->priv->search, "notify::text",
1487       G_CALLBACK (search_text_notify_cb), self);
1488   g_signal_connect (self->priv->search, "activate",
1489       G_CALLBACK (search_activate_cb), self);
1490 }
1491
1492 gboolean
1493 empathy_roster_view_is_empty (EmpathyRosterView *self)
1494 {
1495   return self->priv->empty;
1496 }
1497
1498 gboolean
1499 empathy_roster_view_is_searching (EmpathyRosterView *self)
1500 {
1501   return (self->priv->search != NULL &&
1502       gtk_widget_get_visible (GTK_WIDGET (self->priv->search)));
1503 }
1504
1505 /* Don't use EmpathyEvent as I prefer to keep this object not too specific to
1506  * Empathy's internals. */
1507 guint
1508 empathy_roster_view_add_event (EmpathyRosterView *self,
1509     FolksIndividual *individual,
1510     const gchar *icon,
1511     gpointer user_data)
1512 {
1513   GHashTable *contacts;
1514
1515   contacts = g_hash_table_lookup (self->priv->roster_contacts, individual);
1516   if (contacts == NULL)
1517     return 0;
1518
1519   self->priv->last_event_id++;
1520
1521   g_queue_push_head (self->priv->events,
1522       event_new (self->priv->last_event_id, individual, icon, user_data));
1523
1524   start_flashing (self);
1525
1526   return self->priv->last_event_id;
1527 }
1528
1529 void
1530 empathy_roster_view_remove_event (EmpathyRosterView *self,
1531     guint event_id)
1532 {
1533   GList *l;
1534
1535   for (l = g_queue_peek_head_link (self->priv->events); l != NULL;
1536       l = g_list_next (l))
1537     {
1538       Event *event = l->data;
1539
1540       if (event->id == event_id)
1541         {
1542           remove_event (self, event);
1543           return;
1544         }
1545     }
1546 }