From 752849381a4b486de3d697d7c57443bea42f9bee Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Thu, 23 Aug 2007 10:25:49 +0000 Subject: Add specialised UI for salut settings. Configure a Salut account first 2007-08-23 Xavier Claessens * libempathy-gtk/empathy-account-widget-salut.glade: * libempathy-gtk/empathy-account-widget-salut.c: * libempathy-gtk/empathy-account-widget-salut.h: * libempathy-gtk/empathy-preferences.h: * libempathy-gtk/empathy-accounts-dialog.c: * libempathy-gtk/Makefile.am: * src/empathy.c: * configure.ac: * data/empathy.schemas.in: Add specialised UI for salut settings. Configure a Salut account first time empathy is started with salut CM installed using gnome-about-me information. Fixes bug #447467 (Cosimo Cecchi, Xavier Claessens). svn path=/trunk/; revision=266 --- libempathy-gtk/Makefile.am | 15 +- libempathy-gtk/empathy-account-widget-salut.c | 184 ++++++++++ libempathy-gtk/empathy-account-widget-salut.glade | 395 ++++++++++++++++++++++ libempathy-gtk/empathy-account-widget-salut.h | 34 ++ libempathy-gtk/empathy-accounts-dialog.c | 5 + libempathy-gtk/empathy-preferences.h | 1 + 6 files changed, 628 insertions(+), 6 deletions(-) create mode 100644 libempathy-gtk/empathy-account-widget-salut.c create mode 100644 libempathy-gtk/empathy-account-widget-salut.glade create mode 100644 libempathy-gtk/empathy-account-widget-salut.h (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index 7b0a9db29..f73966a3e 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -20,6 +20,8 @@ libempathy_gtk_la_SOURCES = \ empathy-accounts-dialog.c \ empathy-account-widget-generic.c \ empathy-account-widget-jabber.c \ + empathy-account-widget-msn.c \ + empathy-account-widget-salut.c \ empathy-profile-chooser.c \ empathy-cell-renderer-expander.c \ empathy-cell-renderer-text.c \ @@ -43,8 +45,7 @@ libempathy_gtk_la_SOURCES = \ empathy-new-chatroom-dialog.c \ empathy-chatrooms-window.c \ empathy-log-window.c \ - empathy-ui-utils.c \ - empathy-account-widget-msn.c + empathy-ui-utils.c # do not distribute generated files nodist_libempathy_gtk_la_SOURCES =\ @@ -66,6 +67,8 @@ libempathy_gtk_headers = \ empathy-accounts-dialog.h \ empathy-account-widget-generic.h \ empathy-account-widget-jabber.h \ + empathy-account-widget-msn.h \ + empathy-account-widget-salut.h \ empathy-profile-chooser.h \ empathy-cell-renderer-expander.h \ empathy-cell-renderer-text.h \ @@ -89,8 +92,7 @@ libempathy_gtk_headers = \ empathy-new-chatroom-dialog.h \ empathy-chatrooms-window.h \ empathy-log-window.h \ - empathy-ui-utils.h \ - empathy-account-widget-msn.h + empathy-ui-utils.h libempathy_gtk_includedir = $(includedir)/libempathy-gtk/ libempathy_gtk_include_HEADERS = \ @@ -107,13 +109,14 @@ glade_DATA = \ empathy-presence-chooser.glade \ empathy-accounts-dialog.glade \ empathy-account-widget-jabber.glade \ + empathy-account-widget-msn.glade \ + empathy-account-widget-salut.glade \ empathy-new-chatroom-dialog.glade \ empathy-group-chat.glade \ empathy-chatrooms-window.glade \ empathy-spell-dialog.glade \ empathy-log-window.glade \ - empathy-chat.glade \ - empathy-account-widget-msn.glade + empathy-chat.glade empathy-gtk-enum-types.h: stamp-empathy-gtk-enum-types.h @true diff --git a/libempathy-gtk/empathy-account-widget-salut.c b/libempathy-gtk/empathy-account-widget-salut.c new file mode 100644 index 000000000..94da89e2c --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-salut.c @@ -0,0 +1,184 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 Cosimo Cecchi + * + * 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 "empathy-account-widget-salut.h" +#include "empathy-ui-utils.h" + +typedef struct { + McAccount *account; + + GtkWidget *vbox_settings; + GtkWidget *entry_nickname; + GtkWidget *entry_published; + GtkWidget *entry_first_name; + GtkWidget *entry_last_name; + GtkWidget *entry_email; + GtkWidget *entry_jid; +} EmpathyAccountWidgetSalut; + +static gboolean account_widget_salut_entry_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + EmpathyAccountWidgetSalut *settings); +static void account_widget_salut_destroy_cb (GtkWidget *widget, + EmpathyAccountWidgetSalut *settings); +static void account_widget_salut_setup (EmpathyAccountWidgetSalut *settings); + + + +static gboolean +account_widget_salut_entry_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + EmpathyAccountWidgetSalut *settings) +{ + const gchar *param; + const gchar *str; + + if (widget == settings->entry_nickname) { + param = "nickname"; + } + else if (widget == settings->entry_published) { + param = "published-name"; + } + else if (widget == settings->entry_first_name) { + param = "first-name"; + } + else if (widget == settings->entry_last_name) { + param = "last-name"; + } + else if (widget == settings->entry_email) { + param = "email"; + } + else if (widget == settings->entry_jid) { + param = "jid"; + } + 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_salut_destroy_cb (GtkWidget *widget, + EmpathyAccountWidgetSalut *settings) +{ + g_object_unref (settings->account); + g_free (settings); +} + +static void +account_widget_salut_setup (EmpathyAccountWidgetSalut *settings) +{ + gchar *nickname = NULL; + gchar *published_name = NULL; + gchar *first_name = NULL; + gchar *last_name = NULL; + gchar *email = NULL; + gchar *jid = NULL; + + mc_account_get_param_string (settings->account, "nickname", &nickname); + mc_account_get_param_string (settings->account, "published-name", &published_name); + mc_account_get_param_string (settings->account, "first-name", &first_name); + mc_account_get_param_string (settings->account, "last-name", &last_name); + mc_account_get_param_string (settings->account, "email", &email); + mc_account_get_param_string (settings->account, "jid", &jid); + + gtk_entry_set_text (GTK_ENTRY (settings->entry_nickname), nickname ? nickname : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_published), published_name ? published_name : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_first_name), first_name ? first_name : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_last_name), last_name ? last_name : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_email), email ? email : ""); + gtk_entry_set_text (GTK_ENTRY (settings->entry_jid), jid ? jid : ""); + + g_free (nickname); + g_free (published_name); + g_free (first_name); + g_free (last_name); + g_free (email); + g_free (jid); +} + + +GtkWidget * +empathy_account_widget_salut_new (McAccount *account) +{ + EmpathyAccountWidgetSalut *settings; + GladeXML *glade; + + settings = g_new0 (EmpathyAccountWidgetSalut, 1); + settings->account = g_object_ref (account); + + glade = empathy_glade_get_file ("empathy-account-widget-salut.glade", + "vbox_salut_settings", + NULL, + "vbox_salut_settings", &settings->vbox_settings, + "entry_published", &settings->entry_published, + "entry_nickname", &settings->entry_nickname, + "entry_first_name", &settings->entry_first_name, + "entry_last_name", &settings->entry_last_name, + "entry_email", &settings->entry_email, + "entry_jid", &settings->entry_jid, + NULL); + + account_widget_salut_setup (settings); + + empathy_glade_connect (glade, + settings, + "vbox_salut_settings", "destroy", account_widget_salut_destroy_cb, + "entry_nickname", "focus-out-event", account_widget_salut_entry_focus_cb, + "entry_published", "focus-out-event", account_widget_salut_entry_focus_cb, + "entry_first_name", "focus-out-event", account_widget_salut_entry_focus_cb, + "entry_last_name", "focus-out-event", account_widget_salut_entry_focus_cb, + "entry_email", "focus-out-event", account_widget_salut_entry_focus_cb, + "entry_jid", "focus-out-event", account_widget_salut_entry_focus_cb, + NULL); + + g_object_unref (glade); + + gtk_widget_show (settings->vbox_settings); + + return settings->vbox_settings; +} diff --git a/libempathy-gtk/empathy-account-widget-salut.glade b/libempathy-gtk/empathy-account-widget-salut.glade new file mode 100644 index 000000000..14ede6958 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-salut.glade @@ -0,0 +1,395 @@ + + + + + + + True + salut account settings + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + False + False + True + False + False + GDK_WINDOW_TYPE_HINT_NORMAL + GDK_GRAVITY_NORTH_WEST + True + False + + + + True + False + 6 + + + + True + 2 + 3 + False + 6 + 12 + + + + True + _First Name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_first_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + _Last Name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_last_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 0 + 1 + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 1 + 2 + + + + + + 0 + False + False + + + + + + True + True + False + 0 + + + + True + 4 + 3 + False + 6 + 12 + + + + True + _E-mail: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_email + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 2 + 3 + fill + + + + + + + True + _Jabber ID: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_jid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 3 + 4 + fill + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 2 + 3 + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 3 + 4 + + + + + + + True + _Nickname: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + _Published Name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + entry_published + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 0 + 1 + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 3 + 1 + 2 + + + + + + + + + True + <b>Advanced</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + label_item + + + + + 0 + False + False + + + + + + + diff --git a/libempathy-gtk/empathy-account-widget-salut.h b/libempathy-gtk/empathy-account-widget-salut.h new file mode 100644 index 000000000..57427187f --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-salut.h @@ -0,0 +1,34 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 Cosimo Cecchi + * + * 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_SALUT_H__ +#define __EMPATHY_ACCOUNT_WIDGET_SALUT_H__ + +#include + +G_BEGIN_DECLS + +GtkWidget *empathy_account_widget_salut_new (McAccount *account); + +G_END_DECLS + +#endif /* __EMPATHY_ACCOUNT_WIDGET_SALUT_H__ */ diff --git a/libempathy-gtk/empathy-accounts-dialog.c b/libempathy-gtk/empathy-accounts-dialog.c index 2a12eb1d5..3f2911972 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -47,6 +47,7 @@ #include "empathy-account-widget-generic.h" #include "empathy-account-widget-jabber.h" #include "empathy-account-widget-msn.h" +#include "empathy-account-widget-salut.h" #define DEBUG_DOMAIN "AccountDialog" @@ -287,6 +288,10 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, dialog ->settings_widget = empathy_account_widget_msn_new (account); } + else if (!empathy_strdiff (config_ui, "salut")) { + dialog->settings_widget = + empathy_account_widget_salut_new (account); + } else { dialog->settings_widget = empathy_account_widget_generic_new (account); diff --git a/libempathy-gtk/empathy-preferences.h b/libempathy-gtk/empathy-preferences.h index dc058d7ec..c787c814d 100644 --- a/libempathy-gtk/empathy-preferences.h +++ b/libempathy-gtk/empathy-preferences.h @@ -48,6 +48,7 @@ G_BEGIN_DECLS #define EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE EMPATHY_PREFS_PATH "/contacts/show_offline" #define EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM EMPATHY_PREFS_PATH "/contacts/sort_criterium" #define EMPATHY_PREFS_HINTS_CLOSE_MAIN_WINDOW EMPATHY_PREFS_PATH "/hints/close_main_window" +#define EMPATHY_PREFS_SALUT_ACCOUNT_CREATED EMPATHY_PREFS_PATH "/accounts/salut_created" GtkWidget * empathy_preferences_show (GtkWindow *parent); -- cgit v1.2.3