2
0

dialogs.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /**************************************************************************/
  2. /* dialogs.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 "dialogs.h"
  31. #include "core/os/keyboard.h"
  32. #include "core/string/print_string.h"
  33. #include "core/string/translation.h"
  34. #include "scene/gui/line_edit.h"
  35. // AcceptDialog
  36. void AcceptDialog::_input_from_window(const Ref<InputEvent> &p_event) {
  37. if (close_on_escape && p_event->is_action_pressed(SNAME("ui_cancel"), false, true)) {
  38. _cancel_pressed();
  39. }
  40. }
  41. void AcceptDialog::_parent_focused() {
  42. if (!is_exclusive() && get_flag(FLAG_POPUP)) {
  43. _cancel_pressed();
  44. }
  45. }
  46. void AcceptDialog::_update_theme_item_cache() {
  47. Window::_update_theme_item_cache();
  48. theme_cache.panel_style = get_theme_stylebox(SNAME("panel"));
  49. theme_cache.buttons_separation = get_theme_constant(SNAME("buttons_separation"));
  50. }
  51. void AcceptDialog::_notification(int p_what) {
  52. switch (p_what) {
  53. case NOTIFICATION_POST_ENTER_TREE: {
  54. if (is_visible()) {
  55. get_ok_button()->grab_focus();
  56. }
  57. } break;
  58. case NOTIFICATION_VISIBILITY_CHANGED: {
  59. if (is_visible()) {
  60. if (get_ok_button()->is_inside_tree()) {
  61. get_ok_button()->grab_focus();
  62. }
  63. _update_child_rects();
  64. parent_visible = get_parent_visible_window();
  65. if (parent_visible) {
  66. parent_visible->connect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  67. }
  68. } else {
  69. if (parent_visible) {
  70. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  71. parent_visible = nullptr;
  72. }
  73. }
  74. } break;
  75. case NOTIFICATION_THEME_CHANGED: {
  76. bg_panel->add_theme_style_override("panel", theme_cache.panel_style);
  77. child_controls_changed();
  78. if (is_visible()) {
  79. _update_child_rects();
  80. }
  81. } break;
  82. case NOTIFICATION_EXIT_TREE: {
  83. if (parent_visible) {
  84. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  85. parent_visible = nullptr;
  86. }
  87. } break;
  88. case NOTIFICATION_READY:
  89. case NOTIFICATION_WM_SIZE_CHANGED: {
  90. if (is_visible()) {
  91. _update_child_rects();
  92. }
  93. } break;
  94. case NOTIFICATION_WM_CLOSE_REQUEST: {
  95. _cancel_pressed();
  96. } break;
  97. }
  98. }
  99. void AcceptDialog::_text_submitted(const String &p_text) {
  100. if (get_ok_button() && get_ok_button()->is_disabled()) {
  101. return; // Do not allow submission if OK button is disabled.
  102. }
  103. _ok_pressed();
  104. }
  105. void AcceptDialog::_ok_pressed() {
  106. if (hide_on_ok) {
  107. set_visible(false);
  108. }
  109. ok_pressed();
  110. emit_signal(SNAME("confirmed"));
  111. set_input_as_handled();
  112. }
  113. void AcceptDialog::_cancel_pressed() {
  114. Window *parent_window = parent_visible;
  115. if (parent_visible) {
  116. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  117. parent_visible = nullptr;
  118. }
  119. call_deferred(SNAME("hide"));
  120. emit_signal(SNAME("canceled"));
  121. cancel_pressed();
  122. if (parent_window) {
  123. //parent_window->grab_focus();
  124. }
  125. set_input_as_handled();
  126. }
  127. String AcceptDialog::get_text() const {
  128. return message_label->get_text();
  129. }
  130. void AcceptDialog::set_text(String p_text) {
  131. if (message_label->get_text() == p_text) {
  132. return;
  133. }
  134. message_label->set_text(p_text);
  135. child_controls_changed();
  136. if (is_visible()) {
  137. _update_child_rects();
  138. }
  139. }
  140. void AcceptDialog::set_hide_on_ok(bool p_hide) {
  141. hide_on_ok = p_hide;
  142. }
  143. bool AcceptDialog::get_hide_on_ok() const {
  144. return hide_on_ok;
  145. }
  146. void AcceptDialog::set_close_on_escape(bool p_hide) {
  147. close_on_escape = p_hide;
  148. }
  149. bool AcceptDialog::get_close_on_escape() const {
  150. return close_on_escape;
  151. }
  152. void AcceptDialog::set_autowrap(bool p_autowrap) {
  153. message_label->set_autowrap_mode(p_autowrap ? TextServer::AUTOWRAP_WORD : TextServer::AUTOWRAP_OFF);
  154. }
  155. bool AcceptDialog::has_autowrap() {
  156. return message_label->get_autowrap_mode() != TextServer::AUTOWRAP_OFF;
  157. }
  158. void AcceptDialog::set_ok_button_text(String p_ok_button_text) {
  159. ok_button->set_text(p_ok_button_text);
  160. child_controls_changed();
  161. if (is_visible()) {
  162. _update_child_rects();
  163. }
  164. }
  165. String AcceptDialog::get_ok_button_text() const {
  166. return ok_button->get_text();
  167. }
  168. void AcceptDialog::register_text_enter(Control *p_line_edit) {
  169. ERR_FAIL_NULL(p_line_edit);
  170. LineEdit *line_edit = Object::cast_to<LineEdit>(p_line_edit);
  171. if (line_edit) {
  172. line_edit->connect("text_submitted", callable_mp(this, &AcceptDialog::_text_submitted));
  173. }
  174. }
  175. void AcceptDialog::_update_child_rects() {
  176. Size2 dlg_size = get_size();
  177. float h_margins = theme_cache.panel_style->get_margin(SIDE_LEFT) + theme_cache.panel_style->get_margin(SIDE_RIGHT);
  178. float v_margins = theme_cache.panel_style->get_margin(SIDE_TOP) + theme_cache.panel_style->get_margin(SIDE_BOTTOM);
  179. // Fill the entire size of the window with the background.
  180. bg_panel->set_position(Point2());
  181. bg_panel->set_size(dlg_size);
  182. // Place the buttons from the bottom edge to their minimum required size.
  183. Size2 buttons_minsize = buttons_hbox->get_combined_minimum_size();
  184. Size2 buttons_size = Size2(dlg_size.x - h_margins, buttons_minsize.y);
  185. Point2 buttons_position = Point2(theme_cache.panel_style->get_margin(SIDE_LEFT), dlg_size.y - theme_cache.panel_style->get_margin(SIDE_BOTTOM) - buttons_size.y);
  186. buttons_hbox->set_position(buttons_position);
  187. buttons_hbox->set_size(buttons_size);
  188. // Place the content from the top to fill the rest of the space (minus the separation).
  189. Point2 content_position = Point2(theme_cache.panel_style->get_margin(SIDE_LEFT), theme_cache.panel_style->get_margin(SIDE_TOP));
  190. Size2 content_size = Size2(dlg_size.x - h_margins, dlg_size.y - v_margins - buttons_size.y - theme_cache.buttons_separation);
  191. for (int i = 0; i < get_child_count(); i++) {
  192. Control *c = Object::cast_to<Control>(get_child(i));
  193. if (!c) {
  194. continue;
  195. }
  196. if (c == buttons_hbox || c == bg_panel || c->is_set_as_top_level()) {
  197. continue;
  198. }
  199. c->set_position(content_position);
  200. c->set_size(content_size);
  201. }
  202. }
  203. Size2 AcceptDialog::_get_contents_minimum_size() const {
  204. // First, we then iterate over the label and any other custom controls
  205. // to try and find the size that encompasses all content.
  206. Size2 content_minsize;
  207. for (int i = 0; i < get_child_count(); i++) {
  208. Control *c = Object::cast_to<Control>(get_child(i));
  209. if (!c) {
  210. continue;
  211. }
  212. // Buttons will be included afterwards.
  213. // The panel only displays the stylebox and doesn't contribute to the size.
  214. if (c == buttons_hbox || c == bg_panel || c->is_set_as_top_level()) {
  215. continue;
  216. }
  217. Size2 child_minsize = c->get_combined_minimum_size();
  218. content_minsize.x = MAX(child_minsize.x, content_minsize.x);
  219. content_minsize.y = MAX(child_minsize.y, content_minsize.y);
  220. }
  221. // Then we take the background panel as it provides the offsets,
  222. // which are always added to the minimum size.
  223. if (theme_cache.panel_style.is_valid()) {
  224. content_minsize += theme_cache.panel_style->get_minimum_size();
  225. }
  226. // Then we add buttons. Horizontally we're interested in whichever
  227. // value is the biggest. Vertically buttons add to the overall size.
  228. Size2 buttons_minsize = buttons_hbox->get_combined_minimum_size();
  229. content_minsize.x = MAX(buttons_minsize.x, content_minsize.x);
  230. content_minsize.y += buttons_minsize.y;
  231. // Plus there is a separation size added on top.
  232. content_minsize.y += theme_cache.buttons_separation;
  233. return content_minsize;
  234. }
  235. void AcceptDialog::_custom_action(const String &p_action) {
  236. emit_signal(SNAME("custom_action"), p_action);
  237. custom_action(p_action);
  238. }
  239. void AcceptDialog::_custom_button_visibility_changed(Button *button) {
  240. Control *right_spacer = Object::cast_to<Control>(button->get_meta("__right_spacer"));
  241. if (right_spacer) {
  242. right_spacer->set_visible(button->is_visible());
  243. }
  244. }
  245. Button *AcceptDialog::add_button(const String &p_text, bool p_right, const String &p_action) {
  246. Button *button = memnew(Button);
  247. button->set_text(p_text);
  248. Control *right_spacer;
  249. if (p_right) {
  250. buttons_hbox->add_child(button);
  251. right_spacer = buttons_hbox->add_spacer();
  252. } else {
  253. buttons_hbox->add_child(button);
  254. buttons_hbox->move_child(button, 0);
  255. right_spacer = buttons_hbox->add_spacer(true);
  256. }
  257. button->set_meta("__right_spacer", right_spacer);
  258. button->connect("visibility_changed", callable_mp(this, &AcceptDialog::_custom_button_visibility_changed).bind(button));
  259. child_controls_changed();
  260. if (is_visible()) {
  261. _update_child_rects();
  262. }
  263. if (!p_action.is_empty()) {
  264. button->connect("pressed", callable_mp(this, &AcceptDialog::_custom_action).bind(p_action));
  265. }
  266. return button;
  267. }
  268. Button *AcceptDialog::add_cancel_button(const String &p_cancel) {
  269. String c = p_cancel;
  270. if (p_cancel.is_empty()) {
  271. c = "Cancel";
  272. }
  273. Button *b = swap_cancel_ok ? add_button(c, true) : add_button(c);
  274. b->connect("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed));
  275. return b;
  276. }
  277. void AcceptDialog::remove_button(Control *p_button) {
  278. Button *button = Object::cast_to<Button>(p_button);
  279. ERR_FAIL_NULL(button);
  280. ERR_FAIL_COND_MSG(button->get_parent() != buttons_hbox, vformat("Cannot remove button %s as it does not belong to this dialog.", button->get_name()));
  281. ERR_FAIL_COND_MSG(button == ok_button, "Cannot remove dialog's OK button.");
  282. Control *right_spacer = Object::cast_to<Control>(button->get_meta("__right_spacer"));
  283. if (right_spacer) {
  284. ERR_FAIL_COND_MSG(right_spacer->get_parent() != buttons_hbox, vformat("Cannot remove button %s as its associated spacer does not belong to this dialog.", button->get_name()));
  285. }
  286. button->disconnect("visibility_changed", callable_mp(this, &AcceptDialog::_custom_button_visibility_changed));
  287. if (button->is_connected("pressed", callable_mp(this, &AcceptDialog::_custom_action))) {
  288. button->disconnect("pressed", callable_mp(this, &AcceptDialog::_custom_action));
  289. }
  290. if (button->is_connected("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed))) {
  291. button->disconnect("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed));
  292. }
  293. if (right_spacer) {
  294. buttons_hbox->remove_child(right_spacer);
  295. button->remove_meta("__right_spacer");
  296. right_spacer->queue_free();
  297. }
  298. buttons_hbox->remove_child(button);
  299. child_controls_changed();
  300. if (is_visible()) {
  301. _update_child_rects();
  302. }
  303. }
  304. void AcceptDialog::_bind_methods() {
  305. ClassDB::bind_method(D_METHOD("get_ok_button"), &AcceptDialog::get_ok_button);
  306. ClassDB::bind_method(D_METHOD("get_label"), &AcceptDialog::get_label);
  307. ClassDB::bind_method(D_METHOD("set_hide_on_ok", "enabled"), &AcceptDialog::set_hide_on_ok);
  308. ClassDB::bind_method(D_METHOD("get_hide_on_ok"), &AcceptDialog::get_hide_on_ok);
  309. ClassDB::bind_method(D_METHOD("set_close_on_escape", "enabled"), &AcceptDialog::set_close_on_escape);
  310. ClassDB::bind_method(D_METHOD("get_close_on_escape"), &AcceptDialog::get_close_on_escape);
  311. ClassDB::bind_method(D_METHOD("add_button", "text", "right", "action"), &AcceptDialog::add_button, DEFVAL(false), DEFVAL(""));
  312. ClassDB::bind_method(D_METHOD("add_cancel_button", "name"), &AcceptDialog::add_cancel_button);
  313. ClassDB::bind_method(D_METHOD("remove_button", "button"), &AcceptDialog::remove_button);
  314. ClassDB::bind_method(D_METHOD("register_text_enter", "line_edit"), &AcceptDialog::register_text_enter);
  315. ClassDB::bind_method(D_METHOD("set_text", "text"), &AcceptDialog::set_text);
  316. ClassDB::bind_method(D_METHOD("get_text"), &AcceptDialog::get_text);
  317. ClassDB::bind_method(D_METHOD("set_autowrap", "autowrap"), &AcceptDialog::set_autowrap);
  318. ClassDB::bind_method(D_METHOD("has_autowrap"), &AcceptDialog::has_autowrap);
  319. ClassDB::bind_method(D_METHOD("set_ok_button_text", "text"), &AcceptDialog::set_ok_button_text);
  320. ClassDB::bind_method(D_METHOD("get_ok_button_text"), &AcceptDialog::get_ok_button_text);
  321. ADD_SIGNAL(MethodInfo("confirmed"));
  322. ADD_SIGNAL(MethodInfo("canceled"));
  323. ADD_SIGNAL(MethodInfo("custom_action", PropertyInfo(Variant::STRING_NAME, "action")));
  324. ADD_PROPERTY(PropertyInfo(Variant::STRING, "ok_button_text"), "set_ok_button_text", "get_ok_button_text");
  325. ADD_GROUP("Dialog", "dialog_");
  326. ADD_PROPERTY(PropertyInfo(Variant::STRING, "dialog_text", PROPERTY_HINT_MULTILINE_TEXT), "set_text", "get_text");
  327. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_hide_on_ok"), "set_hide_on_ok", "get_hide_on_ok");
  328. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_close_on_escape"), "set_close_on_escape", "get_close_on_escape");
  329. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_autowrap"), "set_autowrap", "has_autowrap");
  330. }
  331. bool AcceptDialog::swap_cancel_ok = false;
  332. void AcceptDialog::set_swap_cancel_ok(bool p_swap) {
  333. swap_cancel_ok = p_swap;
  334. }
  335. AcceptDialog::AcceptDialog() {
  336. set_wrap_controls(true);
  337. set_visible(false);
  338. set_transient(true);
  339. set_exclusive(true);
  340. set_clamp_to_embedder(true);
  341. bg_panel = memnew(Panel);
  342. add_child(bg_panel, false, INTERNAL_MODE_FRONT);
  343. buttons_hbox = memnew(HBoxContainer);
  344. message_label = memnew(Label);
  345. message_label->set_anchor(SIDE_RIGHT, Control::ANCHOR_END);
  346. message_label->set_anchor(SIDE_BOTTOM, Control::ANCHOR_END);
  347. add_child(message_label, false, INTERNAL_MODE_FRONT);
  348. add_child(buttons_hbox, false, INTERNAL_MODE_FRONT);
  349. buttons_hbox->add_spacer();
  350. ok_button = memnew(Button);
  351. ok_button->set_text("OK");
  352. buttons_hbox->add_child(ok_button);
  353. buttons_hbox->add_spacer();
  354. ok_button->connect("pressed", callable_mp(this, &AcceptDialog::_ok_pressed));
  355. set_title(TTRC("Alert!"));
  356. connect("window_input", callable_mp(this, &AcceptDialog::_input_from_window));
  357. }
  358. AcceptDialog::~AcceptDialog() {
  359. }
  360. // ConfirmationDialog
  361. void ConfirmationDialog::set_cancel_button_text(String p_cancel_button_text) {
  362. cancel->set_text(p_cancel_button_text);
  363. }
  364. String ConfirmationDialog::get_cancel_button_text() const {
  365. return cancel->get_text();
  366. }
  367. void ConfirmationDialog::_bind_methods() {
  368. ClassDB::bind_method(D_METHOD("get_cancel_button"), &ConfirmationDialog::get_cancel_button);
  369. ClassDB::bind_method(D_METHOD("set_cancel_button_text", "text"), &ConfirmationDialog::set_cancel_button_text);
  370. ClassDB::bind_method(D_METHOD("get_cancel_button_text"), &ConfirmationDialog::get_cancel_button_text);
  371. ADD_PROPERTY(PropertyInfo(Variant::STRING, "cancel_button_text"), "set_cancel_button_text", "get_cancel_button_text");
  372. }
  373. Button *ConfirmationDialog::get_cancel_button() {
  374. return cancel;
  375. }
  376. ConfirmationDialog::ConfirmationDialog() {
  377. set_title(TTRC("Please Confirm..."));
  378. set_min_size(Size2(200, 70));
  379. cancel = add_cancel_button();
  380. }