aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/script_editor_plugin.h
diff options
context:
space:
mode:
authorDaniel J. Ramirez2017-09-13 19:56:37 -0500
committerDaniel J. Ramirez2017-09-14 01:13:37 -0500
commitd21f20eb5fb6dab41f2afb2069a216c8973a294e (patch)
treeb1cfd561669409dec8b6644b9361ab5d68c96384 /editor/plugins/script_editor_plugin.h
parentb17c801ee827762ec539644badc6b32f7bc87024 (diff)
downloadgodot-d21f20eb5fb6dab41f2afb2069a216c8973a294e.tar.gz
godot-d21f20eb5fb6dab41f2afb2069a216c8973a294e.tar.zst
godot-d21f20eb5fb6dab41f2afb2069a216c8973a294e.zip
Several fixed to editor doc.
Improved style Fixed editor help issues Added editor help index
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r--editor/plugins/script_editor_plugin.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h
index d2677c6a4..03fc4da7c 100644
--- a/editor/plugins/script_editor_plugin.h
+++ b/editor/plugins/script_editor_plugin.h
@@ -187,6 +187,8 @@ class ScriptEditor : public PanelContainer {
HSplitContainer *script_split;
ItemList *members_overview;
bool members_overview_enabled;
+ ItemList *help_overview;
+ bool help_overview_enabled;
VSplitContainer *list_split;
TabContainer *tab_container;
EditorFileDialog *file_dialog;
@@ -294,6 +296,10 @@ class ScriptEditor : public PanelContainer {
void _members_overview_selected(int p_idx);
void _script_selected(int p_idx);
+ void _update_help_overview_visibility();
+ void _update_help_overview();
+ void _help_overview_selected(int p_idx);
+
void _find_scripts(Node *p_base, Node *p_current, Set<Ref<Script> > &used);
void _tree_changed();