diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-12-17 14:23:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-17 14:23:49 +0100 |
commit | 93c9aada676cb4bc0d4ef0dadc422a98b120df4d (patch) | |
tree | 2153908a429fc8c92aa8035e6c868442f6995c68 /editor/editor_help.h | |
parent | d0abcf1a58a587b9aa30db016d349db63f0130ea (diff) | |
parent | 9cfc4440c1e19dab1cd8e854d0413314949476a8 (diff) |
Merge pull request #14692 from poke1024/docsgroups
Docs methods grouping by prefix
Diffstat (limited to 'editor/editor_help.h')
-rw-r--r-- | editor/editor_help.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editor/editor_help.h b/editor/editor_help.h index a224c7f8ee..96a3309ca3 100644 --- a/editor/editor_help.h +++ b/editor/editor_help.h @@ -139,6 +139,17 @@ class EditorHelp : public VBoxContainer { String base_path; + Color title_color; + Color text_color; + Color headline_color; + Color base_type_color; + Color type_color; + Color comment_color; + Color symbol_color; + Color value_color; + Color qualifier_color; + + void _init_colors(); void _help_callback(const String &p_topic); void _add_text(const String &p_bbcode); @@ -146,6 +157,7 @@ class EditorHelp : public VBoxContainer { //void _button_pressed(int p_idx); void _add_type(const String &p_type, const String &p_enum = String()); + void _add_method(const DocData::MethodDoc &p_method, bool p_overview = true); void _class_list_select(const String &p_select); void _class_desc_select(const String &p_select); |