summaryrefslogtreecommitdiffstats
path: root/editor/script_create_dialog.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2020-09-29 01:31:41 -0400
committerAaron Franke <arnfranke@yahoo.com>2021-04-06 22:43:00 -0400
commit5a9037f828ce84a07c3e748e20b50b334b896991 (patch)
tree8ceb9e059487d243d49e7eec48058c5fb187713e /editor/script_create_dialog.h
parentf96392a2b5ee1ebd9c14c92bdcd24d25e8b7774b (diff)
downloadredot-engine-5a9037f828ce84a07c3e748e20b50b334b896991.tar.gz
Warn when creating a script with the same name as the parent class
Diffstat (limited to 'editor/script_create_dialog.h')
-rw-r--r--editor/script_create_dialog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h
index e898b6f927..d6417b9d33 100644
--- a/editor/script_create_dialog.h
+++ b/editor/script_create_dialog.h
@@ -50,6 +50,7 @@ class ScriptCreateDialog : public ConfirmationDialog {
Label *error_label;
Label *path_error_label;
Label *builtin_warning_label;
+ Label *script_name_warning_label;
PanelContainer *status_panel;
LineEdit *parent_name;
Button *parent_browse_button;
@@ -110,6 +111,7 @@ class ScriptCreateDialog : public ConfirmationDialog {
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);