From 161c7f5800a89344fb65163b1e9c49ea7585cadf Mon Sep 17 00:00:00 2001 From: Davyd Madeley Date: Tue, 21 Apr 2009 09:37:16 +0800 Subject: Update the preset list --- libempathy-gtk/empathy-presence-chooser.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c index 4a7d85e7d..d5dc1880f 100644 --- a/libempathy-gtk/empathy-presence-chooser.c +++ b/libempathy-gtk/empathy-presence-chooser.c @@ -432,7 +432,27 @@ presence_chooser_entry_icon_release_cb (EmpathyPresenceChooser *self, mc_set_custom_state (self); } else { - g_print ("FAVOURITE!\n"); + PresenceChooserEntryType type; + McPresence state; + const char *status; + + type = presence_chooser_get_entry_type (self); + state = empathy_idle_get_state (priv->idle); + status = empathy_idle_get_status (priv->idle); + + if (type == ENTRY_TYPE_CUSTOM) { + /* save the entry */ + DEBUG ("SAVING PRESET (%i, %s)\n", state, status); + empathy_status_presets_set_last (state, status); + } + else if (type == ENTRY_TYPE_SAVED) { + /* remove the entry */ + DEBUG ("REMOVING PRESET (%i, %s)\n", state, status); + empathy_status_presets_remove (state, status); + } + + /* update the icon */ + presence_chooser_set_favourite_icon (self); } } -- cgit v1.2.3