summaryrefslogtreecommitdiffstats
path: root/editor/scene_create_dialog.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-06-26 19:18:27 +0200
committerkobewi <kobewi4e@gmail.com>2023-08-08 16:14:35 +0200
commit7f41403a6ff5feddf831b9c09b694c21324b715c (patch)
tree478ace08d8527ce57da9fbd78aeb44030c8cdbea /editor/scene_create_dialog.h
parenteca6f0eb545166708c56633152974f40f51de2be (diff)
downloadredot-engine-7f41403a6ff5feddf831b9c09b694c21324b715c.tar.gz
Standardize dialog input validation as a new class
Diffstat (limited to 'editor/scene_create_dialog.h')
-rw-r--r--editor/scene_create_dialog.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/editor/scene_create_dialog.h b/editor/scene_create_dialog.h
index c6f40b928e..c7a4a09850 100644
--- a/editor/scene_create_dialog.h
+++ b/editor/scene_create_dialog.h
@@ -37,18 +37,17 @@ class ButtonGroup;
class CheckBox;
class CreateDialog;
class EditorFileDialog;
+class EditorValidationPanel;
class Label;
class LineEdit;
class OptionButton;
-class PanelContainer;
class SceneCreateDialog : public ConfirmationDialog {
GDCLASS(SceneCreateDialog, ConfirmationDialog);
- enum MsgType {
- MSG_OK,
- MSG_ERROR,
- MSG_WARNING,
+ enum {
+ MSG_ID_PATH,
+ MSG_ID_ROOT,
};
const StringName type_meta = StringName("type");
@@ -80,15 +79,12 @@ private:
OptionButton *scene_extension_picker = nullptr;
LineEdit *root_name_edit = nullptr;
- PanelContainer *status_panel = nullptr;
- Label *file_error_label = nullptr;
- Label *node_error_label = nullptr;
+ EditorValidationPanel *validation_panel = nullptr;
void accept_create();
void browse_types();
void on_type_picked();
void update_dialog();
- void update_error(Label *p_label, MsgType p_type, const String &p_msg);
protected:
void _notification(int p_what);