add_metadata_dialog.cpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. AddMetadataDialog::AddMetadataDialog() {
  32. VBoxContainer *vbc = memnew(VBoxContainer);
  33. add_child(vbc);
  34. HBoxContainer *hbc = memnew(HBoxContainer);
  35. vbc->add_child(hbc);
  36. hbc->add_child(memnew(Label(TTR("Name:"))));
  37. add_meta_name = memnew(LineEdit);
  38. add_meta_name->set_custom_minimum_size(Size2(200 * EDSCALE, 1));
  39. hbc->add_child(add_meta_name);
  40. hbc->add_child(memnew(Label(TTR("Type:"))));
  41. add_meta_type = memnew(OptionButton);
  42. hbc->add_child(add_meta_type);
  43. Control *spacing = memnew(Control);
  44. vbc->add_child(spacing);
  45. spacing->set_custom_minimum_size(Size2(0, 10 * EDSCALE));
  46. set_ok_button_text(TTR("Add"));
  47. register_text_enter(add_meta_name);
  48. validation_panel = memnew(EditorValidationPanel);
  49. vbc->add_child(validation_panel);
  50. validation_panel->add_line(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name is valid."));
  51. validation_panel->set_update_callback(callable_mp(this, &AddMetadataDialog::_check_meta_name));
  52. validation_panel->set_accept_button(get_ok_button());
  53. add_meta_name->connect(SceneStringName(text_changed), callable_mp(validation_panel, &EditorValidationPanel::update).unbind(1));
  54. }
  55. void AddMetadataDialog::_complete_init(const StringName &p_title) {
  56. add_meta_name->set_text("");
  57. validation_panel->update();
  58. set_title(vformat(TTR("Add Metadata Property for \"%s\""), p_title));
  59. // Skip if we already completed the initialization.
  60. if (add_meta_type->get_item_count()) {
  61. return;
  62. }
  63. // Theme icons can be retrieved only the Window has been initialized.
  64. for (int i = 0; i < Variant::VARIANT_MAX; i++) {
  65. if (i == Variant::NIL || i == Variant::RID || i == Variant::CALLABLE || i == Variant::SIGNAL) {
  66. continue; //not editable by inspector.
  67. }
  68. String type = i == Variant::OBJECT ? String("Resource") : Variant::get_type_name(Variant::Type(i));
  69. add_meta_type->add_icon_item(get_editor_theme_icon(type), type, i);
  70. }
  71. }
  72. void AddMetadataDialog::open(const StringName p_title, List<StringName> &p_existing_metas) {
  73. this->_existing_metas = p_existing_metas;
  74. _complete_init(p_title);
  75. popup_centered();
  76. add_meta_name->grab_focus();
  77. }
  78. StringName AddMetadataDialog::get_meta_name() {
  79. return add_meta_name->get_text();
  80. }
  81. Variant AddMetadataDialog::get_meta_defval() {
  82. Variant defval;
  83. Callable::CallError ce;
  84. Variant::construct(Variant::Type(add_meta_type->get_selected_id()), defval, nullptr, 0, ce);
  85. return defval;
  86. }
  87. void AddMetadataDialog::_check_meta_name() {
  88. const String meta_name = add_meta_name->get_text();
  89. if (meta_name.is_empty()) {
  90. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name can't be empty."), EditorValidationPanel::MSG_ERROR);
  91. } else if (!meta_name.is_valid_ascii_identifier()) {
  92. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Metadata name must be a valid identifier."), EditorValidationPanel::MSG_ERROR);
  93. } else if (_existing_metas.find(meta_name)) {
  94. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, vformat(TTR("Metadata with name \"%s\" already exists."), meta_name), EditorValidationPanel::MSG_ERROR);
  95. } else if (meta_name[0] == '_') {
  96. validation_panel->set_message(EditorValidationPanel::MSG_ID_DEFAULT, TTR("Names starting with _ are reserved for editor-only metadata."), EditorValidationPanel::MSG_ERROR);
  97. }
  98. }