2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2017-01-16 07:04:19 +00:00
|
|
|
/* filesystem_dock.h */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 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. */
|
|
|
|
/*************************************************************************/
|
2016-07-21 13:34:57 +00:00
|
|
|
#ifndef FILESYSTEM_DOCK_H
|
|
|
|
#define FILESYSTEM_DOCK_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/box_container.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/control.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/item_list.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/label.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/menu_button.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/option_button.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/progress_bar.h"
|
2016-05-15 23:25:51 +00:00
|
|
|
#include "scene/gui/split_container.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/tool_button.h"
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
#include "scene/main/timer.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "os/dir_access.h"
|
|
|
|
#include "os/thread.h"
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "dependency_editor.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "editor_dir_dialog.h"
|
|
|
|
#include "editor_file_system.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class EditorNode;
|
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
class FileSystemDock : public VBoxContainer {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(FileSystemDock, VBoxContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-08-16 16:25:42 +00:00
|
|
|
public:
|
|
|
|
enum DisplayMode {
|
|
|
|
DISPLAY_THUMBNAILS,
|
|
|
|
DISPLAY_LIST
|
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2016-08-16 16:25:42 +00:00
|
|
|
private:
|
2015-08-23 23:15:56 +00:00
|
|
|
enum FileMenu {
|
2016-05-15 23:25:51 +00:00
|
|
|
FILE_OPEN,
|
|
|
|
FILE_INSTANCE,
|
2015-08-23 23:15:56 +00:00
|
|
|
FILE_DEPENDENCIES,
|
|
|
|
FILE_OWNERS,
|
|
|
|
FILE_MOVE,
|
|
|
|
FILE_REMOVE,
|
|
|
|
FILE_REIMPORT,
|
2016-05-18 07:37:59 +00:00
|
|
|
FILE_INFO,
|
2016-06-06 15:20:03 +00:00
|
|
|
FILE_SHOW_IN_EXPLORER,
|
|
|
|
FILE_COPY_PATH
|
2015-08-23 23:15:56 +00:00
|
|
|
};
|
|
|
|
|
2017-01-10 12:19:59 +00:00
|
|
|
enum FolderMenu {
|
|
|
|
FOLDER_EXPAND_ALL,
|
2017-04-24 15:54:51 +00:00
|
|
|
FOLDER_COLLAPSE_ALL,
|
|
|
|
FOLDER_SHOW_IN_EXPLORER
|
2017-01-10 12:19:59 +00:00
|
|
|
};
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
VBoxContainer *scanning_vb;
|
|
|
|
ProgressBar *scanning_progress;
|
2016-05-15 23:25:51 +00:00
|
|
|
VSplitContainer *split_box;
|
|
|
|
VBoxContainer *file_list_vb;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
EditorNode *editor;
|
|
|
|
Set<String> favorites;
|
|
|
|
|
|
|
|
Button *button_reload;
|
|
|
|
Button *button_favorite;
|
2015-08-23 23:15:56 +00:00
|
|
|
Button *button_back;
|
2016-08-16 16:25:42 +00:00
|
|
|
Button *button_display_mode;
|
2015-08-23 23:15:56 +00:00
|
|
|
Button *button_hist_next;
|
|
|
|
Button *button_hist_prev;
|
|
|
|
LineEdit *current_path;
|
2016-05-15 23:25:51 +00:00
|
|
|
LineEdit *search_box;
|
2017-01-12 21:27:27 +00:00
|
|
|
TextureRect *search_icon;
|
2015-08-23 23:15:56 +00:00
|
|
|
HBoxContainer *path_hb;
|
|
|
|
|
2016-05-15 23:25:51 +00:00
|
|
|
bool split_mode;
|
2016-08-16 16:25:42 +00:00
|
|
|
DisplayMode display_mode;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2016-05-15 23:25:51 +00:00
|
|
|
PopupMenu *file_options;
|
2017-01-10 12:19:59 +00:00
|
|
|
PopupMenu *folder_options;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
|
|
|
DependencyEditor *deps_editor;
|
|
|
|
DependencyEditorOwners *owners_editor;
|
|
|
|
DependencyRemoveDialog *remove_dialog;
|
|
|
|
|
|
|
|
EditorDirDialog *move_dialog;
|
|
|
|
EditorFileDialog *rename_dialog;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
Vector<String> move_dirs;
|
|
|
|
Vector<String> move_files;
|
|
|
|
|
|
|
|
Vector<String> history;
|
|
|
|
int history_pos;
|
|
|
|
|
|
|
|
String path;
|
|
|
|
|
|
|
|
bool initialized;
|
2014-05-16 11:48:23 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool updating_tree;
|
2017-03-05 15:44:50 +00:00
|
|
|
Tree *tree; //directories
|
2015-08-23 23:15:56 +00:00
|
|
|
ItemList *files;
|
|
|
|
|
2017-02-01 12:45:45 +00:00
|
|
|
void _file_multi_selected(int p_index, bool p_selected);
|
|
|
|
void _file_selected();
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
void _go_to_tree();
|
2017-03-05 15:44:50 +00:00
|
|
|
void _go_to_dir(const String &p_dir);
|
2015-08-23 23:15:56 +00:00
|
|
|
void _select_file(int p_idx);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool _create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir);
|
|
|
|
void _thumbnail_done(const String &p_path, const Ref<Texture> &p_preview, const Variant &p_udata);
|
|
|
|
void _find_inside_move_files(EditorFileSystemDirectory *efsd, Vector<String> &files);
|
|
|
|
void _find_remaps(EditorFileSystemDirectory *efsd, Map<String, String> &renames, List<String> &to_remaps);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _rename_operation(const String &p_to_path);
|
|
|
|
void _move_operation(const String &p_to_path);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
|
|
|
void _file_option(int p_option);
|
2017-01-10 12:19:59 +00:00
|
|
|
void _folder_option(int p_option);
|
2015-08-23 23:15:56 +00:00
|
|
|
void _update_files(bool p_keep_selection);
|
|
|
|
void _change_file_display();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
void _fs_changed();
|
|
|
|
void _fw_history();
|
|
|
|
void _bw_history();
|
|
|
|
void _push_to_history();
|
|
|
|
|
|
|
|
void _dir_selected();
|
2014-02-10 01:10:30 +00:00
|
|
|
void _update_tree();
|
|
|
|
void _rescan();
|
2017-01-21 12:07:29 +00:00
|
|
|
void _set_scanning_mode();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
void _favorites_pressed();
|
2014-02-10 01:10:30 +00:00
|
|
|
void _open_pressed();
|
2017-08-12 16:52:50 +00:00
|
|
|
void _dir_rmb_pressed(const Vector2 &p_pos);
|
2017-03-05 15:44:50 +00:00
|
|
|
void _search_changed(const String &p_text);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _files_list_rmb_select(int p_item, const Vector2 &p_pos);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
|
|
|
struct FileInfo {
|
|
|
|
String name;
|
|
|
|
String path;
|
|
|
|
StringName type;
|
2016-05-27 17:18:40 +00:00
|
|
|
int import_status; //0 not imported, 1 - ok, 2- must reimport, 3- broken
|
|
|
|
Vector<String> sources;
|
2016-05-15 23:25:51 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator<(const FileInfo &fi) const {
|
2016-05-15 23:25:51 +00:00
|
|
|
return name < fi.name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
|
|
|
|
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
|
|
|
|
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _preview_invalidated(const String &p_path);
|
2016-07-03 16:15:15 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_selected_path() const;
|
2016-05-27 17:18:40 +00:00
|
|
|
|
|
|
|
String get_current_path() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
void navigate_to_path(const String &p_path);
|
2016-05-15 23:25:51 +00:00
|
|
|
void focus_on_filter();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void fix_dependencies(const String &p_for_file);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2016-08-16 16:25:42 +00:00
|
|
|
void set_display_mode(int p_mode);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-25 01:46:44 +00:00
|
|
|
int get_split_offset() { return split_box->get_split_offset(); }
|
|
|
|
void set_split_offset(int p_offset) { split_box->set_split_offset(p_offset); }
|
2017-03-05 15:44:50 +00:00
|
|
|
void select_file(const String &p_file);
|
2017-01-25 01:46:44 +00:00
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
FileSystemDock(EditorNode *p_editor);
|
|
|
|
~FileSystemDock();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENES_DOCK_H
|