27ca1500732d504933f3dc88c0e26d7ff4e82c16
[claws.git] / src / gtk / filesel.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 "intl.h"
38 #include "sylpheed.h"
39 #include "filesel.h"
40 #include "manage_window.h"
41 #include "gtkutils.h"
42 #include "utils.h"
43
44 static gchar *last_selected_dir = NULL;
45 static GList *filesel_create(const gchar *title, const gchar *path, 
46                              gboolean multiple_files,
47                              gboolean open)
48 {
49         GSList *slist = NULL, *slist_orig = NULL;
50         GList *list = NULL;
51
52         gint action = (open == TRUE) ? GTK_FILE_CHOOSER_ACTION_OPEN:GTK_FILE_CHOOSER_ACTION_SAVE;
53         gchar * action_btn = (open == TRUE) ? GTK_STOCK_OPEN:GTK_STOCK_SAVE;
54         GtkWidget *chooser = gtk_file_chooser_dialog_new (title, NULL, action, 
55                                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
56                                 action_btn, GTK_RESPONSE_OK, 
57                                 NULL);
58         
59         manage_window_set_transient (GTK_WINDOW(chooser));
60         gtk_window_set_modal(GTK_WINDOW(chooser), TRUE);
61
62         gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER(chooser), multiple_files);
63
64         if (path && strlen(path) > 0) {
65                 char *filename = NULL;
66                 char *realpath = strdup(path);
67                 if (path[strlen(path)-1] == G_DIR_SEPARATOR) {
68                         filename = "";
69                 } else if ((filename = strrchr(path, G_DIR_SEPARATOR)) != NULL) {
70                         filename++;
71                         *(strrchr(realpath, G_DIR_SEPARATOR)+1) = '\0';
72                 } else {
73                         filename = (char *) path;
74                         free(realpath); 
75                         realpath = strdup(get_home_dir());
76                 }
77                 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(chooser), realpath);
78                 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(chooser), filename);
79                 free(realpath);
80         } else {
81                 if (!last_selected_dir)
82                         last_selected_dir = g_strdup_printf("%s%c", get_home_dir(), G_DIR_SEPARATOR);
83
84                 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(chooser), last_selected_dir);
85         }
86
87         if (gtk_dialog_run (GTK_DIALOG (chooser)) == GTK_RESPONSE_OK) 
88                 slist = gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER (chooser));
89         
90         manage_window_focus_out(chooser, NULL, NULL);
91         gtk_widget_destroy (chooser);
92
93         slist_orig = slist;
94         
95         if (slist) {
96                 gchar *tmp = strdup(slist->data);
97                 if (last_selected_dir)
98                         g_free(last_selected_dir);
99                 
100                 if (strrchr(tmp, G_DIR_SEPARATOR))
101                         *(strrchr(tmp, G_DIR_SEPARATOR)+1) = '\0';
102                 last_selected_dir = g_strdup(tmp);
103                 g_free(tmp);
104         }
105
106         while (slist) {
107                 list = g_list_append(list, slist->data);
108                 slist = slist->next;
109         }
110         
111         if (slist_orig)
112                 g_slist_free(slist_orig);
113         
114         return list;
115 }
116
117 /**
118  * This function lets the user select multiple files.
119  * This opens an Open type dialog.
120  * @param title the title of the dialog
121  */
122 GList *filesel_select_multiple_files_open(const gchar *title)
123 {
124         return filesel_create(title, NULL, TRUE, TRUE);
125 }
126
127 /**
128  * This function lets the user select one file.
129  * This opens an Open type dialog if "file" is NULL, 
130  * Save dialog if "file" contains a path.
131  * @param title the title of the dialog
132  * @param path the optional path to save to
133  */
134 static gchar *filesel_select_file(const gchar *title, const gchar *path,
135                                   gboolean open)
136 {
137         GList * list = filesel_create(title, path, FALSE, open);
138         gchar * result = NULL;
139         if (list) {
140                 result = strdup(list->data);
141         }
142         g_list_free(list);
143         return result;
144 }
145 gchar *filesel_select_file_open(const gchar *title, const gchar *path)
146 {
147         return filesel_select_file (title, path, TRUE);
148 }
149
150 gchar *filesel_select_file_save(const gchar *title, const gchar *path)
151 {
152         return filesel_select_file (title, path, FALSE);
153 }