From df8e44cd8c2f09928d31d21540b1de47a1f757f0 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 2 Feb 2012 15:50:51 +0100 Subject: display a specific message if no account is configured https://bugzilla.gnome.org/show_bug.cgi?id=656097 --- src/empathy-roster-window.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'src') diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c index a1e120919..709df601d 100644 --- a/src/empathy-roster-window.c +++ b/src/empathy-roster-window.c @@ -637,6 +637,13 @@ display_page_message (EmpathyRosterWindow *self, PAGE_MESSAGE); } +static void +display_page_no_account (EmpathyRosterWindow *self) +{ + display_page_message (self, + _("You need to setup an account to see contacts here."), TRUE); +} + static void roster_window_row_deleted_cb (GtkTreeModel *model, GtkTreePath *path, @@ -2113,6 +2120,22 @@ add_account (EmpathyRosterWindow *self, roster_window_setup_balance (self, account); } +static void +set_notebook_page (EmpathyRosterWindow *self) +{ + GList *accounts; + + accounts = tp_account_manager_get_valid_accounts ( + self->priv->account_manager); + + if (g_list_length (accounts) == 0) + display_page_no_account (self); + else + display_page_contact_list (self); + + g_list_free (accounts); +} + static void roster_window_account_validity_changed_cb (TpAccountManager *manager, TpAccount *account, @@ -2123,6 +2146,8 @@ roster_window_account_validity_changed_cb (TpAccountManager *manager, add_account (self, account); else roster_window_account_removed_cb (manager, account, self); + + set_notebook_page (self); } static void @@ -2195,6 +2220,8 @@ account_manager_prepared_cb (GObject *source_object, gtk_action_set_sensitive (self->priv->view_history, g_list_length (accounts) > 0); + set_notebook_page (self); + g_list_free (accounts); } -- cgit v1.2.3