run_settings_dialog.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*************************************************************************/
  2. /* run_settings_dialog.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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 "run_settings_dialog.h"
  31. void RunSettingsDialog::popup_run_settings() {
  32. popup_centered(Size2(300, 150));
  33. }
  34. void RunSettingsDialog::set_custom_arguments(const String &p_arguments) {
  35. arguments->set_text(p_arguments);
  36. }
  37. String RunSettingsDialog::get_custom_arguments() const {
  38. return arguments->get_text();
  39. }
  40. void RunSettingsDialog::_bind_methods() {
  41. ClassDB::bind_method("_run_mode_changed", &RunSettingsDialog::_run_mode_changed);
  42. //ClassDB::bind_method("_browse_selected_file",&RunSettingsDialog::_browse_selected_file);
  43. }
  44. void RunSettingsDialog::_run_mode_changed(int idx) {
  45. if (idx == 0)
  46. arguments->set_editable(false);
  47. else
  48. arguments->set_editable(true);
  49. }
  50. int RunSettingsDialog::get_run_mode() const {
  51. return run_mode->get_selected();
  52. }
  53. void RunSettingsDialog::set_run_mode(int p_run_mode) {
  54. run_mode->select(p_run_mode);
  55. arguments->set_editable(p_run_mode);
  56. }
  57. RunSettingsDialog::RunSettingsDialog() {
  58. /* SNAP DIALOG */
  59. VBoxContainer *vbc = memnew(VBoxContainer);
  60. add_child(vbc);
  61. //set_child_rect(vbc);
  62. run_mode = memnew(OptionButton);
  63. vbc->add_margin_child(TTR("Run Mode:"), run_mode);
  64. run_mode->add_item(TTR("Current Scene"));
  65. run_mode->add_item(TTR("Main Scene"));
  66. run_mode->connect("item_selected", this, "_run_mode_changed");
  67. arguments = memnew(LineEdit);
  68. vbc->add_margin_child(TTR("Main Scene Arguments:"), arguments);
  69. arguments->set_editable(false);
  70. get_ok()->set_text(TTR("Close"));
  71. set_title(TTR("Scene Run Settings"));
  72. }