2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "TextEdit" inherits= "Control" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
Multiline text editing control.
</brief_description>
<description >
TextEdit is meant for editing large, multiline text. It also has facilities for editing code, such as syntax highlighting support and multiple levels of undo/redo.
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_color_region" >
<return type= "void" >
</return>
<argument index= "0" name= "begin_key" type= "String" >
</argument>
<argument index= "1" name= "end_key" type= "String" >
</argument>
<argument index= "2" name= "color" type= "Color" >
</argument>
<argument index= "3" name= "line_only" type= "bool" default= "false" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Adds color region (given the delimiters) and its colors.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "add_keyword_color" >
<return type= "void" >
</return>
<argument index= "0" name= "keyword" type= "String" >
</argument>
<argument index= "1" name= "color" type= "Color" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Adds a [code]keyword[/code] and its [Color].
2017-09-12 20:42:36 +00:00
</description>
</method>
2017-11-24 08:16:27 +00:00
<method name= "can_fold" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2019-04-24 07:59:17 +00:00
Returns if the given line is foldable, that is, it has indented lines right below it.
2017-11-24 08:16:27 +00:00
</description>
</method>
2019-06-24 08:39:59 +00:00
<method name= "center_viewport_to_cursor" >
<return type= "void" >
</return>
<description >
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "clear_colors" >
<return type= "void" >
</return>
<description >
2019-10-20 12:37:36 +00:00
Clears all custom syntax coloring information previously added with [method add_color_region] or [method add_keyword_color].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "clear_undo_history" >
<return type= "void" >
</return>
<description >
2019-06-13 09:12:52 +00:00
Clears the undo history.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "copy" >
<return type= "void" >
</return>
<description >
2019-06-13 09:12:52 +00:00
Copy's the current text selection.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "cursor_get_column" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the column the editing cursor is at.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "cursor_get_line" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the line the editing cursor is at.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "cursor_set_column" >
<return type= "void" >
</return>
<argument index= "0" name= "column" type= "int" >
</argument>
<argument index= "1" name= "adjust_viewport" type= "bool" default= "true" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Moves the cursor at the specified [code]column[/code] index.
2019-11-02 11:14:15 +00:00
If [code]adjust_viewport[/code] is set to [code]true[/code], the viewport will center at the cursor position after the move occurs.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "cursor_set_line" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<argument index= "1" name= "adjust_viewport" type= "bool" default= "true" >
</argument>
2017-11-24 08:16:27 +00:00
<argument index= "2" name= "can_be_hidden" type= "bool" default= "true" >
</argument>
2018-05-15 19:53:42 +00:00
<argument index= "3" name= "wrap_index" type= "int" default= "0" >
</argument>
2017-09-12 20:42:36 +00:00
<description >
2019-06-13 09:12:52 +00:00
Moves the cursor at the specified [code]line[/code] index.
2019-11-02 11:14:15 +00:00
If [code]adjust_viewport[/code] is set to [code]true[/code], the viewport will center at the cursor position after the move occurs.
If [code]can_be_hidden[/code] is set to [code]true[/code], the specified [code]line[/code] can be hidden using [method set_line_as_hidden].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "cut" >
<return type= "void" >
</return>
<description >
2019-06-13 09:12:52 +00:00
Cut's the current selection.
2017-09-12 20:42:36 +00:00
</description>
</method>
2017-12-16 19:34:16 +00:00
<method name= "deselect" >
<return type= "void" >
</return>
<description >
2019-06-13 09:12:52 +00:00
Deselects the current selection.
2017-12-16 19:34:16 +00:00
</description>
</method>
2017-11-24 08:16:27 +00:00
<method name= "fold_all_lines" >
<return type= "void" >
</return>
<description >
2019-04-24 07:59:17 +00:00
Folds all lines that are possible to be folded (see [method can_fold]).
2017-11-24 08:16:27 +00:00
</description>
</method>
<method name= "fold_line" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2019-04-24 07:59:17 +00:00
Folds the given line, if possible (see [method can_fold]).
2017-11-24 08:16:27 +00:00
</description>
</method>
2018-05-30 12:02:51 +00:00
<method name= "get_breakpoints" qualifiers= "const" >
<return type= "Array" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns an array containing the line number of each breakpoint.
2018-05-30 12:02:51 +00:00
</description>
</method>
2018-04-10 08:12:42 +00:00
<method name= "get_keyword_color" qualifiers= "const" >
<return type= "Color" >
</return>
<argument index= "0" name= "keyword" type= "String" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Returns the [Color] of the specified [code]keyword[/code].
2018-04-10 08:12:42 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "get_line" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2019-05-24 02:15:43 +00:00
Returns the text of a specific line.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_line_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the amount of total lines in the text.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_menu" qualifiers= "const" >
<return type= "PopupMenu" >
</return>
<description >
2019-04-24 07:59:17 +00:00
Returns the [PopupMenu] of this [TextEdit]. By default, this menu is displayed when right-clicking on the [TextEdit].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_selection_from_column" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the selection begin column.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_selection_from_line" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the selection begin line.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_selection_text" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the text inside the selection.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_selection_to_column" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the selection end column.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_selection_to_line" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns the selection end line.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_word_under_cursor" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2019-06-13 09:12:52 +00:00
Returns a [String] text with the word under the mouse cursor location.
2017-09-12 20:42:36 +00:00
</description>
</method>
2018-04-10 08:12:42 +00:00
<method name= "has_keyword_color" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "keyword" type= "String" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Returns whether the specified [code]keyword[/code] has a color set to it or not.
2018-04-10 08:12:42 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "insert_text_at_cursor" >
<return type= "void" >
</return>
<argument index= "0" name= "text" type= "String" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Insert the specified text at the cursor position.
2017-09-12 20:42:36 +00:00
</description>
</method>
2017-11-24 08:16:27 +00:00
<method name= "is_folded" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Returns whether the line at the specified index is folded or not.
2017-11-24 08:16:27 +00:00
</description>
</method>
<method name= "is_line_hidden" qualifiers= "const" >
<return type= "bool" >
</return>
2018-01-03 12:45:03 +00:00
<argument index= "0" name= "line" type= "int" >
2017-11-24 08:16:27 +00:00
</argument>
<description >
2019-06-13 09:12:52 +00:00
Returns whether the line at the specified index is hidden or not.
2017-11-24 08:16:27 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "is_selection_active" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2019-05-24 02:15:43 +00:00
Returns [code]true[/code] if the selection is active.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "menu_option" >
<return type= "void" >
</return>
<argument index= "0" name= "option" type= "int" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Triggers a right-click menu action by the specified index. See [enum MenuItems] for a list of available indexes.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "paste" >
<return type= "void" >
</return>
<description >
Paste the current selection.
</description>
</method>
<method name= "redo" >
<return type= "void" >
</return>
<description >
Perform redo operation.
</description>
</method>
2018-05-30 12:02:51 +00:00
<method name= "remove_breakpoints" >
<return type= "void" >
</return>
<description >
2019-06-21 23:04:47 +00:00
Removes all the breakpoints. This will not fire the [signal breakpoint_toggled] signal.
2018-05-30 12:02:51 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "search" qualifiers= "const" >
2020-02-25 17:10:58 +00:00
<return type= "PackedInt32Array" >
2017-09-12 20:42:36 +00:00
</return>
<argument index= "0" name= "key" type= "String" >
</argument>
<argument index= "1" name= "flags" type= "int" >
</argument>
<argument index= "2" name= "from_line" type= "int" >
</argument>
<argument index= "3" name= "from_column" type= "int" >
</argument>
<description >
2019-11-08 07:33:48 +00:00
Perform a search inside the text. Search flags can be specified in the [enum SearchFlags] enum.
2020-02-25 17:10:58 +00:00
Returns an empty [code]PackedInt32Array[/code] if no result was found. Otherwise, the result line and column can be accessed at indices specified in the [enum SearchResult] enum, e.g:
2019-10-31 11:35:23 +00:00
[codeblock]
var result = search(key, flags, line, column)
2019-11-08 07:33:48 +00:00
if result.size() > 0:
2020-01-23 17:41:49 +00:00
# Result found.
2019-10-31 11:35:23 +00:00
var res_line = result[TextEdit.SEARCH_RESULT_LINE]
var res_column = result[TextEdit.SEARCH_RESULT_COLUMN]
[/codeblock]
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "select" >
<return type= "void" >
</return>
<argument index= "0" name= "from_line" type= "int" >
</argument>
<argument index= "1" name= "from_column" type= "int" >
</argument>
<argument index= "2" name= "to_line" type= "int" >
</argument>
<argument index= "3" name= "to_column" type= "int" >
</argument>
<description >
Perform selection, from line/column to line/column.
</description>
</method>
<method name= "select_all" >
<return type= "void" >
</return>
<description >
Select all the text.
</description>
</method>
2017-11-24 08:16:27 +00:00
<method name= "set_line_as_hidden" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<argument index= "1" name= "enable" type= "bool" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
If [code]true[/code], hides the line of the specified index.
2017-11-24 08:16:27 +00:00
</description>
</method>
2017-12-09 23:43:30 +00:00
<method name= "toggle_fold_line" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
Toggle the folding of the code block at the given line.
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "undo" >
<return type= "void" >
</return>
<description >
Perform undo operation.
</description>
</method>
2017-11-24 08:16:27 +00:00
<method name= "unfold_line" >
<return type= "void" >
</return>
<argument index= "0" name= "line" type= "int" >
</argument>
<description >
2019-04-24 07:59:17 +00:00
Unfolds the given line, if folded.
2017-11-24 08:16:27 +00:00
</description>
</method>
<method name= "unhide_all_lines" >
<return type= "void" >
</return>
<description >
2019-06-18 13:07:31 +00:00
Unhide all lines that were previously set to hidden by [method set_line_as_hidden].
2017-11-24 08:16:27 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
</methods>
<members >
2019-06-29 10:38:01 +00:00
<member name= "breakpoint_gutter" type= "bool" setter= "set_breakpoint_gutter_enabled" getter= "is_breakpoint_gutter_enabled" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the breakpoint gutter is visible.
2018-05-30 12:02:51 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "caret_blink" type= "bool" setter= "cursor_set_blink_enabled" getter= "cursor_get_blink_enabled" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the caret (visual cursor) blinks.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "caret_blink_speed" type= "float" setter= "cursor_set_blink_speed" getter= "cursor_get_blink_speed" default= "0.65" >
2017-12-20 01:36:47 +00:00
Duration (in seconds) of a caret's blinking cycle.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "caret_block_mode" type= "bool" setter= "cursor_set_block_mode" getter= "cursor_is_block_mode" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the caret displays as a rectangle.
If [code]false[/code], the caret displays as a bar.
2017-12-20 01:36:47 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "caret_moving_by_right_click" type= "bool" setter= "set_right_click_moves_caret" getter= "is_right_click_moving_caret" default= "true" >
2019-06-21 23:04:47 +00:00
If [code]true[/code], a right-click moves the cursor at the mouse position before displaying the context menu.
2018-12-20 12:46:54 +00:00
If [code]false[/code], the context menu disregards mouse location.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "context_menu_enabled" type= "bool" setter= "set_context_menu_enabled" getter= "is_context_menu_enabled" default= "true" >
2019-06-21 23:04:47 +00:00
If [code]true[/code], a right-click displays the context menu.
2017-11-13 08:24:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "draw_spaces" type= "bool" setter= "set_draw_spaces" getter= "is_drawing_spaces" default= "false" >
2019-05-01 09:31:10 +00:00
If [code]true[/code], the "space" character will have a visible representation.
</member>
2019-06-29 10:38:01 +00:00
<member name= "draw_tabs" type= "bool" setter= "set_draw_tabs" getter= "is_drawing_tabs" default= "false" >
2019-05-21 11:26:37 +00:00
If [code]true[/code], the "tab" character will have a visible representation.
</member>
2019-09-24 11:34:03 +00:00
<member name= "focus_mode" type= "int" setter= "set_focus_mode" getter= "get_focus_mode" override= "true" enum= "Control.FocusMode" default= "2" />
2019-06-29 10:38:01 +00:00
<member name= "fold_gutter" type= "bool" setter= "set_draw_fold_gutter" getter= "is_drawing_fold_gutter" default= "false" >
2019-04-24 07:59:17 +00:00
If [code]true[/code], the fold gutter is visible. This enables folding groups of indented lines.
</member>
2019-06-29 10:38:01 +00:00
<member name= "hiding_enabled" type= "bool" setter= "set_hiding_enabled" getter= "is_hiding_enabled" default= "false" >
2019-06-18 13:07:31 +00:00
If [code]true[/code], all lines that have been set to hidden by [method set_line_as_hidden], will not be visible.
2017-11-24 08:16:27 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "highlight_all_occurrences" type= "bool" setter= "set_highlight_all_occurrences" getter= "is_highlight_all_occurrences_enabled" default= "false" >
2019-06-13 09:12:52 +00:00
If [code]true[/code], all occurrences of the selected text will be highlighted.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "highlight_current_line" type= "bool" setter= "set_highlight_current_line" getter= "is_highlight_current_line_enabled" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the line containing the cursor is highlighted.
2017-10-24 17:22:37 +00:00
</member>
2019-08-22 12:49:30 +00:00
<member name= "minimap_draw" type= "bool" setter= "draw_minimap" getter= "is_drawing_minimap" default= "false" >
</member>
<member name= "minimap_width" type= "int" setter= "set_minimap_width" getter= "get_minimap_width" default= "80" >
</member>
2019-09-24 11:34:03 +00:00
<member name= "mouse_default_cursor_shape" type= "int" setter= "set_default_cursor_shape" getter= "get_default_cursor_shape" override= "true" enum= "Control.CursorShape" default= "1" />
2019-06-29 10:38:01 +00:00
<member name= "override_selected_font_color" type= "bool" setter= "set_override_selected_font_color" getter= "is_overriding_selected_font_color" default= "false" >
2017-10-21 10:02:08 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "readonly" type= "bool" setter= "set_readonly" getter= "is_readonly" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], read-only mode is enabled. Existing text cannot be modified and new text cannot be added.
2017-09-12 20:42:36 +00:00
</member>
2020-01-12 13:30:21 +00:00
<member name= "scroll_horizontal" type= "int" setter= "set_h_scroll" getter= "get_h_scroll" default= "0" >
The current horizontal scroll value.
</member>
<member name= "scroll_vertical" type= "float" setter= "set_v_scroll" getter= "get_v_scroll" default= "0.0" >
The current vertical scroll value.
</member>
2019-09-24 09:44:48 +00:00
<member name= "selecting_enabled" type= "bool" setter= "set_selecting_enabled" getter= "is_selecting_enabled" default= "true" >
</member>
<member name= "shortcut_keys_enabled" type= "bool" setter= "set_shortcut_keys_enabled" getter= "is_shortcut_keys_enabled" default= "true" >
</member>
2019-06-29 10:38:01 +00:00
<member name= "show_line_numbers" type= "bool" setter= "set_show_line_numbers" getter= "is_show_line_numbers_enabled" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], line numbers are displayed to the left of the text.
2017-11-09 20:46:29 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "smooth_scrolling" type= "bool" setter= "set_smooth_scroll_enable" getter= "is_smooth_scroll_enabled" default= "false" >
2019-06-13 09:12:52 +00:00
If [code]true[/code], sets the [code]step[/code] of the scrollbars to [code]0.25[/code] which results in smoother scrolling.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "syntax_highlighting" type= "bool" setter= "set_syntax_coloring" getter= "is_syntax_coloring_enabled" default= "false" >
2019-06-13 09:12:52 +00:00
If [code]true[/code], any custom color properties that have been set for this [TextEdit] will be visible.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "text" type= "String" setter= "set_text" getter= "get_text" default= """" >
2017-11-13 08:24:36 +00:00
String value of the [TextEdit].
</member>
2019-06-29 10:38:01 +00:00
<member name= "v_scroll_speed" type= "float" setter= "set_v_scroll_speed" getter= "get_v_scroll_speed" default= "80.0" >
2019-04-12 12:04:15 +00:00
Vertical scroll sensitivity.
2018-01-11 22:38:35 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "wrap_enabled" type= "bool" setter= "set_wrap_enabled" getter= "is_wrap_enabled" default= "false" >
2019-04-12 12:04:15 +00:00
If [code]true[/code], enables text wrapping when it goes beyond the edge of what is visible.
2017-09-12 20:42:36 +00:00
</member>
</members>
<signals >
<signal name= "breakpoint_toggled" >
<argument index= "0" name= "row" type= "int" >
</argument>
<description >
Emitted when a breakpoint is placed via the breakpoint gutter.
</description>
</signal>
<signal name= "cursor_changed" >
<description >
Emitted when the cursor changes.
</description>
</signal>
2019-04-23 19:39:09 +00:00
<signal name= "info_clicked" >
<argument index= "0" name= "row" type= "int" >
</argument>
<argument index= "1" name= "info" type= "String" >
</argument>
<description >
2019-06-13 09:12:52 +00:00
Emitted when the info icon is clicked.
2019-04-23 19:39:09 +00:00
</description>
</signal>
2017-09-12 20:42:36 +00:00
<signal name= "request_completion" >
<description >
</description>
</signal>
<signal name= "symbol_lookup" >
<argument index= "0" name= "symbol" type= "String" >
</argument>
<argument index= "1" name= "row" type= "int" >
</argument>
<argument index= "2" name= "column" type= "int" >
</argument>
<description >
</description>
</signal>
2020-03-13 16:16:44 +00:00
<signal name= "symbol_validate" >
<argument index= "0" name= "symbol" type= "String" >
</argument>
<description >
</description>
</signal>
2017-09-12 20:42:36 +00:00
<signal name= "text_changed" >
<description >
Emitted when the text changes.
</description>
</signal>
</signals>
<constants >
2017-11-24 22:16:30 +00:00
<constant name= "SEARCH_MATCH_CASE" value= "1" enum= "SearchFlags" >
2017-09-12 20:42:36 +00:00
Match case when searching.
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "SEARCH_WHOLE_WORDS" value= "2" enum= "SearchFlags" >
2017-09-12 20:42:36 +00:00
Match whole words when searching.
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "SEARCH_BACKWARDS" value= "4" enum= "SearchFlags" >
2017-09-12 20:42:36 +00:00
Search from end to beginning.
</constant>
2019-10-31 11:35:23 +00:00
<constant name= "SEARCH_RESULT_COLUMN" value= "0" enum= "SearchResult" >
2019-11-08 07:33:48 +00:00
Used to access the result column from [method search].
2019-10-31 11:35:23 +00:00
</constant>
<constant name= "SEARCH_RESULT_LINE" value= "1" enum= "SearchResult" >
2019-11-08 07:33:48 +00:00
Used to access the result line from [method search].
2019-10-31 11:35:23 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_CUT" value= "0" enum= "MenuItems" >
2019-11-08 07:33:48 +00:00
Cuts (copies and clears) the selected text.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_COPY" value= "1" enum= "MenuItems" >
2017-12-20 01:36:47 +00:00
Copies the selected text.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_PASTE" value= "2" enum= "MenuItems" >
2017-12-20 01:36:47 +00:00
Pastes the clipboard text over the selected text (or at the cursor's position).
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_CLEAR" value= "3" enum= "MenuItems" >
2017-12-20 01:36:47 +00:00
Erases the whole [TextEdit] text.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_SELECT_ALL" value= "4" enum= "MenuItems" >
2017-12-20 01:36:47 +00:00
Selects the whole [TextEdit] text.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "MENU_UNDO" value= "5" enum= "MenuItems" >
2017-12-20 01:36:47 +00:00
Undoes the previous action.
2017-09-12 20:42:36 +00:00
</constant>
2018-12-04 20:57:07 +00:00
<constant name= "MENU_REDO" value= "6" enum= "MenuItems" >
2019-06-13 09:12:52 +00:00
Redoes the previous action.
2018-12-04 20:57:07 +00:00
</constant>
<constant name= "MENU_MAX" value= "7" enum= "MenuItems" >
2019-06-13 09:12:52 +00:00
Represents the size of the [enum MenuItems] enum.
2017-09-12 20:42:36 +00:00
</constant>
</constants>
<theme_items >
2019-10-26 14:40:31 +00:00
<theme_item name= "background_color" type= "Color" default= "Color( 0, 0, 0, 0 )" >
2019-06-25 10:57:35 +00:00
Sets the background [Color] of this [TextEdit]. [member syntax_highlighting] has to be enabled.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "bookmark_color" type= "Color" default= "Color( 0.08, 0.49, 0.98, 1 )" >
2019-06-25 10:57:35 +00:00
Sets the [Color] of the bookmark marker. [member syntax_highlighting] has to be enabled.
2019-05-21 11:26:37 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "brace_mismatch_color" type= "Color" default= "Color( 1, 0.2, 0.2, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "breakpoint_color" type= "Color" default= "Color( 0.8, 0.8, 0.4, 0.2 )" >
2019-06-25 10:57:35 +00:00
Sets the [Color] of the breakpoints. [member breakpoint_gutter] has to be enabled.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "caret_background_color" type= "Color" default= "Color( 0, 0, 0, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "caret_color" type= "Color" default= "Color( 0.88, 0.88, 0.88, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "code_folding_color" type= "Color" default= "Color( 0.8, 0.8, 0.8, 0.8 )" >
2017-12-09 23:43:30 +00:00
</theme_item>
2017-09-12 20:42:36 +00:00
<theme_item name= "completion" type= "StyleBox" >
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "completion_background_color" type= "Color" default= "Color( 0.17, 0.16, 0.2, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "completion_existing_color" type= "Color" default= "Color( 0.87, 0.87, 0.87, 0.13 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "completion_font_color" type= "Color" default= "Color( 0.67, 0.67, 0.67, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "completion_lines" type= "int" default= "7" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "completion_max_width" type= "int" default= "50" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "completion_scroll_color" type= "Color" default= "Color( 1, 1, 1, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "completion_scroll_width" type= "int" default= "3" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "completion_selected_color" type= "Color" default= "Color( 0.26, 0.26, 0.27, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "current_line_color" type= "Color" default= "Color( 0.25, 0.25, 0.26, 0.8 )" >
2019-06-25 10:57:35 +00:00
Sets the [Color] of the breakpoints. [member breakpoint_gutter] has to be enabled.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "executing_line_color" type= "Color" default= "Color( 0.2, 0.8, 0.2, 0.4 )" >
2019-04-30 12:23:59 +00:00
</theme_item>
2017-09-12 20:42:36 +00:00
<theme_item name= "focus" type= "StyleBox" >
</theme_item>
2020-02-12 08:59:06 +00:00
<theme_item name= "fold" type= "Texture2D" >
2019-04-30 12:23:59 +00:00
</theme_item>
2020-02-12 08:59:06 +00:00
<theme_item name= "folded" type= "Texture2D" >
2019-04-30 12:23:59 +00:00
</theme_item>
2017-09-12 20:42:36 +00:00
<theme_item name= "font" type= "Font" >
2019-06-25 10:57:35 +00:00
Sets the default [Font].
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "font_color" type= "Color" default= "Color( 0.88, 0.88, 0.88, 1 )" >
2019-06-25 10:57:35 +00:00
Sets the font [Color].
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "font_color_readonly" type= "Color" default= "Color( 0.88, 0.88, 0.88, 0.5 )" >
2019-06-26 14:02:47 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "font_color_selected" type= "Color" default= "Color( 0, 0, 0, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "function_color" type= "Color" default= "Color( 0.4, 0.64, 0.81, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "line_number_color" type= "Color" default= "Color( 0.67, 0.67, 0.67, 0.4 )" >
2019-06-25 10:57:35 +00:00
Sets the [Color] of the line numbers. [member show_line_numbers] has to be enabled.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "line_spacing" type= "int" default= "4" >
2019-06-25 10:57:35 +00:00
Sets the spacing between the lines.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "mark_color" type= "Color" default= "Color( 1, 0.4, 0.4, 0.4 )" >
2019-06-25 10:57:35 +00:00
Sets the [Color] of marked text.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "member_variable_color" type= "Color" default= "Color( 0.9, 0.31, 0.35, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
<theme_item name= "normal" type= "StyleBox" >
2019-06-25 10:57:35 +00:00
Sets the [StyleBox] of this [TextEdit].
2017-09-12 20:42:36 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "number_color" type= "Color" default= "Color( 0.92, 0.58, 0.2, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2017-12-07 07:23:08 +00:00
<theme_item name= "read_only" type= "StyleBox" >
2019-06-25 10:57:35 +00:00
Sets the [StyleBox] of this [TextEdit] when [member readonly] is enabled.
2017-12-07 07:23:08 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "safe_line_number_color" type= "Color" default= "Color( 0.67, 0.78, 0.67, 0.6 )" >
2018-07-26 09:56:21 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "selection_color" type= "Color" default= "Color( 0.49, 0.49, 0.49, 1 )" >
2019-06-25 10:57:35 +00:00
Sets the highlight [Color] of text selections.
2017-09-12 20:42:36 +00:00
</theme_item>
2020-02-12 08:59:06 +00:00
<theme_item name= "space" type= "Texture2D" >
2019-05-21 11:26:37 +00:00
</theme_item>
2019-07-09 07:13:00 +00:00
<theme_item name= "symbol_color" type= "Color" default= "Color( 0.94, 0.94, 0.94, 1 )" >
2017-09-12 20:42:36 +00:00
</theme_item>
2020-02-12 08:59:06 +00:00
<theme_item name= "tab" type= "Texture2D" >
Sets a custom [Texture2D] for tab text characters.
2017-09-12 20:42:36 +00:00
</theme_item>
2019-06-29 10:38:01 +00:00
<theme_item name= "word_highlighted_color" type= "Color" default= "Color( 0.8, 0.9, 0.9, 0.15 )" >
2019-06-25 10:57:35 +00:00
Sets the highlight [Color] of multiple occurrences. [member highlight_all_occurrences] has to be enabled.
2017-09-12 20:42:36 +00:00
</theme_item>
</theme_items>
</class>