node_dock.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*************************************************************************/
  2. /* node_dock.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
  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 "node_dock.h"
  31. #include "editor_node.h"
  32. void NodeDock::show_groups() {
  33. groups_button->set_pressed(true);
  34. connections_button->set_pressed(false);
  35. groups->show();
  36. connections->hide();
  37. }
  38. void NodeDock::show_connections() {
  39. groups_button->set_pressed(false);
  40. connections_button->set_pressed(true);
  41. groups->hide();
  42. connections->show();
  43. }
  44. void NodeDock::_bind_methods() {
  45. ClassDB::bind_method(D_METHOD("show_groups"), &NodeDock::show_groups);
  46. ClassDB::bind_method(D_METHOD("show_connections"), &NodeDock::show_connections);
  47. }
  48. void NodeDock::_notification(int p_what) {
  49. if (p_what == NOTIFICATION_ENTER_TREE) {
  50. connections_button->set_icon(get_icon("Signals", "EditorIcons"));
  51. groups_button->set_icon(get_icon("Groups", "EditorIcons"));
  52. } else if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
  53. connections_button->set_icon(get_icon("Signals", "EditorIcons"));
  54. groups_button->set_icon(get_icon("Groups", "EditorIcons"));
  55. }
  56. }
  57. NodeDock *NodeDock::singleton = NULL;
  58. void NodeDock::update_lists() {
  59. connections->update_tree();
  60. }
  61. void NodeDock::set_node(Node *p_node) {
  62. connections->set_node(p_node);
  63. groups->set_current(p_node);
  64. if (p_node) {
  65. if (connections_button->is_pressed())
  66. connections->show();
  67. else
  68. groups->show();
  69. mode_hb->show();
  70. select_a_node->hide();
  71. } else {
  72. connections->hide();
  73. groups->hide();
  74. mode_hb->hide();
  75. select_a_node->show();
  76. }
  77. }
  78. NodeDock::NodeDock() {
  79. singleton = this;
  80. set_name(TTR("Node"));
  81. mode_hb = memnew(HBoxContainer);
  82. add_child(mode_hb);
  83. mode_hb->hide();
  84. connections_button = memnew(ToolButton);
  85. connections_button->set_text(TTR("Signals"));
  86. connections_button->set_toggle_mode(true);
  87. connections_button->set_pressed(true);
  88. connections_button->set_h_size_flags(SIZE_EXPAND_FILL);
  89. mode_hb->add_child(connections_button);
  90. connections_button->connect("pressed", this, "show_connections");
  91. groups_button = memnew(ToolButton);
  92. groups_button->set_text(TTR("Groups"));
  93. groups_button->set_toggle_mode(true);
  94. groups_button->set_pressed(false);
  95. groups_button->set_h_size_flags(SIZE_EXPAND_FILL);
  96. mode_hb->add_child(groups_button);
  97. groups_button->connect("pressed", this, "show_groups");
  98. connections = memnew(ConnectionsDock(EditorNode::get_singleton()));
  99. connections->set_undoredo(EditorNode::get_singleton()->get_undo_redo());
  100. add_child(connections);
  101. connections->set_v_size_flags(SIZE_EXPAND_FILL);
  102. connections->hide();
  103. groups = memnew(GroupsEditor);
  104. groups->set_undo_redo(EditorNode::get_singleton()->get_undo_redo());
  105. add_child(groups);
  106. groups->set_v_size_flags(SIZE_EXPAND_FILL);
  107. groups->hide();
  108. select_a_node = memnew(Label);
  109. select_a_node->set_text(TTR("Select a Node to edit Signals and Groups."));
  110. select_a_node->set_v_size_flags(SIZE_EXPAND_FILL);
  111. select_a_node->set_valign(Label::VALIGN_CENTER);
  112. select_a_node->set_align(Label::ALIGN_CENTER);
  113. select_a_node->set_autowrap(true);
  114. add_child(select_a_node);
  115. }