diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2016-07-11 15:39:46 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2016-07-11 15:39:46 +0100 |
commit | a57c1da183c22ec6fb71fe550a6049296d63be3e (patch) | |
tree | 280ad01b075a69476721b749f53cab8b53d39c07 | |
parent | 28356a7d63b324bbd4b202434e1a2b8ac40aeb3f (diff) |
Update textedit docs with colors, show line number and highlight all occurences
-rw-r--r-- | doc/base/classes.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 91c768ef42..ae5438c430 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -39408,6 +39408,34 @@ Set the color for symbols. </description> </method> + <method name="set_show_line_numbers"> + <argument index="0" name="enable" type="bool"> + </argument> + <description> + Set to enable showing line numbers. + </description> + </method> + <method name="is_show_line_numbers_enabled" qualifiers="const"> + <return type="bool"> + </return> + <description> + Returns true if line numbers are enabled. + </description> + </method> + <method name="set_highlight_all_occurrences"> + <argument index="0" name="enable" type="bool"> + </argument> + <description> + Set to enable highlighting all occurrences of the current selection. + </description> + </method> + <method name="is_highlight_all_occurrences_enabled" qualifiers="const"> + <return type="bool"> + </return> + <description> + Returns true if highlight all occurrences is enabled. + </description> + </method> <method name="set_syntax_coloring"> <argument index="0" name="enable" type="bool"> </argument> @@ -39489,6 +39517,8 @@ </theme_item> <theme_item name="completion_existing_color" type="Color"> </theme_item> + <theme_item name="completion_font_color" type="Color"> + </theme_item> <theme_item name="completion_lines" type="int"> </theme_item> <theme_item name="completion_max_width" type="int"> @@ -39509,18 +39539,28 @@ </theme_item> <theme_item name="font_color_selected" type="Color"> </theme_item> + <theme_item name="function_color" type="Color"> + </theme_item> + <theme_item name="line_number_color" type="Color"> + </theme_item> <theme_item name="line_spacing" type="int"> </theme_item> <theme_item name="mark_color" type="Color"> </theme_item> + <theme_item name="member_variable_color" type="Color"> + </theme_item> <theme_item name="normal" type="StyleBox"> </theme_item> + <theme_item name="number_color" type="Color"> + </theme_item> <theme_item name="selection_color" type="Color"> </theme_item> <theme_item name="symbol_color" type="Color"> </theme_item> <theme_item name="tab" type="Texture"> </theme_item> + <theme_item name="word_highlighted_color" type="Color"> + </theme_item> </theme_items> </class> <class name="Texture" inherits="Resource" category="Core"> |