summaryrefslogtreecommitdiffstats
path: root/editor/create_dialog.h
diff options
context:
space:
mode:
authorMatthias Schmitt <male.schmitt@posteo.de>2019-03-02 15:10:27 +0100
committerMatthias Schmitt <male.schmitt@posteo.de>2019-05-24 00:13:41 +0200
commit6b7c8ef327e57f297c9fd141d25effbe9e0f8f8c (patch)
tree425c27f453672b8d64057a4d1891c791fde3bd45 /editor/create_dialog.h
parent9738ed567cb9b75e11af3d7c361a2d77e60a5753 (diff)
downloadredot-engine-6b7c8ef327e57f297c9fd141d25effbe9e0f8f8c.tar.gz
Auto-expand current node type when replace node
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r--editor/create_dialog.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h
index d859f7cbe4..03c4b25f5c 100644
--- a/editor/create_dialog.h
+++ b/editor/create_dialog.h
@@ -53,6 +53,7 @@ class CreateDialog : public ConfirmationDialog {
Button *favorite;
LineEdit *search_box;
Tree *search_options;
+ HashMap<String, TreeItem *> search_options_types;
bool is_replace_mode;
String base_type;
String preferred_search_result_type;
@@ -82,6 +83,8 @@ class CreateDialog : public ConfirmationDialog {
void add_type(const String &p_type, HashMap<String, TreeItem *> &p_types, TreeItem *p_root, TreeItem **to_select);
+ void select_type(const String &p_type);
+
Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
@@ -104,7 +107,7 @@ public:
void set_preferred_search_result_type(const String &p_preferred_type);
String get_preferred_search_result_type();
- void popup_create(bool p_dont_clear, bool p_replace_mode = false);
+ void popup_create(bool p_dont_clear, bool p_replace_mode = false, const String &p_select_type = "Node");
CreateDialog();
};