mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
Merge pull request #10874 from Noshyaar/pr-action
ProjectSettings: enhance add action error, fix confirm dialog
This commit is contained in:
commit
4405de570d
@ -700,6 +700,8 @@ void ProjectSettingsEditor::_update_actions() {
|
||||
action->set_meta("__input", ie);
|
||||
}
|
||||
}
|
||||
|
||||
_action_check(action_name->get_text());
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::popup_project_settings() {
|
||||
@ -809,28 +811,41 @@ void ProjectSettingsEditor::_item_del() {
|
||||
undo_redo->commit_action();
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::_action_check(String p_action) {
|
||||
|
||||
if (p_action == "") {
|
||||
|
||||
action_add->set_disabled(true);
|
||||
} else {
|
||||
|
||||
if (p_action.find("/") != -1 || p_action.find(":") != -1) {
|
||||
action_add->set_text(TTR("Can't contain '/' or ':'"));
|
||||
action_add->set_disabled(true);
|
||||
return;
|
||||
}
|
||||
if (ProjectSettings::get_singleton()->has("input/" + p_action)) {
|
||||
action_add->set_text(TTR("Already existing"));
|
||||
action_add->set_disabled(true);
|
||||
return;
|
||||
}
|
||||
|
||||
action_add->set_disabled(false);
|
||||
}
|
||||
|
||||
action_add->set_text(TTR("Add"));
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::_action_adds(String) {
|
||||
|
||||
_action_add();
|
||||
if (!action_add->is_disabled()) {
|
||||
_action_add();
|
||||
}
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::_action_add() {
|
||||
|
||||
String action = action_name->get_text();
|
||||
if (action.find("/") != -1 || action.find(":") != -1 || action == "") {
|
||||
message->set_text(TTR("Invalid action (anything goes but '/' or ':')."));
|
||||
message->popup_centered(Size2(300, 100) * EDSCALE);
|
||||
return;
|
||||
}
|
||||
|
||||
if (ProjectSettings::get_singleton()->has("input/" + action)) {
|
||||
message->set_text(vformat(TTR("Action '%s' already exists!"), action));
|
||||
message->popup_centered(Size2(300, 100) * EDSCALE);
|
||||
return;
|
||||
}
|
||||
|
||||
Array va;
|
||||
String name = "input/" + action;
|
||||
String name = "input/" + action_name->get_text();
|
||||
undo_redo->create_action(TTR("Add Input Action Event"));
|
||||
undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", name, va);
|
||||
undo_redo->add_undo_method(ProjectSettings::get_singleton(), "clear", name);
|
||||
@ -854,6 +869,7 @@ void ProjectSettingsEditor::_action_add() {
|
||||
return;
|
||||
r->select(0);
|
||||
input_editor->ensure_cursor_is_visible();
|
||||
action_add->set_text(TTR("Add"));
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::_item_checked(const String &p_item, bool p_check) {
|
||||
@ -1336,6 +1352,7 @@ void ProjectSettingsEditor::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("_save"), &ProjectSettingsEditor::_save);
|
||||
ClassDB::bind_method(D_METHOD("_action_add"), &ProjectSettingsEditor::_action_add);
|
||||
ClassDB::bind_method(D_METHOD("_action_adds"), &ProjectSettingsEditor::_action_adds);
|
||||
ClassDB::bind_method(D_METHOD("_action_check"), &ProjectSettingsEditor::_action_check);
|
||||
ClassDB::bind_method(D_METHOD("_action_selected"), &ProjectSettingsEditor::_action_selected);
|
||||
ClassDB::bind_method(D_METHOD("_action_edited"), &ProjectSettingsEditor::_action_edited);
|
||||
ClassDB::bind_method(D_METHOD("_action_activated"), &ProjectSettingsEditor::_action_activated);
|
||||
@ -1482,9 +1499,8 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
|
||||
get_ok()->set_text(TTR("Close"));
|
||||
set_hide_on_ok(true);
|
||||
|
||||
message = memnew(ConfirmationDialog);
|
||||
message = memnew(AcceptDialog);
|
||||
add_child(message);
|
||||
message->set_hide_on_ok(true);
|
||||
|
||||
Control *input_base = memnew(Control);
|
||||
input_base->set_name(TTR("Input Map"));
|
||||
@ -1500,7 +1516,6 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
|
||||
|
||||
l = memnew(Label);
|
||||
vbc->add_child(l);
|
||||
l->set_position(Point2(6, 5) * EDSCALE);
|
||||
l->set_text(TTR("Action:"));
|
||||
|
||||
hbc = memnew(HBoxContainer);
|
||||
@ -1510,12 +1525,15 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
|
||||
action_name->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
hbc->add_child(action_name);
|
||||
action_name->connect("text_entered", this, "_action_adds");
|
||||
action_name->connect("text_changed", this, "_action_check");
|
||||
|
||||
add = memnew(Button);
|
||||
hbc->add_child(add);
|
||||
add->set_custom_minimum_size(Size2(150, 0) * EDSCALE);
|
||||
add->set_text(TTR("Add"));
|
||||
add->set_disabled(true);
|
||||
add->connect("pressed", this, "_action_add");
|
||||
action_add = add;
|
||||
|
||||
input_editor = memnew(Tree);
|
||||
vbc->add_child(input_editor);
|
||||
|
@ -66,7 +66,7 @@ class ProjectSettingsEditor : public AcceptDialog {
|
||||
ToolButton *clear_button;
|
||||
|
||||
HBoxContainer *add_prop_bar;
|
||||
ConfirmationDialog *message;
|
||||
AcceptDialog *message;
|
||||
LineEdit *category;
|
||||
LineEdit *property;
|
||||
OptionButton *type;
|
||||
@ -80,6 +80,7 @@ class ProjectSettingsEditor : public AcceptDialog {
|
||||
MenuButton *popup_copy_to_feature;
|
||||
|
||||
LineEdit *action_name;
|
||||
Button *action_add;
|
||||
Tree *input_editor;
|
||||
bool setting;
|
||||
bool updating_translations;
|
||||
@ -108,6 +109,7 @@ class ProjectSettingsEditor : public AcceptDialog {
|
||||
void _add_item(int p_item, Ref<InputEvent> p_exiting_event = NULL);
|
||||
void _edit_item(Ref<InputEvent> p_exiting_event);
|
||||
|
||||
void _action_check(String p_action);
|
||||
void _action_adds(String);
|
||||
void _action_add();
|
||||
void _device_input_add();
|
||||
|
Loading…
Reference in New Issue
Block a user