From 26ce86191014fa109052a8330e6f27546760ec73 Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Tue, 12 Sep 2023 11:52:43 +0300 Subject: Editor: Remove unused Class Name field from Create Script dialog --- editor/script_create_dialog.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'editor/script_create_dialog.h') diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h index ea2f480c57..a4ff602eec 100644 --- a/editor/script_create_dialog.h +++ b/editor/script_create_dialog.h @@ -34,14 +34,13 @@ #include "core/object/script_language.h" #include "scene/gui/check_box.h" #include "scene/gui/dialogs.h" -#include "scene/gui/grid_container.h" -#include "scene/gui/line_edit.h" #include "scene/gui/option_button.h" #include "scene/gui/panel_container.h" class CreateDialog; class EditorFileDialog; class EditorValidationPanel; +class LineEdit; class ScriptCreateDialog : public ConfirmationDialog { GDCLASS(ScriptCreateDialog, ConfirmationDialog); @@ -53,7 +52,6 @@ class ScriptCreateDialog : public ConfirmationDialog { MSG_ID_TEMPLATE, }; - LineEdit *class_name = nullptr; EditorValidationPanel *validation_panel = nullptr; LineEdit *parent_name = nullptr; Button *parent_browse_button = nullptr; @@ -61,21 +59,21 @@ class ScriptCreateDialog : public ConfirmationDialog { OptionButton *language_menu = nullptr; OptionButton *template_menu = nullptr; LineEdit *file_path = nullptr; - LineEdit *internal_name = nullptr; + LineEdit *built_in_name = nullptr; Button *path_button = nullptr; EditorFileDialog *file_browse = nullptr; - CheckBox *internal = nullptr; + CheckBox *built_in = nullptr; CheckBox *use_templates = nullptr; VBoxContainer *path_vb = nullptr; AcceptDialog *alert = nullptr; CreateDialog *select_class = nullptr; + bool is_browsing_parent = false; String path_error; String template_inactive_message; String initial_bp; bool is_new_script_created = true; bool is_path_valid = false; - bool has_named_classes = false; bool supports_built_in = false; bool can_inherit_from_file = false; bool is_parent_name_valid = false; @@ -104,10 +102,7 @@ class ScriptCreateDialog : public ConfirmationDialog { void _built_in_pressed(); void _use_template_pressed(); bool _validate_parent(const String &p_string); - bool _validate_class(const String &p_string); String _validate_path(const String &p_path, bool p_file_must_exist); - String _get_class_name() const; - void _class_name_changed(const String &p_name); void _parent_name_changed(const String &p_parent); void _template_changed(int p_template = 0); void _browse_path(bool browse_parent, bool p_save); -- cgit v1.2.3