Merge branch 'more-contact-info'
[empathy-mirror.git] / src / cc-empathy-accounts-panel.c
blob6416c29f9d11a717eee4b118c91815df47a65884
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
3 * Copyright (C) 2010 Collabora, Ltd.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Authors: Travis Reitter <travis.reitter@collabora.co.uk>
22 #include "config.h"
24 #include <stdlib.h>
25 #include <stdio.h>
27 #include <gtk/gtk.h>
28 #include <gio/gio.h>
29 #include <glib/gi18n-lib.h>
31 #include <telepathy-glib/telepathy-glib.h>
33 #include <libempathy/empathy-utils.h>
34 #include <libempathy/empathy-connection-managers.h>
35 #include <libempathy-gtk/empathy-ui-utils.h>
36 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
37 #include <libempathy/empathy-debug.h>
39 #include "empathy-accounts-common.h"
40 #include "empathy-account-assistant.h"
41 #include "empathy-accounts-dialog.h"
43 #include "cc-empathy-accounts-panel.h"
45 #define CC_EMPATHY_ACCOUNTS_PANEL_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_EMPATHY_ACCOUNTS_PANEL, CcEmpathyAccountsPanelPrivate))
47 struct CcEmpathyAccountsPanelPrivate
49 /* the original window holding the dialog content; it needs to be retained and
50 * destroyed in our finalize(), since it invalidates its children (even if
51 * they've already been reparented by the time it is destroyed) */
52 GtkWidget *accounts_window;
54 GtkWidget *assistant;
55 GtkWidget *container;
58 G_DEFINE_DYNAMIC_TYPE (CcEmpathyAccountsPanel, cc_empathy_accounts_panel, CC_TYPE_PANEL)
60 static void
61 panel_pack_with_accounts_dialog (CcEmpathyAccountsPanel *panel)
63 GtkWidget *content;
64 GtkWidget *action_area;
66 if (panel->priv->accounts_window != NULL)
68 gtk_widget_destroy (panel->priv->accounts_window);
69 gtk_container_remove (GTK_CONTAINER (panel),
70 gtk_bin_get_child (GTK_BIN (panel)));
73 panel->priv->accounts_window = empathy_accounts_dialog_show (NULL, NULL);
74 gtk_widget_hide (panel->priv->accounts_window);
76 content = gtk_dialog_get_content_area (
77 GTK_DIALOG (panel->priv->accounts_window));
78 action_area = gtk_dialog_get_action_area (
79 GTK_DIALOG (panel->priv->accounts_window));
80 gtk_widget_set_no_show_all (action_area, TRUE);
81 gtk_widget_hide (action_area);
83 gtk_widget_reparent (content, GTK_WIDGET (panel->priv->container));
86 static void
87 account_assistant_closed_cb (GtkWidget *widget,
88 gpointer user_data)
90 CcEmpathyAccountsPanel *panel = CC_EMPATHY_ACCOUNTS_PANEL (user_data);
92 if (empathy_accounts_dialog_is_creating (
93 EMPATHY_ACCOUNTS_DIALOG (panel->priv->accounts_window)))
95 empathy_account_dialog_cancel (
96 EMPATHY_ACCOUNTS_DIALOG (panel->priv->accounts_window));
99 gtk_widget_set_sensitive (GTK_WIDGET (panel), TRUE);
100 panel->priv->assistant = NULL;
103 static void
104 connection_managers_prepare (GObject *source,
105 GAsyncResult *result,
106 gpointer user_data)
108 EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
109 TpAccountManager *account_mgr;
110 CcEmpathyAccountsPanel *panel = CC_EMPATHY_ACCOUNTS_PANEL (user_data);
112 account_mgr = TP_ACCOUNT_MANAGER (g_object_get_data (G_OBJECT (cm_mgr),
113 "account-manager"));
115 if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
116 goto out;
118 panel_pack_with_accounts_dialog (panel);
120 if (!empathy_accounts_has_non_salut_accounts (account_mgr))
122 GtkWindow *parent;
124 parent = empathy_get_toplevel_window (GTK_WIDGET (panel));
125 panel->priv->assistant = empathy_account_assistant_show (parent, cm_mgr);
127 gtk_widget_set_sensitive (GTK_WIDGET (panel), FALSE);
129 tp_g_signal_connect_object (panel->priv->assistant, "hide",
130 G_CALLBACK (account_assistant_closed_cb),
131 panel, 0);
134 out:
135 /* remove ref from active_changed() */
136 g_object_unref (account_mgr);
137 g_object_unref (cm_mgr);
140 static void
141 account_manager_ready_for_accounts_cb (GObject *source_object,
142 GAsyncResult *result,
143 gpointer user_data)
145 TpAccountManager *account_mgr = TP_ACCOUNT_MANAGER (source_object);
146 CcEmpathyAccountsPanel *panel = CC_EMPATHY_ACCOUNTS_PANEL (user_data);
147 GError *error = NULL;
149 if (!tp_account_manager_prepare_finish (account_mgr, result, &error))
151 g_warning ("Failed to prepare account manager: %s", error->message);
152 g_error_free (error);
153 return;
156 if (empathy_accounts_has_non_salut_accounts (account_mgr))
158 panel_pack_with_accounts_dialog (panel);
160 /* remove ref from active_changed() */
161 g_object_unref (account_mgr);
163 else
165 EmpathyConnectionManagers *cm_mgr;
167 cm_mgr = empathy_connection_managers_dup_singleton ();
169 g_object_set_data_full (G_OBJECT (cm_mgr), "account-manager",
170 g_object_ref (account_mgr), (GDestroyNotify) g_object_unref);
172 empathy_connection_managers_prepare_async (cm_mgr,
173 connection_managers_prepare, panel);
177 static void
178 cc_empathy_accounts_panel_finalize (GObject *object)
180 CcEmpathyAccountsPanel *panel;
182 g_return_if_fail (object != NULL);
183 g_return_if_fail (CC_IS_EMPATHY_ACCOUNTS_PANEL (object));
185 panel = CC_EMPATHY_ACCOUNTS_PANEL (object);
187 g_return_if_fail (panel->priv != NULL);
189 gtk_widget_destroy (panel->priv->accounts_window);
191 if (panel->priv->assistant != NULL)
192 gtk_widget_destroy (panel->priv->assistant);
194 G_OBJECT_CLASS (cc_empathy_accounts_panel_parent_class)->finalize (object);
197 static void
198 cc_empathy_accounts_panel_class_init (CcEmpathyAccountsPanelClass *klass)
200 GObjectClass *object_class = G_OBJECT_CLASS (klass);
202 object_class->finalize = cc_empathy_accounts_panel_finalize;
204 g_type_class_add_private (klass, sizeof (CcEmpathyAccountsPanelPrivate));
207 static void
208 cc_empathy_accounts_panel_class_finalize (CcEmpathyAccountsPanelClass *klass)
212 static void
213 cc_empathy_accounts_panel_init (CcEmpathyAccountsPanel *panel)
215 TpAccountManager *account_manager;
217 panel->priv = CC_EMPATHY_ACCOUNTS_PANEL_GET_PRIVATE (panel);
219 /* create a container widget immediately, and pack it into the panel,
220 * because the CC library expects a children to exist after
221 * the object is constructed.
223 panel->priv->container = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
224 gtk_widget_show (panel->priv->container);
225 gtk_container_add (GTK_CONTAINER (panel), panel->priv->container);
227 empathy_gtk_init ();
229 /* unref'd in final endpoint callbacks */
230 account_manager = tp_account_manager_dup ();
232 tp_account_manager_prepare_async (account_manager, NULL,
233 account_manager_ready_for_accounts_cb, panel);
236 void
237 cc_empathy_accounts_panel_register (GIOModule *module)
239 /* Setup gettext */
240 bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
241 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
243 cc_empathy_accounts_panel_register_type (G_TYPE_MODULE (module));
244 g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT,
245 CC_TYPE_EMPATHY_ACCOUNTS_PANEL, "empathy-accounts", 10);