electron/atom/browser/ui/file_dialog.h

83 lines
2.3 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2014-03-16 00:58:59 +00:00
#ifndef ATOM_BROWSER_UI_FILE_DIALOG_H_
#define ATOM_BROWSER_UI_FILE_DIALOG_H_
#include <string>
#include <utility>
#include <vector>
2013-09-23 11:22:36 +00:00
#include "base/callback_forward.h"
#include "base/files/file_path.h"
namespace atom {
class NativeWindow;
}
namespace file_dialog {
// <description, extensions>
2018-04-18 01:44:10 +00:00
typedef std::pair<std::string, std::vector<std::string>> Filter;
typedef std::vector<Filter> Filters;
enum FileDialogProperty {
2018-04-18 01:44:10 +00:00
FILE_DIALOG_OPEN_FILE = 1 << 0,
FILE_DIALOG_OPEN_DIRECTORY = 1 << 1,
FILE_DIALOG_MULTI_SELECTIONS = 1 << 2,
FILE_DIALOG_CREATE_DIRECTORY = 1 << 3,
FILE_DIALOG_SHOW_HIDDEN_FILES = 1 << 4,
FILE_DIALOG_PROMPT_TO_CREATE = 1 << 5,
FILE_DIALOG_NO_RESOLVE_ALIASES = 1 << 6,
FILE_DIALOG_TREAT_PACKAGE_APP_AS_DIRECTORY = 1 << 7,
};
#if defined(MAS_BUILD)
2018-04-18 01:44:10 +00:00
typedef base::Callback<void(bool result,
const std::vector<base::FilePath>& paths,
const std::vector<std::string>& bookmarkData)>
OpenDialogCallback;
typedef base::Callback<void(bool result,
const base::FilePath& path,
const std::string& bookmarkData)>
SaveDialogCallback;
#else
2018-04-18 01:44:10 +00:00
typedef base::Callback<void(bool result,
const std::vector<base::FilePath>& paths)>
OpenDialogCallback;
2018-04-18 01:44:10 +00:00
typedef base::Callback<void(bool result, const base::FilePath& path)>
SaveDialogCallback;
#endif
2013-09-23 11:22:36 +00:00
2017-02-08 01:32:58 +00:00
struct DialogSettings {
atom::NativeWindow* parent_window = nullptr;
std::string title;
std::string message;
2017-02-08 01:32:58 +00:00
std::string button_label;
std::string name_field_label;
2017-02-08 01:32:58 +00:00
base::FilePath default_path;
Filters filters;
int properties = 0;
bool shows_tag_field = true;
bool force_detached = false;
bool security_scoped_bookmarks = false;
2017-02-08 01:32:58 +00:00
};
bool ShowOpenDialog(const DialogSettings& settings,
std::vector<base::FilePath>* paths);
2017-02-08 01:32:58 +00:00
void ShowOpenDialog(const DialogSettings& settings,
2013-09-23 11:22:36 +00:00
const OpenDialogCallback& callback);
2018-04-18 01:44:10 +00:00
bool ShowSaveDialog(const DialogSettings& settings, base::FilePath* path);
2017-02-08 01:32:58 +00:00
void ShowSaveDialog(const DialogSettings& settings,
2013-09-23 12:08:32 +00:00
const SaveDialogCallback& callback);
} // namespace file_dialog
2014-03-16 00:58:59 +00:00
#endif // ATOM_BROWSER_UI_FILE_DIALOG_H_