Add "New Folder.." to right mouse button click on project fileslist panel _WHEN_ no any file/folder is under mouse cursor.
This commit is contained in:
parent
82ad05a20e
commit
d67b602f2f
3 changed files with 18 additions and 0 deletions
|
@ -1447,6 +1447,15 @@ void FileSystemDock::_files_list_rmb_select(int p_item, const Vector2 &p_pos) {
|
|||
file_options->popup();
|
||||
}
|
||||
|
||||
void FileSystemDock::_rmb_pressed(const Vector2 &p_pos) {
|
||||
folder_options->clear();
|
||||
folder_options->set_size(Size2(1, 1));
|
||||
|
||||
folder_options->add_item(TTR("New Folder.."), FOLDER_NEW_FOLDER);
|
||||
folder_options->set_position(files->get_global_position() + p_pos);
|
||||
folder_options->popup();
|
||||
}
|
||||
|
||||
void FileSystemDock::select_file(const String &p_file) {
|
||||
|
||||
navigate_to_path(p_file);
|
||||
|
@ -1547,6 +1556,7 @@ void FileSystemDock::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("_file_selected"), &FileSystemDock::_file_selected);
|
||||
ClassDB::bind_method(D_METHOD("_file_multi_selected"), &FileSystemDock::_file_multi_selected);
|
||||
ClassDB::bind_method(D_METHOD("_update_import_dock"), &FileSystemDock::_update_import_dock);
|
||||
ClassDB::bind_method(D_METHOD("_rmb_pressed"), &FileSystemDock::_rmb_pressed);
|
||||
|
||||
ADD_SIGNAL(MethodInfo("instance", PropertyInfo(Variant::POOL_STRING_ARRAY, "files")));
|
||||
ADD_SIGNAL(MethodInfo("open"));
|
||||
|
@ -1665,6 +1675,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) {
|
|||
files->connect("item_rmb_selected", this, "_files_list_rmb_select");
|
||||
files->connect("item_selected", this, "_file_selected");
|
||||
files->connect("multi_selected", this, "_file_multi_selected");
|
||||
files->connect("rmb_clicked", this, "_rmb_pressed");
|
||||
files->set_allow_rmb_select(true);
|
||||
file_list_vb->add_child(files);
|
||||
|
||||
|
|
|
@ -192,6 +192,7 @@ private:
|
|||
|
||||
void _dir_rmb_pressed(const Vector2 &p_pos);
|
||||
void _files_list_rmb_select(int p_item, const Vector2 &p_pos);
|
||||
void _rmb_pressed(const Vector2 &p_pos);
|
||||
|
||||
struct FileInfo {
|
||||
String name;
|
||||
|
|
|
@ -523,6 +523,11 @@ void ItemList::_gui_input(const Ref<InputEvent> &p_event) {
|
|||
}
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
if (mb->get_button_index() == BUTTON_RIGHT) {
|
||||
emit_signal("rmb_clicked", mb->get_position());
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -1397,6 +1402,7 @@ void ItemList::_bind_methods() {
|
|||
ADD_SIGNAL(MethodInfo("item_rmb_selected", PropertyInfo(Variant::INT, "index"), PropertyInfo(Variant::VECTOR2, "at_position")));
|
||||
ADD_SIGNAL(MethodInfo("multi_selected", PropertyInfo(Variant::INT, "index"), PropertyInfo(Variant::BOOL, "selected")));
|
||||
ADD_SIGNAL(MethodInfo("item_activated", PropertyInfo(Variant::INT, "index")));
|
||||
ADD_SIGNAL(MethodInfo("rmb_clicked", PropertyInfo(Variant::VECTOR2, "at_position")));
|
||||
|
||||
GLOBAL_DEF("gui/timers/incremental_search_max_interval_msec", 2000);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue