static void account_assistant_apply_account_cb (GObject *source, GAsyncResult *result, gpointer user_data) { GError *error = NULL; EmpathyAccountAssistant *self = user_data; EmpathyAccountAssistantPriv *priv = GET_PRIV (self); EmpathyAccountSettings *settings = EMPATHY_ACCOUNT_SETTINGS (source); EmpathyAccount *account; empathy_account_settings_apply_finish (settings, result, &error); priv->is_creating = FALSE; if (error != NULL) { account_assistant_present_error_page (self, error, gtk_assistant_get_current_page (GTK_ASSISTANT (self))); g_error_free (error); return; } /* enable the newly created account */ account = empathy_account_settings_get_account (settings); empathy_account_set_enabled_async (account, TRUE, account_assistant_account_enabled_cb, self); }
static void account_widget_applied_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; TpAccount *account; EmpathyAccountSettings *settings = EMPATHY_ACCOUNT_SETTINGS (source_object); EmpathyAccountWidget *widget = EMPATHY_ACCOUNT_WIDGET (user_data); EmpathyAccountWidgetPriv *priv = GET_PRIV (widget); empathy_account_settings_apply_finish (settings, res, &error); if (error != NULL) { DEBUG ("Could not apply changes to account: %s", error->message); g_error_free (error); return; } account = empathy_account_settings_get_account (priv->settings); if (account != NULL) { if (priv->creating_account) { /* By default, when an account is created, we enable it. */ tp_account_set_enabled_async (account, TRUE, account_widget_account_enabled_cb, widget); } else if (priv->enabled_checkbox != NULL) { gboolean enabled_checked; enabled_checked = #ifndef HAVE_MOBLIN gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON (priv->enabled_checkbox)); #else nbtk_gtk_light_switch_get_active ( NBTK_GTK_LIGHT_SWITCH (priv->enabled_checkbox)); #endif if (tp_account_is_enabled (account) && enabled_checked) { /* After having applied changes to a user account, we * automatically reconnect it. This is done so the new * information entered by the user is validated on the server. */ tp_account_reconnect_async (account, NULL, NULL); } } } account_widget_set_control_buttons_sensitivity (widget, FALSE); }
static void salut_account_created (GObject *source, GAsyncResult *result, gpointer user_data) { EmpathyAccountSettings *settings = EMPATHY_ACCOUNT_SETTINGS (source); TpAccount *account; GError *error = NULL; if (!empathy_account_settings_apply_finish (settings, result, &error)) { DEBUG ("Failed to create salut account: %s", error->message); g_error_free (error); return; } account = empathy_account_settings_get_account (settings); tp_account_set_enabled_async (account, TRUE, NULL, NULL); empathy_conf_set_bool (empathy_conf_get (), EMPATHY_PREFS_SALUT_ACCOUNT_CREATED, TRUE); }