diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-08-19 05:36:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-08-19 05:36:47 +0800 |
commit | e8f16d75d5edea2893074ca224161ae5ec057e34 (patch) | |
tree | d6a773b46d6457dd74bcc261cb4bb6a0dfa7ef94 /src | |
parent | 0d6789d2e3aad37b060dcedd23fe1b2186e2f897 (diff) | |
download | gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar.gz gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar.bz2 gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar.lz gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar.xz gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.tar.zst gsoc2013-empathy-e8f16d75d5edea2893074ca224161ae5ec057e34.zip |
Use accounts_dialog_add_account() to add initial set of accounts
svn path=/trunk/; revision=1344
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 68 |
1 files changed, 15 insertions, 53 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 17ffe19e4..d37f9eea1 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -95,7 +95,6 @@ enum { COL_COUNT }; -static void accounts_dialog_setup (EmpathyAccountsDialog *dialog); static void accounts_dialog_update_account (EmpathyAccountsDialog *dialog, McAccount *account); static void accounts_dialog_model_setup (EmpathyAccountsDialog *dialog); @@ -153,57 +152,6 @@ static void accounts_dialog_destroy_cb (GtkWidget EmpathyAccountsDialog *dialog); static void -accounts_dialog_setup (EmpathyAccountsDialog *dialog) -{ - GtkTreeView *view; - GtkListStore *store; - GtkTreeIter iter; - GList *accounts, *l; - - view = GTK_TREE_VIEW (dialog->treeview); - store = GTK_LIST_STORE (gtk_tree_view_get_model (view)); - - accounts = mc_accounts_list (); - - for (l = accounts; l; l = l->next) { - McAccount *account; - const gchar *name; - TpConnectionStatus status; - gboolean enabled; - - account = l->data; - - name = mc_account_get_display_name (account); - if (!name) { - g_object_unref (account); - continue; - } - - status = mission_control_get_connection_status (dialog->mc, account, NULL); - enabled = mc_account_is_enabled (account); - - gtk_list_store_insert_with_values (store, &iter, - -1, - COL_ENABLED, enabled, - COL_NAME, name, - COL_STATUS, status, - COL_ACCOUNT_POINTER, account, - -1); - - accounts_dialog_status_changed_cb (dialog->mc, - status, - MC_PRESENCE_UNSET, - TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED, - mc_account_get_unique_name (account), - dialog); - - g_object_unref (account); - } - - g_list_free (accounts); -} - -static void accounts_dialog_update_account (EmpathyAccountsDialog *dialog, McAccount *account) { @@ -678,6 +626,12 @@ accounts_dialog_add_account (EmpathyAccountsDialog *dialog, COL_STATUS, status, COL_ACCOUNT_POINTER, account, -1); + accounts_dialog_status_changed_cb (dialog->mc, + status, + MC_PRESENCE_UNSET, + TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED, + mc_account_get_unique_name (account), + dialog); } static void @@ -1043,6 +997,7 @@ empathy_accounts_dialog_show (GtkWindow *parent, static EmpathyAccountsDialog *dialog = NULL; GladeXML *glade; gchar *filename; + GList *accounts, *l; if (dialog) { gtk_window_present (GTK_WINDOW (dialog->window)); @@ -1119,7 +1074,14 @@ empathy_accounts_dialog_show (GtkWindow *parent, dialog, NULL); accounts_dialog_model_setup (dialog); - accounts_dialog_setup (dialog); + + /* Add existing accounts */ + accounts = mc_accounts_list (); + for (l = accounts; l; l = l->next) { + accounts_dialog_add_account (dialog, l->data); + g_object_unref (l->data); + } + g_list_free (accounts); if (selected_account) { accounts_dialog_model_set_selected (dialog, selected_account); |