diff options
Diffstat (limited to 'tools/editor/filesystem_dock.h')
| -rw-r--r-- | tools/editor/filesystem_dock.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/editor/filesystem_dock.h b/tools/editor/filesystem_dock.h index ccd43847d6..224efe0f28 100644 --- a/tools/editor/filesystem_dock.h +++ b/tools/editor/filesystem_dock.h @@ -126,6 +126,11 @@ private: Tree * tree; //directories ItemList *files; + + void _file_multi_selected(int p_index, bool p_selected); + void _file_selected(); + + void _go_to_tree(); void _go_to_dir(const String& p_dir); void _select_file(int p_idx); @@ -153,7 +158,7 @@ private: void _dir_selected(); void _update_tree(); void _rescan(); - void _set_scannig_mode(); + void _set_scanning_mode(); void _favorites_pressed(); @@ -199,6 +204,10 @@ public: void set_display_mode(int p_mode); + int get_split_offset() { return split_box->get_split_offset(); } + void set_split_offset(int p_offset) { split_box->set_split_offset(p_offset); } + void select_file(const String& p_file); + FileSystemDock(EditorNode *p_editor); ~FileSystemDock(); }; |