aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-07-09 23:44:58 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-07-09 23:44:58 +0800
commit7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183 (patch)
treec5c87fd084b2847170aac010b40268ec663cd5cc /libempathy-gtk
parentc395e06eb884c44a549af3f173e0f5f47b3516c8 (diff)
downloadgsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar.gz
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar.bz2
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar.lz
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar.xz
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.tar.zst
gsoc2013-empathy-7309863828eb3ef4cb9ff267cd2f0a2c9a8b3183.zip
2007-07-09 Xavier Claessens <xclaesse@gmail.com>
* 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. git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@178 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/Makefile.am6
-rw-r--r--libempathy-gtk/empathy-account-widget-msn.c223
-rw-r--r--libempathy-gtk/empathy-account-widget-msn.glade158
-rw-r--r--libempathy-gtk/empathy-account-widget-msn.h34
-rw-r--r--libempathy-gtk/empathy-accounts-dialog.c8
-rw-r--r--libempathy-gtk/empathy-chat-view.c2
6 files changed, 427 insertions, 4 deletions
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 <anarki@lilik.it>
+ */
+
+#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 "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 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
+<!--*- mode: xml -*-->
+<glade-interface>
+ <widget class="GtkWindow" id="account_msn_settings">
+ <property name="visible">True</property>
+ <property name="title" translatable="yes">msn account settings</property>
+ <property name="resizable">False</property>
+ <child>
+ <widget class="GtkTable" id="vbox_msn_settings">
+ <property name="visible">True</property>
+ <property name="n_rows">4</property>
+ <property name="n_columns">2</property>
+ <property name="column_spacing">12</property>
+ <property name="row_spacing">6</property>
+ <child>
+ <widget class="GtkSpinButton" id="spinbutton_port">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
+ <property name="adjustment">0 0 65536 1 10 10</property>
+ <property name="climb_rate">1</property>
+ <property name="numeric">True</property>
+ </widget>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="top_attach">3</property>
+ <property name="bottom_attach">4</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkLabel" id="label_id">
+ <property name="visible">True</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">Login I_D:</property>
+ <property name="use_underline">True</property>
+ <property name="mnemonic_widget">entry_id</property>
+ </widget>
+ <packing>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkLabel" id="label_password">
+ <property name="visible">True</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">Pass_word:</property>
+ <property name="use_underline">True</property>
+ <property name="mnemonic_widget">entry_password</property>
+ </widget>
+ <packing>
+ <property name="top_attach">1</property>
+ <property name="bottom_attach">2</property>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkHBox" id="hbox182">
+ <property name="visible">True</property>
+ <property name="spacing">2</property>
+ <child>
+ <widget class="GtkEntry" id="entry_password">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="visibility">False</property>
+ </widget>
+ </child>
+ <child>
+ <widget class="GtkButton" id="button_forget">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="tooltip" translatable="yes">Forget password and clear the entry.</property>
+ <property name="response_id">0</property>
+ <child>
+ <widget class="GtkImage" id="image839">
+ <property name="visible">True</property>
+ <property name="stock">gtk-clear</property>
+ <property name="icon_size">1</property>
+ </widget>
+ </child>
+ </widget>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="position">1</property>
+ </packing>
+ </child>
+ </widget>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="top_attach">1</property>
+ <property name="bottom_attach">2</property>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options">GTK_FILL</property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkEntry" id="entry_id">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ </widget>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkLabel" id="label_server">
+ <property name="visible">True</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">_Server:</property>
+ <property name="use_underline">True</property>
+ <property name="mnemonic_widget">entry_server</property>
+ </widget>
+ <packing>
+ <property name="top_attach">2</property>
+ <property name="bottom_attach">3</property>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkEntry" id="entry_server">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ </widget>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="top_attach">2</property>
+ <property name="bottom_attach">3</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ <child>
+ <widget class="GtkLabel" id="label_port">
+ <property name="visible">True</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">_Port:</property>
+ <property name="use_underline">True</property>
+ </widget>
+ <packing>
+ <property name="top_attach">3</property>
+ <property name="bottom_attach">4</property>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+ </widget>
+ </child>
+ </widget>
+</glade-interface>
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 <anarki@lilik.it>
+ */
+
+#ifndef __EMPATHY_ACCOUNT_WIDGET_MSN_H__
+#define __EMPATHY_ACCOUNT_WIDGET_MSN_H__
+
+#include <libmissioncontrol/mc-account.h>
+
+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;