container.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*************************************************************************/
  2. /* container.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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 "container.h"
  31. #include "core/message_queue.h"
  32. #include "scene/scene_string_names.h"
  33. void Container::_child_minsize_changed() {
  34. //Size2 ms = get_combined_minimum_size();
  35. //if (ms.width > get_size().width || ms.height > get_size().height) {
  36. minimum_size_changed();
  37. queue_sort();
  38. }
  39. void Container::add_child_notify(Node *p_child) {
  40. Control::add_child_notify(p_child);
  41. Control *control = Object::cast_to<Control>(p_child);
  42. if (!control)
  43. return;
  44. control->connect("size_flags_changed", this, "queue_sort");
  45. control->connect("minimum_size_changed", this, "_child_minsize_changed");
  46. control->connect("visibility_changed", this, "_child_minsize_changed");
  47. minimum_size_changed();
  48. queue_sort();
  49. }
  50. void Container::move_child_notify(Node *p_child) {
  51. Control::move_child_notify(p_child);
  52. if (!Object::cast_to<Control>(p_child))
  53. return;
  54. minimum_size_changed();
  55. queue_sort();
  56. }
  57. void Container::remove_child_notify(Node *p_child) {
  58. Control::remove_child_notify(p_child);
  59. Control *control = Object::cast_to<Control>(p_child);
  60. if (!control)
  61. return;
  62. control->disconnect("size_flags_changed", this, "queue_sort");
  63. control->disconnect("minimum_size_changed", this, "_child_minsize_changed");
  64. control->disconnect("visibility_changed", this, "_child_minsize_changed");
  65. minimum_size_changed();
  66. queue_sort();
  67. }
  68. void Container::_sort_children() {
  69. if (!is_inside_tree())
  70. return;
  71. notification(NOTIFICATION_SORT_CHILDREN);
  72. emit_signal(SceneStringNames::get_singleton()->sort_children);
  73. pending_sort = false;
  74. }
  75. void Container::fit_child_in_rect(Control *p_child, const Rect2 &p_rect) {
  76. ERR_FAIL_COND(!p_child);
  77. ERR_FAIL_COND(p_child->get_parent() != this);
  78. Size2 minsize = p_child->get_combined_minimum_size();
  79. Rect2 r = p_rect;
  80. if (!(p_child->get_h_size_flags() & SIZE_FILL)) {
  81. r.size.x = minsize.width;
  82. if (p_child->get_h_size_flags() & SIZE_SHRINK_END) {
  83. r.position.x += p_rect.size.width - minsize.width;
  84. } else if (p_child->get_h_size_flags() & SIZE_SHRINK_CENTER) {
  85. r.position.x += Math::floor((p_rect.size.x - minsize.width) / 2);
  86. } else {
  87. r.position.x += 0;
  88. }
  89. }
  90. if (!(p_child->get_v_size_flags() & SIZE_FILL)) {
  91. r.size.y = minsize.y;
  92. if (p_child->get_v_size_flags() & SIZE_SHRINK_END) {
  93. r.position.y += p_rect.size.height - minsize.height;
  94. } else if (p_child->get_v_size_flags() & SIZE_SHRINK_CENTER) {
  95. r.position.y += Math::floor((p_rect.size.y - minsize.height) / 2);
  96. } else {
  97. r.position.y += 0;
  98. }
  99. }
  100. for (int i = 0; i < 4; i++)
  101. p_child->set_anchor(Margin(i), ANCHOR_BEGIN);
  102. p_child->set_position(r.position);
  103. p_child->set_size(r.size);
  104. p_child->set_rotation(0);
  105. p_child->set_scale(Vector2(1, 1));
  106. }
  107. void Container::queue_sort() {
  108. if (!is_inside_tree())
  109. return;
  110. if (pending_sort)
  111. return;
  112. MessageQueue::get_singleton()->push_call(this, "_sort_children");
  113. pending_sort = true;
  114. }
  115. void Container::_notification(int p_what) {
  116. switch (p_what) {
  117. case NOTIFICATION_ENTER_TREE: {
  118. pending_sort = false;
  119. queue_sort();
  120. } break;
  121. case NOTIFICATION_RESIZED: {
  122. queue_sort();
  123. } break;
  124. case NOTIFICATION_THEME_CHANGED: {
  125. queue_sort();
  126. } break;
  127. case NOTIFICATION_VISIBILITY_CHANGED: {
  128. if (is_visible_in_tree()) {
  129. queue_sort();
  130. }
  131. } break;
  132. }
  133. }
  134. String Container::get_configuration_warning() const {
  135. String warning = Control::get_configuration_warning();
  136. if (get_class() == "Container" && get_script().is_null()) {
  137. if (warning != String()) {
  138. warning += "\n\n";
  139. }
  140. warning += TTR("Container by itself serves no purpose unless a script configures its children placement behavior.\nIf you don't intend to add a script, use a plain Control node instead.");
  141. }
  142. return warning;
  143. }
  144. void Container::_bind_methods() {
  145. ClassDB::bind_method(D_METHOD("_sort_children"), &Container::_sort_children);
  146. ClassDB::bind_method(D_METHOD("_child_minsize_changed"), &Container::_child_minsize_changed);
  147. ClassDB::bind_method(D_METHOD("queue_sort"), &Container::queue_sort);
  148. ClassDB::bind_method(D_METHOD("fit_child_in_rect", "child", "rect"), &Container::fit_child_in_rect);
  149. BIND_CONSTANT(NOTIFICATION_SORT_CHILDREN);
  150. ADD_SIGNAL(MethodInfo("sort_children"));
  151. }
  152. Container::Container() {
  153. pending_sort = false;
  154. }