From 4d4e4d4d9cdfb913b9f93e37cff4fa7a2227eb61 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 16 Apr 2008 08:34:52 +0000 Subject: Simplify SIP account config UI. Fixes bug #527452 (Frederic Peters). svn path=/trunk/; revision=948 --- libempathy-gtk/empathy-account-widget-sip.c | 139 ++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 libempathy-gtk/empathy-account-widget-sip.c (limited to 'libempathy-gtk/empathy-account-widget-sip.c') diff --git a/libempathy-gtk/empathy-account-widget-sip.c b/libempathy-gtk/empathy-account-widget-sip.c new file mode 100644 index 000000000..a8a751485 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-sip.c @@ -0,0 +1,139 @@ +/* + * Copyright (C) 2007-2008 Guillaume Desmottes + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Authors: Guillaume Desmottes + * Frederic Peters + */ + +#include "config.h" + +#include +#include +#include + +#include +#include +#include + +#include +#include + +#include +#include + +#include "empathy-account-widget.h" +#include "empathy-account-widget-sip.h" +#include "empathy-ui-utils.h" + +#define DEBUG_DOMAIN "AccountWidgetSIP" + +typedef struct { + McAccount *account; + + GtkWidget *vbox_settings; + + GtkWidget *entry_stun_server; + GtkWidget *spinbutton_stun_part; + GtkWidget *checkbutton_discover_stun; +} EmpathyAccountWidgetSip; + +static void +account_widget_sip_destroy_cb (GtkWidget *widget, + EmpathyAccountWidgetSip *settings) +{ + g_object_unref (settings->account); + g_slice_free (EmpathyAccountWidgetSip, settings); +} + +static void +account_widget_sip_discover_stun_toggled_cb ( + GtkWidget *checkbox, + EmpathyAccountWidgetSip *settings) +{ + if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox))) { + gtk_widget_set_sensitive(settings->entry_stun_server, TRUE); + gtk_widget_set_sensitive(settings->spinbutton_stun_part, TRUE); + } else { + gtk_widget_set_sensitive(settings->entry_stun_server, FALSE); + gtk_widget_set_sensitive(settings->spinbutton_stun_part, FALSE); + } +} + +/** + * empathy_account_widget_sip_new: + * @account: the #McAccount to configure + * + * Creates a new SIP account widget to configure a given #McAccount + * + * Returns: The toplevel container of the configuration widget + */ +GtkWidget * +empathy_account_widget_sip_new (McAccount *account) +{ + EmpathyAccountWidgetSip *settings; + GladeXML *glade; + gchar *filename; + + settings = g_slice_new0 (EmpathyAccountWidgetSip); + settings->account = g_object_ref (account); + + filename = empathy_file_lookup ("empathy-account-widget-sip.glade", + "libempathy-gtk"); + glade = empathy_glade_get_file (filename, + "vbox_sip_settings", + NULL, + "vbox_sip_settings", &settings->vbox_settings, + "entry_stun-server", &settings->entry_stun_server, + "spinbutton_stun-port", &settings->spinbutton_stun_part, + "checkbutton_discover-stun", &settings->checkbutton_discover_stun, + NULL); + g_free (filename); + + empathy_account_widget_handle_params (account, glade, + "entry_userid", "account", + "entry_password", "password", + "entry_proxy","proxy-host", + "spinbutton_port", "port", + "entry_transport", "transport", + "checkbutton_discover-binding","discover-binding", + "entry_keepalive-mechanism", "keepalive-mechanism", + "entry_keepalive-interval", "keepalive-interval", + "checkbutton_discover-stun", "discover-stun", + "entry_stun-server", "stun-server", + "spinbutton_stun-port", "stun-port", + "entry_local-ip", "local-ip-address", + "spinbutton_local-port", "local-port", + "entry_extra-auth-user", "extra-auth-user", + "entry_extra-auth-password", "extra-auth-password", + NULL); + + empathy_account_widget_add_forget_button (account, glade, + "button_forget", + "entry_password"); + + account_widget_sip_discover_stun_toggled_cb (settings->checkbutton_discover_stun, + settings); + + empathy_glade_connect (glade, settings, + "vbox_sip_settings", "destroy", account_widget_sip_destroy_cb, + "checkbutton_discover-stun", "toggled", account_widget_sip_discover_stun_toggled_cb, + NULL); + + g_object_unref (glade); + + return settings->vbox_settings; +} -- cgit v1.2.3