1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <glib.h>
#include <glib/gi18n.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkfilechooserdialog.h>
#include <gtk/gtkstock.h>
#include "main.h"
#include "filesel.h"
#include "manage_window.h"
#include "alertpanel.h"
#include "utils.h"
static GtkWidget *filesel_create(const gchar *title,
GtkFileChooserAction action);
gchar *filesel_select_file(const gchar *title, const gchar *file,
GtkFileChooserAction action)
{
static gchar *cwd = NULL;
GtkWidget *dialog;
gchar *filename = NULL;
dialog = filesel_create(title, action);
manage_window_set_transient(GTK_WINDOW(dialog));
if (!cwd)
cwd = g_strdup(startup_dir);
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), cwd);
if (file)
gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog),
file);
gtk_widget_show(dialog);
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
filename = gtk_file_chooser_get_filename
(GTK_FILE_CHOOSER(dialog));
if (filename) {
gchar *dir;
dir = g_dirname(filename);
g_free(cwd);
cwd = dir;
}
}
manage_window_focus_out(dialog, NULL, NULL);
gtk_widget_destroy(dialog);
return filename;
}
gchar *filesel_save_as(const gchar *file)
{
gchar *filename;
filename = filesel_select_file(_("Save as"), file,
GTK_FILE_CHOOSER_ACTION_SAVE);
if (filename && is_file_exist(filename)) {
AlertValue aval;
aval = alertpanel(_("Overwrite"),
_("Overwrite existing file?"),
GTK_STOCK_OK, GTK_STOCK_CANCEL, NULL);
if (G_ALERTDEFAULT != aval) {
g_free(filename);
filename = NULL;
}
}
return filename;
}
static GtkWidget *filesel_create(const gchar *title,
GtkFileChooserAction action)
{
GtkWidget *dialog;
dialog = gtk_file_chooser_dialog_new
(title, NULL, action,
action == GTK_FILE_CHOOSER_ACTION_SAVE ? GTK_STOCK_SAVE
: GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
NULL);
gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
gtk_window_set_modal(GTK_WINDOW(dialog), TRUE);
gtk_window_set_wmclass
(GTK_WINDOW(dialog), "file_selection", "Sylpheed");
MANAGE_WINDOW_SIGNALS_CONNECT(dialog);
return dialog;
}
|