diff options
| author | Paulb23 <p_batty@hotmail.co.uk> | 2020-05-03 17:08:15 +0100 |
|---|---|---|
| committer | Paulb23 <p_batty@hotmail.co.uk> | 2020-07-11 17:09:58 +0100 |
| commit | bc4cee44582d2a90d0792d6b213f00be1043000b (patch) | |
| tree | 001ab82ed2bd7c6b59a7cc06807cce988c484d66 /editor/plugins/script_text_editor.h | |
| parent | 156daddaaf16e36eb932452d1e30f4f77d29aae6 (diff) | |
| download | redot-engine-bc4cee44582d2a90d0792d6b213f00be1043000b.tar.gz | |
Extract Syntax highlighting from TextEdit and add EditorSyntaxHighlighter
- Extacted all syntax highlighting code from text edit
- Removed enable syntax highlighting from text edit
- Added line_edited_from signal to text_edit
- Renamed get/set_syntax_highlighting to get/set_syntax_highlighter
- Added EditorSyntaxHighligher
Diffstat (limited to 'editor/plugins/script_text_editor.h')
| -rw-r--r-- | editor/plugins/script_text_editor.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/editor/plugins/script_text_editor.h b/editor/plugins/script_text_editor.h index d9ba579102..6d7f84d746 100644 --- a/editor/plugins/script_text_editor.h +++ b/editor/plugins/script_text_editor.h @@ -83,18 +83,6 @@ class ScriptTextEditor : public ScriptEditorBase { Vector2 color_position; String color_args; - void _update_member_keywords(); - - struct ColorsCache { - Color symbol_color; - Color keyword_color; - Color basetype_color; - Color type_color; - Color usertype_color; - Color comment_color; - Color string_color; - } colors_cache; - bool theme_loaded; enum { @@ -164,7 +152,7 @@ protected: void _notification(int p_what); static void _bind_methods(); - Map<String, Ref<SyntaxHighlighter> > highlighters; + Map<String, Ref<EditorSyntaxHighlighter>> highlighters; void _change_syntax_highlighter(int p_idx); void _edit_option(int p_op); @@ -190,8 +178,8 @@ protected: public: void _update_connected_methods(); - virtual void add_syntax_highlighter(Ref<SyntaxHighlighter> p_highlighter) override; - virtual void set_syntax_highlighter(Ref<SyntaxHighlighter> p_highlighter) override; + virtual void add_syntax_highlighter(Ref<EditorSyntaxHighlighter> p_highlighter) override; + virtual void set_syntax_highlighter(Ref<EditorSyntaxHighlighter> p_highlighter) override; void update_toggle_scripts_button(); virtual void apply_code() override; |
