* Fixed some GNOME build problems
[modest] / src / gnome / modest-platform.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 <libgnomevfs/gnome-vfs-mime.h>
31 #include <libgnomeui/gnome-icon-lookup.h>
32 #include <tny-gnome-device.h>
33
34 #include "modest-platform.h"
35 #include "modest-mail-operation-queue.h"
36 #include "modest-runtime.h"
37
38 gboolean
39 modest_platform_init (void)
40 {       
41         return TRUE; /* nothing to do */
42 }
43
44
45 TnyDevice*
46 modest_platform_get_new_device (void)
47 {
48         return TNY_DEVICE (tny_gnome_device_new ());
49 }
50
51
52 gchar*
53 modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
54                                           gchar **effective_mime_type)
55 {
56         GString *mime_str = NULL;
57         gchar *icon_name  = NULL;
58         gchar *uri;
59         const static gchar* octet_stream = "application/octet-stream";
60         
61         g_return_val_if_fail (name || mime_type, NULL);
62
63         if (!mime_type || g_ascii_strcasecmp (mime_type, octet_stream)) 
64                 mime_str = g_string_new(gnome_vfs_mime_type_from_name_or_default
65                                         (name, "application/octet-stream"));
66         else {
67                 mime_str = g_string_new (mime_type);
68                 g_string_ascii_down (mime_str);
69         }
70
71         uri = g_strconcat ("file:///", name ? name : "dummy", NULL);
72         icon_name  = gnome_icon_lookup (gtk_icon_theme_get_default(), NULL,
73                                         uri, NULL, NULL, mime_str->str, 0, 0);
74         g_free (uri);
75
76         if (effective_mime_type)
77                 *effective_mime_type = g_string_free (mime_str, FALSE);
78         else
79                 g_string_free (mime_str, TRUE);
80
81         return icon_name;
82 }
83
84 gboolean 
85 modest_platform_activate_uri (const gchar *uri)
86 {
87         modest_runtime_not_implemented (NULL);
88         return FALSE;
89 }
90
91 gboolean 
92 modest_platform_show_uri_popup (const gchar *uri)
93 {
94         modest_runtime_not_implemented (NULL);
95         return FALSE;
96 }
97
98 GdkPixbuf*
99 modest_platform_get_icon (const gchar *name)
100 {
101         GError *err = NULL;
102         GdkPixbuf* pixbuf;
103
104         g_return_val_if_fail (name, NULL);
105
106         pixbuf = gdk_pixbuf_new_from_file (name, &err);
107
108         if (!pixbuf) {
109                 g_printerr ("modest: error while loading icon '%s': %s\n",
110                             name, err->message);
111                 g_error_free (err);
112         }
113         
114         return pixbuf;
115 }
116
117
118 const gchar*
119 modest_platform_get_app_name (void)
120 {
121         return ("Modest");
122 }
123
124 gint 
125 modest_platform_run_new_folder_dialog (GtkWindow *parent_window,
126                                        TnyFolderStore *parent_folder,
127                                        gchar *suggested_name,
128                                        gchar **folder_name)
129 {
130         GtkWidget *dialog, *entry;
131         gboolean finished = FALSE;
132         gint result;
133         TnyFolder *new_folder;
134         ModestMailOperation *mail_op;
135
136         /* Ask the user for the folder name */
137         dialog = gtk_dialog_new_with_buttons (_("New Folder Name"),
138                                               parent_window,
139                                               GTK_DIALOG_MODAL,
140                                               GTK_STOCK_CANCEL,
141                                               GTK_RESPONSE_REJECT,
142                                               GTK_STOCK_OK,
143                                               GTK_RESPONSE_ACCEPT,
144                                               NULL);
145         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
146                             gtk_label_new (_("Please enter a name for the new folder")),
147                             FALSE, FALSE, 0);
148                 
149         entry = gtk_entry_new_with_max_length (40);
150         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
151                             entry,
152                             TRUE, FALSE, 0);
153         
154         gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
155
156         result = gtk_dialog_run (GTK_DIALOG(dialog));
157         if (result == GTK_RESPONSE_ACCEPT)
158                 *folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
159
160         gtk_widget_destroy (dialog);
161
162         return result;
163 }
164
165
166 gint
167 modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
168                                          const gchar *msg)
169 {
170         /* TODO implement confirmation dialog */
171         return GTK_RESPONSE_CANCEL;
172 }
173
174 void
175 modest_platform_run_information_dialog (GtkWindow *parent_window,
176                                         ModestInformationDialogType type)
177 {
178         switch (type) {
179         case MODEST_INFORMATION_CREATE_FOLDER:
180                 break;
181         case MODEST_INFORMATION_DELETE_FOLDER:
182                 break;
183         };
184
185         /* TODO: implement a information dialog */
186 }
187
188 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window)
189 {
190         /* TODO: Do something with network-manager? 
191            Otherwise, maybe it is safe to assume that we would already be online if we could be. */
192         return TRUE;
193 }
194
195 gboolean modest_platform_set_update_interval (guint minutes)
196 {
197         /* TODO. */
198 }
199
200 void
201 modest_platform_run_sort_dialog (GtkWindow *parent_window,
202                                  ModestSortDialogType type)
203 {
204         /* TODO */
205 }