Reenable editor settings dialog in gtk
[modest] / src / modest-init.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <sys/utsname.h>
31 #include <config.h>
32 #include <glib.h>
33 #include <glib-object.h>
34 #include <glib/gstdio.h>
35 #include <modest-runtime.h>
36 #include <modest-runtime-priv.h>
37 #include <modest-init.h>
38 #include <modest-defs.h>
39 #include "modest-address-book.h"
40 #include <modest-singletons.h>
41 #include <widgets/modest-header-view.h>
42 #include <widgets/modest-folder-view.h>
43 #include <modest-tny-platform-factory.h>
44 #include <modest-platform.h>
45 #include <modest-widget-memory.h>
46 #include <modest-widget-memory-priv.h>
47 #include <modest-local-folder-info.h>
48 #include <modest-account-mgr.h>
49 #include <modest-account-mgr-helpers.h>
50 #include <modest-icon-names.h>
51 #include "widgets/modest-global-settings-dialog.h"
52 #include "modest-tny-msg.h"
53 #include <libgnomevfs/gnome-vfs.h>
54 #include <string.h>
55 #include "modest-text-utils.h"
56 #include <locale.h>
57 #ifdef MODEST_TOOLKIT_HILDON2
58 #include "modest-hildon-includes.h"
59 #endif
60
61 static gboolean init_header_columns (ModestConf *conf, gboolean overwrite);
62 static gboolean init_default_account_maybe  (ModestAccountMgr *acc_mgr);
63 static void     init_i18n (void);
64 static void     init_stock_icons (void);
65 static void     init_debug_g_type (void);
66 static void     init_debug_logging (void);
67 static void     init_default_settings (ModestConf *conf);
68 static void     init_device_name (ModestConf *conf);
69 static gboolean init_ui (gint argc, gchar** argv);
70
71
72 static gboolean _is_initialized = FALSE;
73
74 /*
75  * defaults for the column headers
76  */
77 typedef struct {
78         ModestHeaderViewColumn col;
79         guint                  width;
80         gint                  sort;
81 } FolderCols;
82
83
84 static const guint MODEST_MAIN_PANED_POS_PERCENTAGE = 30;
85 static const guint MODEST_MSG_PANED_POS_PERCENTAGE = 50;
86
87 static const FolderCols INBOX_COLUMNS_DETAILS[] = {
88         {MODEST_HEADER_VIEW_COLUMN_ATTACH,  40, 0},
89         {MODEST_HEADER_VIEW_COLUMN_FROM,    80, 0},
90         {MODEST_HEADER_VIEW_COLUMN_SUBJECT, 80, 0},
91         {MODEST_HEADER_VIEW_COLUMN_RECEIVED_DATE, 60, 0},
92         {MODEST_HEADER_VIEW_COLUMN_SIZE, 50, 0}
93 };
94
95 static const FolderCols INBOX_COLUMNS_TWOLINES[] = {
96         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN, 180, 0},
97 };
98
99 static const FolderCols OUTBOX_COLUMNS_DETAILS[] = {
100         {MODEST_HEADER_VIEW_COLUMN_ATTACH,  40, 0},
101         {MODEST_HEADER_VIEW_COLUMN_TO,    80, 0},
102         {MODEST_HEADER_VIEW_COLUMN_SUBJECT, 80, 0},
103         {MODEST_HEADER_VIEW_COLUMN_SENT_DATE, 80, 0},
104         {MODEST_HEADER_VIEW_COLUMN_SIZE, 50, 0}
105 };
106
107 static const FolderCols OUTBOX_COLUMNS_TWOLINES[] = {
108         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT,180, 0}
109 //      {MODEST_HEADER_VIEW_COLUMN_STATUS, 240, 0}
110 };
111
112 static const FolderCols SENT_COLUMNS_TWOLINES[] = {
113         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT,180, 0},
114 };
115
116 #ifndef MODEST_TOOLKIT_GTK
117 static const TnyFolderType LOCAL_FOLDERS[] = {
118 /*      TNY_FOLDER_TYPE_OUTBOX, */
119         TNY_FOLDER_TYPE_DRAFTS,
120         TNY_FOLDER_TYPE_SENT
121 };
122 #else
123 static const TnyFolderType LOCAL_FOLDERS[] = {
124 /*      TNY_FOLDER_TYPE_OUTBOX, */
125         TNY_FOLDER_TYPE_DRAFTS,
126         TNY_FOLDER_TYPE_SENT,
127         TNY_FOLDER_TYPE_TRASH,
128         TNY_FOLDER_TYPE_ARCHIVE 
129 };
130 #endif /* MODEST_TOOLKIT_GTK */
131
132 static GList*
133 new_cold_ids_gslist_from_array( const FolderCols* cols, guint col_num)
134 {
135         GList *result = NULL;
136         
137         guint i = 0;
138         for (i = 0; i < col_num; ++i) {
139                 result = g_list_append (result, GINT_TO_POINTER (cols[i].col));
140         }
141         
142         return result;
143 }
144
145 GList* 
146 modest_init_get_default_header_view_column_ids (TnyFolderType folder_type, ModestHeaderViewStyle style)
147 {
148                 GList *result = NULL;
149                 
150                 switch (folder_type) {
151                 case TNY_FOLDER_TYPE_SENT:
152                 case TNY_FOLDER_TYPE_DRAFTS:
153                         if (style == MODEST_HEADER_VIEW_STYLE_DETAILS)
154                                 result = new_cold_ids_gslist_from_array (OUTBOX_COLUMNS_DETAILS,
155                                       G_N_ELEMENTS(OUTBOX_COLUMNS_DETAILS));
156                         else if (style == MODEST_HEADER_VIEW_STYLE_TWOLINES)
157                                 result = new_cold_ids_gslist_from_array (SENT_COLUMNS_TWOLINES,
158                                       G_N_ELEMENTS(SENT_COLUMNS_TWOLINES));
159                 break;
160                 case TNY_FOLDER_TYPE_OUTBOX:
161                         if (style == MODEST_HEADER_VIEW_STYLE_TWOLINES)
162                                 result = new_cold_ids_gslist_from_array (OUTBOX_COLUMNS_TWOLINES,
163                                       G_N_ELEMENTS(OUTBOX_COLUMNS_TWOLINES));
164                 break;
165
166                 default:
167                         if (style == MODEST_HEADER_VIEW_STYLE_DETAILS)
168                                 result =  new_cold_ids_gslist_from_array (INBOX_COLUMNS_DETAILS,
169                                       G_N_ELEMENTS(INBOX_COLUMNS_DETAILS));
170                         else if (style == MODEST_HEADER_VIEW_STYLE_TWOLINES)
171                                 result = new_cold_ids_gslist_from_array (INBOX_COLUMNS_TWOLINES,
172                                       G_N_ELEMENTS(INBOX_COLUMNS_TWOLINES));
173                 };
174                 
175                 if (!result) {
176                         g_warning("DEBUG: %s: No default columns IDs found for "
177                                 "folder_type=%d, style=%d\n", __FUNCTION__, folder_type, style);        
178                 }
179                 
180                 return result;
181 }
182
183
184 static gboolean
185 force_ke_recv_load (void)
186 {
187         if (strcmp ("cerm_device_memory_full",
188                     _KR("cerm_device_memory_full")) == 0) {
189                 g_debug ("%s: cannot get translation for cerm_device_memory_full",
190                            __FUNCTION__);
191                 return FALSE;
192         }
193
194         return TRUE;
195 }
196
197 gboolean
198 modest_init (int argc, char *argv[])
199 {
200         gboolean reset;
201
202         if (_is_initialized) {
203                 g_printerr ("modest: %s may only be invoked once\n", __FUNCTION__);
204                 return FALSE;
205         }
206
207         init_i18n();
208
209         if (!force_ke_recv_load()) {
210                 g_printerr ("modest: %s: ke-recv is missing "
211                             "or memory is very low\n", __FUNCTION__);
212                 /* don't return FALSE here, because it might be that ke-recv is 
213                    missing. TODO: find a way to verify that
214                 */
215         }
216
217         init_debug_g_type();
218         init_debug_logging();
219
220         /* initialize the prng, we need it when creating random files */
221         srandom((int)getpid());
222
223         if (!gnome_vfs_initialized()) {
224                 if (!gnome_vfs_init ()) {
225                         g_printerr ("modest: failed to init gnome-vfs\n");
226                         return FALSE;
227                 }
228         }
229
230         if (!modest_runtime_init()) {
231                 modest_init_uninit ();
232                 g_printerr ("modest: failed to initialize the modest runtime\n");
233                 return FALSE;
234         }
235
236         modest_plugin_factory_load_all (modest_runtime_get_plugin_factory ());
237
238         /* do an initial guess for the device name */
239         init_device_name (modest_runtime_get_conf());
240
241         if (!modest_platform_init(argc, argv)) {
242                 modest_init_uninit ();
243                 g_printerr ("modest: failed to run platform-specific initialization\n");
244                 return FALSE;
245         }
246
247         /* Initialize addressbook */
248         modest_address_book_init ();
249
250         reset = modest_runtime_get_debug_flags () & MODEST_RUNTIME_DEBUG_FACTORY_SETTINGS;
251         if (!init_header_columns(modest_runtime_get_conf(), TRUE)) {
252                 modest_init_uninit ();
253                 g_printerr ("modest: failed to init header columns\n");
254                 return FALSE;
255         }
256
257         init_default_settings (modest_runtime_get_conf ());
258
259         if (!modest_init_local_folders(NULL)) {
260                 modest_init_uninit ();
261                 g_printerr ("modest: failed to init local folders\n");
262                 return FALSE;
263         }
264
265         if (!init_default_account_maybe (modest_runtime_get_account_mgr ())) {
266                 modest_init_uninit ();
267                 g_printerr ("modest: failed to init default account\n");
268                 return FALSE;
269         }
270
271         if (!init_ui (argc, argv)) {
272                 modest_init_uninit ();
273                 g_printerr ("modest: failed to init ui\n");
274                 return FALSE;
275         }
276
277         return _is_initialized = TRUE;
278 }
279
280
281 static gboolean
282 init_ui (gint argc, gchar** argv)
283 {
284         /* Set application name */
285         g_set_application_name (modest_platform_get_app_name());
286         /* g_debug (modest_platform_get_app_name()); */
287
288         /* Init stock icons */
289         init_stock_icons ();
290
291                 /* Init notification system */
292 #ifdef MODEST_HAVE_HILDON_NOTIFY
293         notify_init ("Basics");
294 #endif
295         return TRUE;
296 }
297
298
299 gboolean
300 modest_init_uninit (void)
301 {
302         if (!_is_initialized)
303                 return TRUE; 
304         
305         if (!modest_runtime_uninit())
306                 g_printerr ("modest: failed to uninit runtime\n");
307
308         if (!modest_platform_uninit())
309                 g_printerr ("modest: failed to uninit platform\n");
310         
311         if (gnome_vfs_initialized()) /* apparently, this returns TRUE, even after a shutdown */
312                 gnome_vfs_shutdown ();
313
314         _is_initialized = FALSE;
315         return TRUE;
316 }
317
318
319
320
321 /* NOTE: the exact details of this format are important, as they
322  * are also used in modest-widget-memory. FIXME: make a shared function
323  * for this with widget-memory
324  */
325 static gboolean
326 save_header_settings (ModestConf *conf, TnyFolderType type,
327                       ModestHeaderViewStyle style,  const FolderCols* cols,
328                       guint col_num, gboolean overwrite)
329 {
330         int i;
331         gchar *key;
332         gchar *sort_key;
333         gchar *sort_value;
334         GString *str;
335
336         g_return_val_if_fail (cols, FALSE);
337
338         key = _modest_widget_memory_get_keyname_with_double_type ("header-view",
339                                                                   type, style,
340                                                                   MODEST_WIDGET_MEMORY_PARAM_COLUMN_WIDTH);
341         sort_key = _modest_widget_memory_get_keyname_with_double_type ("header-view",
342                                                                        type, style,
343                                                                        MODEST_WIDGET_MEMORY_PARAM_COLUMN_SORT);
344         /* if we're not in overwrite mode, only write stuff it
345          * there was nothing before */
346         if (!overwrite &&  modest_conf_key_exists(conf, key, NULL)) {
347                 g_free (key);
348                 g_free (sort_key);
349                 return TRUE;
350         }
351
352         /* the format is necessarily the same as the one in modest-widget-memory */
353         str = g_string_new (NULL);
354         for (i = 0; i != col_num; ++i) 
355                 g_string_append_printf (str, "%d:%d:%d ",
356                                         cols[i].col, cols[i].width, cols[i].sort); 
357
358         modest_conf_set_string (conf, key, str->str, NULL);
359         g_free (key);
360         g_string_free (str, TRUE);
361
362         if ( col_num > 0 ) {
363                 gint sort_col_id;
364                 if (cols[0].col == MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT)
365                         sort_col_id = TNY_GTK_HEADER_LIST_MODEL_DATE_SENT_TIME_T_COLUMN;
366                 else
367                         sort_col_id = TNY_GTK_HEADER_LIST_MODEL_DATE_RECEIVED_TIME_T_COLUMN;
368                 sort_value = g_strdup_printf("%d:%d:%d", sort_col_id, GTK_SORT_DESCENDING, 0);
369                 modest_conf_set_string (conf, sort_key, sort_value, NULL);
370                 g_free (sort_value);
371         }
372         g_free (sort_key);
373         
374         return TRUE;
375 }
376
377 /**
378  * modest_init_header_columns:
379  * @overwrite: write the setting, even if it already exists
380  * 
381  * will set defaults for the columns to show for folder,
382  * if there are no such settings yet (in ModestWidgetMemory)
383  * 
384  * Returns: TRUE if succeeded, FALSE in case of error
385  */
386 static gboolean
387 init_header_columns (ModestConf *conf, gboolean overwrite)
388 {
389         int folder_type;
390         gchar *key;
391         
392         for (folder_type = TNY_FOLDER_TYPE_UNKNOWN;
393              folder_type < TNY_FOLDER_TYPE_NUM; ++folder_type) {                
394                 
395                 switch (folder_type) {
396                 case TNY_FOLDER_TYPE_SENT:
397                 case TNY_FOLDER_TYPE_DRAFTS:
398                 save_header_settings (conf, folder_type,
399                                       MODEST_HEADER_VIEW_STYLE_DETAILS,
400                                       OUTBOX_COLUMNS_DETAILS,
401                                       G_N_ELEMENTS(OUTBOX_COLUMNS_DETAILS),
402                                       overwrite);
403                 save_header_settings (conf, folder_type,
404                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
405                                       SENT_COLUMNS_TWOLINES,
406                                       G_N_ELEMENTS(SENT_COLUMNS_TWOLINES),
407                                       overwrite);
408                 break;
409                 case TNY_FOLDER_TYPE_OUTBOX:
410                 save_header_settings (conf, folder_type,
411                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
412                                       OUTBOX_COLUMNS_TWOLINES,
413                                       G_N_ELEMENTS(OUTBOX_COLUMNS_TWOLINES),
414                                       overwrite);
415                 break;
416
417                 default:
418                 save_header_settings (conf, folder_type,
419                                       MODEST_HEADER_VIEW_STYLE_DETAILS,
420                                       INBOX_COLUMNS_DETAILS,
421                                       G_N_ELEMENTS(INBOX_COLUMNS_DETAILS),
422                                       overwrite);
423                 save_header_settings (conf, folder_type,
424                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
425                                       INBOX_COLUMNS_TWOLINES,
426                                       G_N_ELEMENTS(INBOX_COLUMNS_TWOLINES),
427                                       overwrite);
428                 };
429         }
430         
431         key = _modest_widget_memory_get_keyname (MODEST_CONF_MAIN_PANED_KEY, 
432                                                  MODEST_WIDGET_MEMORY_PARAM_POS);
433         /* if we're not in overwrite mode, only write stuff it
434          * there was nothing before */
435         if (overwrite || !modest_conf_key_exists(conf, key, NULL)) 
436                 modest_conf_set_float (conf, key, MODEST_MAIN_PANED_POS_PERCENTAGE, NULL);
437         
438         g_free (key);
439
440         key = _modest_widget_memory_get_keyname (MODEST_CONF_MSG_PANED_KEY, 
441                                                  MODEST_WIDGET_MEMORY_PARAM_POS);
442         /* if we're not in overwrite mode, only write stuff it
443          * there was nothing before */
444         if (overwrite || !modest_conf_key_exists(conf, key, NULL)) 
445                 modest_conf_set_float (conf, key, MODEST_MSG_PANED_POS_PERCENTAGE, NULL);
446         
447         g_free (key);
448         return TRUE;
449 }
450
451 gboolean modest_init_one_local_folder (gchar *maildir_path)
452 {
453         static const gchar* maildirs[] = {
454                 "cur", "new", "tmp"
455         };
456         
457         int j;
458         for (j = 0; j != G_N_ELEMENTS(maildirs); ++j) {
459                 gchar *dir = g_build_filename (maildir_path,
460                                         maildirs[j],
461                                         NULL);
462                 if (g_mkdir_with_parents (dir, 0755) < 0) {
463                         g_printerr ("modest: %s: failed to create %s\n", __FUNCTION__, dir);
464                         g_free (dir);
465                         return FALSE;
466                 }
467                 
468                 g_free (dir);
469         }
470
471         return TRUE;
472 }
473
474 /**
475  * modest_init_local_folders:
476  * 
477  * create the Local Folders folder under cache, if they
478  * do not exist yet.
479  * 
480  * Returns: TRUE if the folder were already there, or
481  * they were created, FALSE otherwise
482  */
483 gboolean
484 modest_init_local_folders (const gchar* location_filepath)
485 {
486         gboolean retval = TRUE;
487
488         gchar *maildir_path = modest_local_folder_info_get_maildir_path (location_filepath);
489
490         if (location_filepath) {
491                 /* For instance, for memory card, just create the top-level .modest folder
492                  * and one "archive" folder (so that messages can be put somewhere):
493                  */
494
495                 gchar *dir = g_build_filename (maildir_path,
496                                                modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_ARCHIVE),
497                                                NULL);
498                 const gboolean created = modest_init_one_local_folder (dir);
499                 g_free(dir);
500
501                 if (!created) {
502                         retval = FALSE;
503                 }
504         }
505         else {
506                 /* Create each of the standard on-disk folders.
507                  * Per-account outbox folders will be created when first needed. */
508                 int i;
509                 for (i = 0; i != G_N_ELEMENTS(LOCAL_FOLDERS); ++i) {
510                         gchar *dir = g_build_filename (maildir_path,
511                                                         modest_local_folder_info_get_type_name(LOCAL_FOLDERS[i]),
512                                                         NULL);
513                         const gboolean created = modest_init_one_local_folder (dir);
514                         g_free(dir);
515
516                         if (!created) {
517                                 retval = FALSE;
518                         }
519                 }
520         }
521
522         g_free (maildir_path);
523         return retval;
524 }
525
526 /**
527  * init_default_account_maybe:
528  *
529  * if there are accounts defined, but there is no default account,
530  * it will be defined.
531  * 
532  * Returns: TRUE if there was a default account already,
533  *  or one has been created or there are no accounts yet,
534  *  returns FALSE in case of error
535  */
536 static gboolean
537 init_default_account_maybe  (ModestAccountMgr *acc_mgr)
538 {
539         gchar *default_account;
540         gboolean retval = TRUE;
541
542         default_account =  modest_account_mgr_get_default_account (acc_mgr);
543         if (!default_account)
544                 retval = modest_account_mgr_set_first_account_as_default (acc_mgr);
545         g_free (default_account);
546
547         return retval;
548 }
549
550
551
552 static void
553 init_debug_g_type (void)
554 {
555         GTypeDebugFlags gflags;
556         ModestRuntimeDebugFlags mflags;
557         
558         gflags = 0;
559         mflags = modest_runtime_get_debug_flags ();
560
561         if (mflags & MODEST_RUNTIME_DEBUG_OBJECTS)
562                 gflags |= G_TYPE_DEBUG_OBJECTS;
563         if (mflags & MODEST_RUNTIME_DEBUG_SIGNALS)
564                 gflags |= G_TYPE_DEBUG_SIGNALS;
565
566         g_type_init_with_debug_flags (gflags);
567 }
568
569 #ifndef DEBUG
570 static void 
571 null_log(const gchar* dom, 
572          GLogLevelFlags l, 
573          const gchar* m, 
574          gpointer d)
575 {
576         return;
577 };
578 #endif
579
580 static void
581 init_debug_logging (void)
582 {
583         ModestRuntimeDebugFlags mflags;
584         mflags = modest_runtime_get_debug_flags ();
585
586 #ifndef DEBUG
587         if (! (mflags & MODEST_RUNTIME_DEBUG_CODE)) {
588                 g_log_set_handler (NULL, G_LOG_LEVEL_DEBUG, null_log, NULL);
589         }
590 #endif
591
592         if (mflags & MODEST_RUNTIME_DEBUG_ABORT_ON_WARNING)
593                 g_log_set_always_fatal (G_LOG_LEVEL_ERROR |
594                                         G_LOG_LEVEL_CRITICAL |
595                                         G_LOG_LEVEL_WARNING);
596 }
597
598 static void
599 init_i18n (void)
600 {
601         const gchar *lc_messages = setlocale (LC_MESSAGES, NULL);
602
603         if (!lc_messages) {
604                 setenv ("LANGUAGE", "en_GB", 1);
605                 setenv ("LC_MESSAGES", "en_GB", 1);
606 #ifdef MODEST_PLATFORM_GNOME
607         } else {
608                 gchar *new_lc_messages;
609                 new_lc_messages = g_strconcat (lc_messages, ":en_GB", NULL);
610                 setenv ("LANGUAGE", new_lc_messages, 1);
611                 setenv ("LC_MESSAGES", new_lc_messages, 1);
612                 g_free (new_lc_messages);
613 #endif
614         }
615
616         bindtextdomain (GETTEXT_PACKAGE, MODEST_LOCALE_DIR);
617         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
618         textdomain (GETTEXT_PACKAGE);
619 }
620
621
622 /* 
623  *  This function registers our custom toolbar icons, so they can be
624  *  themed. The idea of this function was taken from the gtk-demo
625  */
626 static void
627 init_stock_icons (void)
628 {
629         static gboolean registered = FALSE;
630
631         if (!registered) {
632                 GtkIconTheme *current_theme;
633                 GdkPixbuf *pixbuf;
634                 GtkIconFactory *factory;
635                 gint i;
636
637                 static GtkStockItem items[] = {
638 #ifdef MODEST_TOOLKIT_HILDON2
639                         { MODEST_STOCK_SORT, "sort mail", 0, 0, NULL },
640                         { MODEST_STOCK_REFRESH, "refresh mail", 0, 0, NULL },
641 #endif /*MODEST_TOOLKIT_GTK*/
642                         { MODEST_STOCK_SPLIT_VIEW, "split view", 0, 0, NULL },
643                         { MODEST_STOCK_MAIL_SEND, "send mail", 0, 0, NULL },
644                         { MODEST_STOCK_NEW_MAIL, "new mail", 0, 0, NULL },
645                         { MODEST_STOCK_REPLY, "reply", 0, 0, NULL },
646                         { MODEST_STOCK_REPLY_ALL, "reply all", 0, 0, NULL },
647                         { MODEST_STOCK_FORWARD, "forward", 0, 0, NULL },
648                         { MODEST_STOCK_DELETE, "delete", 0, 0, NULL },
649                 };
650
651                 static gchar *items_names [] = {
652 #ifdef MODEST_TOOLKIT_HILDON2
653                         MODEST_TOOLBAR_ICON_SORT,
654                         MODEST_TOOLBAR_ICON_REFRESH,
655 #endif /*MODEST_TOOLKIT_GTK*/
656                         MODEST_TOOLBAR_ICON_SPLIT_VIEW,
657                         MODEST_TOOLBAR_ICON_MAIL_SEND,
658                         MODEST_TOOLBAR_ICON_NEW_MAIL,
659                         MODEST_TOOLBAR_ICON_REPLY,
660                         MODEST_TOOLBAR_ICON_REPLY_ALL,
661                         MODEST_TOOLBAR_ICON_FORWARD,
662                         MODEST_TOOLBAR_ICON_DELETE,
663                 };
664
665                 registered = TRUE;
666
667                 /* Register our stock items */
668                 gtk_stock_add (items, G_N_ELEMENTS (items));
669
670                 /* Add our custom icon factory to the list of defaults */
671                 factory = gtk_icon_factory_new ();
672                 gtk_icon_factory_add_default (factory);
673
674                 current_theme = gtk_icon_theme_get_default ();
675
676                 /* Register icons to accompany stock items */
677                 for (i = 0; i < G_N_ELEMENTS (items); i++) {
678
679 #ifndef MODEST_PLATFORM_GTK
680                         pixbuf = gtk_icon_theme_load_icon (current_theme,
681                                                            items_names[i],
682 #ifdef MODEST_TOOLKIT_HILDON2
683                                                            MODEST_ICON_SIZE_BIG,
684 #else
685                                                            MODEST_ICON_SIZE_SMALL,
686 #endif
687                                                            GTK_ICON_LOOKUP_NO_SVG,
688                                                            NULL);
689 #else
690                         pixbuf = gdk_pixbuf_new_from_file (items_names[i], NULL);
691 #endif
692
693                         if (pixbuf != NULL) {
694                                 GtkIconSet *icon_set;
695
696 #ifndef MODEST_TOOLKIT_HILDON2
697                                 GdkPixbuf *transparent;
698                                 transparent = gdk_pixbuf_add_alpha (pixbuf, TRUE, 0xff, 0xff, 0xff);
699                                 icon_set = gtk_icon_set_new_from_pixbuf (transparent);
700                                 g_object_unref (transparent);
701 #else
702                                 icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
703 #endif
704                                 gtk_icon_factory_add (factory, items[i].stock_id, icon_set);
705                                 gtk_icon_set_unref (icon_set);
706                                 g_object_unref (pixbuf);
707                         }
708                         else
709                                 g_warning ("%s: failed to load %s icon", __FUNCTION__, items_names[i]);
710                 }
711                 /* Drop our reference to the factory, GTK will hold a reference. */
712                 g_object_unref (factory);
713         }
714 }
715
716
717 static void
718 init_default_settings (ModestConf *conf)
719 {
720         /* Show toolbar keys */
721         if (!modest_conf_key_exists (conf, MODEST_CONF_MAIN_WINDOW_SHOW_TOOLBAR, NULL))
722                 modest_conf_set_bool (conf, MODEST_CONF_MAIN_WINDOW_SHOW_TOOLBAR, TRUE, NULL);
723
724         if (!modest_conf_key_exists (conf, MODEST_CONF_MAIN_WINDOW_SHOW_TOOLBAR_FULLSCREEN, NULL))
725                 modest_conf_set_bool (conf, MODEST_CONF_MAIN_WINDOW_SHOW_TOOLBAR_FULLSCREEN, TRUE, NULL);
726
727         if (!modest_conf_key_exists (conf, MODEST_CONF_MSG_VIEW_WINDOW_SHOW_TOOLBAR, NULL))
728                 modest_conf_set_bool (conf, MODEST_CONF_MSG_VIEW_WINDOW_SHOW_TOOLBAR, TRUE, NULL);
729
730         if (!modest_conf_key_exists (conf, MODEST_CONF_MSG_VIEW_WINDOW_SHOW_TOOLBAR_FULLSCREEN, NULL))
731                 modest_conf_set_bool (conf, MODEST_CONF_MSG_VIEW_WINDOW_SHOW_TOOLBAR_FULLSCREEN, TRUE, NULL);
732
733         if (!modest_conf_key_exists (conf, MODEST_CONF_EDIT_WINDOW_SHOW_TOOLBAR, NULL))
734                 modest_conf_set_bool (conf, MODEST_CONF_EDIT_WINDOW_SHOW_TOOLBAR, TRUE, NULL);
735         
736         if (!modest_conf_key_exists (conf, MODEST_CONF_EDIT_WINDOW_SHOW_TOOLBAR_FULLSCREEN, NULL))
737                 modest_conf_set_bool (conf, MODEST_CONF_EDIT_WINDOW_SHOW_TOOLBAR_FULLSCREEN, TRUE, NULL);
738
739         /* Editor keys */
740         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_CC, NULL))
741                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_CC, FALSE, NULL);
742
743         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_BCC, NULL))
744                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_BCC, FALSE, NULL);
745
746         /* File chooser keys */
747         if (!modest_conf_key_exists (conf, MODEST_CONF_LATEST_ATTACH_FILE_PATH, NULL))
748                 modest_conf_set_string (conf, MODEST_CONF_LATEST_ATTACH_FILE_PATH, "", NULL);
749         if (!modest_conf_key_exists (conf, MODEST_CONF_LATEST_INSERT_IMAGE_PATH, NULL))
750                 modest_conf_set_string (conf, MODEST_CONF_LATEST_INSERT_IMAGE_PATH, "", NULL);
751         if (!modest_conf_key_exists (conf, MODEST_CONF_LATEST_SAVE_ATTACHMENT_PATH, NULL))
752                 modest_conf_set_string (conf, MODEST_CONF_LATEST_SAVE_ATTACHMENT_PATH, "", NULL);
753
754         /* Global settings */
755         if (!modest_conf_key_exists (conf, MODEST_CONF_AUTO_UPDATE, NULL))
756                 modest_conf_set_bool (conf, MODEST_CONF_AUTO_UPDATE, TRUE, NULL);
757
758         if (!modest_conf_key_exists (conf, MODEST_CONF_NOTIFICATIONS, NULL))
759                 modest_conf_set_bool (conf, MODEST_CONF_NOTIFICATIONS, TRUE, NULL);
760
761         if (!modest_conf_key_exists (conf, MODEST_CONF_AUTO_ADD_TO_CONTACTS, NULL))
762                 modest_conf_set_bool (conf, MODEST_CONF_AUTO_ADD_TO_CONTACTS, TRUE, NULL);
763
764         if (!modest_conf_key_exists (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, NULL))
765                 modest_conf_set_int (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, MODEST_CONNECTED_VIA_WLAN_OR_WIMAX, NULL);
766
767         if (!modest_conf_key_exists (conf, MODEST_CONF_UPDATE_INTERVAL, NULL))
768                 modest_conf_set_int (conf, MODEST_CONF_UPDATE_INTERVAL, MODEST_UPDATE_INTERVAL_30_MIN, NULL);
769
770         if (!modest_conf_key_exists (conf, MODEST_CONF_MSG_SIZE_LIMIT, NULL))
771                 modest_conf_set_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, 100, NULL);
772
773         if (!modest_conf_key_exists (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, NULL))
774                 modest_conf_set_bool (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, FALSE, NULL);
775
776 #ifdef MODEST_TOOLKIT_GTK
777         /* In Gnome port, we only allow editting plain text */
778         modest_conf_set_bool (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, FALSE, NULL);
779 #else
780         if (!modest_conf_key_exists (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, NULL))
781                 modest_conf_set_bool (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, TRUE, NULL);
782 #endif
783
784         if (!modest_conf_key_exists (conf, MODEST_CONF_REPLY_TYPE, NULL))
785                 modest_conf_set_int (conf, MODEST_CONF_REPLY_TYPE, MODEST_TNY_MSG_REPLY_TYPE_QUOTE, NULL);
786
787         if (!modest_conf_key_exists (conf, MODEST_CONF_FETCH_HTML_EXTERNAL_IMAGES, NULL))
788                 modest_conf_set_bool (conf, MODEST_CONF_FETCH_HTML_EXTERNAL_IMAGES, FALSE, NULL);
789 }
790
791
792 /* set the device name -- note this is an initial guess from /etc/hostname
793  * on maemo-device it will most probably be replaced with the Bluetooth device
794  * name later during starting (see maemo/modest-maemo-utils.[ch])
795  */
796 static void
797 init_device_name (ModestConf *conf)
798 {
799         struct utsname name;
800
801         if (uname (&name) == 0) {
802                 modest_conf_set_string (modest_runtime_get_conf(),
803                                         MODEST_CONF_DEVICE_NAME, name.nodename,
804                                         NULL);
805         } else {
806                 modest_conf_set_string (modest_runtime_get_conf(),
807                                         MODEST_CONF_DEVICE_NAME,
808                                         MODEST_LOCAL_FOLDERS_DEFAULT_DISPLAY_NAME,
809                                         NULL);
810         }
811 }