* changed visibility of characters in password dialog (hildon + gtk-glade)
[modest] / src / hildon / modest-ui.c
1 /* modest-ui.c */
2
3 /* insert (c)/licensing information) */
4
5 #include <gtk/gtk.h>
6 #include <glade/glade.h>
7 #include <glib/gi18n.h>
8 #include <string.h>
9
10 #ifdef HAVE_CONFIG_H
11 #include <config.h>
12 #endif /*HAVE_CONFIG_H*/
13
14 /* TODO: put in auto* */
15 #include <tny-text-buffer-stream.h>
16 #include <tny-msg-folder.h>
17
18 #include "../modest-ui.h"
19 #include "../modest-window-mgr.h"
20 #include "../modest-account-mgr.h"
21 #include "../modest-account-mgr.h"
22 #include "../modest-identity-mgr.h"
23
24 #include "../modest-tny-account-store.h"
25 #include "../modest-tny-folder-tree-view.h"
26 #include "../modest-tny-header-tree-view.h"
27 #include "../modest-tny-msg-view.h"
28 #include "../modest-tny-transport-actions.h"
29 #include "../modest-tny-store-actions.h"
30
31 #include "../modest-text-utils.h"
32 #include "../modest-tny-msg-actions.h"
33
34 #include "../modest-editor-window.h"
35
36 #include "modest-ui-glade.h"
37 #include "modest-ui-wizard.h"
38
39 /* 'private'/'protected' functions */
40 static void   modest_ui_class_init     (ModestUIClass *klass);
41 static void   modest_ui_init           (ModestUI *obj);
42 static void   modest_ui_finalize       (GObject *obj);
43
44 static void   modest_ui_window_destroy    (GtkWidget *win, GdkEvent *event, gpointer data);
45 static void   modest_ui_last_window_closed (GObject *obj, gpointer data);
46
47 static void   on_password_requested (ModestTnyAccountStore *account_store, const gchar *account_name, gpointer user_data);
48
49 /* list my signals */
50 enum {
51         /* MY_SIGNAL_1, */
52         /* MY_SIGNAL_2, */
53         LAST_SIGNAL
54 };
55
56 /* globals */
57 static GObjectClass *parent_class = NULL;
58
59
60 GType
61 modest_ui_get_type (void)
62 {
63         static GType my_type = 0;
64         if (!my_type) {
65                 static const GTypeInfo my_info = {
66                         sizeof(ModestUIClass),
67                         NULL,           /* base init */
68                         NULL,           /* base finalize */
69                         (GClassInitFunc) modest_ui_class_init,
70                         NULL,           /* class finalize */
71                         NULL,           /* class data */
72                         sizeof(ModestUI),
73                         1,              /* n_preallocs */
74                         (GInstanceInitFunc) modest_ui_init,
75                 };
76                 my_type = g_type_register_static (G_TYPE_OBJECT,
77                                                   "ModestUI",
78                                                   &my_info, 0);
79         }
80         return my_type;
81 }
82
83
84 static void
85 modest_ui_class_init (ModestUIClass *klass)
86 {
87         GObjectClass *gobject_class;
88         gobject_class = (GObjectClass*) klass;
89
90         parent_class            = g_type_class_peek_parent (klass);
91         gobject_class->finalize = modest_ui_finalize;
92
93         g_type_class_add_private (gobject_class, sizeof(ModestUIPrivate));
94
95 }
96
97
98 static void
99 modest_ui_init (ModestUI *obj)
100 {
101         ModestUIPrivate *priv = MODEST_UI_GET_PRIVATE(obj);
102
103         priv->modest_acc_mgr    = NULL;
104         priv->modest_id_mgr     = NULL;
105         priv->modest_conf       = NULL;
106         priv->modest_window_mgr = NULL;
107         priv->glade_xml         = NULL;
108         priv->folder_view       = NULL;
109         priv->header_view       = NULL;
110         priv->message_view      = NULL;
111         priv->current_folder    = NULL;
112 }
113
114
115 static void
116 modest_ui_finalize (GObject *obj)
117 {
118         ModestUIPrivate *priv = MODEST_UI_GET_PRIVATE(obj);
119
120         if (priv->modest_acc_mgr)
121                 g_object_unref (priv->modest_acc_mgr);
122         priv->modest_acc_mgr = NULL;
123
124         if (priv->modest_id_mgr)
125                 g_object_unref (priv->modest_id_mgr);
126         priv->modest_id_mgr = NULL;
127
128         if (priv->modest_conf)
129                 g_object_unref (priv->modest_conf);
130         priv->modest_conf = NULL;
131
132         if (priv->modest_window_mgr)
133                 g_object_unref (priv->modest_window_mgr);
134         priv->modest_window_mgr = NULL;
135 }
136
137
138 static void
139 on_accounts_reloaded (ModestTnyAccountStore *account_store, gpointer user_data)
140 {
141         ModestUIPrivate *priv = user_data;
142
143         g_return_if_fail (MODEST_IS_TNY_FOLDER_TREE_VIEW (priv->folder_view));
144         g_return_if_fail (MODEST_IS_TNY_HEADER_TREE_VIEW (priv->header_view));
145
146         modest_tny_header_tree_view_set_folder (priv->header_view, NULL);
147
148         modest_tny_folder_tree_view_update_model(priv->folder_view, account_store);
149 }
150
151
152 GObject*
153 modest_ui_new (ModestConf *modest_conf)
154 {
155         GObject *obj;
156         ModestUIPrivate *priv;
157         ModestAccountMgr *modest_acc_mgr;
158         ModestIdentityMgr *modest_id_mgr;
159         TnyAccountStoreIface *account_store_iface;
160         GSList *account_names_list;
161         GSList *identities_list;
162
163         g_return_val_if_fail (modest_conf, NULL);
164
165         obj = g_object_new(MODEST_TYPE_UI, NULL);
166         priv = MODEST_UI_GET_PRIVATE(obj);
167
168         modest_acc_mgr = MODEST_ACCOUNT_MGR(modest_account_mgr_new (modest_conf));
169         if (!modest_acc_mgr) {
170                 g_warning ("could not create ModestAccountMgr instance");
171                 g_object_unref (obj);
172                 return NULL;
173         }
174
175         modest_id_mgr = MODEST_IDENTITY_MGR(modest_identity_mgr_new (modest_conf));
176         if (!modest_id_mgr) {
177                 g_warning ("could not create ModestIdentityMgr instance");
178                 g_object_unref (obj);
179                 return NULL;
180         }
181
182         account_store_iface =
183                 TNY_ACCOUNT_STORE_IFACE(modest_tny_account_store_new (modest_acc_mgr));
184         if (!account_store_iface) {
185                 g_warning ("could not initialze ModestTnyAccountStore");
186                 return NULL;
187         }
188         g_signal_connect (account_store_iface, "password_requested",
189                           G_CALLBACK(on_password_requested),
190                           NULL);
191         g_signal_connect (account_store_iface, "accounts_reloaded",
192                           G_CALLBACK(on_accounts_reloaded), priv);
193
194         glade_init ();
195         priv->glade_xml = glade_xml_new (MODEST_GLADE, NULL, NULL);
196         if (!priv->glade_xml) {
197                 g_warning ("failed to do glade stuff");
198                 g_object_unref (obj);
199                 return NULL;
200         }
201
202         /* FIXME: could be used, but doesn't work atm.
203          * glade_xml_signal_autoconnect(priv->glade_xml);
204          */
205
206         priv->modest_acc_mgr = modest_acc_mgr;
207         priv->modest_id_mgr  = modest_id_mgr;
208         g_object_ref (priv->modest_conf = modest_conf);
209
210         priv->account_store = account_store_iface;
211
212         priv->modest_window_mgr = MODEST_WINDOW_MGR(modest_window_mgr_new());
213         g_signal_connect (priv->modest_window_mgr, "last_window_closed",
214                           G_CALLBACK(modest_ui_last_window_closed),
215                           NULL);
216
217         account_names_list = modest_account_mgr_server_account_names(modest_acc_mgr,
218                                         NULL, MODEST_PROTO_TYPE_ANY, NULL, FALSE);
219         identities_list = modest_identity_mgr_identity_names(modest_id_mgr, NULL);
220         if (!(account_names_list != NULL || identities_list != NULL))
221                 wizard_account_dialog(MODEST_UI(obj));
222         g_slist_free(account_names_list);
223         g_slist_free(identities_list);
224
225         return obj;
226 }
227
228
229 static void
230 modest_ui_last_window_closed (GObject *obj, gpointer data)
231 {
232         /* FIXME: Other cleanups todo? Finalize Tinymail? */
233         gtk_main_quit ();
234 }
235
236
237 static void
238 on_password_requested (ModestTnyAccountStore *account_store,
239                        const gchar *account_name,
240                        gpointer user_data) {
241
242         GtkWidget *passdialog;
243         GtkWidget *vbox;
244         GtkWidget *infolabel;
245         GtkWidget *passentry;
246         gint retval;
247         const gchar *infostring = g_strconcat(_("Please enter the password for "), account_name, ".", NULL);
248
249         passdialog = gtk_dialog_new_with_buttons(_("Password"),
250                                                  NULL,
251                                                  GTK_DIALOG_MODAL|GTK_DIALOG_DESTROY_WITH_PARENT,
252                                                  GTK_STOCK_OK,
253                                                  GTK_RESPONSE_ACCEPT,
254                                                  GTK_STOCK_CANCEL,
255                                                  GTK_RESPONSE_REJECT,
256                                                  NULL);
257
258         vbox = gtk_vbox_new(FALSE, 0);
259
260         infolabel = gtk_label_new(infostring);
261         passentry = gtk_entry_new();
262         gtk_entry_set_visibility(passentry, FALSE);
263
264         gtk_box_pack_start(GTK_BOX(GTK_DIALOG(passdialog)->vbox), infolabel, FALSE, FALSE, 0);
265         gtk_box_pack_start(GTK_BOX(GTK_DIALOG(passdialog)->vbox), passentry, FALSE, FALSE, 0);
266         gtk_widget_show_all(passdialog);
267
268         retval = gtk_dialog_run (GTK_DIALOG(passdialog));
269
270         switch (retval) {
271         case GTK_RESPONSE_ACCEPT:
272                 modest_account_mgr_set_server_account_string(modest_tny_account_store_get_accout_mgr(account_store),
273                                                              account_name,
274                                                              "password",
275                                                              gtk_entry_get_text(GTK_ENTRY(passentry)),
276                                                              NULL);
277                 break;
278         case GTK_RESPONSE_CANCEL:
279                         /* FIXME:
280                          * What happens, if canceled?"
281                          */
282                 break;
283         }
284
285         gtk_widget_destroy (passdialog);
286 }
287
288
289 void
290 on_account_selector_selection_changed (GtkWidget *widget, gpointer user_data)
291 {
292         GtkTreeModel *model = gtk_combo_box_get_model(GTK_COMBO_BOX(widget));
293         GtkTreeIter iter;
294
295         gchar *account_name;
296
297         if (gtk_combo_box_get_active_iter(GTK_COMBO_BOX(widget), &iter)) {
298                 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter,
299                                    0, &account_name, -1);
300         } else {
301                 account_name="empty";
302         }
303
304         g_message("Value: '%s'\n", account_name);
305
306         free(account_name);
307 }
308
309