grid_container.cpp 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*************************************************************************/
  2. /* grid_container.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 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 "grid_container.h"
  31. void GridContainer::_notification(int p_what) {
  32. switch (p_what) {
  33. case NOTIFICATION_SORT_CHILDREN: {
  34. Map<int, int> col_minw; // Max of min_width of all controls in each col (indexed by col).
  35. Map<int, int> row_minh; // Max of min_height of all controls in each row (indexed by row).
  36. Set<int> col_expanded; // Columns which have the SIZE_EXPAND flag set.
  37. Set<int> row_expanded; // Rows which have the SIZE_EXPAND flag set.
  38. int hsep = get_constant("hseparation");
  39. int vsep = get_constant("vseparation");
  40. int max_col = MIN(get_child_count(), columns);
  41. int max_row = ceil((float)get_child_count() / (float)columns);
  42. // Compute the per-column/per-row data.
  43. int valid_controls_index = 0;
  44. for (int i = 0; i < get_child_count(); i++) {
  45. Control *c = Object::cast_to<Control>(get_child(i));
  46. if (!c || !c->is_visible_in_tree()) {
  47. continue;
  48. }
  49. int row = valid_controls_index / columns;
  50. int col = valid_controls_index % columns;
  51. valid_controls_index++;
  52. Size2i ms = c->get_combined_minimum_size();
  53. if (col_minw.has(col)) {
  54. col_minw[col] = MAX(col_minw[col], ms.width);
  55. } else {
  56. col_minw[col] = ms.width;
  57. }
  58. if (row_minh.has(row)) {
  59. row_minh[row] = MAX(row_minh[row], ms.height);
  60. } else {
  61. row_minh[row] = ms.height;
  62. }
  63. if (c->get_h_size_flags() & SIZE_EXPAND) {
  64. col_expanded.insert(col);
  65. }
  66. if (c->get_v_size_flags() & SIZE_EXPAND) {
  67. row_expanded.insert(row);
  68. }
  69. }
  70. // Consider all empty columns expanded.
  71. for (int i = valid_controls_index; i < columns; i++) {
  72. col_expanded.insert(i);
  73. }
  74. // Evaluate the remaining space for expanded columns/rows.
  75. Size2 remaining_space = get_size();
  76. for (Map<int, int>::Element *E = col_minw.front(); E; E = E->next()) {
  77. if (!col_expanded.has(E->key())) {
  78. remaining_space.width -= E->get();
  79. }
  80. }
  81. for (Map<int, int>::Element *E = row_minh.front(); E; E = E->next()) {
  82. if (!row_expanded.has(E->key())) {
  83. remaining_space.height -= E->get();
  84. }
  85. }
  86. remaining_space.height -= vsep * MAX(max_row - 1, 0);
  87. remaining_space.width -= hsep * MAX(max_col - 1, 0);
  88. bool can_fit = false;
  89. while (!can_fit && col_expanded.size() > 0) {
  90. // Check if all minwidth constraints are OK if we use the remaining space.
  91. can_fit = true;
  92. int max_index = col_expanded.front()->get();
  93. for (Set<int>::Element *E = col_expanded.front(); E; E = E->next()) {
  94. if (col_minw[E->get()] > col_minw[max_index]) {
  95. max_index = E->get();
  96. }
  97. if (can_fit && (remaining_space.width / col_expanded.size()) < col_minw[E->get()]) {
  98. can_fit = false;
  99. }
  100. }
  101. // If not, the column with maximum minwidth is not expanded.
  102. if (!can_fit) {
  103. col_expanded.erase(max_index);
  104. remaining_space.width -= col_minw[max_index];
  105. }
  106. }
  107. can_fit = false;
  108. while (!can_fit && row_expanded.size() > 0) {
  109. // Check if all minheight constraints are OK if we use the remaining space.
  110. can_fit = true;
  111. int max_index = row_expanded.front()->get();
  112. for (Set<int>::Element *E = row_expanded.front(); E; E = E->next()) {
  113. if (row_minh[E->get()] > row_minh[max_index]) {
  114. max_index = E->get();
  115. }
  116. if (can_fit && (remaining_space.height / row_expanded.size()) < row_minh[E->get()]) {
  117. can_fit = false;
  118. }
  119. }
  120. // If not, the row with maximum minheight is not expanded.
  121. if (!can_fit) {
  122. row_expanded.erase(max_index);
  123. remaining_space.height -= row_minh[max_index];
  124. }
  125. }
  126. // Finally, fit the nodes.
  127. int col_expand = col_expanded.size() > 0 ? remaining_space.width / col_expanded.size() : 0;
  128. int row_expand = row_expanded.size() > 0 ? remaining_space.height / row_expanded.size() : 0;
  129. int col_ofs = 0;
  130. int row_ofs = 0;
  131. valid_controls_index = 0;
  132. for (int i = 0; i < get_child_count(); i++) {
  133. Control *c = Object::cast_to<Control>(get_child(i));
  134. if (!c || !c->is_visible_in_tree()) {
  135. continue;
  136. }
  137. int row = valid_controls_index / columns;
  138. int col = valid_controls_index % columns;
  139. valid_controls_index++;
  140. if (col == 0) {
  141. col_ofs = 0;
  142. if (row > 0) {
  143. row_ofs += (row_expanded.has(row - 1) ? row_expand : row_minh[row - 1]) + vsep;
  144. }
  145. }
  146. Point2 p(col_ofs, row_ofs);
  147. Size2 s(col_expanded.has(col) ? col_expand : col_minw[col], row_expanded.has(row) ? row_expand : row_minh[row]);
  148. fit_child_in_rect(c, Rect2(p, s));
  149. col_ofs += s.width + hsep;
  150. }
  151. } break;
  152. case NOTIFICATION_THEME_CHANGED: {
  153. minimum_size_changed();
  154. } break;
  155. }
  156. }
  157. void GridContainer::set_columns(int p_columns) {
  158. ERR_FAIL_COND(p_columns < 1);
  159. columns = p_columns;
  160. queue_sort();
  161. minimum_size_changed();
  162. }
  163. int GridContainer::get_columns() const {
  164. return columns;
  165. }
  166. void GridContainer::_bind_methods() {
  167. ClassDB::bind_method(D_METHOD("set_columns", "columns"), &GridContainer::set_columns);
  168. ClassDB::bind_method(D_METHOD("get_columns"), &GridContainer::get_columns);
  169. ADD_PROPERTY(PropertyInfo(Variant::INT, "columns", PROPERTY_HINT_RANGE, "1,1024,1"), "set_columns", "get_columns");
  170. }
  171. Size2 GridContainer::get_minimum_size() const {
  172. Map<int, int> col_minw;
  173. Map<int, int> row_minh;
  174. int hsep = get_constant("hseparation");
  175. int vsep = get_constant("vseparation");
  176. int max_row = 0;
  177. int max_col = 0;
  178. int valid_controls_index = 0;
  179. for (int i = 0; i < get_child_count(); i++) {
  180. Control *c = Object::cast_to<Control>(get_child(i));
  181. if (!c || !c->is_visible()) {
  182. continue;
  183. }
  184. int row = valid_controls_index / columns;
  185. int col = valid_controls_index % columns;
  186. valid_controls_index++;
  187. Size2i ms = c->get_combined_minimum_size();
  188. if (col_minw.has(col)) {
  189. col_minw[col] = MAX(col_minw[col], ms.width);
  190. } else {
  191. col_minw[col] = ms.width;
  192. }
  193. if (row_minh.has(row)) {
  194. row_minh[row] = MAX(row_minh[row], ms.height);
  195. } else {
  196. row_minh[row] = ms.height;
  197. }
  198. max_col = MAX(col, max_col);
  199. max_row = MAX(row, max_row);
  200. }
  201. Size2 ms;
  202. for (Map<int, int>::Element *E = col_minw.front(); E; E = E->next()) {
  203. ms.width += E->get();
  204. }
  205. for (Map<int, int>::Element *E = row_minh.front(); E; E = E->next()) {
  206. ms.height += E->get();
  207. }
  208. ms.height += vsep * max_row;
  209. ms.width += hsep * max_col;
  210. return ms;
  211. }
  212. GridContainer::GridContainer() {
  213. set_mouse_filter(MOUSE_FILTER_PASS);
  214. columns = 1;
  215. }