2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* file_dialog.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef FILE_DIALOG_H
|
|
|
|
#define FILE_DIALOG_H
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "box_container.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/dir_access.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/line_edit.h"
|
|
|
|
#include "scene/gui/option_button.h"
|
2015-12-04 18:33:30 +00:00
|
|
|
#include "scene/gui/tool_button.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/tree.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
class FileDialog : public ConfirmationDialog {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(FileDialog, ConfirmationDialog);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
public:
|
|
|
|
enum Access {
|
|
|
|
ACCESS_RESOURCES,
|
|
|
|
ACCESS_USERDATA,
|
|
|
|
ACCESS_FILESYSTEM
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Mode {
|
|
|
|
MODE_OPEN_FILE,
|
|
|
|
MODE_OPEN_FILES,
|
|
|
|
MODE_OPEN_DIR,
|
2016-03-14 15:03:18 +00:00
|
|
|
MODE_OPEN_ANY,
|
|
|
|
MODE_SAVE_FILE
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
typedef Ref<Texture> (*GetIconFunc)(const String &);
|
|
|
|
typedef void (*RegisterFunc)(FileDialog *);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
static GetIconFunc get_icon_func;
|
|
|
|
static GetIconFunc get_large_icon_func;
|
|
|
|
static RegisterFunc register_func;
|
|
|
|
static RegisterFunc unregister_func;
|
|
|
|
|
|
|
|
private:
|
|
|
|
ConfirmationDialog *makedialog;
|
|
|
|
LineEdit *makedirname;
|
|
|
|
|
|
|
|
Button *makedir;
|
|
|
|
Access access;
|
|
|
|
//Button *action;
|
|
|
|
VBoxContainer *vbox;
|
|
|
|
Mode mode;
|
|
|
|
LineEdit *dir;
|
|
|
|
OptionButton *drives;
|
|
|
|
Tree *tree;
|
|
|
|
LineEdit *file;
|
|
|
|
AcceptDialog *mkdirerr;
|
2014-04-10 03:18:27 +00:00
|
|
|
AcceptDialog *exterr;
|
2014-02-10 01:10:30 +00:00
|
|
|
OptionButton *filter;
|
|
|
|
DirAccess *dir_access;
|
|
|
|
ConfirmationDialog *confirm_save;
|
2015-12-04 18:33:30 +00:00
|
|
|
|
2017-11-27 15:58:28 +00:00
|
|
|
ToolButton *dir_up;
|
|
|
|
|
2015-12-04 18:33:30 +00:00
|
|
|
ToolButton *refresh;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<String> filters;
|
|
|
|
|
2017-12-03 01:54:06 +00:00
|
|
|
bool mode_overrides_title;
|
|
|
|
|
2015-03-23 14:31:03 +00:00
|
|
|
static bool default_show_hidden_files;
|
|
|
|
bool show_hidden_files;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool invalidated;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void update_dir();
|
|
|
|
void update_file_list();
|
|
|
|
void update_filters();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2018-08-20 15:45:16 +00:00
|
|
|
void _tree_multi_selected(Object *p_object, int p_cell, bool p_selected);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _tree_selected();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void _select_drive(int p_idx);
|
2018-02-15 02:44:11 +00:00
|
|
|
void _tree_item_activated();
|
2014-02-10 01:10:30 +00:00
|
|
|
void _dir_entered(String p_dir);
|
2017-03-05 15:44:50 +00:00
|
|
|
void _file_entered(const String &p_file);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _action_pressed();
|
|
|
|
void _save_confirm_pressed();
|
|
|
|
void _cancel_pressed();
|
|
|
|
void _filter_selected(int);
|
|
|
|
void _make_dir();
|
|
|
|
void _make_dir_confirm();
|
2017-11-27 15:58:28 +00:00
|
|
|
void _go_up();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void _update_drives();
|
|
|
|
|
2017-05-20 15:38:03 +00:00
|
|
|
void _unhandled_input(const Ref<InputEvent> &p_event);
|
2015-12-28 23:36:48 +00:00
|
|
|
|
2017-11-24 18:12:18 +00:00
|
|
|
bool _is_open_should_be_disabled();
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual void _post_popup();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
//bind helpers
|
|
|
|
public:
|
|
|
|
void clear_filters();
|
2017-03-05 15:44:50 +00:00
|
|
|
void add_filter(const String &p_filter);
|
|
|
|
void set_filters(const Vector<String> &p_filters);
|
2016-07-16 23:58:28 +00:00
|
|
|
Vector<String> get_filters() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void set_enable_multiple_selection(bool p_enable);
|
|
|
|
Vector<String> get_selected_files() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_current_dir() const;
|
|
|
|
String get_current_file() const;
|
|
|
|
String get_current_path() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_current_dir(const String &p_dir);
|
|
|
|
void set_current_file(const String &p_file);
|
|
|
|
void set_current_path(const String &p_path);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-03 01:54:06 +00:00
|
|
|
void set_mode_overrides_title(bool p_override);
|
|
|
|
bool is_mode_overriding_title() const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_mode(Mode p_mode);
|
|
|
|
Mode get_mode() const;
|
|
|
|
|
|
|
|
VBoxContainer *get_vbox();
|
|
|
|
LineEdit *get_line_edit() { return file; }
|
|
|
|
|
|
|
|
void set_access(Access p_access);
|
|
|
|
Access get_access() const;
|
|
|
|
|
2015-03-23 14:31:03 +00:00
|
|
|
void set_show_hidden_files(bool p_show);
|
|
|
|
bool is_showing_hidden_files() const;
|
|
|
|
|
|
|
|
static void set_default_show_hidden_files(bool p_show);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void invalidate();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-11-27 15:58:28 +00:00
|
|
|
void deselect_items();
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
FileDialog();
|
2014-02-10 01:10:30 +00:00
|
|
|
~FileDialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
class LineEditFileChooser : public HBoxContainer {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(LineEditFileChooser, HBoxContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
Button *button;
|
|
|
|
LineEdit *line_edit;
|
|
|
|
FileDialog *dialog;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _chosen(const String &p_text);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _browse();
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
Button *get_button() { return button; }
|
|
|
|
LineEdit *get_line_edit() { return line_edit; }
|
|
|
|
FileDialog *get_file_dialog() { return dialog; }
|
|
|
|
|
|
|
|
LineEditFileChooser();
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VARIANT_ENUM_CAST(FileDialog::Mode);
|
|
|
|
VARIANT_ENUM_CAST(FileDialog::Access);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
#endif
|