]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-list-store.c
Fix bug #525084.
[empathy.git] / libempathy-gtk / empathy-contact-list-store.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  */
25
26 #include "config.h"
27
28 #include <string.h>
29
30 #include <glib.h>
31 #include <gtk/gtk.h>
32
33 #include <telepathy-glib/util.h>
34 #include <libempathy/empathy-debug.h>
35
36 #include "empathy-contact-list-store.h"
37 #include "empathy-ui-utils.h"
38 #include "empathy-gtk-enum-types.h"
39
40 #define DEBUG_DOMAIN "ContactListStore"
41
42 /* Active users are those which have recently changed state
43  * (e.g. online, offline or from normal to a busy state).
44  */
45
46 /* Time in seconds user is shown as active */
47 #define ACTIVE_USER_SHOW_TIME 7
48
49 /* Time in seconds after connecting which we wait before active users are enabled */
50 #define ACTIVE_USER_WAIT_TO_ENABLE_TIME 5
51
52 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CONTACT_LIST_STORE, EmpathyContactListStorePriv))
53
54 typedef struct {
55         EmpathyContactList         *list;
56         gboolean                    show_offline;
57         gboolean                    show_avatars;
58         gboolean                    show_groups;
59         gboolean                    is_compact;
60         gboolean                    show_active;
61         EmpathyContactListStoreSort sort_criterium;
62         guint                       inhibit_active;
63 } EmpathyContactListStorePriv;
64
65 typedef struct {
66         GtkTreeIter  iter;
67         const gchar *name;
68         gboolean     found;
69 } FindGroup;
70
71 typedef struct {
72         EmpathyContact *contact;
73         gboolean       found;
74         GList         *iters;
75 } FindContact;
76
77 typedef struct {
78         EmpathyContactListStore *store;
79         EmpathyContact          *contact;
80         gboolean                remove;
81 } ShowActiveData;
82
83 static void             empathy_contact_list_store_class_init         (EmpathyContactListStoreClass *klass);
84 static void             empathy_contact_list_store_init               (EmpathyContactListStore      *list);
85 static void             contact_list_store_finalize                  (GObject                       *object);
86 static void             contact_list_store_get_property              (GObject                       *object,
87                                                                       guint                          param_id,
88                                                                       GValue                        *value,
89                                                                       GParamSpec                    *pspec);
90 static void             contact_list_store_set_property              (GObject                       *object,
91                                                                       guint                          param_id,
92                                                                       const GValue                  *value,
93                                                                       GParamSpec                    *pspec);
94 static gboolean         contact_list_store_finalize_foreach          (GtkTreeModel                  *model,
95                                                                       GtkTreePath                   *path,
96                                                                       GtkTreeIter                   *iter,
97                                                                       gpointer                       user_data);
98 static void             contact_list_store_setup                     (EmpathyContactListStore       *store);
99 static gboolean         contact_list_store_inibit_active_cb          (EmpathyContactListStore       *store);
100 static void             contact_list_store_members_changed_cb        (EmpathyContactList            *list_iface,
101                                                                       EmpathyContact                *contact,
102                                                                       EmpathyContact                *actor,
103                                                                       guint                          reason,
104                                                                       gchar                         *message,
105                                                                       gboolean                       is_member,
106                                                                       EmpathyContactListStore       *store);
107 static void             contact_list_store_groups_changed_cb         (EmpathyContactList            *list_iface,
108                                                                       EmpathyContact                *contact,
109                                                                       gchar                         *group,
110                                                                       gboolean                       is_member,
111                                                                       EmpathyContactListStore       *store);
112 static void             contact_list_store_add_contact               (EmpathyContactListStore       *store,
113                                                                       EmpathyContact                *contact);
114 static void             contact_list_store_remove_contact            (EmpathyContactListStore       *store,
115                                                                       EmpathyContact                *contact);
116 static void             contact_list_store_contact_update            (EmpathyContactListStore       *store,
117                                                                       EmpathyContact                *contact);
118 static void             contact_list_store_contact_updated_cb        (EmpathyContact                *contact,
119                                                                       GParamSpec                    *param,
120                                                                       EmpathyContactListStore       *store);
121 static void             contact_list_store_contact_set_active        (EmpathyContactListStore       *store,
122                                                                       EmpathyContact                *contact,
123                                                                       gboolean                       active,
124                                                                       gboolean                       set_changed);
125 static ShowActiveData * contact_list_store_contact_active_new        (EmpathyContactListStore       *store,
126                                                                       EmpathyContact                *contact,
127                                                                       gboolean                       remove);
128 static void             contact_list_store_contact_active_free       (ShowActiveData                *data);
129 static gboolean         contact_list_store_contact_active_cb         (ShowActiveData                *data);
130 static gboolean         contact_list_store_get_group_foreach         (GtkTreeModel                  *model,
131                                                                       GtkTreePath                   *path,
132                                                                       GtkTreeIter                   *iter,
133                                                                       FindGroup                     *fg);
134 static void             contact_list_store_get_group                 (EmpathyContactListStore       *store,
135                                                                       const gchar                   *name,
136                                                                       GtkTreeIter                   *iter_group_to_set,
137                                                                       GtkTreeIter                   *iter_separator_to_set,
138                                                                       gboolean                      *created);
139 static gint             contact_list_store_state_sort_func           (GtkTreeModel                  *model,
140                                                                       GtkTreeIter                   *iter_a,
141                                                                       GtkTreeIter                   *iter_b,
142                                                                       gpointer                       user_data);
143 static gint             contact_list_store_name_sort_func            (GtkTreeModel                  *model,
144                                                                       GtkTreeIter                   *iter_a,
145                                                                       GtkTreeIter                   *iter_b,
146                                                                       gpointer                       user_data);
147 static gboolean         contact_list_store_find_contact_foreach      (GtkTreeModel                  *model,
148                                                                       GtkTreePath                   *path,
149                                                                       GtkTreeIter                   *iter,
150                                                                       FindContact                   *fc);
151 static GList *          contact_list_store_find_contact              (EmpathyContactListStore       *store,
152                                                                       EmpathyContact                *contact);
153 static gboolean         contact_list_store_update_list_mode_foreach  (GtkTreeModel                  *model,
154                                                                       GtkTreePath                   *path,
155                                                                       GtkTreeIter                   *iter,
156                                                                       EmpathyContactListStore       *store);
157
158 enum {
159         PROP_0,
160         PROP_CONTACT_LIST,
161         PROP_SHOW_OFFLINE,
162         PROP_SHOW_AVATARS,
163         PROP_SHOW_GROUPS,
164         PROP_IS_COMPACT,
165         PROP_SORT_CRITERIUM
166 };
167
168 G_DEFINE_TYPE (EmpathyContactListStore, empathy_contact_list_store, GTK_TYPE_TREE_STORE);
169
170
171 static gboolean
172 contact_list_store_iface_setup (gpointer user_data)
173 {
174         EmpathyContactListStore     *store = user_data;
175         EmpathyContactListStorePriv *priv = GET_PRIV (store);
176         GList                       *contacts, *l;
177
178         /* Signal connection. */
179         g_signal_connect (priv->list,
180                           "members-changed",
181                           G_CALLBACK (contact_list_store_members_changed_cb),
182                           store);
183         g_signal_connect (priv->list,
184                           "groups-changed",
185                           G_CALLBACK (contact_list_store_groups_changed_cb),
186                           store);
187
188         /* Add contacts already created. */
189         contacts = empathy_contact_list_get_members (priv->list);
190         for (l = contacts; l; l = l->next) {
191                 contact_list_store_members_changed_cb (priv->list, l->data,
192                                                        NULL, 0, NULL,
193                                                        TRUE,
194                                                        store);
195
196                 g_object_unref (l->data);
197         }
198         g_list_free (contacts);
199
200         return FALSE;
201 }
202
203
204 static void
205 contact_list_store_set_contact_list (EmpathyContactListStore *store,
206                                      EmpathyContactList      *list_iface)
207 {
208         EmpathyContactListStorePriv *priv = GET_PRIV (store);
209
210         priv->list = g_object_ref (list_iface);
211
212         /* Let a chance to have all properties set before populating */
213         g_idle_add (contact_list_store_iface_setup, store);
214 }
215
216 static void
217 empathy_contact_list_store_class_init (EmpathyContactListStoreClass *klass)
218 {
219         GObjectClass *object_class = G_OBJECT_CLASS (klass);
220
221         object_class->finalize = contact_list_store_finalize;
222         object_class->get_property = contact_list_store_get_property;
223         object_class->set_property = contact_list_store_set_property;
224
225         g_object_class_install_property (object_class,
226                                          PROP_CONTACT_LIST,
227                                          g_param_spec_object ("contact-list",
228                                                               "The contact list iface",
229                                                               "The contact list iface",
230                                                               EMPATHY_TYPE_CONTACT_LIST,
231                                                               G_PARAM_CONSTRUCT_ONLY |
232                                                               G_PARAM_READWRITE));
233         g_object_class_install_property (object_class,
234                                          PROP_SHOW_OFFLINE,
235                                          g_param_spec_boolean ("show-offline",
236                                                                "Show Offline",
237                                                                "Whether contact list should display "
238                                                                "offline contacts",
239                                                                FALSE,
240                                                                G_PARAM_READWRITE));
241          g_object_class_install_property (object_class,
242                                           PROP_SHOW_AVATARS,
243                                           g_param_spec_boolean ("show-avatars",
244                                                                 "Show Avatars",
245                                                                 "Whether contact list should display "
246                                                                 "avatars for contacts",
247                                                                 TRUE,
248                                                                 G_PARAM_READWRITE));
249          g_object_class_install_property (object_class,
250                                           PROP_SHOW_GROUPS,
251                                           g_param_spec_boolean ("show-groups",
252                                                                 "Show Groups",
253                                                                 "Whether contact list should display "
254                                                                 "contact groups",
255                                                                 TRUE,
256                                                                 G_PARAM_READWRITE));
257         g_object_class_install_property (object_class,
258                                          PROP_IS_COMPACT,
259                                          g_param_spec_boolean ("is-compact",
260                                                                "Is Compact",
261                                                                "Whether the contact list is in compact mode or not",
262                                                                FALSE,
263                                                                G_PARAM_READWRITE));
264
265         g_object_class_install_property (object_class,
266                                          PROP_SORT_CRITERIUM,
267                                          g_param_spec_enum ("sort-criterium",
268                                                             "Sort citerium",
269                                                             "The sort criterium to use for sorting the contact list",
270                                                             EMPATHY_TYPE_CONTACT_LIST_STORE_SORT,
271                                                             EMPATHY_CONTACT_LIST_STORE_SORT_NAME,
272                                                             G_PARAM_READWRITE));
273
274         g_type_class_add_private (object_class, sizeof (EmpathyContactListStorePriv));
275 }
276
277 static void
278 empathy_contact_list_store_init (EmpathyContactListStore *store)
279 {
280         EmpathyContactListStorePriv *priv;
281
282         priv = GET_PRIV (store);
283
284         priv->show_avatars = TRUE;
285         priv->show_groups = TRUE;
286         priv->inhibit_active = g_timeout_add_seconds (ACTIVE_USER_WAIT_TO_ENABLE_TIME,
287                                                       (GSourceFunc) contact_list_store_inibit_active_cb,
288                                                       store);
289         contact_list_store_setup (store);
290 }
291
292 static void
293 contact_list_store_finalize (GObject *object)
294 {
295         EmpathyContactListStorePriv *priv;
296
297         priv = GET_PRIV (object);
298
299         gtk_tree_model_foreach (GTK_TREE_MODEL (object),
300                                 (GtkTreeModelForeachFunc) contact_list_store_finalize_foreach,
301                                 object);
302
303         if (priv->list) {
304                 g_signal_handlers_disconnect_by_func (priv->list,
305                                                       G_CALLBACK (contact_list_store_members_changed_cb),
306                                                       object);
307                 g_signal_handlers_disconnect_by_func (priv->list,
308                                                       G_CALLBACK (contact_list_store_groups_changed_cb),
309                                                       object);
310                 g_object_unref (priv->list);
311         }
312
313         if (priv->inhibit_active) {
314                 g_source_remove (priv->inhibit_active);
315         }
316
317         G_OBJECT_CLASS (empathy_contact_list_store_parent_class)->finalize (object);
318 }
319
320 static void
321 contact_list_store_get_property (GObject    *object,
322                                  guint       param_id,
323                                  GValue     *value,
324                                  GParamSpec *pspec)
325 {
326         EmpathyContactListStorePriv *priv;
327
328         priv = GET_PRIV (object);
329
330         switch (param_id) {
331         case PROP_CONTACT_LIST:
332                 g_value_set_object (value, priv->list);
333                 break;
334         case PROP_SHOW_OFFLINE:
335                 g_value_set_boolean (value, priv->show_offline);
336                 break;
337         case PROP_SHOW_AVATARS:
338                 g_value_set_boolean (value, priv->show_avatars);
339                 break;
340         case PROP_SHOW_GROUPS:
341                 g_value_set_boolean (value, priv->show_groups);
342                 break;
343         case PROP_IS_COMPACT:
344                 g_value_set_boolean (value, priv->is_compact);
345                 break;
346         case PROP_SORT_CRITERIUM:
347                 g_value_set_enum (value, priv->sort_criterium);
348                 break;
349         default:
350                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
351                 break;
352         };
353 }
354
355 static void
356 contact_list_store_set_property (GObject      *object,
357                                  guint         param_id,
358                                  const GValue *value,
359                                  GParamSpec   *pspec)
360 {
361         EmpathyContactListStorePriv *priv;
362
363         priv = GET_PRIV (object);
364
365         switch (param_id) {
366         case PROP_CONTACT_LIST:
367                 contact_list_store_set_contact_list (EMPATHY_CONTACT_LIST_STORE (object),
368                                                      g_value_get_object (value));
369                 break;
370         case PROP_SHOW_OFFLINE:
371                 empathy_contact_list_store_set_show_offline (EMPATHY_CONTACT_LIST_STORE (object),
372                                                             g_value_get_boolean (value));
373                 break;
374         case PROP_SHOW_AVATARS:
375                 empathy_contact_list_store_set_show_avatars (EMPATHY_CONTACT_LIST_STORE (object),
376                                                             g_value_get_boolean (value));
377                 break;
378         case PROP_SHOW_GROUPS:
379                 empathy_contact_list_store_set_show_groups (EMPATHY_CONTACT_LIST_STORE (object),
380                                                             g_value_get_boolean (value));
381                 break;
382         case PROP_IS_COMPACT:
383                 empathy_contact_list_store_set_is_compact (EMPATHY_CONTACT_LIST_STORE (object),
384                                                           g_value_get_boolean (value));
385                 break;
386         case PROP_SORT_CRITERIUM:
387                 empathy_contact_list_store_set_sort_criterium (EMPATHY_CONTACT_LIST_STORE (object),
388                                                               g_value_get_enum (value));
389                 break;
390         default:
391                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
392                 break;
393         };
394 }
395
396 EmpathyContactListStore *
397 empathy_contact_list_store_new (EmpathyContactList *list_iface)
398 {
399         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST (list_iface), NULL);
400
401         return g_object_new (EMPATHY_TYPE_CONTACT_LIST_STORE,
402                              "contact-list", list_iface,
403                              NULL);
404 }
405
406 EmpathyContactList *
407 empathy_contact_list_store_get_list_iface (EmpathyContactListStore *store)
408 {
409         EmpathyContactListStorePriv *priv;
410
411         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), FALSE);
412
413         priv = GET_PRIV (store);
414
415         return priv->list;
416 }
417
418 gboolean
419 empathy_contact_list_store_get_show_offline (EmpathyContactListStore *store)
420 {
421         EmpathyContactListStorePriv *priv;
422
423         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), FALSE);
424
425         priv = GET_PRIV (store);
426
427         return priv->show_offline;
428 }
429
430 void
431 empathy_contact_list_store_set_show_offline (EmpathyContactListStore *store,
432                                             gboolean                show_offline)
433 {
434         EmpathyContactListStorePriv *priv;
435         GList                      *contacts, *l;
436         gboolean                    show_active;
437
438         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store));
439
440         priv = GET_PRIV (store);
441
442         priv->show_offline = show_offline;
443         show_active = priv->show_active;
444
445         /* Disable temporarily. */
446         priv->show_active = FALSE;
447
448         contacts = empathy_contact_list_get_members (priv->list);
449         for (l = contacts; l; l = l->next) {
450                 contact_list_store_contact_update (store, l->data);
451
452                 g_object_unref (l->data);
453         }
454         g_list_free (contacts);
455
456         /* Restore to original setting. */
457         priv->show_active = show_active;
458
459         g_object_notify (G_OBJECT (store), "show-offline");
460 }
461
462 gboolean
463 empathy_contact_list_store_get_show_avatars (EmpathyContactListStore *store)
464 {
465         EmpathyContactListStorePriv *priv;
466
467         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), TRUE);
468
469         priv = GET_PRIV (store);
470
471         return priv->show_avatars;
472 }
473
474 void
475 empathy_contact_list_store_set_show_avatars (EmpathyContactListStore *store,
476                                             gboolean                show_avatars)
477 {
478         EmpathyContactListStorePriv *priv;
479         GtkTreeModel               *model;
480
481         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store));
482
483         priv = GET_PRIV (store);
484
485         priv->show_avatars = show_avatars;
486
487         model = GTK_TREE_MODEL (store);
488
489         gtk_tree_model_foreach (model,
490                                 (GtkTreeModelForeachFunc)
491                                 contact_list_store_update_list_mode_foreach,
492                                 store);
493
494         g_object_notify (G_OBJECT (store), "show-avatars");
495 }
496
497 gboolean
498 empathy_contact_list_store_get_show_groups (EmpathyContactListStore *store)
499 {
500         EmpathyContactListStorePriv *priv;
501
502         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), TRUE);
503
504         priv = GET_PRIV (store);
505
506         return priv->show_groups;
507 }
508
509 void
510 empathy_contact_list_store_set_show_groups (EmpathyContactListStore *store,
511                                             gboolean                 show_groups)
512 {
513         EmpathyContactListStorePriv *priv;
514         GList                       *contacts, *l;
515
516         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store));
517
518         priv = GET_PRIV (store);
519
520         if (priv->show_groups == show_groups) {
521                 return;
522         }
523
524         priv->show_groups = show_groups;
525
526         /* Remove all contacts and add them back, not optimized but that's the
527          * easy way :) */
528         gtk_tree_store_clear (GTK_TREE_STORE (store));
529         contacts = empathy_contact_list_get_members (priv->list);
530         for (l = contacts; l; l = l->next) {
531                 contact_list_store_members_changed_cb (priv->list, l->data,
532                                                        NULL, 0, NULL,
533                                                        TRUE,
534                                                        store);
535
536                 g_object_unref (l->data);
537         }
538         g_list_free (contacts);
539
540         g_object_notify (G_OBJECT (store), "show-groups");
541 }
542
543 gboolean
544 empathy_contact_list_store_get_is_compact (EmpathyContactListStore *store)
545 {
546         EmpathyContactListStorePriv *priv;
547
548         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), TRUE);
549
550         priv = GET_PRIV (store);
551
552         return priv->is_compact;
553 }
554
555 void
556 empathy_contact_list_store_set_is_compact (EmpathyContactListStore *store,
557                                           gboolean                is_compact)
558 {
559         EmpathyContactListStorePriv *priv;
560         GtkTreeModel               *model;
561
562         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store));
563
564         priv = GET_PRIV (store);
565
566         priv->is_compact = is_compact;
567
568         model = GTK_TREE_MODEL (store);
569
570         gtk_tree_model_foreach (model,
571                                 (GtkTreeModelForeachFunc)
572                                 contact_list_store_update_list_mode_foreach,
573                                 store);
574
575         g_object_notify (G_OBJECT (store), "is-compact");
576 }
577
578 EmpathyContactListStoreSort
579 empathy_contact_list_store_get_sort_criterium (EmpathyContactListStore *store)
580 {
581         EmpathyContactListStorePriv *priv;
582
583         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), 0);
584
585         priv = GET_PRIV (store);
586
587         return priv->sort_criterium;
588 }
589
590 void
591 empathy_contact_list_store_set_sort_criterium (EmpathyContactListStore     *store,
592                                               EmpathyContactListStoreSort  sort_criterium)
593 {
594         EmpathyContactListStorePriv *priv;
595
596         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store));
597
598         priv = GET_PRIV (store);
599
600         priv->sort_criterium = sort_criterium;
601
602         switch (sort_criterium) {
603         case EMPATHY_CONTACT_LIST_STORE_SORT_STATE:
604                 gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
605                                                       EMPATHY_CONTACT_LIST_STORE_COL_STATUS,
606                                                       GTK_SORT_ASCENDING);
607                 break;
608                 
609         case EMPATHY_CONTACT_LIST_STORE_SORT_NAME:
610                 gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
611                                                       EMPATHY_CONTACT_LIST_STORE_COL_NAME,
612                                                       GTK_SORT_ASCENDING);
613                 break;
614         }
615
616         g_object_notify (G_OBJECT (store), "sort-criterium");
617 }
618
619 gboolean
620 empathy_contact_list_store_row_separator_func (GtkTreeModel *model,
621                                               GtkTreeIter  *iter,
622                                               gpointer      data)
623 {
624         gboolean is_separator = FALSE;
625
626         g_return_val_if_fail (GTK_IS_TREE_MODEL (model), FALSE);
627
628         gtk_tree_model_get (model, iter,
629                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator,
630                             -1);
631
632         return is_separator;
633 }
634
635 gchar *
636 empathy_contact_list_store_get_parent_group (GtkTreeModel *model,
637                                             GtkTreePath  *path,
638                                             gboolean     *path_is_group)
639 {
640         GtkTreeIter  parent_iter, iter;
641         gchar       *name = NULL;
642         gboolean     is_group;
643
644         g_return_val_if_fail (GTK_IS_TREE_MODEL (model), NULL);
645
646         if (path_is_group) {
647                 *path_is_group = FALSE;
648         }
649
650         if (!gtk_tree_model_get_iter (model, &iter, path)) {
651                 return NULL;
652         }
653
654         gtk_tree_model_get (model, &iter,
655                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
656                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
657                             -1);
658
659         if (!is_group) {
660                 g_free (name);
661                 name = NULL;
662
663                 if (!gtk_tree_model_iter_parent (model, &parent_iter, &iter)) {
664                         return NULL;
665                 }
666
667                 iter = parent_iter;
668
669                 gtk_tree_model_get (model, &iter,
670                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
671                                     EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
672                                     -1);
673                 if (!is_group) {
674                         g_free (name);
675                         return NULL;
676                 }
677         }
678
679         if (path_is_group) {
680                 *path_is_group = TRUE;
681         }
682
683         return name;
684 }
685
686 gboolean
687 empathy_contact_list_store_search_equal_func (GtkTreeModel *model,
688                                               gint          column,
689                                               const gchar  *key,
690                                               GtkTreeIter  *iter,
691                                               gpointer      search_data)
692 {
693         gchar    *name, *name_folded;
694         gchar    *key_folded;
695         gboolean  ret;
696
697         g_return_val_if_fail (GTK_IS_TREE_MODEL (model), FALSE);
698
699         if (!key) {
700                 return TRUE;
701         }
702
703         gtk_tree_model_get (model, iter,
704                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
705                             -1);
706
707         if (!name) {
708                 return TRUE;
709         }
710
711         name_folded = g_utf8_casefold (name, -1);
712         key_folded = g_utf8_casefold (key, -1);
713
714         if (name_folded && key_folded && 
715             strstr (name_folded, key_folded)) {
716                 ret = FALSE;
717         } else {
718                 ret = TRUE;
719         }
720
721         g_free (name);
722         g_free (name_folded);
723         g_free (key_folded);
724
725         return ret;
726 }
727
728 static gboolean
729 contact_list_store_finalize_foreach (GtkTreeModel *model,
730                                      GtkTreePath  *path,
731                                      GtkTreeIter  *iter,
732                                      gpointer      user_data)
733 {
734         EmpathyContactListStore *store = user_data;
735         EmpathyContact          *contact = NULL;
736
737         gtk_tree_model_get (GTK_TREE_MODEL (store), iter,
738                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
739                             -1);
740
741         if (contact) {
742                 g_signal_handlers_disconnect_by_func (contact,
743                                                       G_CALLBACK (contact_list_store_contact_updated_cb),
744                                                       store);
745         }
746
747         return FALSE;
748 }
749
750 static void
751 contact_list_store_setup (EmpathyContactListStore *store)
752 {
753         EmpathyContactListStorePriv *priv;
754         GType                       types[] = {G_TYPE_STRING,        /* Status icon-name */
755                                                GDK_TYPE_PIXBUF,      /* Avatar pixbuf */
756                                                G_TYPE_BOOLEAN,       /* Avatar pixbuf visible */
757                                                G_TYPE_STRING,        /* Name */
758                                                G_TYPE_STRING,        /* Status string */
759                                                G_TYPE_BOOLEAN,       /* Show status */
760                                                EMPATHY_TYPE_CONTACT, /* Contact type */
761                                                G_TYPE_BOOLEAN,       /* Is group */
762                                                G_TYPE_BOOLEAN,       /* Is active */
763                                                G_TYPE_BOOLEAN,       /* Is online */
764                                                G_TYPE_BOOLEAN,       /* Is separator */
765                                                G_TYPE_BOOLEAN};      /* Can VoIP */
766         
767         priv = GET_PRIV (store);
768
769         gtk_tree_store_set_column_types (GTK_TREE_STORE (store),
770                                          EMPATHY_CONTACT_LIST_STORE_COL_COUNT,
771                                          types);
772
773         /* Set up sorting */
774         gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (store),
775                                          EMPATHY_CONTACT_LIST_STORE_COL_NAME,
776                                          contact_list_store_name_sort_func,
777                                          store, NULL);
778         gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (store),
779                                          EMPATHY_CONTACT_LIST_STORE_COL_STATUS,
780                                          contact_list_store_state_sort_func,
781                                          store, NULL);
782
783         priv->sort_criterium = EMPATHY_CONTACT_LIST_STORE_SORT_NAME;
784         empathy_contact_list_store_set_sort_criterium (store, priv->sort_criterium);
785 }
786
787 static gboolean
788 contact_list_store_inibit_active_cb (EmpathyContactListStore *store)
789 {
790         EmpathyContactListStorePriv *priv;
791
792         priv = GET_PRIV (store);
793
794         priv->show_active = TRUE;
795         priv->inhibit_active = 0;
796
797         return FALSE;
798 }
799
800 static void
801 contact_list_store_members_changed_cb (EmpathyContactList      *list_iface,
802                                        EmpathyContact          *contact,
803                                        EmpathyContact          *actor,
804                                        guint                    reason,
805                                        gchar                   *message,
806                                        gboolean                 is_member,
807                                        EmpathyContactListStore *store)
808 {
809         EmpathyContactListStorePriv *priv;
810
811         priv = GET_PRIV (store);
812
813         empathy_debug (DEBUG_DOMAIN, 
814                       "Contact %s (%d) %s",
815                       empathy_contact_get_id (contact),
816                       empathy_contact_get_handle (contact),
817                       is_member ? "added" : "removed");
818
819         if (is_member) {
820                 g_signal_connect (contact, "notify::presence",
821                                   G_CALLBACK (contact_list_store_contact_updated_cb),
822                                   store);
823                 g_signal_connect (contact, "notify::presence-message",
824                                   G_CALLBACK (contact_list_store_contact_updated_cb),
825                                   store);
826                 g_signal_connect (contact, "notify::name",
827                                   G_CALLBACK (contact_list_store_contact_updated_cb),
828                                   store);
829                 g_signal_connect (contact, "notify::avatar",
830                                   G_CALLBACK (contact_list_store_contact_updated_cb),
831                                   store);
832                 g_signal_connect (contact, "notify::capabilities",
833                                   G_CALLBACK (contact_list_store_contact_updated_cb),
834                                   store);
835
836                 contact_list_store_add_contact (store, contact);
837         } else {
838                 g_signal_handlers_disconnect_by_func (contact,
839                                                       G_CALLBACK (contact_list_store_contact_updated_cb),
840                                                       store);
841
842                 contact_list_store_remove_contact (store, contact);
843         }
844 }
845
846 static void
847 contact_list_store_groups_changed_cb (EmpathyContactList      *list_iface,
848                                       EmpathyContact          *contact,
849                                       gchar                   *group,
850                                       gboolean                 is_member,
851                                       EmpathyContactListStore *store)
852 {
853         EmpathyContactListStorePriv *priv;
854         gboolean                     show_active;
855
856         priv = GET_PRIV (store);
857
858         empathy_debug (DEBUG_DOMAIN, "Updating groups for contact %s (%d)",
859                       empathy_contact_get_id (contact),
860                       empathy_contact_get_handle (contact));
861
862         /* We do this to make sure the groups are correct, if not, we
863          * would have to check the groups already set up for each
864          * contact and then see what has been updated.
865          */
866         show_active = priv->show_active;
867         priv->show_active = FALSE;
868         contact_list_store_remove_contact (store, contact);
869         contact_list_store_add_contact (store, contact);
870         priv->show_active = show_active;
871 }
872
873 static void
874 contact_list_store_add_contact (EmpathyContactListStore *store,
875                                 EmpathyContact          *contact)
876 {
877         EmpathyContactListStorePriv *priv;
878         GtkTreeIter                 iter;
879         GList                      *groups = NULL, *l;
880
881         priv = GET_PRIV (store);
882         
883         if (!(empathy_contact_get_ready (contact) & EMPATHY_CONTACT_READY_ID) ||
884             (!priv->show_offline && !empathy_contact_is_online (contact))) {
885                 return;
886         }
887
888         if (priv->show_groups) {
889                 groups = empathy_contact_list_get_groups (priv->list, contact);
890         }
891
892         /* If no groups just add it at the top level. */
893         if (!groups) {
894                 gtk_tree_store_append (GTK_TREE_STORE (store), &iter, NULL);
895                 gtk_tree_store_set (GTK_TREE_STORE (store), &iter,
896                                     EMPATHY_CONTACT_LIST_STORE_COL_NAME, empathy_contact_get_name (contact),
897                                     EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, contact,
898                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, FALSE,
899                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, FALSE,
900                                     EMPATHY_CONTACT_LIST_STORE_COL_CAN_VOIP, empathy_contact_can_voip (contact),
901                                     -1);
902         }
903
904         /* Else add to each group. */
905         for (l = groups; l; l = l->next) {
906                 GtkTreeIter iter_group;
907
908                 contact_list_store_get_group (store, l->data, &iter_group, NULL, NULL);
909
910                 gtk_tree_store_insert_after (GTK_TREE_STORE (store), &iter,
911                                              &iter_group, NULL);
912                 gtk_tree_store_set (GTK_TREE_STORE (store), &iter,
913                                     EMPATHY_CONTACT_LIST_STORE_COL_NAME, empathy_contact_get_name (contact),
914                                     EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, contact,
915                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, FALSE,
916                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, FALSE,
917                                     EMPATHY_CONTACT_LIST_STORE_COL_CAN_VOIP, empathy_contact_can_voip (contact),
918                                     -1);
919                 g_free (l->data);
920         }
921         g_list_free (groups);
922
923         contact_list_store_contact_update (store, contact);
924
925 }
926
927 static void
928 contact_list_store_remove_contact (EmpathyContactListStore *store,
929                                    EmpathyContact          *contact)
930 {
931         EmpathyContactListStorePriv *priv;
932         GtkTreeModel               *model;
933         GList                      *iters, *l;
934
935         priv = GET_PRIV (store);
936
937         iters = contact_list_store_find_contact (store, contact);
938         if (!iters) {
939                 return;
940         }
941         
942         /* Clean up model */
943         model = GTK_TREE_MODEL (store);
944
945         for (l = iters; l; l = l->next) {
946                 GtkTreeIter parent;
947
948                 /* NOTE: it is only <= 2 here because we have
949                  * separators after the group name, otherwise it
950                  * should be 1. 
951                  */
952                 if (gtk_tree_model_iter_parent (model, &parent, l->data) &&
953                     gtk_tree_model_iter_n_children (model, &parent) <= 2) {
954                         gtk_tree_store_remove (GTK_TREE_STORE (store), &parent);
955                 } else {
956                         gtk_tree_store_remove (GTK_TREE_STORE (store), l->data);
957                 }
958         }
959
960         g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
961         g_list_free (iters);
962 }
963
964 static void
965 contact_list_store_contact_update (EmpathyContactListStore *store,
966                                    EmpathyContact          *contact)
967 {
968         EmpathyContactListStorePriv *priv;
969         ShowActiveData             *data;
970         GtkTreeModel               *model;
971         GList                      *iters, *l;
972         gboolean                    in_list;
973         gboolean                    should_be_in_list;
974         gboolean                    was_online = TRUE;
975         gboolean                    now_online = FALSE;
976         gboolean                    set_model = FALSE;
977         gboolean                    do_remove = FALSE;
978         gboolean                    do_set_active = FALSE;
979         gboolean                    do_set_refresh = FALSE;
980         gboolean                    show_avatar = FALSE;
981         GdkPixbuf                  *pixbuf_avatar;
982
983         priv = GET_PRIV (store);
984
985         model = GTK_TREE_MODEL (store);
986
987         iters = contact_list_store_find_contact (store, contact);
988         if (!iters) {
989                 in_list = FALSE;
990         } else {
991                 in_list = TRUE;
992         }
993
994         /* Get online state now. */
995         now_online = empathy_contact_is_online (contact);
996
997         if (priv->show_offline || now_online) {
998                 should_be_in_list = TRUE;
999         } else {
1000                 should_be_in_list = FALSE;
1001         }
1002
1003         if (!in_list && !should_be_in_list) {
1004                 /* Nothing to do. */
1005                 empathy_debug (DEBUG_DOMAIN,
1006                               "Contact:'%s' in list:NO, should be:NO",
1007                               empathy_contact_get_name (contact));
1008
1009                 g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
1010                 g_list_free (iters);
1011                 return;
1012         }
1013         else if (in_list && !should_be_in_list) {
1014                 empathy_debug (DEBUG_DOMAIN,
1015                               "Contact:'%s' in list:YES, should be:NO",
1016                               empathy_contact_get_name (contact));
1017
1018                 if (priv->show_active) {
1019                         do_remove = TRUE;
1020                         do_set_active = TRUE;
1021                         do_set_refresh = TRUE;
1022
1023                         set_model = TRUE;
1024                         empathy_debug (DEBUG_DOMAIN, "Remove item (after timeout)");
1025                 } else {
1026                         empathy_debug (DEBUG_DOMAIN, "Remove item (now)!");
1027                         contact_list_store_remove_contact (store, contact);
1028                 }
1029         }
1030         else if (!in_list && should_be_in_list) {
1031                 empathy_debug (DEBUG_DOMAIN,
1032                               "Contact:'%s' in list:NO, should be:YES",
1033                               empathy_contact_get_name (contact));
1034
1035                 contact_list_store_add_contact (store, contact);
1036
1037                 if (priv->show_active) {
1038                         do_set_active = TRUE;
1039
1040                         empathy_debug (DEBUG_DOMAIN, "Set active (contact added)");
1041                 }
1042         } else {
1043                 empathy_debug (DEBUG_DOMAIN,
1044                               "Contact:'%s' in list:YES, should be:YES",
1045                               empathy_contact_get_name (contact));
1046
1047                 /* Get online state before. */
1048                 if (iters && g_list_length (iters) > 0) {
1049                         gtk_tree_model_get (model, iters->data,
1050                                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ONLINE, &was_online,
1051                                             -1);
1052                 }
1053
1054                 /* Is this really an update or an online/offline. */
1055                 if (priv->show_active) {
1056                         if (was_online != now_online) {
1057                                 do_set_active = TRUE;
1058                                 do_set_refresh = TRUE;
1059
1060                                 empathy_debug (DEBUG_DOMAIN, "Set active (contact updated %s)",
1061                                               was_online ? "online  -> offline" :
1062                                                            "offline -> online");
1063                         } else {
1064                                 /* Was TRUE for presence updates. */
1065                                 /* do_set_active = FALSE;  */
1066                                 do_set_refresh = TRUE;
1067
1068                                 empathy_debug (DEBUG_DOMAIN, "Set active (contact updated)");
1069                         }
1070                 }
1071
1072                 set_model = TRUE;
1073         }
1074
1075         if (priv->show_avatars && !priv->is_compact) {
1076                 show_avatar = TRUE;
1077         }
1078         pixbuf_avatar = empathy_pixbuf_avatar_from_contact_scaled (contact, 32, 32);
1079         for (l = iters; l && set_model; l = l->next) {
1080                 gtk_tree_store_set (GTK_TREE_STORE (store), l->data,
1081                                     EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, empathy_icon_name_for_contact (contact),
1082                                     EMPATHY_CONTACT_LIST_STORE_COL_PIXBUF_AVATAR, pixbuf_avatar,
1083                                     EMPATHY_CONTACT_LIST_STORE_COL_PIXBUF_AVATAR_VISIBLE, show_avatar,
1084                                     EMPATHY_CONTACT_LIST_STORE_COL_NAME, empathy_contact_get_name (contact),
1085                                     EMPATHY_CONTACT_LIST_STORE_COL_STATUS, empathy_contact_get_status (contact),
1086                                     EMPATHY_CONTACT_LIST_STORE_COL_STATUS_VISIBLE, !priv->is_compact,
1087                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, FALSE,
1088                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_ONLINE, now_online,
1089                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, FALSE,
1090                                     EMPATHY_CONTACT_LIST_STORE_COL_CAN_VOIP, empathy_contact_can_voip (contact),
1091                                     -1);
1092         }
1093
1094         if (pixbuf_avatar) {
1095                 g_object_unref (pixbuf_avatar);
1096         }
1097
1098         if (priv->show_active && do_set_active) {
1099                 contact_list_store_contact_set_active (store, contact, do_set_active, do_set_refresh);
1100
1101                 if (do_set_active) {
1102                         data = contact_list_store_contact_active_new (store, contact, do_remove);
1103                         g_timeout_add_seconds (ACTIVE_USER_SHOW_TIME,
1104                                                (GSourceFunc) contact_list_store_contact_active_cb,
1105                                                data);
1106                 }
1107         }
1108
1109         /* FIXME: when someone goes online then offline quickly, the
1110          * first timeout sets the user to be inactive and the second
1111          * timeout removes the user from the contact list, really we
1112          * should remove the first timeout.
1113          */
1114         g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
1115         g_list_free (iters);
1116 }
1117
1118 static void
1119 contact_list_store_contact_updated_cb (EmpathyContact          *contact,
1120                                        GParamSpec              *param,
1121                                        EmpathyContactListStore *store)
1122 {
1123         empathy_debug (DEBUG_DOMAIN,
1124                       "Contact:'%s' updated, checking roster is in sync...",
1125                       empathy_contact_get_name (contact));
1126
1127         contact_list_store_contact_update (store, contact);
1128 }
1129
1130 static void
1131 contact_list_store_contact_set_active (EmpathyContactListStore *store,
1132                                        EmpathyContact          *contact,
1133                                        gboolean                active,
1134                                        gboolean                set_changed)
1135 {
1136         EmpathyContactListStorePriv *priv;
1137         GtkTreeModel               *model;
1138         GList                      *iters, *l;
1139
1140         priv = GET_PRIV (store);
1141         model = GTK_TREE_MODEL (store);
1142
1143         iters = contact_list_store_find_contact (store, contact);
1144         for (l = iters; l; l = l->next) {
1145                 GtkTreePath *path;
1146
1147                 gtk_tree_store_set (GTK_TREE_STORE (store), l->data,
1148                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, active,
1149                                     -1);
1150
1151                 empathy_debug (DEBUG_DOMAIN, "Set item %s", active ? "active" : "inactive");
1152
1153                 if (set_changed) {
1154                         path = gtk_tree_model_get_path (model, l->data);
1155                         gtk_tree_model_row_changed (model, path, l->data);
1156                         gtk_tree_path_free (path);
1157                 }
1158         }
1159
1160         g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
1161         g_list_free (iters);
1162
1163 }
1164
1165 static ShowActiveData *
1166 contact_list_store_contact_active_new (EmpathyContactListStore *store,
1167                                        EmpathyContact          *contact,
1168                                        gboolean                remove)
1169 {
1170         ShowActiveData *data;
1171
1172         empathy_debug (DEBUG_DOMAIN, 
1173                       "Contact:'%s' now active, and %s be removed",
1174                       empathy_contact_get_name (contact), 
1175                       remove ? "WILL" : "WILL NOT");
1176         
1177         data = g_slice_new0 (ShowActiveData);
1178
1179         data->store = g_object_ref (store);
1180         data->contact = g_object_ref (contact);
1181         data->remove = remove;
1182
1183         return data;
1184 }
1185
1186 static void
1187 contact_list_store_contact_active_free (ShowActiveData *data)
1188 {
1189         g_object_unref (data->contact);
1190         g_object_unref (data->store);
1191
1192         g_slice_free (ShowActiveData, data);
1193 }
1194
1195 static gboolean
1196 contact_list_store_contact_active_cb (ShowActiveData *data)
1197 {
1198         EmpathyContactListStorePriv *priv;
1199
1200         priv = GET_PRIV (data->store);
1201
1202         if (data->remove &&
1203             !priv->show_offline &&
1204             !empathy_contact_is_online (data->contact)) {
1205                 empathy_debug (DEBUG_DOMAIN, 
1206                               "Contact:'%s' active timeout, removing item",
1207                               empathy_contact_get_name (data->contact));
1208                 contact_list_store_remove_contact (data->store, data->contact);
1209         }
1210
1211         empathy_debug (DEBUG_DOMAIN, 
1212                       "Contact:'%s' no longer active",
1213                       empathy_contact_get_name (data->contact));
1214
1215         contact_list_store_contact_set_active (data->store,
1216                                                data->contact,
1217                                                FALSE,
1218                                                TRUE);
1219
1220         contact_list_store_contact_active_free (data);
1221
1222         return FALSE;
1223 }
1224
1225 static gboolean
1226 contact_list_store_get_group_foreach (GtkTreeModel *model,
1227                                       GtkTreePath  *path,
1228                                       GtkTreeIter  *iter,
1229                                       FindGroup    *fg)
1230 {
1231         gchar    *str;
1232         gboolean  is_group;
1233
1234         /* Groups are only at the top level. */
1235         if (gtk_tree_path_get_depth (path) != 1) {
1236                 return FALSE;
1237         }
1238
1239         gtk_tree_model_get (model, iter,
1240                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &str,
1241                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
1242                             -1);
1243
1244         if (is_group && !tp_strdiff (str, fg->name)) {
1245                 fg->found = TRUE;
1246                 fg->iter = *iter;
1247         }
1248
1249         g_free (str);
1250
1251         return fg->found;
1252 }
1253
1254 static void
1255 contact_list_store_get_group (EmpathyContactListStore *store,
1256                               const gchar            *name,
1257                               GtkTreeIter            *iter_group_to_set,
1258                               GtkTreeIter            *iter_separator_to_set,
1259                               gboolean               *created)
1260 {
1261         EmpathyContactListStorePriv *priv;
1262         GtkTreeModel                *model;
1263         GtkTreeIter                  iter_group;
1264         GtkTreeIter                  iter_separator;
1265         FindGroup                    fg;
1266
1267         priv = GET_PRIV (store);
1268
1269         memset (&fg, 0, sizeof (fg));
1270
1271         fg.name = name;
1272
1273         model = GTK_TREE_MODEL (store);
1274         gtk_tree_model_foreach (model,
1275                                 (GtkTreeModelForeachFunc) contact_list_store_get_group_foreach,
1276                                 &fg);
1277
1278         if (!fg.found) {
1279                 if (created) {
1280                         *created = TRUE;
1281                 }
1282
1283                 gtk_tree_store_append (GTK_TREE_STORE (store), &iter_group, NULL);
1284                 gtk_tree_store_set (GTK_TREE_STORE (store), &iter_group,
1285                                     EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, NULL,
1286                                     EMPATHY_CONTACT_LIST_STORE_COL_NAME, name,
1287                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, TRUE,
1288                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, FALSE,
1289                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, FALSE,
1290                                     -1);
1291
1292                 if (iter_group_to_set) {
1293                         *iter_group_to_set = iter_group;
1294                 }
1295
1296                 gtk_tree_store_append (GTK_TREE_STORE (store),
1297                                        &iter_separator, 
1298                                        &iter_group);
1299                 gtk_tree_store_set (GTK_TREE_STORE (store), &iter_separator,
1300                                     EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, TRUE,
1301                                     -1);
1302
1303                 if (iter_separator_to_set) {
1304                         *iter_separator_to_set = iter_separator;
1305                 }
1306         } else {
1307                 if (created) {
1308                         *created = FALSE;
1309                 }
1310
1311                 if (iter_group_to_set) {
1312                         *iter_group_to_set = fg.iter;
1313                 }
1314
1315                 iter_separator = fg.iter;
1316
1317                 if (gtk_tree_model_iter_next (model, &iter_separator)) {
1318                         gboolean is_separator;
1319
1320                         gtk_tree_model_get (model, &iter_separator,
1321                                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator,
1322                                             -1);
1323
1324                         if (is_separator && iter_separator_to_set) {
1325                                 *iter_separator_to_set = iter_separator;
1326                         }
1327                 }
1328         }
1329 }
1330
1331 static guint
1332 contact_list_store_ordered_presence (McPresence state)
1333 {
1334         switch (state) {
1335         case MC_PRESENCE_UNSET:
1336         case MC_PRESENCE_OFFLINE:
1337                 return 5;
1338         case MC_PRESENCE_AVAILABLE:
1339                 return 0;
1340         case MC_PRESENCE_AWAY:
1341                 return 2;
1342         case MC_PRESENCE_EXTENDED_AWAY:
1343                 return 3;
1344         case MC_PRESENCE_HIDDEN:
1345                 return 4;
1346         case MC_PRESENCE_DO_NOT_DISTURB:
1347                 return 1;
1348         default:
1349                 g_return_val_if_reached (6);
1350         }
1351 }
1352
1353 static gint
1354 contact_list_store_state_sort_func (GtkTreeModel *model,
1355                                     GtkTreeIter  *iter_a,
1356                                     GtkTreeIter  *iter_b,
1357                                     gpointer      user_data)
1358 {
1359         gint            ret_val = 0;
1360         gchar          *name_a, *name_b;
1361         gboolean        is_separator_a, is_separator_b;
1362         EmpathyContact *contact_a, *contact_b;
1363         guint           presence_a, presence_b;
1364
1365         gtk_tree_model_get (model, iter_a,
1366                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name_a,
1367                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact_a,
1368                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator_a,
1369                             -1);
1370         gtk_tree_model_get (model, iter_b,
1371                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name_b,
1372                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact_b,
1373                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator_b,
1374                             -1);
1375
1376         /* Separator or group? */
1377         if (is_separator_a || is_separator_b) {
1378                 if (is_separator_a) {
1379                         ret_val = -1;
1380                 } else if (is_separator_b) {
1381                         ret_val = 1;
1382                 }
1383         } else if (!contact_a && contact_b) {
1384                 ret_val = 1;
1385         } else if (contact_a && !contact_b) {
1386                 ret_val = -1;
1387         } else if (!contact_a && !contact_b) {
1388                 /* Handle groups */
1389                 ret_val = g_utf8_collate (name_a, name_b);
1390         }
1391
1392         if (ret_val) {
1393                 goto free_and_out;
1394         }
1395
1396         /* If we managed to get this far, we can start looking at
1397          * the presences.
1398          */
1399         presence_a = empathy_contact_get_presence (EMPATHY_CONTACT (contact_a));
1400         presence_a = contact_list_store_ordered_presence (presence_a);
1401         presence_b = empathy_contact_get_presence (EMPATHY_CONTACT (contact_b));
1402         presence_b = contact_list_store_ordered_presence (presence_b);
1403
1404         if (presence_a < presence_b) {
1405                 ret_val = -1;
1406         } else if (presence_a > presence_b) {
1407                 ret_val = 1;
1408         } else {
1409                 /* Fallback: compare by name */
1410                 ret_val = g_utf8_collate (name_a, name_b);
1411         }
1412
1413 free_and_out:
1414         g_free (name_a);
1415         g_free (name_b);
1416
1417         if (contact_a) {
1418                 g_object_unref (contact_a);
1419         }
1420
1421         if (contact_b) {
1422                 g_object_unref (contact_b);
1423         }
1424
1425         return ret_val;
1426 }
1427
1428 static gint
1429 contact_list_store_name_sort_func (GtkTreeModel *model,
1430                                    GtkTreeIter  *iter_a,
1431                                    GtkTreeIter  *iter_b,
1432                                    gpointer      user_data)
1433 {
1434         gchar         *name_a, *name_b;
1435         EmpathyContact *contact_a, *contact_b;
1436         gboolean       is_separator_a, is_separator_b;
1437         gint           ret_val;
1438
1439         gtk_tree_model_get (model, iter_a,
1440                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name_a,
1441                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact_a,
1442                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator_a,
1443                             -1);
1444         gtk_tree_model_get (model, iter_b,
1445                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name_b,
1446                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact_b,
1447                             EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR, &is_separator_b,
1448                             -1);
1449
1450         /* If contact is NULL it means it's a group. */
1451
1452         if (is_separator_a || is_separator_b) {
1453                 if (is_separator_a) {
1454                         ret_val = -1;
1455                 } else if (is_separator_b) {
1456                         ret_val = 1;
1457                 }
1458         } else if (!contact_a && contact_b) {
1459                 ret_val = 1;
1460         } else if (contact_a && !contact_b) {
1461                 ret_val = -1;
1462         } else {
1463                 ret_val = g_utf8_collate (name_a, name_b);
1464         }
1465
1466         g_free (name_a);
1467         g_free (name_b);
1468
1469         if (contact_a) {
1470                 g_object_unref (contact_a);
1471         }
1472
1473         if (contact_b) {
1474                 g_object_unref (contact_b);
1475         }
1476
1477         return ret_val;
1478 }
1479
1480 static gboolean
1481 contact_list_store_find_contact_foreach (GtkTreeModel *model,
1482                                          GtkTreePath  *path,
1483                                          GtkTreeIter  *iter,
1484                                          FindContact  *fc)
1485 {
1486         EmpathyContact *contact;
1487
1488         gtk_tree_model_get (model, iter,
1489                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
1490                             -1);
1491
1492         if (contact == fc->contact) {
1493                 fc->found = TRUE;
1494                 fc->iters = g_list_append (fc->iters, gtk_tree_iter_copy (iter));
1495         }
1496
1497         if (contact) {
1498                 g_object_unref (contact);
1499         }
1500
1501         return FALSE;
1502 }
1503
1504 static GList *
1505 contact_list_store_find_contact (EmpathyContactListStore *store,
1506                                  EmpathyContact          *contact)
1507 {
1508         EmpathyContactListStorePriv *priv;
1509         GtkTreeModel              *model;
1510         GList                     *l = NULL;
1511         FindContact                fc;
1512
1513         priv = GET_PRIV (store);
1514
1515         memset (&fc, 0, sizeof (fc));
1516
1517         fc.contact = contact;
1518
1519         model = GTK_TREE_MODEL (store);
1520         gtk_tree_model_foreach (model,
1521                                 (GtkTreeModelForeachFunc) contact_list_store_find_contact_foreach,
1522                                 &fc);
1523
1524         if (fc.found) {
1525                 l = fc.iters;
1526         }
1527
1528         return l;
1529 }
1530
1531 static gboolean
1532 contact_list_store_update_list_mode_foreach (GtkTreeModel           *model,
1533                                              GtkTreePath            *path,
1534                                              GtkTreeIter            *iter,
1535                                              EmpathyContactListStore *store)
1536 {
1537         EmpathyContactListStorePriv *priv;
1538         gboolean                    show_avatar = FALSE;
1539
1540         priv = GET_PRIV (store);
1541
1542         if (priv->show_avatars && !priv->is_compact) {
1543                 show_avatar = TRUE;
1544         }
1545
1546         gtk_tree_store_set (GTK_TREE_STORE (store), iter,
1547                             EMPATHY_CONTACT_LIST_STORE_COL_PIXBUF_AVATAR_VISIBLE, show_avatar,
1548                             EMPATHY_CONTACT_LIST_STORE_COL_STATUS_VISIBLE, !priv->is_compact,
1549                             -1);
1550
1551         return FALSE;
1552 }
1553