2006-12-17 [colin] 2.6.1cvs46
[claws.git] / src / gtk / filesel.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program 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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif 
23
24 #include <glib.h>
25 #include <gdk/gdkkeysyms.h>
26 #include <gtk/gtkwidget.h>
27 #include <gtk/gtkfilesel.h>
28 #include <gtk/gtkentry.h>
29 #include <gtk/gtkmain.h>
30 #include <gtk/gtksignal.h>
31 #include <gtk/gtkeditable.h>
32 #include <gtk/gtkstock.h>
33 #include <gtk/gtkdialog.h>
34 #include <gtk/gtkfilechooser.h>
35 #include <gtk/gtkfilechooserdialog.h>
36
37 #include "claws.h"
38 #include "filesel.h"
39 #include "manage_window.h"
40 #include "gtkutils.h"
41 #include "utils.h"
42 #include "codeconv.h"
43 #include "procmime.h"
44 #include "prefs_common.h"
45
46 static void
47 update_preview_cb (GtkFileChooser *file_chooser, gpointer data)
48 {
49         GtkWidget *preview;
50         char *filename = NULL, *type = NULL;
51         GdkPixbuf *pixbuf = NULL;
52         gboolean have_preview = FALSE;
53
54         preview = GTK_WIDGET (data);
55         filename = gtk_file_chooser_get_preview_filename (file_chooser);
56
57         if (filename == NULL) {
58                 gtk_file_chooser_set_preview_widget_active (file_chooser, FALSE);
59                 return;
60         }
61         type = procmime_get_mime_type(filename);
62         
63         if (type && !strncmp(type, "image/", 6)) 
64                 pixbuf = gdk_pixbuf_new_from_file_at_size (filename, 128, 128, NULL);
65         
66         g_free(type);
67         g_free (filename);
68
69         if (pixbuf) {
70                 have_preview = TRUE;
71                 gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf);
72                 gdk_pixbuf_unref (pixbuf);
73         }
74
75         gtk_file_chooser_set_preview_widget_active (file_chooser, have_preview);
76 }
77         
78 static GList *filesel_create(const gchar *title, const gchar *path,
79                              gboolean multiple_files,
80                              gboolean open, gboolean folder_mode,
81                              const gchar *filter)
82 {
83         GSList *slist = NULL, *slist_orig = NULL;
84         GList *list = NULL;
85
86         gint action = (open == TRUE) ? 
87                         (folder_mode == TRUE ? GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
88                                                GTK_FILE_CHOOSER_ACTION_OPEN):
89                         (folder_mode == TRUE ? GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
90                                                GTK_FILE_CHOOSER_ACTION_SAVE);
91                         
92         gchar * action_btn = (open == TRUE) ? GTK_STOCK_OPEN:GTK_STOCK_SAVE;
93         GtkWidget *chooser = gtk_file_chooser_dialog_new (title, NULL, action, 
94                                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
95                                 action_btn, GTK_RESPONSE_ACCEPT, 
96                                 NULL);
97         if (filter != NULL) {
98                 GtkFileFilter *file_filter = gtk_file_filter_new();
99                 gtk_file_filter_add_pattern(file_filter, filter);
100                 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(chooser),
101                                             file_filter);
102         }
103
104         if (action == GTK_FILE_CHOOSER_ACTION_OPEN) {
105                 GtkImage *preview;
106                 preview = GTK_IMAGE(gtk_image_new ());
107                 gtk_file_chooser_set_preview_widget (GTK_FILE_CHOOSER(chooser), GTK_WIDGET(preview));
108                 g_signal_connect (chooser, "update-preview",
109                             G_CALLBACK (update_preview_cb), preview);
110
111         }
112
113         if (action == GTK_FILE_CHOOSER_ACTION_SAVE) {
114                 gtk_dialog_set_default_response(GTK_DIALOG(chooser), GTK_RESPONSE_ACCEPT);
115         }
116
117         manage_window_set_transient (GTK_WINDOW(chooser));
118         gtk_window_set_modal(GTK_WINDOW(chooser), TRUE);
119
120         gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER(chooser), multiple_files);
121
122         if (path && strlen(path) > 0) {
123                 char *filename = NULL;
124                 char *realpath = strdup(path);
125                 char *tmp = NULL;
126                 if (path[strlen(path)-1] == G_DIR_SEPARATOR) {
127                         filename = "";
128                 } else if ((filename = strrchr(path, G_DIR_SEPARATOR)) != NULL) {
129                         filename++;
130                         *(strrchr(realpath, G_DIR_SEPARATOR)+1) = '\0';
131                 } else {
132                         filename = (char *) path;
133                         free(realpath); 
134                         realpath = strdup(get_home_dir());
135                 }
136                 if (g_utf8_validate(realpath, -1, NULL))
137                         tmp = g_filename_from_utf8(realpath, -1, NULL, NULL, NULL);
138                 else
139                         tmp = g_strdup(realpath);
140                 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(chooser), tmp);
141                 g_free(tmp);
142                 
143                 if (action == GTK_FILE_CHOOSER_ACTION_SAVE) {
144                         if (g_utf8_validate(filename, -1, NULL))
145                                 tmp = g_filename_from_utf8(filename, -1, NULL, NULL, NULL);
146                         else
147                                 tmp = g_strdup(filename);
148                         gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(chooser), tmp);
149                         g_free(tmp);
150                 }
151                 free(realpath);
152         } else {
153                 gchar *tmp = NULL;
154                 if (!prefs_common.attach_load_dir)
155                         prefs_common.attach_load_dir = g_strdup_printf("%s%c", get_home_dir(), G_DIR_SEPARATOR);
156                 if (g_utf8_validate(prefs_common.attach_load_dir, -1, NULL))
157                         tmp = g_filename_from_utf8(prefs_common.attach_load_dir, -1, NULL, NULL, NULL);
158                 else
159                         tmp = g_strdup(prefs_common.attach_load_dir);
160                 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(chooser), tmp);
161                 g_free(tmp);
162         }
163
164         if (gtk_dialog_run (GTK_DIALOG (chooser)) == GTK_RESPONSE_ACCEPT) 
165                 slist = gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER (chooser));
166         
167         manage_window_focus_out(chooser, NULL, NULL);
168         gtk_widget_destroy (chooser);
169
170         slist_orig = slist;
171         
172         if (slist) {
173                 gchar *tmp = strdup(slist->data);
174
175                 if (!path && prefs_common.attach_load_dir)
176                         g_free(prefs_common.attach_load_dir);
177                 
178                 if (strrchr(tmp, G_DIR_SEPARATOR))
179                         *(strrchr(tmp, G_DIR_SEPARATOR)+1) = '\0';
180
181                 if (!path)
182                         prefs_common.attach_load_dir = g_filename_to_utf8(tmp, -1, NULL, NULL, NULL);
183
184                 g_free(tmp);
185         }
186
187         while (slist) {
188                 list = g_list_append(list, slist->data);
189                 slist = slist->next;
190         }
191         
192         if (slist_orig)
193                 g_slist_free(slist_orig);
194         
195         return list;
196 }
197
198 /**
199  * This function lets the user select multiple files.
200  * This opens an Open type dialog.
201  * @param title the title of the dialog
202  */
203 GList *filesel_select_multiple_files_open(const gchar *title)
204 {
205         return filesel_create(title, NULL, TRUE, TRUE, FALSE, NULL);
206 }
207
208 GList *filesel_select_multiple_files_open_with_filter(  const gchar *title,
209                                                         const gchar *path,
210                                                         const gchar *filter)
211 {
212         return filesel_create (title, path, TRUE, TRUE, FALSE, filter);
213 }
214
215 /**
216  * This function lets the user select one file.
217  * This opens an Open type dialog if "file" is NULL, 
218  * Save dialog if "file" contains a path.
219  * @param title the title of the dialog
220  * @param path the optional path to save to
221  */
222 static gchar *filesel_select_file(const gchar *title, const gchar *path,
223                                   gboolean open, gboolean folder_mode,
224                                   const gchar *filter)
225 {
226         GList * list = filesel_create(title, path, FALSE, open, folder_mode, filter);
227         gchar * result = NULL;
228         if (list) {
229                 result = strdup(list->data);
230         }
231         g_list_free(list);
232         return result;
233 }
234 gchar *filesel_select_file_open(const gchar *title, const gchar *path)
235 {
236         return filesel_select_file (title, path, TRUE, FALSE, NULL);
237 }
238
239 gchar *filesel_select_file_open_with_filter(const gchar *title, const gchar *path,
240                                             const gchar *filter)
241 {
242         return filesel_select_file (title, path, TRUE, FALSE, filter);
243 }
244
245 gchar *filesel_select_file_save(const gchar *title, const gchar *path)
246 {
247         return filesel_select_file (title, path, FALSE, FALSE, NULL);
248 }
249
250 gchar *filesel_select_file_open_folder(const gchar *title, const gchar *path)
251 {
252         return filesel_select_file (title, path, TRUE, TRUE, NULL);
253 }
254
255 gchar *filesel_select_file_save_folder(const gchar *title, const gchar *path)
256 {
257         return filesel_select_file (title, path, FALSE, TRUE, NULL);
258 }
259