diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-24 22:24:13 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-06-14 15:21:47 +0800 |
commit | 2f9c2d7e591b876ac6c52953b687308b8aa06fe6 (patch) | |
tree | b79927165f41097dbf0925dc97accf40c72763f0 | |
parent | 1a11cdd2f0e8ee312d0857db9a12da416f0adce9 (diff) | |
download | gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar.gz gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar.bz2 gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar.lz gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar.xz gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.tar.zst gsoc2013-empathy-2f9c2d7e591b876ac6c52953b687308b8aa06fe6.zip |
roster-item: track if individual is online or not
We cache the online status as we want to refresh the contact list only when
the contact becomes online/offline, not each time his presence changes.
-rw-r--r-- | libempathy-gtk/empathy-roster-item.c | 59 | ||||
-rw-r--r-- | libempathy-gtk/empathy-roster-item.h | 2 |
2 files changed, 61 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-roster-item.c b/libempathy-gtk/empathy-roster-item.c index 0f6fc644b..e9464cc32 100644 --- a/libempathy-gtk/empathy-roster-item.c +++ b/libempathy-gtk/empathy-roster-item.c @@ -16,6 +16,7 @@ G_DEFINE_TYPE (EmpathyRosterItem, empathy_roster_item, GTK_TYPE_ALIGNMENT) enum { PROP_INDIVIDIUAL = 1, + PROP_ONLINE, N_PROPS }; @@ -38,6 +39,8 @@ struct _EmpathyRosterItemPriv GtkWidget *presence_msg; GtkWidget *presence_icon; GtkWidget *phone_icon; + + gboolean online; }; static void @@ -53,6 +56,9 @@ empathy_roster_item_get_property (GObject *object, case PROP_INDIVIDIUAL: g_value_set_object (value, self->priv->individual); break; + case PROP_ONLINE: + g_value_set_boolean (value, self->priv->online); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; @@ -211,11 +217,50 @@ update_presence_icon (EmpathyRosterItem *self) } static void +update_online (EmpathyRosterItem *self) +{ + FolksPresenceType presence; + gboolean online; + + presence = folks_presence_details_get_presence_type ( + FOLKS_PRESENCE_DETAILS (self->priv->individual)); + + switch (presence) + { + case FOLKS_PRESENCE_TYPE_UNSET: + case FOLKS_PRESENCE_TYPE_OFFLINE: + case FOLKS_PRESENCE_TYPE_UNKNOWN: + case FOLKS_PRESENCE_TYPE_ERROR: + online = FALSE; + break; + + case FOLKS_PRESENCE_TYPE_AVAILABLE: + case FOLKS_PRESENCE_TYPE_AWAY: + case FOLKS_PRESENCE_TYPE_EXTENDED_AWAY: + case FOLKS_PRESENCE_TYPE_HIDDEN: + case FOLKS_PRESENCE_TYPE_BUSY: + online = TRUE; + break; + + default: + g_warning ("Unknown FolksPresenceType: %d", presence); + online = FALSE; + } + + if (self->priv->online == online) + return; + + self->priv->online = online; + g_object_notify (G_OBJECT (self), "online"); +} + +static void presence_status_changed_cb (FolksIndividual *individual, GParamSpec *spec, EmpathyRosterItem *self) { update_presence_icon (self); + update_online (self); } static void @@ -244,6 +289,8 @@ empathy_roster_item_constructed (GObject *object) update_alias (self); update_presence_msg (self); update_presence_icon (self); + + update_online (self); } static void @@ -289,6 +336,12 @@ empathy_roster_item_class_init ( G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); g_object_class_install_property (oclass, PROP_INDIVIDIUAL, spec); + spec = g_param_spec_boolean ("online", "Online", + "TRUE if Individual is online", + FALSE, + G_PARAM_READABLE | G_PARAM_STATIC_STRINGS); + g_object_class_install_property (oclass, PROP_ONLINE, spec); + g_type_class_add_private (klass, sizeof (EmpathyRosterItemPriv)); } @@ -377,3 +430,9 @@ empathy_roster_item_get_individual (EmpathyRosterItem *self) { return self->priv->individual; } + +gboolean +empathy_roster_item_is_online (EmpathyRosterItem *self) +{ + return self->priv->online; +} diff --git a/libempathy-gtk/empathy-roster-item.h b/libempathy-gtk/empathy-roster-item.h index b52fdb844..2b0b8cbdc 100644 --- a/libempathy-gtk/empathy-roster-item.h +++ b/libempathy-gtk/empathy-roster-item.h @@ -51,6 +51,8 @@ GtkWidget * empathy_roster_item_new (FolksIndividual *individual); FolksIndividual * empathy_roster_item_get_individual (EmpathyRosterItem *self); +gboolean empathy_roster_item_is_online (EmpathyRosterItem *self); + G_END_DECLS #endif /* #ifndef __EMPATHY_ROSTER_ITEM_H__*/ |