aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-03-18 13:37:28 -0500
committerTed Gould <ted@canonical.com>2009-03-18 13:37:28 -0500
commit912e0e21903fdd8b0d2106bbcab77dd455892657 (patch)
tree3b145631c97f9240388c2429ebb908815407c803
parent1cf60571c0663efc4eab8e3c94002e521490a206 (diff)
downloadayatana-indicator-messages-912e0e21903fdd8b0d2106bbcab77dd455892657.tar.gz
ayatana-indicator-messages-912e0e21903fdd8b0d2106bbcab77dd455892657.tar.bz2
ayatana-indicator-messages-912e0e21903fdd8b0d2106bbcab77dd455892657.zip
Making the IM list sorted and handling the time changed signal
-rw-r--r--src/indicator-messages.c25
1 files changed, 23 insertions, 2 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c
index 51a7db6..fc13217 100644
--- a/src/indicator-messages.c
+++ b/src/indicator-messages.c
@@ -34,6 +34,7 @@ static GtkWidget * main_menu;
static void server_count_changed (AppMenuItem * appitem, guint count, gpointer data);
static void server_name_changed (AppMenuItem * appitem, gchar * name, gpointer data);
+static void im_time_changed (ImMenuItem * imitem, glong seconds, gpointer data);
static void reconsile_list_and_menu (GList * serverlist, GtkMenuShell * menushell);
#define DESIGN_TEAM_SIZE design_team_size
@@ -100,6 +101,16 @@ imList_equal (gconstpointer a, gconstpointer b)
return !((!strcmp(pas, pbs)) && (pai == pbi));
}
+static gint
+imList_sort (gconstpointer a, gconstpointer b)
+{
+ imList_t * pa, * pb;
+
+ pa = (imList_t *)a;
+ pb = (imList_t *)b;
+
+ return (gint)(im_menu_item_get_seconds(IM_MENU_ITEM(pa->menuitem)) - im_menu_item_get_seconds(IM_MENU_ITEM(pb->menuitem)));
+}
void
server_added (IndicateListener * listener, IndicateListenerServer * server, gchar * type, gpointer data)
@@ -207,6 +218,15 @@ server_count_changed (AppMenuItem * appitem, guint count, gpointer data)
return;
}
+static void
+im_time_changed (ImMenuItem * imitem, glong seconds, gpointer data)
+{
+ serverList_t * sl = (serverList_t *)data;
+ sl->imList = g_list_sort(sl->imList, imList_sort);
+ reconsile_list_and_menu(serverList, GTK_MENU_SHELL(gtk_widget_get_parent(GTK_WIDGET(imitem))));
+ return;
+}
+
void
server_removed (IndicateListener * listener, IndicateListenerServer * server, gchar * type, gpointer data)
{
@@ -351,8 +371,9 @@ subtype_cb (IndicateListener * listener, IndicateListenerServer * server, Indica
sl_item = (serverList_t *)serverentry->data;
}
- g_debug("Adding to IM Hash");
- sl_item->imList = g_list_append(sl_item->imList, listItem);
+ g_debug("Adding to IM List");
+ sl_item->imList = g_list_insert_sorted(sl_item->imList, listItem, imList_sort);
+ g_signal_connect(G_OBJECT(menuitem), IM_MENU_ITEM_SIGNAL_TIME_CHANGED, G_CALLBACK(im_time_changed), sl_item);
g_debug("Placing in Shell");
menushell_location_t msl;