* use the modest_icon_factory:
[modest] / src / modest-main.c
1 /* modest-main.c -- part of modest */
2 #include <glib.h>
3
4 #include "modest-conf.h"
5 #include "modest-account-mgr.h"
6 #include "modest-identity-mgr.h"
7 #include "modest-ui.h"
8
9 #ifdef HAVE_CONFIG_H
10 #include <config.h>
11 #endif /*HAVE_CONFIG_H*/
12 #include <gtk/gtk.h>
13
14 static void install_basic_conf_settings (ModestConf *conf);
15 static void install_test_account        (ModestConf *conf);
16
17
18 int
19 main (int argc, char *argv[])
20 {
21         GOptionContext   *context        = NULL;
22         ModestConf       *modest_conf    = NULL;
23         ModestUI         *modest_ui      = NULL;
24
25         GError *err = NULL;
26         int retval  = 0;
27
28         static gboolean update, debug, reinstall;
29         static gchar *mailto, *subject, *bcc, *cc, *body;
30
31         static GOptionEntry options[] = {
32                 { "debug",  'd', 0, G_OPTION_ARG_NONE, &debug,
33                   "Run in debug mode" },
34                 { "update", 'u', 0, G_OPTION_ARG_NONE, &update,
35                   "Send/receive all accounts and exit"},
36                 { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto,
37                   "Start writing a new email to <addresses>"},
38                 { "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
39                   "Subject for a new mail"},
40                 { "body", 'b', 0, G_OPTION_ARG_STRING, &body,
41                   "Body for a new email"},
42                 { "cc",  0, 0, G_OPTION_ARG_STRING, &cc,
43                   "CC-addresses for a new mail (comma-separated)"},
44                 { "bcc", 0, 0, G_OPTION_ARG_STRING, &bcc,
45                   "BCC-adresses for a new mail (comma-separated)"},
46                 { "reinstall-factory-settings", 0, 0, G_OPTION_ARG_NONE, &reinstall,
47                   "Delete all settings and start over (*DESTRUCTIVE*)"
48                 },
49                 { NULL }
50         };
51
52
53         g_type_init ();
54
55         context = g_option_context_new (NULL);
56         g_option_context_add_main_entries (context, options, NULL);
57
58         if (!g_option_context_parse (context, &argc, &argv, &err)) {
59                 g_printerr ("modest: error in command line parameter(s): %s\n",
60                          err ? err->message : "");
61                 retval = 1;
62                 goto cleanup;
63         }
64
65         if (debug) {
66                 g_log_set_always_fatal (G_LOG_LEVEL_WARNING);
67         }
68
69         modest_conf = MODEST_CONF(modest_conf_new());
70         if (!modest_conf) {
71                 g_warning ("failed to initialize config system");
72                 goto cleanup;
73         }
74
75         if (reinstall) {
76                 modest_conf_remove_key (modest_conf, MODEST_CONF_NAMESPACE, NULL);
77                 install_basic_conf_settings (modest_conf);
78                 install_test_account (modest_conf);
79                 goto cleanup;
80         }
81
82
83
84         gtk_init (&argc, &argv);
85
86         modest_icon_factory_init ();
87         
88         modest_ui = MODEST_UI(modest_ui_new (modest_conf));
89         if (!modest_ui) {
90                 g_warning ("failed to initialize ui");
91                 goto cleanup;
92         }
93         
94         {
95                 gboolean ok;
96                 gtk_init (&argc, &argv);
97
98                 if (mailto||cc||bcc||subject||body)
99                         ok = modest_ui_show_edit_window (modest_ui,
100                                                          mailto,  /* to */
101                                                          cc,      /* cc */
102                                                          bcc,     /* bcc */
103                                                          subject,    /* subject */
104                                                          body,    /* body */
105                                                          NULL);   /* attachments */
106                 else
107                         ok = modest_ui_show_main_window (modest_ui);
108
109                 if (!ok)
110                         g_warning ("showing window failed");
111                 else
112                         gtk_main();
113         }
114
115
116 cleanup:
117         if (err)
118                 g_error_free (err);
119
120         if (context)
121                 g_option_context_free (context);
122
123         if (modest_ui)
124                 g_object_unref (modest_ui);
125
126         if (modest_conf)
127                 g_object_unref (modest_conf);
128
129         modest_icon_factory_uninit ();
130
131         return retval;
132 }
133
134
135
136 static void
137 install_basic_conf_settings (ModestConf *conf)
138 {
139         g_return_if_fail (conf);
140
141         /* main window size */
142         modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_WIDTH,
143                              MODEST_CONF_MAIN_WINDOW_WIDTH_DEFAULT, NULL);
144         modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_HEIGHT,
145                              MODEST_CONF_MAIN_WINDOW_HEIGHT_DEFAULT, NULL);
146
147         /* edit window size */
148         modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_WIDTH,
149                              MODEST_CONF_EDIT_WINDOW_WIDTH_DEFAULT, NULL);
150         modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_HEIGHT,
151                              MODEST_CONF_EDIT_WINDOW_HEIGHT_DEFAULT, NULL);
152
153         g_print ("modest: returned to factory settings\n");
154 }
155
156
157 static void
158 install_test_account (ModestConf *conf)
159 {
160         ModestAccountMgr *acc_mgr;
161         ModestIdentityMgr *id_mgr;
162         const gchar *acc_name = "test";
163         g_return_if_fail (conf);
164
165         acc_mgr = MODEST_ACCOUNT_MGR(modest_account_mgr_new (conf));
166         if (!acc_mgr) {
167                 g_warning ("failed to instantiate account mgr");
168                 return;
169         }
170
171         if (modest_account_mgr_account_exists (acc_mgr, acc_name, NULL)) {
172                 if (!modest_account_mgr_remove_account(acc_mgr, acc_name, NULL)) {
173                         g_warning ("could not delete existing account");
174                 }
175         }
176
177         if (!modest_account_mgr_add_account (acc_mgr, acc_name, "mystore", "mytransport", NULL))
178                 g_warning ("failed to add test account");
179         else
180         {
181                 modest_account_mgr_add_server_account (acc_mgr, "mystore", "localhost", "djcb",
182                                                        NULL, "imap");
183                 modest_account_mgr_add_server_account (acc_mgr, "mytransport", "localhost", NULL,
184                                                        NULL, "smtp");
185                 
186         }
187         id_mgr = MODEST_IDENTITY_MGR(modest_identity_mgr_new (conf));
188         if (modest_identity_mgr_identity_exists(id_mgr, "myidentity", NULL)) {
189                 if (!modest_identity_mgr_remove_identity(id_mgr, "myidentity", NULL)) {
190                         g_warning ("could not delete existing identity");
191                 }
192         }
193         if (!modest_identity_mgr_add_identity (id_mgr,
194                                                MODEST_IDENTITY_DEFAULT_IDENTITY,
195                                                "user@localhost",
196                                                "", "", FALSE, NULL, FALSE ))
197                 g_warning ("failed to add test identity");
198         
199         g_object_unref (G_OBJECT(acc_mgr));
200         g_object_unref (G_OBJECT(id_mgr));
201 }