[empathy] Update the preset list



commit 161c7f5800a89344fb65163b1e9c49ea7585cadf
Author: Davyd Madeley <davyd madeley id au>
Date:   Tue Apr 21 09:37:16 2009 +0800

    Update the preset list
---
 libempathy-gtk/empathy-presence-chooser.c |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c
index 4a7d85e..d5dc188 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);
 	}
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]