From c1ea2e3b533fea657d90a3b6e263675526f192e5 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Mon, 9 Jul 2007 15:44:58 +0000 Subject: Add MSN setting UI. Fixes bug #443162 (Cosimo Cecchi). 2007-07-09 Xavier Claessens * libempathy-gtk/empathy-account-widget-msn.glade: * libempathy-gtk/empathy-account-widget-msn.c: * libempathy-gtk/empathy-account-widget-msn.h: * libempathy-gtk/empathy-accounts-dialog.c: * libempathy-gtk/Makefile.am: Add MSN setting UI. Fixes bug #443162 (Cosimo Cecchi). * libempathy-gtk/empathy-chat-view.c: * libempathy/empathy-log-manager.c: * libempathy/empathy-log-manager.h: Add needed API to show chat logs in Tracker. Fixes bug #452536. svn path=/trunk/; revision=178 --- libempathy-gtk/Makefile.am | 6 +- libempathy-gtk/empathy-account-widget-msn.c | 223 ++++++++++++++++++++++++ libempathy-gtk/empathy-account-widget-msn.glade | 158 +++++++++++++++++ libempathy-gtk/empathy-account-widget-msn.h | 34 ++++ libempathy-gtk/empathy-accounts-dialog.c | 8 +- libempathy-gtk/empathy-chat-view.c | 2 +- 6 files changed, 427 insertions(+), 4 deletions(-) create mode 100644 libempathy-gtk/empathy-account-widget-msn.c create mode 100644 libempathy-gtk/empathy-account-widget-msn.glade create mode 100644 libempathy-gtk/empathy-account-widget-msn.h (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index 8e7ef602f..653c26811 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -39,7 +39,8 @@ libempathy_gtk_la_SOURCES = \ empathy-new-chatroom-dialog.c \ empathy-chatrooms-window.c \ empathy-log-window.c \ - empathy-ui-utils.c + empathy-ui-utils.c \ + empathy-account-widget-msn.c libempathy_gtk_la_LIBADD = \ $(EMPATHY_LIBS) \ @@ -95,7 +96,8 @@ glade_DATA = \ empathy-chatrooms-window.glade \ empathy-spell-dialog.glade \ empathy-log-window.glade \ - empathy-chat.glade + empathy-chat.glade \ + empathy-account-widget-msn.glade dtddir = $(datadir)/empathy dtd_DATA = \ diff --git a/libempathy-gtk/empathy-account-widget-msn.c b/libempathy-gtk/empathy-account-widget-msn.c new file mode 100644 index 000000000..9e58843a5 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-msn.c @@ -0,0 +1,223 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 Collabora Ltd. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Authors: Cosimo Cecchi + */ + +#include "config.h" + +#include +#include +#include + +#include +#include +#include + +#include + +#include + +#include "empathy-account-widget-msn.h" +#include "empathy-ui-utils.h" + +typedef struct { + McAccount *account; + + GtkWidget *vbox_settings; + GtkWidget *button_forget; + GtkWidget *entry_id; + GtkWidget *entry_password; + GtkWidget *entry_server; + GtkWidget *spinbutton_port; +} EmpathyAccountWidgetMSN; + +static gboolean account_widget_msn_entry_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + EmpathyAccountWidgetMSN *settings); +static void account_widget_msn_entry_changed_cb (GtkWidget *widget, + EmpathyAccountWidgetMSN *settings); +static void account_widget_msn_value_changed_cb (GtkWidget *spinbutton, + EmpathyAccountWidgetMSN *settings); +static void account_widget_msn_button_forget_clicked_cb (GtkWidget *button, + EmpathyAccountWidgetMSN *settings); +static void account_widget_msn_destroy_cb (GtkWidget *widget, + EmpathyAccountWidgetMSN *settings); +static void account_widget_msn_setup (EmpathyAccountWidgetMSN *settings); + +static gboolean +account_widget_msn_entry_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + EmpathyAccountWidgetMSN *settings) +{ + const gchar *param; + const gchar *str; + + if (widget == settings->entry_password) { + param = "password"; + } + 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_get_param_string (settings->account, param, &value); + gtk_entry_set_text (GTK_ENTRY (widget), value ? value : ""); + g_free (value); + } else { + mc_account_set_param_string (settings->account, param, str); + } + + return FALSE; +} + +static void +account_widget_msn_entry_changed_cb (GtkWidget *widget, + EmpathyAccountWidgetMSN *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_msn_value_changed_cb (GtkWidget *spinbutton, + EmpathyAccountWidgetMSN *settings) +{ + if (spinbutton == settings->spinbutton_port) { + gdouble value; + + value = gtk_spin_button_get_value (GTK_SPIN_BUTTON (spinbutton)); + mc_account_set_param_int (settings->account, "port", (gint) value); + } +} + +static void +account_widget_msn_button_forget_clicked_cb (GtkWidget *button, + EmpathyAccountWidgetMSN *settings) +{ + mc_account_set_param_string (settings->account, "password", ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_password), ""); +} + +static void +account_widget_msn_destroy_cb (GtkWidget *widget, + EmpathyAccountWidgetMSN *settings) +{ + g_object_unref (settings->account); + g_free (settings); +} + +static void +account_widget_msn_setup (EmpathyAccountWidgetMSN *settings) +{ + guint port = 0; + gchar *id = NULL; + gchar *server = NULL; + gchar *password = NULL; + + mc_account_get_param_int (settings->account, "port", &port); + mc_account_get_param_string (settings->account, "account", &id); + mc_account_get_param_string (settings->account, "server", &server); + mc_account_get_param_string (settings->account, "password", &password); + + gtk_entry_set_text (GTK_ENTRY (settings->entry_id), id ? id : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_password), password ? password : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_server), server ? server : ""); + gtk_spin_button_set_value (GTK_SPIN_BUTTON (settings->spinbutton_port), port); + + gtk_widget_set_sensitive (settings->button_forget, !G_STR_EMPTY (password)); + + g_free (id); + g_free (server); + g_free (password); +} + +GtkWidget * +empathy_account_widget_msn_new (McAccount *account) +{ + EmpathyAccountWidgetMSN *settings; + GladeXML *glade; + GtkSizeGroup *size_group; + GtkWidget *label_id; + GtkWidget *label_password; + GtkWidget *label_server; + GtkWidget *label_port; + + settings = g_new0 (EmpathyAccountWidgetMSN, 1); + settings->account = g_object_ref (account); + + glade = empathy_glade_get_file ("empathy-account-widget-msn.glade", + "vbox_msn_settings", + NULL, + "vbox_msn_settings", &settings->vbox_settings, + "button_forget", &settings->button_forget, + "label_id", &label_id, + "label_password", &label_password, + "label_server", &label_server, + "label_port", &label_port, + "entry_id", &settings->entry_id, + "entry_password", &settings->entry_password, + "entry_server", &settings->entry_server, + "spinbutton_port", &settings->spinbutton_port, + NULL); + + account_widget_msn_setup (settings); + + empathy_glade_connect (glade, + settings, + "vbox_msn_settings", "destroy", account_widget_msn_destroy_cb, + "button_forget", "clicked", account_widget_msn_button_forget_clicked_cb, + "entry_id", "changed", account_widget_msn_entry_changed_cb, + "entry_password", "changed", account_widget_msn_entry_changed_cb, + "entry_server", "changed", account_widget_msn_entry_changed_cb, + "entry_id", "focus-out-event", account_widget_msn_entry_focus_cb, + "entry_password", "focus-out-event", account_widget_msn_entry_focus_cb, + "entry_server", "focus-out-event", account_widget_msn_entry_focus_cb, + "spinbutton_port", "value-changed", account_widget_msn_value_changed_cb, + NULL); + + g_object_unref (glade); + + /* Set up remaining widgets */ + size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); + + gtk_size_group_add_widget (size_group, label_id); + gtk_size_group_add_widget (size_group, label_password); + gtk_size_group_add_widget (size_group, label_server); + gtk_size_group_add_widget (size_group, label_port); + + g_object_unref (size_group); + + gtk_widget_show (settings->vbox_settings); + + return settings->vbox_settings; +} diff --git a/libempathy-gtk/empathy-account-widget-msn.glade b/libempathy-gtk/empathy-account-widget-msn.glade new file mode 100644 index 000000000..a1ab76f67 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-msn.glade @@ -0,0 +1,158 @@ + + + + + + True + msn account settings + False + + + True + 4 + 2 + 12 + 6 + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 0 65536 1 10 10 + 1 + True + + + 1 + 2 + 3 + 4 + + + + + + True + 0 + Login I_D: + True + entry_id + + + GTK_FILL + + + + + + True + 0 + Pass_word: + True + entry_password + + + 1 + 2 + GTK_FILL + + + + + + True + 2 + + + True + True + False + + + + + True + True + Forget password and clear the entry. + 0 + + + True + gtk-clear + 1 + + + + + False + False + 1 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + + + 1 + 2 + + + + + + True + 0 + _Server: + True + entry_server + + + 2 + 3 + GTK_FILL + + + + + + True + True + + + 1 + 2 + 2 + 3 + + + + + + True + 0 + _Port: + True + + + 3 + 4 + GTK_FILL + + + + + + + diff --git a/libempathy-gtk/empathy-account-widget-msn.h b/libempathy-gtk/empathy-account-widget-msn.h new file mode 100644 index 000000000..a61331623 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-msn.h @@ -0,0 +1,34 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 Collabora Ltd. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Authors: Cosimo Cecchi + */ + +#ifndef __EMPATHY_ACCOUNT_WIDGET_MSN_H__ +#define __EMPATHY_ACCOUNT_WIDGET_MSN_H__ + +#include + +G_BEGIN_DECLS + +GtkWidget *empathy_account_widget_msn_new (McAccount *account); + +G_END_DECLS + +#endif /* __EMPATHY_ACCOUNT_WIDGET_MSN_H__ */ diff --git a/libempathy-gtk/empathy-accounts-dialog.c b/libempathy-gtk/empathy-accounts-dialog.c index 0e5f909c1..8f6a281e8 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -46,6 +46,7 @@ #include "empathy-profile-chooser.h" #include "empathy-account-widget-generic.h" #include "empathy-account-widget-jabber.h" +#include "empathy-account-widget-msn.h" #define DEBUG_DOMAIN "AccountDialog" @@ -287,7 +288,12 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, if (strcmp (config_ui, "jabber") == 0) { dialog->settings_widget = empathy_account_widget_jabber_new (account); - } else { + } + else if (strcmp (config_ui, "msn") == 0) { + dialog ->settings_widget = + empathy_account_widget_msn_new (account); + } + else { dialog->settings_widget = empathy_account_widget_generic_new (account, dialog->label_name); diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c index fda268676..65094bda9 100644 --- a/libempathy-gtk/empathy-chat-view.c +++ b/libempathy-gtk/empathy-chat-view.c @@ -2004,7 +2004,7 @@ empathy_chat_view_find_abilities (EmpathyChatView *view, void empathy_chat_view_highlight (EmpathyChatView *view, - const gchar *text) + const gchar *text) { GtkTextBuffer *buffer; GtkTextIter iter; -- cgit v1.2.3