aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-account-widget-jabber.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-account-widget-jabber.c')
-rw-r--r--libempathy-gtk/empathy-account-widget-jabber.c322
1 files changed, 0 insertions, 322 deletions
diff --git a/libempathy-gtk/empathy-account-widget-jabber.c b/libempathy-gtk/empathy-account-widget-jabber.c
deleted file mode 100644
index b3339f128..000000000
--- a/libempathy-gtk/empathy-account-widget-jabber.c
+++ /dev/null
@@ -1,322 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Copyright (C) 2007 Collabora Ltd.
- *
- * 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: Xavier Claessens <xclaesse@gmail.com>
- */
-
-#include "config.h"
-
-#include <ctype.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <glib/gi18n.h>
-#include <gtk/gtk.h>
-#include <glade/glade.h>
-
-#include <libmissioncontrol/mc-profile.h>
-
-#include <libempathy/empathy-utils.h>
-#include <libempathy/empathy-debug.h>
-
-#include "empathy-account-widget-jabber.h"
-#include "empathy-ui-utils.h"
-
-#define DEBUG_DOMAIN "AccountWidgetJabber"
-
-#define PORT_WITHOUT_SSL 5222
-#define PORT_WITH_SSL 5223
-
-typedef struct {
- McAccount *account;
-
- GtkWidget *vbox_settings;
- GtkWidget *button_forget;
- GtkWidget *entry_id;
- GtkWidget *entry_password;
- GtkWidget *entry_resource;
- GtkWidget *entry_server;
- GtkWidget *spinbutton_port;
- GtkWidget *spinbutton_priority;
- GtkWidget *checkbutton_ssl;
- GtkWidget *checkbutton_ignore_ssl_errors;
- GtkWidget *checkbutton_encryption;
-} EmpathyAccountWidgetJabber;
-
-static gboolean
-account_widget_jabber_entry_focus_cb (GtkWidget *widget,
- GdkEventFocus *event,
- EmpathyAccountWidgetJabber *settings)
-{
- const gchar *param;
- const gchar *str;
-
- if (widget == settings->entry_password) {
- param = "password";
- }
- else if (widget == settings->entry_resource) {
- param = "resource";
- }
- else if (widget == settings->entry_server) {
- param = "server";
- }
- else if (widget == settings->entry_id) {
- param = "account";
- } else {
- return FALSE;
- }
-
- str = gtk_entry_get_text (GTK_ENTRY (widget));
- if (G_STR_EMPTY (str)) {
- gchar *value = NULL;
-
- mc_account_unset_param (settings->account, param);
- mc_account_get_param_string (settings->account, param, &value);
- empathy_debug (DEBUG_DOMAIN, "Unset %s and restore to %s", param, value);
- gtk_entry_set_text (GTK_ENTRY (widget), value ? value : "");
- g_free (value);
- } else {
- empathy_debug (DEBUG_DOMAIN, "Setting %s to %s", param, str);
- mc_account_set_param_string (settings->account, param, str);
- }
-
- return FALSE;
-}
-
-static void
-account_widget_jabber_entry_changed_cb (GtkWidget *widget,
- EmpathyAccountWidgetJabber *settings)
-{
- if (widget == settings->entry_password) {
- const gchar *str;
-
- str = gtk_entry_get_text (GTK_ENTRY (widget));
- gtk_widget_set_sensitive (settings->button_forget, !G_STR_EMPTY (str));
- }
-}
-
-static void
-account_widget_jabber_checkbutton_toggled_cb (GtkWidget *widget,
- EmpathyAccountWidgetJabber *settings)
-{
- gboolean value;
- gboolean default_value;
- const gchar *param;
-
- value = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget));
-
- if (widget == settings->checkbutton_ssl) {
- gint port = 0;
-
- mc_account_get_param_int (settings->account, "port", &port);
-
- if (value) {
- if (port == PORT_WITHOUT_SSL || port == 0) {
- port = PORT_WITH_SSL;
- }
- } else {
- if (port == PORT_WITH_SSL || port == 0) {
- port = PORT_WITHOUT_SSL;
- }
- }
-
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (settings->spinbutton_port), port);
- param = "old-ssl";
- }
- else if (widget == settings->checkbutton_ignore_ssl_errors) {
- param = "ignore-ssl-errors";
- }
- else if (widget == settings->checkbutton_encryption) {
- param = "require-encryption";
- } else {
- return;
- }
-
- /* FIXME: This is ugly! checkbox don't have a "not-set" value so we
- * always unset the param and set the value if different from the
- * default value. */
- mc_account_unset_param (settings->account, param);
- mc_account_get_param_boolean (settings->account, param, &default_value);
-
- if (default_value != value) {
- empathy_debug (DEBUG_DOMAIN, "Setting %s to %d", param, value);
- mc_account_set_param_boolean (settings->account, param, value);
- } else {
- empathy_debug (DEBUG_DOMAIN, "Unset %s", param, value);
- }
-}
-
-static void
-account_widget_jabber_value_changed_cb (GtkWidget *spinbutton,
- EmpathyAccountWidgetJabber *settings)
-{
- gdouble value;
- const gchar *param;
-
- value = gtk_spin_button_get_value (GTK_SPIN_BUTTON (spinbutton));
-
- if (spinbutton == settings->spinbutton_port) {
- param = "port";
- }
- else if (spinbutton == settings->spinbutton_priority) {
- param = "priority";
- } else {
- return;
- }
-
- if (value != 0) {
- empathy_debug (DEBUG_DOMAIN, "Setting %s to %d", param, (gint) value);
- mc_account_set_param_int (settings->account, param, (gint) value);
- } else {
- gint val;
-
- mc_account_unset_param (settings->account, param);
- mc_account_get_param_int (settings->account, param, &val);
- empathy_debug (DEBUG_DOMAIN, "Unset %s and restore to %d", param, val);
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (spinbutton), val);
- }
-}
-
-static void
-account_widget_jabber_button_forget_clicked_cb (GtkWidget *button,
- EmpathyAccountWidgetJabber *settings)
-{
- empathy_debug (DEBUG_DOMAIN, "Unset password");
- mc_account_unset_param (settings->account, "password");
- gtk_entry_set_text (GTK_ENTRY (settings->entry_password), "");
-}
-
-static void
-account_widget_jabber_destroy_cb (GtkWidget *widget,
- EmpathyAccountWidgetJabber *settings)
-{
- g_object_unref (settings->account);
- g_free (settings);
-}
-
-static void
-account_widget_jabber_setup (EmpathyAccountWidgetJabber *settings)
-{
- gint port = 0;
- gint priority = 0;
- gchar *id = NULL;
- gchar *resource = NULL;
- gchar *server = NULL;
- gchar *password = NULL;
- gboolean old_ssl = FALSE;
- gboolean ignore_ssl_errors = FALSE;
- gboolean encryption = FALSE;
-
- mc_account_get_param_int (settings->account, "port", &port);
- mc_account_get_param_int (settings->account, "priority", &priority);
- mc_account_get_param_string (settings->account, "account", &id);
- mc_account_get_param_string (settings->account, "resource", &resource);
- mc_account_get_param_string (settings->account, "server", &server);
- mc_account_get_param_string (settings->account, "password", &password);
- mc_account_get_param_boolean (settings->account, "old-ssl", &old_ssl);
- mc_account_get_param_boolean (settings->account, "ignore-ssl-errors", &ignore_ssl_errors);
- mc_account_get_param_boolean (settings->account, "require-encryption", &encryption);
-
- if (!id) {
- McProfile *profile;
- const gchar *server;
-
- profile = mc_account_get_profile (settings->account);
- server = mc_profile_get_default_account_domain (profile);
- if (server) {
- id = g_strconcat ("user@", server, NULL);
- }
- g_object_unref (profile);
- }
-
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (settings->spinbutton_port), port);
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (settings->spinbutton_priority), priority);
- gtk_entry_set_text (GTK_ENTRY (settings->entry_id), id ? id : "");
- gtk_entry_set_text (GTK_ENTRY (settings->entry_resource), resource ? resource : "");
- gtk_entry_set_text (GTK_ENTRY (settings->entry_server), server ? server : "");
- gtk_entry_set_text (GTK_ENTRY (settings->entry_password), password ? password : "");
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (settings->checkbutton_ssl), old_ssl);
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (settings->checkbutton_ignore_ssl_errors), ignore_ssl_errors);
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (settings->checkbutton_encryption), encryption);
-
- gtk_widget_set_sensitive (settings->button_forget, !G_STR_EMPTY (password));
-
- g_free (id);
- g_free (resource);
- g_free (server);
- g_free (password);
-}
-
-GtkWidget *
-empathy_account_widget_jabber_new (McAccount *account)
-{
- EmpathyAccountWidgetJabber *settings;
- GladeXML *glade;
- GtkWidget *label_id, *label_password;
- GtkWidget *label_server, *label_resource;
- GtkWidget *label_port, *label_priority;
-
- settings = g_new0 (EmpathyAccountWidgetJabber, 1);
- settings->account = g_object_ref (account);
-
- glade = empathy_glade_get_file ("empathy-account-widget-jabber.glade",
- "vbox_jabber_settings",
- NULL,
- "vbox_jabber_settings", &settings->vbox_settings,
- "button_forget", &settings->button_forget,
- "label_id", &label_id,
- "label_password", &label_password,
- "label_resource", &label_resource,
- "label_priority", &label_priority,
- "label_server", &label_server,
- "label_port", &label_port,
- "entry_id", &settings->entry_id,
- "entry_password", &settings->entry_password,
- "entry_resource", &settings->entry_resource,
- "entry_server", &settings->entry_server,
- "spinbutton_port", &settings->spinbutton_port,
- "spinbutton_priority", &settings->spinbutton_priority,
- "checkbutton_ssl", &settings->checkbutton_ssl,
- "checkbutton_ignore_ssl_errors", &settings->checkbutton_ignore_ssl_errors,
- "checkbutton_encryption", &settings->checkbutton_encryption,
- NULL);
-
- account_widget_jabber_setup (settings);
-
- empathy_glade_connect (glade,
- settings,
- "vbox_jabber_settings", "destroy", account_widget_jabber_destroy_cb,
- "button_forget", "clicked", account_widget_jabber_button_forget_clicked_cb,
- "entry_password", "changed", account_widget_jabber_entry_changed_cb,
- "spinbutton_port", "value-changed", account_widget_jabber_value_changed_cb,
- "spinbutton_priority", "value-changed", account_widget_jabber_value_changed_cb,
- "entry_id", "focus-out-event", account_widget_jabber_entry_focus_cb,
- "entry_password", "focus-out-event", account_widget_jabber_entry_focus_cb,
- "entry_resource", "focus-out-event", account_widget_jabber_entry_focus_cb,
- "entry_server", "focus-out-event", account_widget_jabber_entry_focus_cb,
- "checkbutton_ssl", "toggled", account_widget_jabber_checkbutton_toggled_cb,
- "checkbutton_ignore_ssl_errors", "toggled", account_widget_jabber_checkbutton_toggled_cb,
- "checkbutton_encryption", "toggled", account_widget_jabber_checkbutton_toggled_cb,
- NULL);
-
- g_object_unref (glade);
-
- gtk_widget_show (settings->vbox_settings);
-
- return settings->vbox_settings;
-}