add_metadata_dialog.cpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /**************************************************************************/
  2. /* add_metadata_dialog.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "add_metadata_dialog.h"
  31. #include "editor/themes/editor_scale.h"
  32. AddMetadataDialog::AddMetadataDialog() {
  33. VBoxContainer *vbc = memnew(VBoxContainer);
  34. add_child(vbc);
  35. HBoxContainer *hbc = memnew(HBoxContainer);
  36. vbc->add_child(hbc);
  37. hbc->add_child(memnew(Label(TTR("Name:"))));
  38. add_meta_name = memnew(LineEdit);
  39. add_meta_name->set_accessibility_name(TTRC("Name:"));
  40. add_meta_name->set_custom_minimum_size(Size2(200 * EDSCALE, 1));
  41. hbc->add_child(add_meta_name);
  42. hbc->add_child(memnew(Label(TTR("Type:"))));
  43. add_meta_type = memnew(OptionButton);
  44. add_meta_type->set_accessibility_name(TTRC("Type:"));
  45. hbc->add_child(add_meta_type);
  46. Control *spacing = memnew(Control);
  47. vbc->add_child(spacing);
  48. spacing->set_custom_minimum_size(Size2(0, 10 * EDSCALE));
  49. set_ok_button_text(TTR("Add"));
  50. register_text_enter(add_meta_name);
  51. validation_panel = memnew(EditorValidationPanel);
  52. vbc->add_child(validation_panel);
  53. validation_panel->add_line(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name is valid."));
  54. validation_panel->set_update_callback(callable_mp(this, &AddMetadataDialog::_check_meta_name));
  55. validation_panel->set_accept_button(get_ok_button());
  56. add_meta_name->connect(SceneStringName(text_changed), callable_mp(validation_panel, &EditorValidationPanel::update).unbind(1));
  57. }
  58. void AddMetadataDialog::_complete_init(const StringName &p_title) {
  59. add_meta_name->set_text("");
  60. validation_panel->update();
  61. set_title(vformat(TTR("Add Metadata Property for \"%s\""), p_title));
  62. // Skip if we already completed the initialization.
  63. if (add_meta_type->get_item_count()) {
  64. return;
  65. }
  66. // Theme icons can be retrieved only the Window has been initialized.
  67. for (int i = 0; i < Variant::VARIANT_MAX; i++) {
  68. if (i == Variant::NIL || i == Variant::RID || i == Variant::CALLABLE || i == Variant::SIGNAL) {
  69. continue; //not editable by inspector.
  70. }
  71. String type = i == Variant::OBJECT ? String("Resource") : Variant::get_type_name(Variant::Type(i));
  72. add_meta_type->add_icon_item(get_editor_theme_icon(type), type, i);
  73. }
  74. }
  75. void AddMetadataDialog::open(const StringName p_title, List<StringName> &p_existing_metas) {
  76. this->_existing_metas = p_existing_metas;
  77. _complete_init(p_title);
  78. popup_centered();
  79. add_meta_name->grab_focus();
  80. }
  81. StringName AddMetadataDialog::get_meta_name() {
  82. return add_meta_name->get_text();
  83. }
  84. Variant AddMetadataDialog::get_meta_defval() {
  85. Variant defval;
  86. Callable::CallError ce;
  87. Variant::construct(Variant::Type(add_meta_type->get_selected_id()), defval, nullptr, 0, ce);
  88. return defval;
  89. }
  90. void AddMetadataDialog::_check_meta_name() {
  91. const String meta_name = add_meta_name->get_text();
  92. if (meta_name.is_empty()) {
  93. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name can't be empty."), EditorValidationPanel::MSG_ERROR);
  94. } else if (!meta_name.is_valid_ascii_identifier()) {
  95. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name must be a valid identifier."), EditorValidationPanel::MSG_ERROR);
  96. } else if (_existing_metas.find(meta_name)) {
  97. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, vformat(TTR("Metadata with name \"%s\" already exists."), meta_name), EditorValidationPanel::MSG_ERROR);
  98. } else if (meta_name[0] == '_') {
  99. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Names starting with _ are reserved for editor-only metadata."), EditorValidationPanel::MSG_ERROR);
  100. }
  101. }