summaryrefslogtreecommitdiffstats
path: root/editor/script_create_dialog.h
diff options
context:
space:
mode:
authorDanil Alexeev <danil@alexeev.xyz>2023-09-12 11:52:43 +0300
committerDanil Alexeev <danil@alexeev.xyz>2023-09-12 12:49:56 +0300
commit26ce86191014fa109052a8330e6f27546760ec73 (patch)
tree920c9b34763e15e4ab06c23e68e071e70a12ff57 /editor/script_create_dialog.h
parent5c43e4c1efc85856a4e918bc67e1266657b9110c (diff)
downloadredot-engine-26ce86191014fa109052a8330e6f27546760ec73.tar.gz
Editor: Remove unused Class Name field from Create Script dialog
Diffstat (limited to 'editor/script_create_dialog.h')
-rw-r--r--editor/script_create_dialog.h13
1 files changed, 4 insertions, 9 deletions
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);