2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-02-14 14:07:23 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/ui/file_dialog.h"
|
2014-02-14 14:07:23 +00:00
|
|
|
|
2016-06-21 08:54:55 +00:00
|
|
|
#include "atom/browser/native_window_views.h"
|
2016-07-11 06:29:03 +00:00
|
|
|
#include "atom/browser/unresponsive_suppressor.h"
|
2014-02-14 14:07:23 +00:00
|
|
|
#include "base/callback.h"
|
2015-01-10 01:45:50 +00:00
|
|
|
#include "base/files/file_util.h"
|
2014-08-06 06:49:02 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2017-01-26 10:55:19 +00:00
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_signal.h"
|
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_util.h"
|
2014-10-01 09:02:00 +00:00
|
|
|
#include "ui/views/widget/desktop_aura/x11_desktop_handler.h"
|
2014-02-14 14:07:23 +00:00
|
|
|
|
|
|
|
namespace file_dialog {
|
|
|
|
|
2014-03-13 04:58:27 +00:00
|
|
|
namespace {
|
|
|
|
|
2014-08-06 06:49:02 +00:00
|
|
|
// Makes sure that .jpg also shows .JPG.
|
|
|
|
gboolean FileFilterCaseInsensitive(const GtkFileFilterInfo* file_info,
|
|
|
|
std::string* file_extension) {
|
2015-08-21 03:06:29 +00:00
|
|
|
// Makes .* file extension matches all file types.
|
|
|
|
if (*file_extension == ".*")
|
|
|
|
return true;
|
2015-12-07 21:27:05 +00:00
|
|
|
return base::EndsWith(
|
|
|
|
file_info->filename,
|
|
|
|
*file_extension, base::CompareCase::INSENSITIVE_ASCII);
|
2014-08-06 06:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deletes |data| when gtk_file_filter_add_custom() is done with it.
|
|
|
|
void OnFileFilterDataDestroyed(std::string* file_extension) {
|
|
|
|
delete file_extension;
|
|
|
|
}
|
|
|
|
|
2014-03-13 04:58:27 +00:00
|
|
|
class FileChooserDialog {
|
|
|
|
public:
|
|
|
|
FileChooserDialog(GtkFileChooserAction action,
|
2017-02-08 01:32:58 +00:00
|
|
|
const DialogSettings& settings)
|
|
|
|
: parent_(static_cast<atom::NativeWindowViews*>(settings.parent_window)),
|
|
|
|
filters_(settings.filters) {
|
2014-03-13 05:58:53 +00:00
|
|
|
const char* confirm_text = GTK_STOCK_OK;
|
2016-05-15 06:02:27 +00:00
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
if (!settings.button_label.empty())
|
|
|
|
confirm_text = settings.button_label.c_str();
|
2016-05-15 06:02:27 +00:00
|
|
|
else if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
|
2014-03-13 05:58:53 +00:00
|
|
|
confirm_text = GTK_STOCK_SAVE;
|
|
|
|
else if (action == GTK_FILE_CHOOSER_ACTION_OPEN)
|
|
|
|
confirm_text = GTK_STOCK_OPEN;
|
|
|
|
|
2014-03-13 04:58:27 +00:00
|
|
|
dialog_ = gtk_file_chooser_dialog_new(
|
2017-02-08 01:32:58 +00:00
|
|
|
settings.title.c_str(),
|
2014-07-04 16:00:54 +00:00
|
|
|
NULL,
|
2014-03-13 04:58:27 +00:00
|
|
|
action,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
2014-03-13 05:58:53 +00:00
|
|
|
confirm_text, GTK_RESPONSE_ACCEPT,
|
2014-03-13 04:58:27 +00:00
|
|
|
NULL);
|
2016-06-21 08:54:55 +00:00
|
|
|
if (parent_) {
|
|
|
|
parent_->SetEnabled(false);
|
2017-01-26 10:55:19 +00:00
|
|
|
libgtkui::SetGtkTransientForAura(dialog_, parent_->GetNativeWindow());
|
2016-06-21 08:54:55 +00:00
|
|
|
gtk_window_set_modal(GTK_WINDOW(dialog_), TRUE);
|
2014-07-04 16:00:54 +00:00
|
|
|
}
|
2014-03-13 05:03:38 +00:00
|
|
|
|
2014-03-13 05:20:43 +00:00
|
|
|
if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
|
|
|
|
gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog_),
|
|
|
|
TRUE);
|
2014-03-13 05:27:01 +00:00
|
|
|
if (action != GTK_FILE_CHOOSER_ACTION_OPEN)
|
|
|
|
gtk_file_chooser_set_create_folders(GTK_FILE_CHOOSER(dialog_), TRUE);
|
2014-03-13 05:20:43 +00:00
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
if (!settings.default_path.empty()) {
|
|
|
|
if (base::DirectoryExists(settings.default_path)) {
|
2014-03-13 05:10:13 +00:00
|
|
|
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog_),
|
2017-02-08 01:32:58 +00:00
|
|
|
settings.default_path.value().c_str());
|
2015-06-04 02:08:16 +00:00
|
|
|
} else {
|
|
|
|
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog_),
|
2017-02-08 01:32:58 +00:00
|
|
|
settings.default_path.DirName().value().c_str());
|
2015-06-04 02:08:16 +00:00
|
|
|
gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog_),
|
2017-02-08 01:32:58 +00:00
|
|
|
settings.default_path.BaseName().value().c_str());
|
2015-06-04 02:08:16 +00:00
|
|
|
}
|
2014-03-13 05:10:13 +00:00
|
|
|
}
|
2014-08-06 06:49:02 +00:00
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
if (!settings.filters.empty())
|
|
|
|
AddFilters(settings.filters);
|
2014-03-13 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2016-07-11 04:47:24 +00:00
|
|
|
~FileChooserDialog() {
|
2014-03-13 04:58:27 +00:00
|
|
|
gtk_widget_destroy(dialog_);
|
2016-06-21 08:54:55 +00:00
|
|
|
if (parent_)
|
|
|
|
parent_->SetEnabled(true);
|
2014-03-13 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2016-07-11 04:47:24 +00:00
|
|
|
void SetupProperties(int properties) {
|
|
|
|
if (properties & FILE_DIALOG_MULTI_SELECTIONS)
|
|
|
|
gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog()), TRUE);
|
|
|
|
if (properties & FILE_DIALOG_SHOW_HIDDEN_FILES)
|
|
|
|
g_object_set(dialog(), "show-hidden", TRUE, NULL);
|
|
|
|
}
|
|
|
|
|
2014-03-13 05:58:53 +00:00
|
|
|
void RunAsynchronous() {
|
2014-03-13 04:58:27 +00:00
|
|
|
g_signal_connect(dialog_, "delete-event",
|
|
|
|
G_CALLBACK(gtk_widget_hide_on_delete), NULL);
|
|
|
|
g_signal_connect(dialog_, "response",
|
2014-03-13 05:58:53 +00:00
|
|
|
G_CALLBACK(OnFileDialogResponseThunk), this);
|
2014-03-13 04:58:27 +00:00
|
|
|
gtk_widget_show_all(dialog_);
|
2014-10-01 09:02:00 +00:00
|
|
|
|
|
|
|
// We need to call gtk_window_present after making the widgets visible to
|
|
|
|
// make sure window gets correctly raised and gets focus.
|
2017-01-26 10:55:19 +00:00
|
|
|
int time = ui::X11EventSource::GetInstance()->GetTimestamp();
|
2014-10-01 09:02:00 +00:00
|
|
|
gtk_window_present_with_time(GTK_WINDOW(dialog_), time);
|
2014-03-13 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 05:58:53 +00:00
|
|
|
void RunSaveAsynchronous(const SaveDialogCallback& callback) {
|
|
|
|
save_callback_ = callback;
|
|
|
|
RunAsynchronous();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunOpenAsynchronous(const OpenDialogCallback& callback) {
|
|
|
|
open_callback_ = callback;
|
|
|
|
RunAsynchronous();
|
|
|
|
}
|
|
|
|
|
2014-03-13 05:17:03 +00:00
|
|
|
base::FilePath GetFileName() const {
|
|
|
|
gchar* filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog_));
|
2016-03-14 07:28:01 +00:00
|
|
|
base::FilePath path = AddExtensionForFilename(filename);
|
2014-03-13 05:22:49 +00:00
|
|
|
g_free(filename);
|
|
|
|
return path;
|
2014-03-13 05:17:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 05:58:53 +00:00
|
|
|
std::vector<base::FilePath> GetFileNames() const {
|
|
|
|
std::vector<base::FilePath> paths;
|
|
|
|
GSList* filenames = gtk_file_chooser_get_filenames(
|
|
|
|
GTK_FILE_CHOOSER(dialog_));
|
|
|
|
for (GSList* iter = filenames; iter != NULL; iter = g_slist_next(iter)) {
|
2016-03-14 07:28:01 +00:00
|
|
|
base::FilePath path = AddExtensionForFilename(
|
|
|
|
static_cast<char*>(iter->data));
|
2014-03-13 05:58:53 +00:00
|
|
|
g_free(iter->data);
|
|
|
|
paths.push_back(path);
|
|
|
|
}
|
|
|
|
g_slist_free(filenames);
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
CHROMEGTK_CALLBACK_1(FileChooserDialog, void, OnFileDialogResponse, int);
|
2014-03-13 05:17:03 +00:00
|
|
|
|
|
|
|
GtkWidget* dialog() const { return dialog_; }
|
2014-03-13 04:58:27 +00:00
|
|
|
|
|
|
|
private:
|
2014-08-06 06:49:02 +00:00
|
|
|
void AddFilters(const Filters& filters);
|
2016-03-14 07:28:01 +00:00
|
|
|
base::FilePath AddExtensionForFilename(const gchar* filename) const;
|
2014-08-06 06:49:02 +00:00
|
|
|
|
2016-06-21 08:54:55 +00:00
|
|
|
atom::NativeWindowViews* parent_;
|
2016-07-11 06:29:03 +00:00
|
|
|
atom::UnresponsiveSuppressor unresponsive_suppressor_;
|
2015-07-07 07:45:13 +00:00
|
|
|
|
2014-03-13 04:58:27 +00:00
|
|
|
GtkWidget* dialog_;
|
|
|
|
|
2016-03-14 07:28:01 +00:00
|
|
|
Filters filters_;
|
2014-03-13 04:58:27 +00:00
|
|
|
SaveDialogCallback save_callback_;
|
|
|
|
OpenDialogCallback open_callback_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(FileChooserDialog);
|
|
|
|
};
|
|
|
|
|
2014-03-13 05:58:53 +00:00
|
|
|
void FileChooserDialog::OnFileDialogResponse(GtkWidget* widget, int response) {
|
2016-05-11 19:33:43 +00:00
|
|
|
gtk_widget_hide(dialog_);
|
2014-03-13 04:58:27 +00:00
|
|
|
|
2014-03-13 05:58:53 +00:00
|
|
|
if (!save_callback_.is_null()) {
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT)
|
|
|
|
save_callback_.Run(true, GetFileName());
|
|
|
|
else
|
|
|
|
save_callback_.Run(false, base::FilePath());
|
|
|
|
} else if (!open_callback_.is_null()) {
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT)
|
|
|
|
open_callback_.Run(true, GetFileNames());
|
|
|
|
else
|
|
|
|
open_callback_.Run(false, std::vector<base::FilePath>());
|
|
|
|
}
|
2014-03-13 04:58:27 +00:00
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2014-08-06 06:49:02 +00:00
|
|
|
void FileChooserDialog::AddFilters(const Filters& filters) {
|
|
|
|
for (size_t i = 0; i < filters.size(); ++i) {
|
|
|
|
const Filter& filter = filters[i];
|
|
|
|
GtkFileFilter* gtk_filter = gtk_file_filter_new();
|
|
|
|
|
|
|
|
for (size_t j = 0; j < filter.second.size(); ++j) {
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<std::string> file_extension(
|
2014-08-06 06:49:02 +00:00
|
|
|
new std::string("." + filter.second[j]));
|
|
|
|
gtk_file_filter_add_custom(
|
|
|
|
gtk_filter,
|
|
|
|
GTK_FILE_FILTER_FILENAME,
|
|
|
|
reinterpret_cast<GtkFileFilterFunc>(FileFilterCaseInsensitive),
|
|
|
|
file_extension.release(),
|
|
|
|
reinterpret_cast<GDestroyNotify>(OnFileFilterDataDestroyed));
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_file_filter_set_name(gtk_filter, filter.first.c_str());
|
|
|
|
gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog_), gtk_filter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 07:28:01 +00:00
|
|
|
base::FilePath FileChooserDialog::AddExtensionForFilename(
|
|
|
|
const gchar* filename) const {
|
|
|
|
base::FilePath path(filename);
|
|
|
|
GtkFileFilter* selected_filter =
|
|
|
|
gtk_file_chooser_get_filter(GTK_FILE_CHOOSER(dialog_));
|
|
|
|
if (!selected_filter)
|
|
|
|
return path;
|
|
|
|
|
|
|
|
GSList* filters = gtk_file_chooser_list_filters(GTK_FILE_CHOOSER(dialog_));
|
|
|
|
int i = g_slist_index(filters, selected_filter);
|
|
|
|
g_slist_free(filters);
|
|
|
|
if (i >= filters_.size())
|
|
|
|
return path;
|
|
|
|
|
|
|
|
const auto& extensions = filters_[i].second;
|
|
|
|
for (const auto& extension : extensions) {
|
2016-07-01 13:55:15 +00:00
|
|
|
if (extension == "*" ||
|
|
|
|
base::EndsWith(path.value(), "." + extension,
|
|
|
|
base::CompareCase::INSENSITIVE_ASCII))
|
2016-03-14 07:28:01 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2016-03-14 08:08:32 +00:00
|
|
|
return path.ReplaceExtension(extensions[0]);
|
2016-03-14 07:28:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:58:27 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
bool ShowOpenDialog(const DialogSettings& settings,
|
2014-02-14 14:07:23 +00:00
|
|
|
std::vector<base::FilePath>* paths) {
|
2014-03-13 06:01:34 +00:00
|
|
|
GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
|
2017-02-08 01:32:58 +00:00
|
|
|
if (settings.properties & FILE_DIALOG_OPEN_DIRECTORY)
|
2014-03-13 06:01:34 +00:00
|
|
|
action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
|
2017-02-08 01:32:58 +00:00
|
|
|
FileChooserDialog open_dialog(action, settings);
|
|
|
|
open_dialog.SetupProperties(settings.properties);
|
2014-03-13 06:01:34 +00:00
|
|
|
|
|
|
|
gtk_widget_show_all(open_dialog.dialog());
|
|
|
|
int response = gtk_dialog_run(GTK_DIALOG(open_dialog.dialog()));
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT) {
|
|
|
|
*paths = open_dialog.GetFileNames();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-14 14:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
void ShowOpenDialog(const DialogSettings& settings,
|
2014-02-14 14:07:23 +00:00
|
|
|
const OpenDialogCallback& callback) {
|
2014-03-13 05:58:53 +00:00
|
|
|
GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
|
2017-02-08 01:32:58 +00:00
|
|
|
if (settings.properties & FILE_DIALOG_OPEN_DIRECTORY)
|
2014-03-13 05:58:53 +00:00
|
|
|
action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
|
2017-02-08 01:32:58 +00:00
|
|
|
FileChooserDialog* open_dialog = new FileChooserDialog(action, settings);
|
|
|
|
open_dialog->SetupProperties(settings.properties);
|
2014-03-13 05:58:53 +00:00
|
|
|
open_dialog->RunOpenAsynchronous(callback);
|
2014-02-14 14:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
bool ShowSaveDialog(const DialogSettings& settings,
|
2014-02-14 14:07:23 +00:00
|
|
|
base::FilePath* path) {
|
2017-02-08 01:32:58 +00:00
|
|
|
FileChooserDialog save_dialog(GTK_FILE_CHOOSER_ACTION_SAVE, settings);
|
2014-03-13 05:17:03 +00:00
|
|
|
gtk_widget_show_all(save_dialog.dialog());
|
|
|
|
int response = gtk_dialog_run(GTK_DIALOG(save_dialog.dialog()));
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT) {
|
|
|
|
*path = save_dialog.GetFileName();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-14 14:07:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 01:32:58 +00:00
|
|
|
void ShowSaveDialog(const DialogSettings& settings,
|
2014-02-14 14:07:23 +00:00
|
|
|
const SaveDialogCallback& callback) {
|
2014-03-13 05:58:53 +00:00
|
|
|
FileChooserDialog* save_dialog = new FileChooserDialog(
|
2017-02-08 01:32:58 +00:00
|
|
|
GTK_FILE_CHOOSER_ACTION_SAVE, settings);
|
2014-03-13 05:58:53 +00:00
|
|
|
save_dialog->RunSaveAsynchronous(callback);
|
2014-02-14 14:07:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace file_dialog
|