popup.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. /*************************************************************************/
  2. /* popup.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 "popup.h"
  31. #include "core/engine.h"
  32. #include "core/os/keyboard.h"
  33. void Popup::_gui_input(Ref<InputEvent> p_event) {
  34. }
  35. void Popup::_notification(int p_what) {
  36. if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
  37. if (popped_up && !is_visible_in_tree()) {
  38. popped_up = false;
  39. notification(NOTIFICATION_POPUP_HIDE);
  40. emit_signal("popup_hide");
  41. }
  42. update_configuration_warning();
  43. }
  44. if (p_what == NOTIFICATION_EXIT_TREE) {
  45. if (popped_up) {
  46. popped_up = false;
  47. notification(NOTIFICATION_POPUP_HIDE);
  48. emit_signal("popup_hide");
  49. }
  50. }
  51. if (p_what == NOTIFICATION_ENTER_TREE) {
  52. //small helper to make editing of these easier in editor
  53. #ifdef TOOLS_ENABLED
  54. if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && get_tree()->get_edited_scene_root()->is_a_parent_of(this)) {
  55. //edited on editor
  56. set_as_toplevel(false);
  57. } else
  58. #endif
  59. if (is_visible()) {
  60. hide();
  61. }
  62. }
  63. }
  64. void Popup::_fix_size() {
  65. Point2 pos = get_global_position();
  66. Size2 size = get_size() * get_scale();
  67. Point2 window_size = get_viewport_rect().size - get_viewport_transform().get_origin();
  68. if (pos.x + size.width > window_size.width) {
  69. pos.x = window_size.width - size.width;
  70. }
  71. if (pos.x < 0) {
  72. pos.x = 0;
  73. }
  74. if (pos.y + size.height > window_size.height) {
  75. pos.y = window_size.height - size.height;
  76. }
  77. if (pos.y < 0) {
  78. pos.y = 0;
  79. }
  80. if (pos != get_position()) {
  81. set_global_position(pos);
  82. }
  83. }
  84. void Popup::set_as_minsize() {
  85. Size2 total_minsize;
  86. for (int i = 0; i < get_child_count(); i++) {
  87. Control *c = Object::cast_to<Control>(get_child(i));
  88. if (!c) {
  89. continue;
  90. }
  91. if (!c->is_visible()) {
  92. continue;
  93. }
  94. Size2 minsize = c->get_combined_minimum_size();
  95. for (int j = 0; j < 2; j++) {
  96. Margin m_beg = Margin(0 + j);
  97. Margin m_end = Margin(2 + j);
  98. float margin_begin = c->get_margin(m_beg);
  99. float margin_end = c->get_margin(m_end);
  100. float anchor_begin = c->get_anchor(m_beg);
  101. float anchor_end = c->get_anchor(m_end);
  102. minsize[j] += margin_begin * (ANCHOR_END - anchor_begin) + margin_end * anchor_end;
  103. }
  104. total_minsize.width = MAX(total_minsize.width, minsize.width);
  105. total_minsize.height = MAX(total_minsize.height, minsize.height);
  106. }
  107. set_size(total_minsize);
  108. }
  109. void Popup::popup_centered_clamped(const Size2 &p_size, float p_fallback_ratio) {
  110. Size2 popup_size = p_size;
  111. Size2 window_size = get_viewport_rect().size;
  112. // clamp popup size in each dimension if window size is too small (using fallback ratio)
  113. popup_size.x = MIN(window_size.x * p_fallback_ratio, popup_size.x);
  114. popup_size.y = MIN(window_size.y * p_fallback_ratio, popup_size.y);
  115. popup_centered(popup_size);
  116. }
  117. void Popup::popup_centered_minsize(const Size2 &p_minsize) {
  118. set_custom_minimum_size(p_minsize);
  119. _fix_size();
  120. popup_centered();
  121. }
  122. void Popup::popup_centered(const Size2 &p_size) {
  123. Rect2 rect;
  124. Size2 window_size = get_viewport_rect().size;
  125. rect.size = p_size == Size2() ? get_size() : p_size;
  126. rect.position = ((window_size - rect.size * get_scale()) / 2.0).floor();
  127. _popup(rect, true);
  128. }
  129. void Popup::popup_centered_ratio(float p_screen_ratio) {
  130. Rect2 rect;
  131. Size2 window_size = get_viewport_rect().size;
  132. rect.size = (window_size * p_screen_ratio).floor();
  133. rect.position = ((window_size - rect.size * get_scale()) / 2.0).floor();
  134. _popup(rect, true);
  135. }
  136. void Popup::popup(const Rect2 &p_bounds) {
  137. _popup(p_bounds);
  138. }
  139. void Popup::_popup(const Rect2 &p_bounds, const bool p_centered) {
  140. emit_signal("about_to_show");
  141. show_modal(exclusive);
  142. // Fit the popup into the optionally provided bounds.
  143. if (!p_bounds.has_no_area()) {
  144. set_size(p_bounds.size);
  145. // check if p_bounds.size was using an outdated cached values
  146. if (p_centered && p_bounds.size != get_size()) {
  147. set_position(p_bounds.position - ((get_size() - p_bounds.size) / 2.0).floor());
  148. } else {
  149. set_position(p_bounds.position);
  150. }
  151. }
  152. _fix_size();
  153. Control *focusable = find_next_valid_focus();
  154. if (focusable) {
  155. focusable->grab_focus();
  156. }
  157. _post_popup();
  158. notification(NOTIFICATION_POST_POPUP);
  159. popped_up = true;
  160. }
  161. void Popup::set_exclusive(bool p_exclusive) {
  162. exclusive = p_exclusive;
  163. }
  164. bool Popup::is_exclusive() const {
  165. return exclusive;
  166. }
  167. void Popup::_bind_methods() {
  168. ClassDB::bind_method(D_METHOD("set_as_minsize"), &Popup::set_as_minsize);
  169. ClassDB::bind_method(D_METHOD("popup_centered", "size"), &Popup::popup_centered, DEFVAL(Size2()));
  170. ClassDB::bind_method(D_METHOD("popup_centered_ratio", "ratio"), &Popup::popup_centered_ratio, DEFVAL(0.75));
  171. ClassDB::bind_method(D_METHOD("popup_centered_minsize", "minsize"), &Popup::popup_centered_minsize, DEFVAL(Size2()));
  172. ClassDB::bind_method(D_METHOD("popup_centered_clamped", "size", "fallback_ratio"), &Popup::popup_centered_clamped, DEFVAL(Size2()), DEFVAL(0.75));
  173. ClassDB::bind_method(D_METHOD("popup", "bounds"), &Popup::popup, DEFVAL(Rect2()));
  174. ClassDB::bind_method(D_METHOD("set_exclusive", "enable"), &Popup::set_exclusive);
  175. ClassDB::bind_method(D_METHOD("is_exclusive"), &Popup::is_exclusive);
  176. ADD_SIGNAL(MethodInfo("about_to_show"));
  177. ADD_SIGNAL(MethodInfo("popup_hide"));
  178. ADD_GROUP("Popup", "popup_");
  179. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "popup_exclusive"), "set_exclusive", "is_exclusive");
  180. BIND_CONSTANT(NOTIFICATION_POST_POPUP);
  181. BIND_CONSTANT(NOTIFICATION_POPUP_HIDE);
  182. }
  183. Popup::Popup() {
  184. set_as_toplevel(true);
  185. exclusive = false;
  186. popped_up = false;
  187. hide();
  188. }
  189. String Popup::get_configuration_warning() const {
  190. String warning = Control::get_configuration_warning();
  191. if (is_visible_in_tree()) {
  192. if (warning != String()) {
  193. warning += "\n\n";
  194. }
  195. warning += TTR("Popups will hide by default unless you call popup() or any of the popup*() functions. Making them visible for editing is fine, but they will hide upon running.");
  196. }
  197. return warning;
  198. }
  199. Popup::~Popup() {
  200. }
  201. Size2 PopupPanel::get_minimum_size() const {
  202. Ref<StyleBox> p = get_stylebox("panel");
  203. Size2 ms;
  204. for (int i = 0; i < get_child_count(); i++) {
  205. Control *c = Object::cast_to<Control>(get_child(i));
  206. if (!c) {
  207. continue;
  208. }
  209. if (c->is_set_as_toplevel()) {
  210. continue;
  211. }
  212. Size2 cms = c->get_combined_minimum_size();
  213. ms.x = MAX(cms.x, ms.x);
  214. ms.y = MAX(cms.y, ms.y);
  215. }
  216. return ms + p->get_minimum_size();
  217. }
  218. void PopupPanel::_update_child_rects() {
  219. Ref<StyleBox> p = get_stylebox("panel");
  220. Vector2 cpos(p->get_offset());
  221. Vector2 csize(get_size() - p->get_minimum_size());
  222. for (int i = 0; i < get_child_count(); i++) {
  223. Control *c = Object::cast_to<Control>(get_child(i));
  224. if (!c) {
  225. continue;
  226. }
  227. if (c->is_set_as_toplevel()) {
  228. continue;
  229. }
  230. c->set_position(cpos);
  231. c->set_size(csize);
  232. }
  233. }
  234. void PopupPanel::_notification(int p_what) {
  235. if (p_what == NOTIFICATION_DRAW) {
  236. get_stylebox("panel")->draw(get_canvas_item(), Rect2(Point2(), get_size()));
  237. } else if (p_what == NOTIFICATION_READY) {
  238. _update_child_rects();
  239. } else if (p_what == NOTIFICATION_RESIZED) {
  240. _update_child_rects();
  241. }
  242. }
  243. PopupPanel::PopupPanel() {
  244. }