浏览代码

Merge pull request #57037 from timothyqiu/groups-editor-3.x

Rémi Verschelde 3 年之前
父节点
当前提交
d775499f43
共有 2 个文件被更改,包括 22 次插入3 次删除
  1. 19 3
      editor/groups_editor.cpp
  2. 3 0
      editor/groups_editor.h

+ 19 - 3
editor/groups_editor.cpp

@@ -191,6 +191,10 @@ void GroupDialog::_add_group_pressed(const String &p_name) {
 	add_group_text->clear();
 	add_group_text->clear();
 }
 }
 
 
+void GroupDialog::_add_group_text_changed(const String &p_new_text) {
+	add_group_button->set_disabled(p_new_text.strip_edges().empty());
+}
+
 void GroupDialog::_add_group(String p_name) {
 void GroupDialog::_add_group(String p_name) {
 	if (!is_visible()) {
 	if (!is_visible()) {
 		return; // No need to edit the dialog if it's not being used.
 		return; // No need to edit the dialog if it's not being used.
@@ -368,6 +372,7 @@ void GroupDialog::_delete_group_item(const String &p_name) {
 
 
 void GroupDialog::_notification(int p_what) {
 void GroupDialog::_notification(int p_what) {
 	switch (p_what) {
 	switch (p_what) {
+		case NOTIFICATION_THEME_CHANGED:
 		case NOTIFICATION_ENTER_TREE: {
 		case NOTIFICATION_ENTER_TREE: {
 			add_button->set_icon(get_icon("Forward", "EditorIcons"));
 			add_button->set_icon(get_icon("Forward", "EditorIcons"));
 			remove_button->set_icon(get_icon("Back", "EditorIcons"));
 			remove_button->set_icon(get_icon("Back", "EditorIcons"));
@@ -405,6 +410,7 @@ void GroupDialog::_bind_methods() {
 	ClassDB::bind_method("_group_selected", &GroupDialog::_group_selected);
 	ClassDB::bind_method("_group_selected", &GroupDialog::_group_selected);
 	ClassDB::bind_method("_add_group_pressed", &GroupDialog::_add_group_pressed);
 	ClassDB::bind_method("_add_group_pressed", &GroupDialog::_add_group_pressed);
 	ClassDB::bind_method("_add_group", &GroupDialog::_add_group);
 	ClassDB::bind_method("_add_group", &GroupDialog::_add_group);
+	ClassDB::bind_method("_add_group_text_changed", &GroupDialog::_add_group_text_changed);
 
 
 	ClassDB::bind_method("_add_filter_changed", &GroupDialog::_add_filter_changed);
 	ClassDB::bind_method("_add_filter_changed", &GroupDialog::_add_filter_changed);
 	ClassDB::bind_method("_remove_filter_changed", &GroupDialog::_remove_filter_changed);
 	ClassDB::bind_method("_remove_filter_changed", &GroupDialog::_remove_filter_changed);
@@ -456,8 +462,9 @@ GroupDialog::GroupDialog() {
 	chbc->add_child(add_group_text);
 	chbc->add_child(add_group_text);
 	add_group_text->set_h_size_flags(SIZE_EXPAND_FILL);
 	add_group_text->set_h_size_flags(SIZE_EXPAND_FILL);
 	add_group_text->connect("text_entered", this, "_add_group_pressed");
 	add_group_text->connect("text_entered", this, "_add_group_pressed");
+	add_group_text->connect("text_changed", this, "_add_group_text_changed");
 
 
-	Button *add_group_button = memnew(Button);
+	add_group_button = memnew(Button);
 	add_group_button->set_text(TTR("Add"));
 	add_group_button->set_text(TTR("Add"));
 	chbc->add_child(add_group_button);
 	chbc->add_child(add_group_button);
 	add_group_button->connect("pressed", this, "_add_group_pressed", varray(String()));
 	add_group_button->connect("pressed", this, "_add_group_pressed", varray(String()));
@@ -552,6 +559,8 @@ GroupDialog::GroupDialog() {
 	error = memnew(ConfirmationDialog);
 	error = memnew(ConfirmationDialog);
 	add_child(error);
 	add_child(error);
 	error->get_ok()->set_text(TTR("Close"));
 	error->get_ok()->set_text(TTR("Close"));
+
+	_add_group_text_changed("");
 }
 }
 
 
 ////////////////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////////////////
@@ -566,6 +575,7 @@ void GroupsEditor::_add_group(const String &p_group) {
 		return;
 		return;
 	}
 	}
 
 
+	group_name->clear();
 	if (node->is_in_group(name)) {
 	if (node->is_in_group(name)) {
 		return;
 		return;
 	}
 	}
@@ -582,8 +592,6 @@ void GroupsEditor::_add_group(const String &p_group) {
 	undo_redo->add_undo_method(EditorNode::get_singleton()->get_scene_tree_dock()->get_tree_editor(), "update_tree");
 	undo_redo->add_undo_method(EditorNode::get_singleton()->get_scene_tree_dock()->get_tree_editor(), "update_tree");
 
 
 	undo_redo->commit_action();
 	undo_redo->commit_action();
-
-	group_name->clear();
 }
 }
 
 
 void GroupsEditor::_modify_group(Object *p_item, int p_column, int p_id) {
 void GroupsEditor::_modify_group(Object *p_item, int p_column, int p_id) {
@@ -619,6 +627,10 @@ void GroupsEditor::_modify_group(Object *p_item, int p_column, int p_id) {
 	}
 	}
 }
 }
 
 
+void GroupsEditor::_group_name_changed(const String &p_new_text) {
+	add->set_disabled(p_new_text.strip_edges().empty());
+}
+
 struct _GroupInfoComparator {
 struct _GroupInfoComparator {
 	bool operator()(const Node::GroupInfo &p_a, const Node::GroupInfo &p_b) const {
 	bool operator()(const Node::GroupInfo &p_a, const Node::GroupInfo &p_b) const {
 		return p_a.name.operator String() < p_b.name.operator String();
 		return p_a.name.operator String() < p_b.name.operator String();
@@ -686,6 +698,7 @@ void GroupsEditor::_show_group_dialog() {
 void GroupsEditor::_bind_methods() {
 void GroupsEditor::_bind_methods() {
 	ClassDB::bind_method("_add_group", &GroupsEditor::_add_group);
 	ClassDB::bind_method("_add_group", &GroupsEditor::_add_group);
 	ClassDB::bind_method("_modify_group", &GroupsEditor::_modify_group);
 	ClassDB::bind_method("_modify_group", &GroupsEditor::_modify_group);
+	ClassDB::bind_method("_group_name_changed", &GroupsEditor::_group_name_changed);
 	ClassDB::bind_method("update_tree", &GroupsEditor::update_tree);
 	ClassDB::bind_method("update_tree", &GroupsEditor::update_tree);
 
 
 	ClassDB::bind_method("_show_group_dialog", &GroupsEditor::_show_group_dialog);
 	ClassDB::bind_method("_show_group_dialog", &GroupsEditor::_show_group_dialog);
@@ -713,6 +726,7 @@ GroupsEditor::GroupsEditor() {
 	group_name->set_h_size_flags(SIZE_EXPAND_FILL);
 	group_name->set_h_size_flags(SIZE_EXPAND_FILL);
 	hbc->add_child(group_name);
 	hbc->add_child(group_name);
 	group_name->connect("text_entered", this, "_add_group");
 	group_name->connect("text_entered", this, "_add_group");
+	group_name->connect("text_changed", this, "_group_name_changed");
 
 
 	add = memnew(Button);
 	add = memnew(Button);
 	add->set_text(TTR("Add"));
 	add->set_text(TTR("Add"));
@@ -726,6 +740,8 @@ GroupsEditor::GroupsEditor() {
 	tree->connect("button_pressed", this, "_modify_group");
 	tree->connect("button_pressed", this, "_modify_group");
 	tree->add_constant_override("draw_guides", 1);
 	tree->add_constant_override("draw_guides", 1);
 	add_constant_override("separation", 3 * EDSCALE);
 	add_constant_override("separation", 3 * EDSCALE);
+
+	_group_name_changed("");
 }
 }
 
 
 GroupsEditor::~GroupsEditor() {
 GroupsEditor::~GroupsEditor() {

+ 3 - 0
editor/groups_editor.h

@@ -50,6 +50,7 @@ class GroupDialog : public WindowDialog {
 	TreeItem *groups_root;
 	TreeItem *groups_root;
 
 
 	LineEdit *add_group_text;
 	LineEdit *add_group_text;
+	Button *add_group_button;
 
 
 	Tree *groups;
 	Tree *groups;
 
 
@@ -78,6 +79,7 @@ class GroupDialog : public WindowDialog {
 	void _add_pressed();
 	void _add_pressed();
 	void _removed_pressed();
 	void _removed_pressed();
 	void _add_group_pressed(const String &p_name);
 	void _add_group_pressed(const String &p_name);
+	void _add_group_text_changed(const String &p_new_text);
 
 
 	void _group_renamed();
 	void _group_renamed();
 	void _rename_group_item(const String &p_old_name, const String &p_new_name);
 	void _rename_group_item(const String &p_old_name, const String &p_new_name);
@@ -123,6 +125,7 @@ class GroupsEditor : public VBoxContainer {
 	void update_tree();
 	void update_tree();
 	void _add_group(const String &p_group = "");
 	void _add_group(const String &p_group = "");
 	void _modify_group(Object *p_item, int p_column, int p_id);
 	void _modify_group(Object *p_item, int p_column, int p_id);
+	void _group_name_changed(const String &p_new_text);
 
 
 	void _show_group_dialog();
 	void _show_group_dialog();