dialogs.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. /*************************************************************************/
  2. /* dialogs.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 "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. Ref<InputEventKey> key = p_event;
  38. if (close_on_escape && key.is_valid() && key->is_pressed() && key->get_keycode() == Key::ESCAPE) {
  39. _cancel_pressed();
  40. }
  41. }
  42. void AcceptDialog::_parent_focused() {
  43. if (close_on_escape && !is_exclusive()) {
  44. _cancel_pressed();
  45. }
  46. }
  47. void AcceptDialog::_notification(int p_what) {
  48. switch (p_what) {
  49. case NOTIFICATION_VISIBILITY_CHANGED: {
  50. if (is_visible()) {
  51. get_ok_button()->grab_focus();
  52. _update_child_rects();
  53. parent_visible = get_parent_visible_window();
  54. if (parent_visible) {
  55. parent_visible->connect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  56. }
  57. } else {
  58. if (parent_visible) {
  59. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  60. parent_visible = nullptr;
  61. }
  62. }
  63. } break;
  64. case NOTIFICATION_THEME_CHANGED: {
  65. bg->add_theme_style_override("panel", bg->get_theme_stylebox(SNAME("panel"), SNAME("AcceptDialog")));
  66. } break;
  67. case NOTIFICATION_EXIT_TREE: {
  68. if (parent_visible) {
  69. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  70. parent_visible = nullptr;
  71. }
  72. } break;
  73. case NOTIFICATION_READY:
  74. case NOTIFICATION_WM_SIZE_CHANGED: {
  75. if (is_visible()) {
  76. _update_child_rects();
  77. }
  78. } break;
  79. case NOTIFICATION_WM_CLOSE_REQUEST: {
  80. _cancel_pressed();
  81. } break;
  82. }
  83. }
  84. void AcceptDialog::_text_submitted(const String &p_text) {
  85. if (get_ok_button() && get_ok_button()->is_disabled()) {
  86. return; // Do not allow submission if OK button is disabled.
  87. }
  88. _ok_pressed();
  89. }
  90. void AcceptDialog::_ok_pressed() {
  91. if (hide_on_ok) {
  92. set_visible(false);
  93. }
  94. ok_pressed();
  95. emit_signal(SNAME("confirmed"));
  96. }
  97. void AcceptDialog::_cancel_pressed() {
  98. Window *parent_window = parent_visible;
  99. if (parent_visible) {
  100. parent_visible->disconnect("focus_entered", callable_mp(this, &AcceptDialog::_parent_focused));
  101. parent_visible = nullptr;
  102. }
  103. call_deferred(SNAME("hide"));
  104. emit_signal(SNAME("cancelled"));
  105. cancel_pressed();
  106. if (parent_window) {
  107. //parent_window->grab_focus();
  108. }
  109. }
  110. String AcceptDialog::get_text() const {
  111. return label->get_text();
  112. }
  113. void AcceptDialog::set_text(String p_text) {
  114. if (label->get_text() == p_text) {
  115. return;
  116. }
  117. label->set_text(p_text);
  118. child_controls_changed();
  119. if (is_visible()) {
  120. _update_child_rects();
  121. }
  122. }
  123. void AcceptDialog::set_hide_on_ok(bool p_hide) {
  124. hide_on_ok = p_hide;
  125. }
  126. bool AcceptDialog::get_hide_on_ok() const {
  127. return hide_on_ok;
  128. }
  129. void AcceptDialog::set_close_on_escape(bool p_hide) {
  130. close_on_escape = p_hide;
  131. }
  132. bool AcceptDialog::get_close_on_escape() const {
  133. return close_on_escape;
  134. }
  135. void AcceptDialog::set_autowrap(bool p_autowrap) {
  136. label->set_autowrap_mode(p_autowrap ? TextServer::AUTOWRAP_WORD : TextServer::AUTOWRAP_OFF);
  137. }
  138. bool AcceptDialog::has_autowrap() {
  139. return label->get_autowrap_mode() != TextServer::AUTOWRAP_OFF;
  140. }
  141. void AcceptDialog::set_ok_button_text(String p_ok_button_text) {
  142. ok->set_text(p_ok_button_text);
  143. }
  144. String AcceptDialog::get_ok_button_text() const {
  145. return ok->get_text();
  146. }
  147. void AcceptDialog::register_text_enter(Control *p_line_edit) {
  148. ERR_FAIL_NULL(p_line_edit);
  149. LineEdit *line_edit = Object::cast_to<LineEdit>(p_line_edit);
  150. if (line_edit) {
  151. line_edit->connect("text_submitted", callable_mp(this, &AcceptDialog::_text_submitted));
  152. }
  153. }
  154. void AcceptDialog::_update_child_rects() {
  155. Size2 label_size = label->get_minimum_size();
  156. if (label->get_text().is_empty()) {
  157. label_size.height = 0;
  158. }
  159. int margin = hbc->get_theme_constant(SNAME("margin"), SNAME("Dialogs"));
  160. Size2 size = get_size();
  161. Size2 hminsize = hbc->get_combined_minimum_size();
  162. Vector2 cpos(margin, margin + label_size.height);
  163. Vector2 csize(size.x - margin * 2, size.y - margin * 3 - hminsize.y - label_size.height);
  164. for (int i = 0; i < get_child_count(); i++) {
  165. Control *c = Object::cast_to<Control>(get_child(i));
  166. if (!c) {
  167. continue;
  168. }
  169. if (c == hbc || c == label || c == bg || c->is_set_as_top_level()) {
  170. continue;
  171. }
  172. c->set_position(cpos);
  173. c->set_size(csize);
  174. }
  175. cpos.y += csize.y + margin;
  176. csize.y = hminsize.y;
  177. hbc->set_position(cpos);
  178. hbc->set_size(csize);
  179. bg->set_position(Point2());
  180. bg->set_size(size);
  181. }
  182. Size2 AcceptDialog::_get_contents_minimum_size() const {
  183. int margin = hbc->get_theme_constant(SNAME("margin"), SNAME("Dialogs"));
  184. Size2 minsize = label->get_combined_minimum_size();
  185. for (int i = 0; i < get_child_count(); i++) {
  186. Control *c = Object::cast_to<Control>(get_child(i));
  187. if (!c) {
  188. continue;
  189. }
  190. if (c == hbc || c == label || c->is_set_as_top_level()) {
  191. continue;
  192. }
  193. Size2 cminsize = c->get_combined_minimum_size();
  194. minsize.x = MAX(cminsize.x, minsize.x);
  195. minsize.y = MAX(cminsize.y, minsize.y);
  196. }
  197. Size2 hminsize = hbc->get_combined_minimum_size();
  198. minsize.x = MAX(hminsize.x, minsize.x);
  199. minsize.y += hminsize.y;
  200. minsize.x += margin * 2;
  201. minsize.y += margin * 3; //one as separation between hbc and child
  202. Size2 wmsize = get_min_size();
  203. minsize.x = MAX(wmsize.x, minsize.x);
  204. return minsize;
  205. }
  206. void AcceptDialog::_custom_action(const String &p_action) {
  207. emit_signal(SNAME("custom_action"), p_action);
  208. custom_action(p_action);
  209. }
  210. Button *AcceptDialog::add_button(const String &p_text, bool p_right, const String &p_action) {
  211. Button *button = memnew(Button);
  212. button->set_text(p_text);
  213. if (p_right) {
  214. hbc->add_child(button);
  215. hbc->add_spacer();
  216. } else {
  217. hbc->add_child(button);
  218. hbc->move_child(button, 0);
  219. hbc->add_spacer(true);
  220. }
  221. if (!p_action.is_empty()) {
  222. button->connect("pressed", callable_mp(this, &AcceptDialog::_custom_action).bind(p_action));
  223. }
  224. return button;
  225. }
  226. Button *AcceptDialog::add_cancel_button(const String &p_cancel) {
  227. String c = p_cancel;
  228. if (p_cancel.is_empty()) {
  229. c = "Cancel";
  230. }
  231. Button *b = swap_cancel_ok ? add_button(c, true) : add_button(c);
  232. b->connect("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed));
  233. return b;
  234. }
  235. void AcceptDialog::remove_button(Control *p_button) {
  236. Button *button = Object::cast_to<Button>(p_button);
  237. ERR_FAIL_NULL(button);
  238. ERR_FAIL_COND_MSG(button->get_parent() != hbc, vformat("Cannot remove button %s as it does not belong to this dialog.", button->get_name()));
  239. ERR_FAIL_COND_MSG(button == ok, "Cannot remove dialog's OK button.");
  240. Node *right_spacer = hbc->get_child(button->get_index() + 1);
  241. // Should always be valid but let's avoid crashing
  242. if (right_spacer) {
  243. hbc->remove_child(right_spacer);
  244. memdelete(right_spacer);
  245. }
  246. hbc->remove_child(button);
  247. if (button->is_connected("pressed", callable_mp(this, &AcceptDialog::_custom_action))) {
  248. button->disconnect("pressed", callable_mp(this, &AcceptDialog::_custom_action));
  249. }
  250. if (button->is_connected("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed))) {
  251. button->disconnect("pressed", callable_mp(this, &AcceptDialog::_cancel_pressed));
  252. }
  253. }
  254. void AcceptDialog::_bind_methods() {
  255. ClassDB::bind_method(D_METHOD("get_ok_button"), &AcceptDialog::get_ok_button);
  256. ClassDB::bind_method(D_METHOD("get_label"), &AcceptDialog::get_label);
  257. ClassDB::bind_method(D_METHOD("set_hide_on_ok", "enabled"), &AcceptDialog::set_hide_on_ok);
  258. ClassDB::bind_method(D_METHOD("get_hide_on_ok"), &AcceptDialog::get_hide_on_ok);
  259. ClassDB::bind_method(D_METHOD("set_close_on_escape", "enabled"), &AcceptDialog::set_close_on_escape);
  260. ClassDB::bind_method(D_METHOD("get_close_on_escape"), &AcceptDialog::get_close_on_escape);
  261. ClassDB::bind_method(D_METHOD("add_button", "text", "right", "action"), &AcceptDialog::add_button, DEFVAL(false), DEFVAL(""));
  262. ClassDB::bind_method(D_METHOD("add_cancel_button", "name"), &AcceptDialog::add_cancel_button);
  263. ClassDB::bind_method(D_METHOD("remove_button", "button"), &AcceptDialog::remove_button);
  264. ClassDB::bind_method(D_METHOD("register_text_enter", "line_edit"), &AcceptDialog::register_text_enter);
  265. ClassDB::bind_method(D_METHOD("set_text", "text"), &AcceptDialog::set_text);
  266. ClassDB::bind_method(D_METHOD("get_text"), &AcceptDialog::get_text);
  267. ClassDB::bind_method(D_METHOD("set_autowrap", "autowrap"), &AcceptDialog::set_autowrap);
  268. ClassDB::bind_method(D_METHOD("has_autowrap"), &AcceptDialog::has_autowrap);
  269. ClassDB::bind_method(D_METHOD("set_ok_button_text", "text"), &AcceptDialog::set_ok_button_text);
  270. ClassDB::bind_method(D_METHOD("get_ok_button_text"), &AcceptDialog::get_ok_button_text);
  271. ADD_SIGNAL(MethodInfo("confirmed"));
  272. ADD_SIGNAL(MethodInfo("cancelled"));
  273. ADD_SIGNAL(MethodInfo("custom_action", PropertyInfo(Variant::STRING_NAME, "action")));
  274. ADD_PROPERTY(PropertyInfo(Variant::STRING, "ok_button_text"), "set_ok_button_text", "get_ok_button_text");
  275. ADD_GROUP("Dialog", "dialog");
  276. ADD_PROPERTY(PropertyInfo(Variant::STRING, "dialog_text", PROPERTY_HINT_MULTILINE_TEXT, "", PROPERTY_USAGE_DEFAULT_INTL), "set_text", "get_text");
  277. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_hide_on_ok"), "set_hide_on_ok", "get_hide_on_ok");
  278. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_close_on_escape"), "set_close_on_escape", "get_close_on_escape");
  279. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_autowrap"), "set_autowrap", "has_autowrap");
  280. }
  281. bool AcceptDialog::swap_cancel_ok = false;
  282. void AcceptDialog::set_swap_cancel_ok(bool p_swap) {
  283. swap_cancel_ok = p_swap;
  284. }
  285. AcceptDialog::AcceptDialog() {
  286. set_wrap_controls(true);
  287. set_visible(false);
  288. set_transient(true);
  289. set_exclusive(true);
  290. set_clamp_to_embedder(true);
  291. bg = memnew(Panel);
  292. add_child(bg, false, INTERNAL_MODE_FRONT);
  293. hbc = memnew(HBoxContainer);
  294. int margin = hbc->get_theme_constant(SNAME("margin"), SNAME("Dialogs"));
  295. int button_margin = hbc->get_theme_constant(SNAME("button_margin"), SNAME("Dialogs"));
  296. label = memnew(Label);
  297. label->set_anchor(SIDE_RIGHT, Control::ANCHOR_END);
  298. label->set_anchor(SIDE_BOTTOM, Control::ANCHOR_END);
  299. label->set_begin(Point2(margin, margin));
  300. label->set_end(Point2(-margin, -button_margin - 10));
  301. add_child(label, false, INTERNAL_MODE_FRONT);
  302. add_child(hbc, false, INTERNAL_MODE_FRONT);
  303. hbc->add_spacer();
  304. ok = memnew(Button);
  305. ok->set_text("OK");
  306. hbc->add_child(ok);
  307. hbc->add_spacer();
  308. ok->connect("pressed", callable_mp(this, &AcceptDialog::_ok_pressed));
  309. set_title(TTRC("Alert!"));
  310. connect("window_input", callable_mp(this, &AcceptDialog::_input_from_window));
  311. }
  312. AcceptDialog::~AcceptDialog() {
  313. }
  314. // ConfirmationDialog
  315. void ConfirmationDialog::set_cancel_button_text(String p_cancel_button_text) {
  316. cancel->set_text(p_cancel_button_text);
  317. }
  318. String ConfirmationDialog::get_cancel_button_text() const {
  319. return cancel->get_text();
  320. }
  321. void ConfirmationDialog::_bind_methods() {
  322. ClassDB::bind_method(D_METHOD("get_cancel_button"), &ConfirmationDialog::get_cancel_button);
  323. ClassDB::bind_method(D_METHOD("set_cancel_button_text", "text"), &ConfirmationDialog::set_cancel_button_text);
  324. ClassDB::bind_method(D_METHOD("get_cancel_button_text"), &ConfirmationDialog::get_cancel_button_text);
  325. ADD_PROPERTY(PropertyInfo(Variant::STRING, "cancel_button_text"), "set_cancel_button_text", "get_cancel_button_text");
  326. }
  327. Button *ConfirmationDialog::get_cancel_button() {
  328. return cancel;
  329. }
  330. ConfirmationDialog::ConfirmationDialog() {
  331. set_title(TTRC("Please Confirm..."));
  332. set_min_size(Size2(200, 70));
  333. cancel = add_cancel_button();
  334. }