]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-widget-msn.c
891cc53546f1b1a50178baa34608a8d99b3c249f
[empathy.git] / libempathy-gtk / empathy-account-widget-msn.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  * 
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  *          Cosimo Cecchi <anarki@lilik.it>
21  */
22
23 #include "config.h"
24
25 #include <ctype.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <glade/glade.h>
32
33 #include <libmissioncontrol/mc-profile.h>
34
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-account-widget-msn.h"
38 #include "empathy-ui-utils.h"
39
40 typedef struct {
41         McAccount *account;
42
43         GtkWidget *vbox_settings;
44         GtkWidget *button_forget;
45         GtkWidget *entry_id;
46         GtkWidget *entry_password;
47         GtkWidget *entry_server;
48         GtkWidget *spinbutton_port;
49 } EmpathyAccountWidgetMSN;
50
51 static gboolean account_widget_msn_entry_focus_cb            (GtkWidget               *widget,
52                                                               GdkEventFocus           *event,
53                                                               EmpathyAccountWidgetMSN *settings);
54 static void     account_widget_msn_entry_changed_cb          (GtkWidget               *widget,
55                                                               EmpathyAccountWidgetMSN *settings);
56 static void     account_widget_msn_value_changed_cb          (GtkWidget               *spinbutton,
57                                                               EmpathyAccountWidgetMSN *settings);
58 static void     account_widget_msn_button_forget_clicked_cb  (GtkWidget               *button,
59                                                               EmpathyAccountWidgetMSN *settings);
60 static void     account_widget_msn_destroy_cb                (GtkWidget               *widget,
61                                                               EmpathyAccountWidgetMSN *settings);
62 static void     account_widget_msn_setup                     (EmpathyAccountWidgetMSN *settings);
63
64 static gboolean
65 account_widget_msn_entry_focus_cb (GtkWidget               *widget,
66                                    GdkEventFocus           *event,
67                                    EmpathyAccountWidgetMSN *settings)
68 {
69         const gchar *param;
70         const gchar *str;
71         
72         if (widget == settings->entry_password) {
73                 param = "password";
74         }
75         else if (widget == settings->entry_server) {
76                 param = "server";
77         }
78         else if (widget == settings->entry_id) {
79                 param = "account";
80         } else {
81                 return FALSE;
82         }
83         
84         str = gtk_entry_get_text (GTK_ENTRY (widget));
85         
86         if (G_STR_EMPTY (str)) {
87                 gchar *value = NULL;
88
89                 mc_account_get_param_string (settings->account, param, &value);
90                 gtk_entry_set_text (GTK_ENTRY (widget), value ? value : "");
91                 g_free (value);
92         } else {
93                 mc_account_set_param_string (settings->account, param, str);
94         }
95
96         return FALSE;
97 }
98
99 static void
100 account_widget_msn_entry_changed_cb (GtkWidget               *widget,
101                                      EmpathyAccountWidgetMSN *settings)
102 {
103         if (widget == settings->entry_password) {
104                 const gchar *str;
105
106                 str = gtk_entry_get_text (GTK_ENTRY (widget));
107                 gtk_widget_set_sensitive (settings->button_forget, !G_STR_EMPTY (str));
108         }
109 }
110
111 static void
112 account_widget_msn_value_changed_cb (GtkWidget                  *spinbutton,
113                                      EmpathyAccountWidgetMSN    *settings)
114 {
115         if (spinbutton == settings->spinbutton_port) {
116                 gdouble value;
117
118                 value = gtk_spin_button_get_value (GTK_SPIN_BUTTON (spinbutton));
119                 mc_account_set_param_int (settings->account, "port", (gint) value);
120         }
121 }
122
123 static void
124 account_widget_msn_button_forget_clicked_cb (GtkWidget               *button,
125                                              EmpathyAccountWidgetMSN *settings)
126 {
127         mc_account_set_param_string (settings->account, "password", "");
128         gtk_entry_set_text (GTK_ENTRY (settings->entry_password), "");
129 }
130
131 static void
132 account_widget_msn_destroy_cb (GtkWidget               *widget,
133                                EmpathyAccountWidgetMSN *settings)
134 {
135         g_object_unref (settings->account);
136         g_free (settings);
137 }
138
139 static void
140 account_widget_msn_setup (EmpathyAccountWidgetMSN *settings)
141 {
142         guint  port = 0;
143         gchar *id = NULL;
144         gchar *server = NULL;
145         gchar *password = NULL;
146
147         mc_account_get_param_int (settings->account, "port", &port);
148         mc_account_get_param_string (settings->account, "account", &id);
149         mc_account_get_param_string (settings->account, "server", &server);
150         mc_account_get_param_string (settings->account, "password", &password);
151
152         gtk_entry_set_text (GTK_ENTRY (settings->entry_id), id ? id : "");
153         gtk_entry_set_text (GTK_ENTRY (settings->entry_password), password ? password : "");
154         gtk_entry_set_text (GTK_ENTRY (settings->entry_server), server ? server : "");
155         gtk_spin_button_set_value (GTK_SPIN_BUTTON (settings->spinbutton_port), port);
156
157         gtk_widget_set_sensitive (settings->button_forget, !G_STR_EMPTY (password));
158
159         g_free (id);
160         g_free (server);
161         g_free (password);
162 }
163
164 GtkWidget *
165 empathy_account_widget_msn_new (McAccount *account)
166 {
167         EmpathyAccountWidgetMSN *settings;
168         GladeXML                *glade;
169
170         settings = g_new0 (EmpathyAccountWidgetMSN, 1);
171         settings->account = g_object_ref (account);
172
173         glade = empathy_glade_get_file ("empathy-account-widget-msn.glade",
174                                        "vbox_msn_settings",
175                                        NULL,
176                                        "vbox_msn_settings", &settings->vbox_settings,
177                                        "button_forget", &settings->button_forget,
178                                        "entry_id", &settings->entry_id,
179                                        "entry_password", &settings->entry_password,
180                                        "entry_server", &settings->entry_server,
181                                        "spinbutton_port", &settings->spinbutton_port,
182                                        NULL);
183
184         account_widget_msn_setup (settings);
185
186         empathy_glade_connect (glade, 
187                               settings,
188                               "vbox_msn_settings", "destroy", account_widget_msn_destroy_cb,
189                               "button_forget", "clicked", account_widget_msn_button_forget_clicked_cb,
190                               "entry_id", "changed", account_widget_msn_entry_changed_cb,
191                               "entry_password", "changed", account_widget_msn_entry_changed_cb,
192                               "entry_server", "changed", account_widget_msn_entry_changed_cb,
193                               "entry_id", "focus-out-event", account_widget_msn_entry_focus_cb,
194                               "entry_password", "focus-out-event", account_widget_msn_entry_focus_cb,
195                               "entry_server", "focus-out-event", account_widget_msn_entry_focus_cb,
196                               "spinbutton_port", "value-changed", account_widget_msn_value_changed_cb,
197                               NULL);
198
199         g_object_unref (glade);
200
201         gtk_widget_show (settings->vbox_settings);
202
203         return settings->vbox_settings;
204 }