dialogs.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  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/print_string.h"
  32. #include "core/translation.h"
  33. #include "line_edit.h"
  34. #ifdef TOOLS_ENABLED
  35. #include "editor/editor_node.h"
  36. #include "editor/editor_scale.h"
  37. #include "scene/main/viewport.h" // Only used to check for more modals when dimming the editor.
  38. #endif
  39. // WindowDialog
  40. void WindowDialog::_post_popup() {
  41. drag_type = DRAG_NONE; // just in case
  42. }
  43. void WindowDialog::_fix_size() {
  44. // Perhaps this should be called when the viewport resizes as well or windows go out of bounds...
  45. // Ensure the whole window is visible.
  46. Point2i pos = get_global_position();
  47. Size2i size = get_size();
  48. Size2i viewport_size = get_viewport_rect().size;
  49. // Windows require additional padding to keep the window chrome visible.
  50. Ref<StyleBox> panel = get_stylebox("panel", "WindowDialog");
  51. float top = 0;
  52. float left = 0;
  53. float bottom = 0;
  54. float right = 0;
  55. // Check validity, because the theme could contain a different type of StyleBox.
  56. if (panel->get_class() == "StyleBoxTexture") {
  57. Ref<StyleBoxTexture> panel_texture = Object::cast_to<StyleBoxTexture>(*panel);
  58. top = panel_texture->get_expand_margin_size(MARGIN_TOP);
  59. left = panel_texture->get_expand_margin_size(MARGIN_LEFT);
  60. bottom = panel_texture->get_expand_margin_size(MARGIN_BOTTOM);
  61. right = panel_texture->get_expand_margin_size(MARGIN_RIGHT);
  62. } else if (panel->get_class() == "StyleBoxFlat") {
  63. Ref<StyleBoxFlat> panel_flat = Object::cast_to<StyleBoxFlat>(*panel);
  64. top = panel_flat->get_expand_margin_size(MARGIN_TOP);
  65. left = panel_flat->get_expand_margin_size(MARGIN_LEFT);
  66. bottom = panel_flat->get_expand_margin_size(MARGIN_BOTTOM);
  67. right = panel_flat->get_expand_margin_size(MARGIN_RIGHT);
  68. }
  69. pos.x = MAX(left, MIN(pos.x, viewport_size.x - size.x - right));
  70. pos.y = MAX(top, MIN(pos.y, viewport_size.y - size.y - bottom));
  71. set_global_position(pos);
  72. if (resizable) {
  73. size.x = MIN(size.x, viewport_size.x - left - right);
  74. size.y = MIN(size.y, viewport_size.y - top - bottom);
  75. set_size(size);
  76. }
  77. }
  78. bool WindowDialog::has_point(const Point2 &p_point) const {
  79. Rect2 r(Point2(), get_size());
  80. // Enlarge upwards for title bar.
  81. int title_height = get_constant("title_height", "WindowDialog");
  82. r.position.y -= title_height;
  83. r.size.y += title_height;
  84. // Inflate by the resizable border thickness.
  85. if (resizable) {
  86. int scaleborder_size = get_constant("scaleborder_size", "WindowDialog");
  87. r.position.x -= scaleborder_size;
  88. r.size.width += scaleborder_size * 2;
  89. r.position.y -= scaleborder_size;
  90. r.size.height += scaleborder_size * 2;
  91. }
  92. return r.has_point(p_point);
  93. }
  94. void WindowDialog::_gui_input(const Ref<InputEvent> &p_event) {
  95. Ref<InputEventMouseButton> mb = p_event;
  96. if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT) {
  97. if (mb->is_pressed()) {
  98. // Begin a possible dragging operation.
  99. drag_type = _drag_hit_test(Point2(mb->get_position().x, mb->get_position().y));
  100. if (drag_type != DRAG_NONE) {
  101. drag_offset = get_global_mouse_position() - get_position();
  102. }
  103. drag_offset_far = get_position() + get_size() - get_global_mouse_position();
  104. } else if (drag_type != DRAG_NONE && !mb->is_pressed()) {
  105. // End a dragging operation.
  106. drag_type = DRAG_NONE;
  107. }
  108. }
  109. Ref<InputEventMouseMotion> mm = p_event;
  110. if (mm.is_valid()) {
  111. if (drag_type == DRAG_NONE) {
  112. // Update the cursor while moving along the borders.
  113. CursorShape cursor = CURSOR_ARROW;
  114. if (resizable) {
  115. int preview_drag_type = _drag_hit_test(Point2(mm->get_position().x, mm->get_position().y));
  116. switch (preview_drag_type) {
  117. case DRAG_RESIZE_TOP:
  118. case DRAG_RESIZE_BOTTOM:
  119. cursor = CURSOR_VSIZE;
  120. break;
  121. case DRAG_RESIZE_LEFT:
  122. case DRAG_RESIZE_RIGHT:
  123. cursor = CURSOR_HSIZE;
  124. break;
  125. case DRAG_RESIZE_TOP + DRAG_RESIZE_LEFT:
  126. case DRAG_RESIZE_BOTTOM + DRAG_RESIZE_RIGHT:
  127. cursor = CURSOR_FDIAGSIZE;
  128. break;
  129. case DRAG_RESIZE_TOP + DRAG_RESIZE_RIGHT:
  130. case DRAG_RESIZE_BOTTOM + DRAG_RESIZE_LEFT:
  131. cursor = CURSOR_BDIAGSIZE;
  132. break;
  133. }
  134. }
  135. if (get_cursor_shape() != cursor) {
  136. set_default_cursor_shape(cursor);
  137. }
  138. } else {
  139. // Update while in a dragging operation.
  140. Point2 global_pos = get_global_mouse_position();
  141. global_pos.y = MAX(global_pos.y, 0); // Ensure title bar stays visible.
  142. Rect2 rect = get_rect();
  143. Size2 min_size = get_combined_minimum_size();
  144. if (drag_type == DRAG_MOVE) {
  145. rect.position = global_pos - drag_offset;
  146. } else {
  147. if (drag_type & DRAG_RESIZE_TOP) {
  148. int bottom = rect.position.y + rect.size.height;
  149. int max_y = bottom - min_size.height;
  150. rect.position.y = MIN(global_pos.y - drag_offset.y, max_y);
  151. rect.size.height = bottom - rect.position.y;
  152. } else if (drag_type & DRAG_RESIZE_BOTTOM) {
  153. rect.size.height = global_pos.y - rect.position.y + drag_offset_far.y;
  154. }
  155. if (drag_type & DRAG_RESIZE_LEFT) {
  156. int right = rect.position.x + rect.size.width;
  157. int max_x = right - min_size.width;
  158. rect.position.x = MIN(global_pos.x - drag_offset.x, max_x);
  159. rect.size.width = right - rect.position.x;
  160. } else if (drag_type & DRAG_RESIZE_RIGHT) {
  161. rect.size.width = global_pos.x - rect.position.x + drag_offset_far.x;
  162. }
  163. }
  164. set_size(rect.size);
  165. set_position(rect.position);
  166. }
  167. }
  168. }
  169. void WindowDialog::_notification(int p_what) {
  170. switch (p_what) {
  171. case NOTIFICATION_DRAW: {
  172. RID canvas = get_canvas_item();
  173. // Draw the background.
  174. Ref<StyleBox> panel = get_stylebox("panel");
  175. Size2 size = get_size();
  176. panel->draw(canvas, Rect2(0, 0, size.x, size.y));
  177. // Draw the title bar text.
  178. Ref<Font> title_font = get_font("title_font", "WindowDialog");
  179. Color title_color = get_color("title_color", "WindowDialog");
  180. int title_height = get_constant("title_height", "WindowDialog");
  181. int font_height = title_font->get_height() - title_font->get_descent() * 2;
  182. int x = (size.x - title_font->get_string_size(xl_title).x) / 2;
  183. int y = (-title_height + font_height) / 2;
  184. title_font->draw(canvas, Point2(x, y), xl_title, title_color, size.x - panel->get_minimum_size().x);
  185. } break;
  186. case NOTIFICATION_THEME_CHANGED:
  187. case NOTIFICATION_ENTER_TREE: {
  188. close_button->set_normal_texture(get_icon("close", "WindowDialog"));
  189. close_button->set_pressed_texture(get_icon("close", "WindowDialog"));
  190. close_button->set_hover_texture(get_icon("close_highlight", "WindowDialog"));
  191. close_button->set_anchor(MARGIN_LEFT, ANCHOR_END);
  192. close_button->set_begin(Point2(-get_constant("close_h_ofs", "WindowDialog"), -get_constant("close_v_ofs", "WindowDialog")));
  193. } break;
  194. case NOTIFICATION_TRANSLATION_CHANGED: {
  195. String new_title = tr(title);
  196. if (new_title != xl_title) {
  197. xl_title = new_title;
  198. minimum_size_changed();
  199. update();
  200. }
  201. } break;
  202. case NOTIFICATION_MOUSE_EXIT: {
  203. // Reset the mouse cursor when leaving the resizable window border.
  204. if (resizable && !drag_type) {
  205. if (get_default_cursor_shape() != CURSOR_ARROW) {
  206. set_default_cursor_shape(CURSOR_ARROW);
  207. }
  208. }
  209. } break;
  210. #ifdef TOOLS_ENABLED
  211. case NOTIFICATION_POST_POPUP: {
  212. if (get_tree() && Engine::get_singleton()->is_editor_hint() && EditorNode::get_singleton()) {
  213. was_editor_dimmed = EditorNode::get_singleton()->is_editor_dimmed();
  214. EditorNode::get_singleton()->dim_editor(true);
  215. }
  216. } break;
  217. case NOTIFICATION_POPUP_HIDE: {
  218. if (get_tree() && Engine::get_singleton()->is_editor_hint() && EditorNode::get_singleton() && !was_editor_dimmed) {
  219. EditorNode::get_singleton()->dim_editor(false);
  220. set_pass_on_modal_close_click(false);
  221. }
  222. } break;
  223. #endif
  224. }
  225. }
  226. void WindowDialog::_closed() {
  227. _close_pressed();
  228. hide();
  229. }
  230. int WindowDialog::_drag_hit_test(const Point2 &pos) const {
  231. int drag_type = DRAG_NONE;
  232. if (resizable) {
  233. int title_height = get_constant("title_height", "WindowDialog");
  234. int scaleborder_size = get_constant("scaleborder_size", "WindowDialog");
  235. Rect2 rect = get_rect();
  236. if (pos.y < (-title_height + scaleborder_size)) {
  237. drag_type = DRAG_RESIZE_TOP;
  238. } else if (pos.y >= (rect.size.height - scaleborder_size)) {
  239. drag_type = DRAG_RESIZE_BOTTOM;
  240. }
  241. if (pos.x < scaleborder_size) {
  242. drag_type |= DRAG_RESIZE_LEFT;
  243. } else if (pos.x >= (rect.size.width - scaleborder_size)) {
  244. drag_type |= DRAG_RESIZE_RIGHT;
  245. }
  246. }
  247. if (drag_type == DRAG_NONE && pos.y < 0) {
  248. drag_type = DRAG_MOVE;
  249. }
  250. return drag_type;
  251. }
  252. void WindowDialog::set_title(const String &p_title) {
  253. if (title != p_title) {
  254. title = p_title;
  255. xl_title = tr(p_title);
  256. minimum_size_changed();
  257. update();
  258. }
  259. }
  260. String WindowDialog::get_title() const {
  261. return title;
  262. }
  263. void WindowDialog::set_resizable(bool p_resizable) {
  264. resizable = p_resizable;
  265. }
  266. bool WindowDialog::get_resizable() const {
  267. return resizable;
  268. }
  269. Size2 WindowDialog::get_minimum_size() const {
  270. Ref<Font> font = get_font("title_font", "WindowDialog");
  271. const int button_width = close_button->get_combined_minimum_size().x;
  272. const int title_width = font->get_string_size(xl_title).x;
  273. const int padding = button_width / 2;
  274. const int button_area = button_width + padding;
  275. // As the title gets centered, title_width + close_button_width is not enough.
  276. // We want a width w, such that w / 2 - title_width / 2 >= button_area, i.e.
  277. // w >= 2 * button_area + title_width
  278. return Size2(2 * button_area + title_width, 1);
  279. }
  280. TextureButton *WindowDialog::get_close_button() {
  281. return close_button;
  282. }
  283. void WindowDialog::_bind_methods() {
  284. ClassDB::bind_method(D_METHOD("_gui_input"), &WindowDialog::_gui_input);
  285. ClassDB::bind_method(D_METHOD("set_title", "title"), &WindowDialog::set_title);
  286. ClassDB::bind_method(D_METHOD("get_title"), &WindowDialog::get_title);
  287. ClassDB::bind_method(D_METHOD("set_resizable", "resizable"), &WindowDialog::set_resizable);
  288. ClassDB::bind_method(D_METHOD("get_resizable"), &WindowDialog::get_resizable);
  289. ClassDB::bind_method(D_METHOD("_closed"), &WindowDialog::_closed);
  290. ClassDB::bind_method(D_METHOD("get_close_button"), &WindowDialog::get_close_button);
  291. ADD_PROPERTY(PropertyInfo(Variant::STRING, "window_title", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT_INTL), "set_title", "get_title");
  292. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "resizable", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT_INTL), "set_resizable", "get_resizable");
  293. }
  294. WindowDialog::WindowDialog() {
  295. drag_type = DRAG_NONE;
  296. resizable = false;
  297. close_button = memnew(TextureButton);
  298. add_child(close_button);
  299. close_button->connect("pressed", this, "_closed");
  300. #ifdef TOOLS_ENABLED
  301. was_editor_dimmed = false;
  302. #endif
  303. }
  304. WindowDialog::~WindowDialog() {
  305. }
  306. // PopupDialog
  307. void PopupDialog::_notification(int p_what) {
  308. if (p_what == NOTIFICATION_DRAW) {
  309. RID ci = get_canvas_item();
  310. get_stylebox("panel")->draw(ci, Rect2(Point2(), get_size()));
  311. }
  312. }
  313. PopupDialog::PopupDialog() {
  314. }
  315. PopupDialog::~PopupDialog() {
  316. }
  317. // AcceptDialog
  318. void AcceptDialog::_post_popup() {
  319. WindowDialog::_post_popup();
  320. get_ok()->grab_focus();
  321. }
  322. void AcceptDialog::_notification(int p_what) {
  323. switch (p_what) {
  324. case NOTIFICATION_MODAL_CLOSE: {
  325. cancel_pressed();
  326. } break;
  327. case NOTIFICATION_READY:
  328. case NOTIFICATION_RESIZED: {
  329. _update_child_rects();
  330. } break;
  331. }
  332. }
  333. void AcceptDialog::_builtin_text_entered(const String &p_text) {
  334. _ok_pressed();
  335. }
  336. void AcceptDialog::_ok_pressed() {
  337. if (hide_on_ok) {
  338. hide();
  339. }
  340. ok_pressed();
  341. emit_signal("confirmed");
  342. }
  343. void AcceptDialog::_close_pressed() {
  344. cancel_pressed();
  345. }
  346. String AcceptDialog::get_text() const {
  347. return label->get_text();
  348. }
  349. void AcceptDialog::set_text(String p_text) {
  350. label->set_text(p_text);
  351. minimum_size_changed();
  352. _update_child_rects();
  353. }
  354. void AcceptDialog::set_hide_on_ok(bool p_hide) {
  355. hide_on_ok = p_hide;
  356. }
  357. bool AcceptDialog::get_hide_on_ok() const {
  358. return hide_on_ok;
  359. }
  360. void AcceptDialog::set_autowrap(bool p_autowrap) {
  361. label->set_autowrap(p_autowrap);
  362. }
  363. bool AcceptDialog::has_autowrap() {
  364. return label->has_autowrap();
  365. }
  366. void AcceptDialog::register_text_enter(Node *p_line_edit) {
  367. ERR_FAIL_NULL(p_line_edit);
  368. LineEdit *line_edit = Object::cast_to<LineEdit>(p_line_edit);
  369. if (line_edit) {
  370. line_edit->connect("text_entered", this, "_builtin_text_entered");
  371. }
  372. }
  373. void AcceptDialog::_update_child_rects() {
  374. Size2 label_size = label->get_minimum_size();
  375. if (label->get_text().empty()) {
  376. label_size.height = 0;
  377. }
  378. int margin = get_constant("margin", "Dialogs");
  379. Size2 size = get_size();
  380. Size2 hminsize = hbc->get_combined_minimum_size();
  381. Vector2 cpos(margin, margin + label_size.height);
  382. Vector2 csize(size.x - margin * 2, size.y - margin * 3 - hminsize.y - label_size.height);
  383. for (int i = 0; i < get_child_count(); i++) {
  384. Control *c = Object::cast_to<Control>(get_child(i));
  385. if (!c) {
  386. continue;
  387. }
  388. if (c == hbc || c == label || c == get_close_button() || c->is_set_as_toplevel()) {
  389. continue;
  390. }
  391. c->set_position(cpos);
  392. c->set_size(csize);
  393. }
  394. cpos.y += csize.y + margin;
  395. csize.y = hminsize.y;
  396. hbc->set_position(cpos);
  397. hbc->set_size(csize);
  398. }
  399. Size2 AcceptDialog::get_minimum_size() const {
  400. int margin = get_constant("margin", "Dialogs");
  401. Size2 minsize = label->get_combined_minimum_size();
  402. for (int i = 0; i < get_child_count(); i++) {
  403. Control *c = Object::cast_to<Control>(get_child(i));
  404. if (!c) {
  405. continue;
  406. }
  407. if (c == hbc || c == label || c == const_cast<AcceptDialog *>(this)->get_close_button() || c->is_set_as_toplevel()) {
  408. continue;
  409. }
  410. Size2 cminsize = c->get_combined_minimum_size();
  411. minsize.x = MAX(cminsize.x, minsize.x);
  412. minsize.y = MAX(cminsize.y, minsize.y);
  413. }
  414. Size2 hminsize = hbc->get_combined_minimum_size();
  415. minsize.x = MAX(hminsize.x, minsize.x);
  416. minsize.y += hminsize.y;
  417. minsize.x += margin * 2;
  418. minsize.y += margin * 3; //one as separation between hbc and child
  419. Size2 wmsize = WindowDialog::get_minimum_size();
  420. minsize.x = MAX(wmsize.x, minsize.x);
  421. return minsize;
  422. }
  423. void AcceptDialog::_custom_action(const String &p_action) {
  424. emit_signal("custom_action", p_action);
  425. custom_action(p_action);
  426. }
  427. Button *AcceptDialog::add_button(const String &p_text, bool p_right, const String &p_action) {
  428. Button *button = memnew(Button);
  429. button->set_text(p_text);
  430. if (p_right) {
  431. hbc->add_child(button);
  432. hbc->add_spacer();
  433. } else {
  434. hbc->add_child(button);
  435. hbc->move_child(button, 0);
  436. hbc->add_spacer(true);
  437. }
  438. if (p_action != "") {
  439. button->connect("pressed", this, "_custom_action", varray(p_action));
  440. }
  441. return button;
  442. }
  443. Button *AcceptDialog::add_cancel(const String &p_cancel) {
  444. String c = p_cancel;
  445. if (p_cancel == "") {
  446. c = RTR("Cancel");
  447. }
  448. Button *b = swap_ok_cancel ? add_button(c, true) : add_button(c);
  449. b->connect("pressed", this, "_closed");
  450. return b;
  451. }
  452. void AcceptDialog::remove_button(Control *p_button) {
  453. Button *button = Object::cast_to<Button>(p_button);
  454. ERR_FAIL_NULL(button);
  455. ERR_FAIL_COND_MSG(button->get_parent() != hbc, vformat("Cannot remove button %s as it does not belong to this dialog.", button->get_name()));
  456. ERR_FAIL_COND_MSG(button == ok, "Cannot remove dialog's OK button.");
  457. Node *right_spacer = hbc->get_child(button->get_index() + 1);
  458. // Should always be valid but let's avoid crashing
  459. if (right_spacer) {
  460. hbc->remove_child(right_spacer);
  461. memdelete(right_spacer);
  462. }
  463. hbc->remove_child(button);
  464. if (button->is_connected("pressed", this, "_custom_action")) {
  465. button->disconnect("pressed", this, "_custom_action");
  466. }
  467. if (button->is_connected("pressed", this, "_closed")) {
  468. button->disconnect("pressed", this, "_closed");
  469. }
  470. }
  471. void AcceptDialog::_bind_methods() {
  472. ClassDB::bind_method(D_METHOD("_ok"), &AcceptDialog::_ok_pressed);
  473. ClassDB::bind_method(D_METHOD("get_ok"), &AcceptDialog::get_ok);
  474. ClassDB::bind_method(D_METHOD("get_label"), &AcceptDialog::get_label);
  475. ClassDB::bind_method(D_METHOD("set_hide_on_ok", "enabled"), &AcceptDialog::set_hide_on_ok);
  476. ClassDB::bind_method(D_METHOD("get_hide_on_ok"), &AcceptDialog::get_hide_on_ok);
  477. ClassDB::bind_method(D_METHOD("add_button", "text", "right", "action"), &AcceptDialog::add_button, DEFVAL(false), DEFVAL(""));
  478. ClassDB::bind_method(D_METHOD("add_cancel", "name"), &AcceptDialog::add_cancel);
  479. ClassDB::bind_method(D_METHOD("remove_button", "button"), &AcceptDialog::remove_button);
  480. ClassDB::bind_method(D_METHOD("_builtin_text_entered"), &AcceptDialog::_builtin_text_entered);
  481. ClassDB::bind_method(D_METHOD("register_text_enter", "line_edit"), &AcceptDialog::register_text_enter);
  482. ClassDB::bind_method(D_METHOD("_custom_action"), &AcceptDialog::_custom_action);
  483. ClassDB::bind_method(D_METHOD("set_text", "text"), &AcceptDialog::set_text);
  484. ClassDB::bind_method(D_METHOD("get_text"), &AcceptDialog::get_text);
  485. ClassDB::bind_method(D_METHOD("set_autowrap", "autowrap"), &AcceptDialog::set_autowrap);
  486. ClassDB::bind_method(D_METHOD("has_autowrap"), &AcceptDialog::has_autowrap);
  487. ADD_SIGNAL(MethodInfo("confirmed"));
  488. ADD_SIGNAL(MethodInfo("custom_action", PropertyInfo(Variant::STRING, "action")));
  489. ADD_GROUP("Dialog", "dialog");
  490. ADD_PROPERTY(PropertyInfo(Variant::STRING, "dialog_text", PROPERTY_HINT_MULTILINE_TEXT, "", PROPERTY_USAGE_DEFAULT_INTL), "set_text", "get_text");
  491. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_hide_on_ok"), "set_hide_on_ok", "get_hide_on_ok");
  492. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dialog_autowrap"), "set_autowrap", "has_autowrap");
  493. }
  494. bool AcceptDialog::swap_ok_cancel = false;
  495. void AcceptDialog::set_swap_ok_cancel(bool p_swap) {
  496. swap_ok_cancel = p_swap;
  497. }
  498. AcceptDialog::AcceptDialog() {
  499. int margin = get_constant("margin", "Dialogs");
  500. int button_margin = get_constant("button_margin", "Dialogs");
  501. label = memnew(Label);
  502. label->set_anchor(MARGIN_RIGHT, ANCHOR_END);
  503. label->set_anchor(MARGIN_BOTTOM, ANCHOR_END);
  504. label->set_begin(Point2(margin, margin));
  505. label->set_end(Point2(-margin, -button_margin - 10));
  506. add_child(label);
  507. hbc = memnew(HBoxContainer);
  508. add_child(hbc);
  509. hbc->add_spacer();
  510. ok = memnew(Button);
  511. ok->set_text(RTR("OK"));
  512. hbc->add_child(ok);
  513. hbc->add_spacer();
  514. ok->connect("pressed", this, "_ok");
  515. set_as_toplevel(true);
  516. hide_on_ok = true;
  517. set_title(RTR("Alert!"));
  518. }
  519. AcceptDialog::~AcceptDialog() {
  520. }
  521. // ConfirmationDialog
  522. void ConfirmationDialog::_bind_methods() {
  523. ClassDB::bind_method(D_METHOD("get_cancel"), &ConfirmationDialog::get_cancel);
  524. }
  525. Button *ConfirmationDialog::get_cancel() {
  526. return cancel;
  527. }
  528. ConfirmationDialog::ConfirmationDialog() {
  529. set_title(RTR("Please Confirm..."));
  530. #ifdef TOOLS_ENABLED
  531. set_custom_minimum_size(Size2(200, 70) * EDSCALE);
  532. #endif
  533. cancel = add_cancel();
  534. }