Struct TextEdit
#[repr(C)]pub struct TextEdit { /* private fields */ }
Expand description
Godot class TextEdit.
Inherits Control
.
Related symbols:
text_edit
: sidecar module with related enum/flag typesITextEdit
: virtual methodsSignalsOfTextEdit
: signal collection
See also Godot docs for TextEdit
.
§Construction
This class is manually managed. You can create a new instance using TextEdit::new_alloc()
.
Do not forget to call free()
or hand over ownership to Godot.
Implementations§
§impl TextEdit
impl TextEdit
pub fn has_ime_text(&self) -> bool
pub fn cancel_ime(&mut self)
pub fn apply_ime(&mut self)
pub fn set_editable(&mut self, enabled: bool)
pub fn is_editable(&self) -> bool
pub fn set_text_direction(&mut self, direction: TextDirection)
pub fn get_text_direction(&self) -> TextDirection
pub fn set_language(&mut self, language: impl AsArg<GString>)
pub fn get_language(&self) -> GString
pub fn set_structured_text_bidi_override( &mut self, parser: StructuredTextParser, )
pub fn get_structured_text_bidi_override(&self) -> StructuredTextParser
pub fn set_structured_text_bidi_override_options( &mut self, args: &Array<Variant>, )
pub fn get_structured_text_bidi_override_options(&self) -> Array<Variant>
pub fn set_tab_size(&mut self, size: i32)
pub fn get_tab_size(&self) -> i32
pub fn set_indent_wrapped_lines(&mut self, enabled: bool)
pub fn is_indent_wrapped_lines(&self) -> bool
pub fn set_overtype_mode_enabled(&mut self, enabled: bool)
pub fn is_overtype_mode_enabled(&self) -> bool
pub fn set_shortcut_keys_enabled(&mut self, enabled: bool)
pub fn is_shortcut_keys_enabled(&self) -> bool
pub fn set_virtual_keyboard_enabled(&mut self, enabled: bool)
pub fn is_virtual_keyboard_enabled(&self) -> bool
pub fn set_middle_mouse_paste_enabled(&mut self, enabled: bool)
pub fn is_middle_mouse_paste_enabled(&self) -> bool
pub fn set_empty_selection_clipboard_enabled(&mut self, enabled: bool)
pub fn is_empty_selection_clipboard_enabled(&self) -> bool
pub fn clear(&mut self)
pub fn set_text(&mut self, text: impl AsArg<GString>)
pub fn get_text(&self) -> GString
pub fn get_line_count(&self) -> i32
pub fn set_placeholder(&mut self, text: impl AsArg<GString>)
pub fn get_placeholder(&self) -> GString
pub fn set_line(&mut self, line: i32, new_text: impl AsArg<GString>)
pub fn get_line(&self, line: i32) -> GString
pub fn get_line_with_ime(&self, line: i32) -> GString
pub fn get_line_width(&self, line: i32) -> i32
pub fn get_line_width(&self, line: i32) -> i32
To set the default parameters, use Self::get_line_width_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_line_width_ex<'a>(&'a self, line: i32) -> ExGetLineWidth<'a>
pub fn get_line_height(&self) -> i32
pub fn get_indent_level(&self, line: i32) -> i32
pub fn get_first_non_whitespace_column(&self, line: i32) -> i32
pub fn swap_lines(&mut self, from_line: i32, to_line: i32)
pub fn insert_line_at(&mut self, line: i32, text: impl AsArg<GString>)
pub fn remove_line_at(&mut self, line: i32)
pub fn remove_line_at(&mut self, line: i32)
To set the default parameters, use Self::remove_line_at_ex
and its builder methods. See the book for detailed usage instructions.
pub fn remove_line_at_ex<'a>(&'a mut self, line: i32) -> ExRemoveLineAt<'a>
pub fn insert_text_at_caret(&mut self, text: impl AsArg<GString>)
pub fn insert_text_at_caret(&mut self, text: impl AsArg<GString>)
To set the default parameters, use Self::insert_text_at_caret_ex
and its builder methods. See the book for detailed usage instructions.
pub fn insert_text_at_caret_ex<'a>( &'a mut self, text: impl AsArg<GString> + 'a, ) -> ExInsertTextAtCaret<'a>
pub fn insert_text(&mut self, text: impl AsArg<GString>, line: i32, column: i32)
pub fn insert_text(&mut self, text: impl AsArg<GString>, line: i32, column: i32)
To set the default parameters, use Self::insert_text_ex
and its builder methods. See the book for detailed usage instructions.
pub fn insert_text_ex<'a>( &'a mut self, text: impl AsArg<GString> + 'a, line: i32, column: i32, ) -> ExInsertText<'a>
pub fn remove_text( &mut self, from_line: i32, from_column: i32, to_line: i32, to_column: i32, )
pub fn get_next_visible_line_offset_from( &self, line: i32, visible_amount: i32, ) -> i32
pub fn get_next_visible_line_index_offset_from( &self, line: i32, wrap_index: i32, visible_amount: i32, ) -> Vector2i
pub fn backspace(&mut self)
pub fn backspace(&mut self)
To set the default parameters, use Self::backspace_ex
and its builder methods. See the book for detailed usage instructions.
pub fn backspace_ex<'a>(&'a mut self) -> ExBackspace<'a>
pub fn cut(&mut self)
pub fn cut(&mut self)
To set the default parameters, use Self::cut_ex
and its builder methods. See the book for detailed usage instructions.
pub fn cut_ex<'a>(&'a mut self) -> ExCut<'a>
pub fn copy(&mut self)
pub fn copy(&mut self)
To set the default parameters, use Self::copy_ex
and its builder methods. See the book for detailed usage instructions.
pub fn copy_ex<'a>(&'a mut self) -> ExCopy<'a>
pub fn paste(&mut self)
pub fn paste(&mut self)
To set the default parameters, use Self::paste_ex
and its builder methods. See the book for detailed usage instructions.
pub fn paste_ex<'a>(&'a mut self) -> ExPaste<'a>
pub fn paste_primary_clipboard(&mut self)
pub fn paste_primary_clipboard(&mut self)
To set the default parameters, use Self::paste_primary_clipboard_ex
and its builder methods. See the book for detailed usage instructions.
pub fn paste_primary_clipboard_ex<'a>( &'a mut self, ) -> ExPastePrimaryClipboard<'a>
pub fn start_action(&mut self, action: EditAction)
pub fn end_action(&mut self)
pub fn begin_complex_operation(&mut self)
pub fn end_complex_operation(&mut self)
pub fn has_undo(&self) -> bool
pub fn has_redo(&self) -> bool
pub fn undo(&mut self)
pub fn redo(&mut self)
pub fn clear_undo_history(&mut self)
pub fn tag_saved_version(&mut self)
pub fn get_version(&self) -> u32
pub fn get_saved_version(&self) -> u32
pub fn set_search_text(&mut self, search_text: impl AsArg<GString>)
pub fn set_search_flags(&mut self, flags: SearchFlags)
pub fn search( &self, text: impl AsArg<GString>, flags: SearchFlags, from_line: i32, from_column: i32, ) -> Vector2i
pub fn set_tooltip_request_func(&mut self, callback: &Callable)
pub fn get_local_mouse_pos(&self) -> Vector2
pub fn get_word_at_pos(&self, position: Vector2) -> GString
pub fn get_line_column_at_pos(&self, position: Vector2i) -> Vector2i
pub fn get_line_column_at_pos(&self, position: Vector2i) -> Vector2i
To set the default parameters, use Self::get_line_column_at_pos_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_line_column_at_pos_ex<'a>( &'a self, position: Vector2i, ) -> ExGetLineColumnAtPos<'a>
pub fn get_pos_at_line_column(&self, line: i32, column: i32) -> Vector2i
pub fn get_rect_at_line_column(&self, line: i32, column: i32) -> Rect2i
pub fn get_minimap_line_at_pos(&self, position: Vector2i) -> i32
pub fn is_dragging_cursor(&self) -> bool
pub fn is_mouse_over_selection(&self, edges: bool) -> bool
pub fn is_mouse_over_selection(&self, edges: bool) -> bool
To set the default parameters, use Self::is_mouse_over_selection_ex
and its builder methods. See the book for detailed usage instructions.
pub fn is_mouse_over_selection_ex<'a>( &'a self, edges: bool, ) -> ExIsMouseOverSelection<'a>
pub fn set_caret_type(&mut self, type_: CaretType)
pub fn get_caret_type(&self) -> CaretType
pub fn set_caret_blink_enabled(&mut self, enable: bool)
pub fn is_caret_blink_enabled(&self) -> bool
pub fn set_caret_blink_interval(&mut self, interval: f32)
pub fn get_caret_blink_interval(&self) -> f32
pub fn set_draw_caret_when_editable_disabled(&mut self, enable: bool)
pub fn is_drawing_caret_when_editable_disabled(&self) -> bool
pub fn set_move_caret_on_right_click_enabled(&mut self, enable: bool)
pub fn is_move_caret_on_right_click_enabled(&self) -> bool
pub fn set_caret_mid_grapheme_enabled(&mut self, enabled: bool)
pub fn is_caret_mid_grapheme_enabled(&self) -> bool
pub fn set_multiple_carets_enabled(&mut self, enabled: bool)
pub fn is_multiple_carets_enabled(&self) -> bool
pub fn add_caret(&mut self, line: i32, column: i32) -> i32
pub fn remove_caret(&mut self, caret: i32)
pub fn remove_secondary_carets(&mut self)
pub fn get_caret_count(&self) -> i32
pub fn add_caret_at_carets(&mut self, below: bool)
pub fn get_sorted_carets(&self) -> PackedArray<i32>
pub fn get_sorted_carets(&self) -> PackedArray<i32>
To set the default parameters, use Self::get_sorted_carets_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_sorted_carets_ex<'a>(&'a self) -> ExGetSortedCarets<'a>
pub fn collapse_carets(
&mut self,
from_line: i32,
from_column: i32,
to_line: i32,
to_column: i32,
)
pub fn collapse_carets( &mut self, from_line: i32, from_column: i32, to_line: i32, to_column: i32, )
To set the default parameters, use Self::collapse_carets_ex
and its builder methods. See the book for detailed usage instructions.
pub fn collapse_carets_ex<'a>( &'a mut self, from_line: i32, from_column: i32, to_line: i32, to_column: i32, ) -> ExCollapseCarets<'a>
pub fn merge_overlapping_carets(&mut self)
pub fn begin_multicaret_edit(&mut self)
pub fn end_multicaret_edit(&mut self)
pub fn is_in_mulitcaret_edit(&self) -> bool
pub fn multicaret_edit_ignore_caret(&self, caret_index: i32) -> bool
pub fn is_caret_visible(&self) -> bool
pub fn is_caret_visible(&self) -> bool
To set the default parameters, use Self::is_caret_visible_ex
and its builder methods. See the book for detailed usage instructions.
pub fn is_caret_visible_ex<'a>(&'a self) -> ExIsCaretVisible<'a>
pub fn get_caret_draw_pos(&self) -> Vector2
pub fn get_caret_draw_pos(&self) -> Vector2
To set the default parameters, use Self::get_caret_draw_pos_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_caret_draw_pos_ex<'a>(&'a self) -> ExGetCaretDrawPos<'a>
pub fn set_caret_line(&mut self, line: i32)
pub fn set_caret_line(&mut self, line: i32)
To set the default parameters, use Self::set_caret_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_caret_line_ex<'a>(&'a mut self, line: i32) -> ExSetCaretLine<'a>
pub fn get_caret_line(&self) -> i32
pub fn get_caret_line(&self) -> i32
To set the default parameters, use Self::get_caret_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_caret_line_ex<'a>(&'a self) -> ExGetCaretLine<'a>
pub fn set_caret_column(&mut self, column: i32)
pub fn set_caret_column(&mut self, column: i32)
To set the default parameters, use Self::set_caret_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_caret_column_ex<'a>( &'a mut self, column: i32, ) -> ExSetCaretColumn<'a>
pub fn get_caret_column(&self) -> i32
pub fn get_caret_column(&self) -> i32
To set the default parameters, use Self::get_caret_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_caret_column_ex<'a>(&'a self) -> ExGetCaretColumn<'a>
pub fn get_caret_wrap_index(&self) -> i32
pub fn get_caret_wrap_index(&self) -> i32
To set the default parameters, use Self::get_caret_wrap_index_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_caret_wrap_index_ex<'a>(&'a self) -> ExGetCaretWrapIndex<'a>
pub fn get_word_under_caret(&self) -> GString
pub fn get_word_under_caret(&self) -> GString
To set the default parameters, use Self::get_word_under_caret_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_word_under_caret_ex<'a>(&'a self) -> ExGetWordUnderCaret<'a>
pub fn set_use_default_word_separators(&mut self, enabled: bool)
pub fn is_default_word_separators_enabled(&self) -> bool
pub fn set_use_custom_word_separators(&mut self, enabled: bool)
pub fn is_custom_word_separators_enabled(&self) -> bool
pub fn set_custom_word_separators( &mut self, custom_word_separators: impl AsArg<GString>, )
pub fn get_custom_word_separators(&self) -> GString
pub fn set_selecting_enabled(&mut self, enable: bool)
pub fn is_selecting_enabled(&self) -> bool
pub fn set_deselect_on_focus_loss_enabled(&mut self, enable: bool)
pub fn is_deselect_on_focus_loss_enabled(&self) -> bool
pub fn set_drag_and_drop_selection_enabled(&mut self, enable: bool)
pub fn is_drag_and_drop_selection_enabled(&self) -> bool
pub fn set_selection_mode(&mut self, mode: SelectionMode)
pub fn get_selection_mode(&self) -> SelectionMode
pub fn select_all(&mut self)
pub fn select_word_under_caret(&mut self)
pub fn select_word_under_caret(&mut self)
To set the default parameters, use Self::select_word_under_caret_ex
and its builder methods. See the book for detailed usage instructions.
pub fn select_word_under_caret_ex<'a>( &'a mut self, ) -> ExSelectWordUnderCaret<'a>
pub fn add_selection_for_next_occurrence(&mut self)
pub fn skip_selection_for_next_occurrence(&mut self)
pub fn select(
&mut self,
origin_line: i32,
origin_column: i32,
caret_line: i32,
caret_column: i32,
)
pub fn select( &mut self, origin_line: i32, origin_column: i32, caret_line: i32, caret_column: i32, )
To set the default parameters, use Self::select_ex
and its builder methods. See the book for detailed usage instructions.
pub fn select_ex<'a>( &'a mut self, origin_line: i32, origin_column: i32, caret_line: i32, caret_column: i32, ) -> ExSelect<'a>
pub fn has_selection(&self) -> bool
pub fn has_selection(&self) -> bool
To set the default parameters, use Self::has_selection_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_selection_ex<'a>(&'a self) -> ExHasSelection<'a>
pub fn get_selected_text(&mut self) -> GString
pub fn get_selected_text(&mut self) -> GString
To set the default parameters, use Self::get_selected_text_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selected_text_ex<'a>(&'a mut self) -> ExGetSelectedText<'a>
pub fn get_selection_at_line_column(&self, line: i32, column: i32) -> i32
pub fn get_selection_at_line_column(&self, line: i32, column: i32) -> i32
To set the default parameters, use Self::get_selection_at_line_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_at_line_column_ex<'a>( &'a self, line: i32, column: i32, ) -> ExGetSelectionAtLineColumn<'a>
pub fn get_line_ranges_from_carets(&self) -> Array<Vector2i>
pub fn get_line_ranges_from_carets(&self) -> Array<Vector2i>
To set the default parameters, use Self::get_line_ranges_from_carets_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_line_ranges_from_carets_ex<'a>( &'a self, ) -> ExGetLineRangesFromCarets<'a>
pub fn get_selection_origin_line(&self) -> i32
pub fn get_selection_origin_line(&self) -> i32
To set the default parameters, use Self::get_selection_origin_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_origin_line_ex<'a>( &'a self, ) -> ExGetSelectionOriginLine<'a>
pub fn get_selection_origin_column(&self) -> i32
pub fn get_selection_origin_column(&self) -> i32
To set the default parameters, use Self::get_selection_origin_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_origin_column_ex<'a>( &'a self, ) -> ExGetSelectionOriginColumn<'a>
pub fn set_selection_origin_line(&mut self, line: i32)
pub fn set_selection_origin_line(&mut self, line: i32)
To set the default parameters, use Self::set_selection_origin_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_selection_origin_line_ex<'a>( &'a mut self, line: i32, ) -> ExSetSelectionOriginLine<'a>
pub fn set_selection_origin_column(&mut self, column: i32)
pub fn set_selection_origin_column(&mut self, column: i32)
To set the default parameters, use Self::set_selection_origin_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_selection_origin_column_ex<'a>( &'a mut self, column: i32, ) -> ExSetSelectionOriginColumn<'a>
pub fn get_selection_from_line(&self) -> i32
pub fn get_selection_from_line(&self) -> i32
To set the default parameters, use Self::get_selection_from_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_from_line_ex<'a>(&'a self) -> ExGetSelectionFromLine<'a>
pub fn get_selection_from_column(&self) -> i32
pub fn get_selection_from_column(&self) -> i32
To set the default parameters, use Self::get_selection_from_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_from_column_ex<'a>( &'a self, ) -> ExGetSelectionFromColumn<'a>
pub fn get_selection_to_line(&self) -> i32
pub fn get_selection_to_line(&self) -> i32
To set the default parameters, use Self::get_selection_to_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_to_line_ex<'a>(&'a self) -> ExGetSelectionToLine<'a>
pub fn get_selection_to_column(&self) -> i32
pub fn get_selection_to_column(&self) -> i32
To set the default parameters, use Self::get_selection_to_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_to_column_ex<'a>(&'a self) -> ExGetSelectionToColumn<'a>
pub fn is_caret_after_selection_origin(&self) -> bool
pub fn is_caret_after_selection_origin(&self) -> bool
To set the default parameters, use Self::is_caret_after_selection_origin_ex
and its builder methods. See the book for detailed usage instructions.
pub fn is_caret_after_selection_origin_ex<'a>( &'a self, ) -> ExIsCaretAfterSelectionOrigin<'a>
pub fn deselect(&mut self)
pub fn deselect(&mut self)
To set the default parameters, use Self::deselect_ex
and its builder methods. See the book for detailed usage instructions.
pub fn deselect_ex<'a>(&'a mut self) -> ExDeselect<'a>
pub fn delete_selection(&mut self)
pub fn delete_selection(&mut self)
To set the default parameters, use Self::delete_selection_ex
and its builder methods. See the book for detailed usage instructions.
pub fn delete_selection_ex<'a>(&'a mut self) -> ExDeleteSelection<'a>
pub fn set_line_wrapping_mode(&mut self, mode: LineWrappingMode)
pub fn get_line_wrapping_mode(&self) -> LineWrappingMode
pub fn set_autowrap_mode(&mut self, autowrap_mode: AutowrapMode)
pub fn get_autowrap_mode(&self) -> AutowrapMode
pub fn is_line_wrapped(&self, line: i32) -> bool
pub fn get_line_wrap_count(&self, line: i32) -> i32
pub fn get_line_wrap_index_at_column(&self, line: i32, column: i32) -> i32
pub fn get_line_wrapped_text(&self, line: i32) -> PackedArray<GString>
pub fn set_smooth_scroll_enabled(&mut self, enable: bool)
pub fn is_smooth_scroll_enabled(&self) -> bool
pub fn get_v_scroll_bar(&self) -> Option<Gd<VScrollBar>>
pub fn get_h_scroll_bar(&self) -> Option<Gd<HScrollBar>>
pub fn set_v_scroll(&mut self, value: f64)
pub fn get_v_scroll(&self) -> f64
pub fn set_h_scroll(&mut self, value: i32)
pub fn get_h_scroll(&self) -> i32
pub fn set_scroll_past_end_of_file_enabled(&mut self, enable: bool)
pub fn is_scroll_past_end_of_file_enabled(&self) -> bool
pub fn set_v_scroll_speed(&mut self, speed: f32)
pub fn get_v_scroll_speed(&self) -> f32
pub fn set_fit_content_height_enabled(&mut self, enabled: bool)
pub fn is_fit_content_height_enabled(&self) -> bool
pub fn set_fit_content_width_enabled(&mut self, enabled: bool)
pub fn is_fit_content_width_enabled(&self) -> bool
pub fn get_scroll_pos_for_line(&self, line: i32) -> f64
pub fn get_scroll_pos_for_line(&self, line: i32) -> f64
To set the default parameters, use Self::get_scroll_pos_for_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_scroll_pos_for_line_ex<'a>( &'a self, line: i32, ) -> ExGetScrollPosForLine<'a>
pub fn set_line_as_first_visible(&mut self, line: i32)
pub fn set_line_as_first_visible(&mut self, line: i32)
To set the default parameters, use Self::set_line_as_first_visible_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_line_as_first_visible_ex<'a>( &'a mut self, line: i32, ) -> ExSetLineAsFirstVisible<'a>
pub fn get_first_visible_line(&self) -> i32
pub fn set_line_as_center_visible(&mut self, line: i32)
pub fn set_line_as_center_visible(&mut self, line: i32)
To set the default parameters, use Self::set_line_as_center_visible_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_line_as_center_visible_ex<'a>( &'a mut self, line: i32, ) -> ExSetLineAsCenterVisible<'a>
pub fn set_line_as_last_visible(&mut self, line: i32)
pub fn set_line_as_last_visible(&mut self, line: i32)
To set the default parameters, use Self::set_line_as_last_visible_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_line_as_last_visible_ex<'a>( &'a mut self, line: i32, ) -> ExSetLineAsLastVisible<'a>
pub fn get_last_full_visible_line(&self) -> i32
pub fn get_last_full_visible_line_wrap_index(&self) -> i32
pub fn get_visible_line_count(&self) -> i32
pub fn get_visible_line_count_in_range( &self, from_line: i32, to_line: i32, ) -> i32
pub fn get_total_visible_line_count(&self) -> i32
pub fn adjust_viewport_to_caret(&mut self)
pub fn adjust_viewport_to_caret(&mut self)
To set the default parameters, use Self::adjust_viewport_to_caret_ex
and its builder methods. See the book for detailed usage instructions.
pub fn adjust_viewport_to_caret_ex<'a>( &'a mut self, ) -> ExAdjustViewportToCaret<'a>
pub fn center_viewport_to_caret(&mut self)
pub fn center_viewport_to_caret(&mut self)
To set the default parameters, use Self::center_viewport_to_caret_ex
and its builder methods. See the book for detailed usage instructions.
pub fn center_viewport_to_caret_ex<'a>( &'a mut self, ) -> ExCenterViewportToCaret<'a>
pub fn set_draw_minimap(&mut self, enabled: bool)
pub fn is_drawing_minimap(&self) -> bool
pub fn set_minimap_width(&mut self, width: i32)
pub fn get_minimap_width(&self) -> i32
pub fn get_minimap_visible_lines(&self) -> i32
pub fn add_gutter(&mut self)
pub fn add_gutter(&mut self)
To set the default parameters, use Self::add_gutter_ex
and its builder methods. See the book for detailed usage instructions.
pub fn add_gutter_ex<'a>(&'a mut self) -> ExAddGutter<'a>
pub fn remove_gutter(&mut self, gutter: i32)
pub fn get_gutter_count(&self) -> i32
pub fn set_gutter_name(&mut self, gutter: i32, name: impl AsArg<GString>)
pub fn get_gutter_name(&self, gutter: i32) -> GString
pub fn set_gutter_type(&mut self, gutter: i32, type_: GutterType)
pub fn get_gutter_type(&self, gutter: i32) -> GutterType
pub fn set_gutter_width(&mut self, gutter: i32, width: i32)
pub fn get_gutter_width(&self, gutter: i32) -> i32
pub fn set_gutter_draw(&mut self, gutter: i32, draw: bool)
pub fn is_gutter_drawn(&self, gutter: i32) -> bool
pub fn set_gutter_clickable(&mut self, gutter: i32, clickable: bool)
pub fn is_gutter_clickable(&self, gutter: i32) -> bool
pub fn set_gutter_overwritable(&mut self, gutter: i32, overwritable: bool)
pub fn is_gutter_overwritable(&self, gutter: i32) -> bool
pub fn merge_gutters(&mut self, from_line: i32, to_line: i32)
pub fn set_gutter_custom_draw(&mut self, column: i32, draw_callback: &Callable)
pub fn get_total_gutter_width(&self) -> i32
pub fn set_line_gutter_metadata( &mut self, line: i32, gutter: i32, metadata: &Variant, )
pub fn get_line_gutter_metadata(&self, line: i32, gutter: i32) -> Variant
pub fn set_line_gutter_text( &mut self, line: i32, gutter: i32, text: impl AsArg<GString>, )
pub fn get_line_gutter_text(&self, line: i32, gutter: i32) -> GString
pub fn set_line_gutter_icon( &mut self, line: i32, gutter: i32, icon: impl AsArg<Option<Gd<Texture2D>>>, )
pub fn get_line_gutter_icon( &self, line: i32, gutter: i32, ) -> Option<Gd<Texture2D>>
pub fn set_line_gutter_item_color( &mut self, line: i32, gutter: i32, color: Color, )
pub fn get_line_gutter_item_color(&self, line: i32, gutter: i32) -> Color
pub fn set_line_gutter_clickable( &mut self, line: i32, gutter: i32, clickable: bool, )
pub fn is_line_gutter_clickable(&self, line: i32, gutter: i32) -> bool
pub fn set_line_background_color(&mut self, line: i32, color: Color)
pub fn get_line_background_color(&self, line: i32) -> Color
pub fn set_syntax_highlighter( &mut self, syntax_highlighter: impl AsArg<Option<Gd<SyntaxHighlighter>>>, )
pub fn get_syntax_highlighter(&self) -> Option<Gd<SyntaxHighlighter>>
pub fn set_highlight_current_line(&mut self, enabled: bool)
pub fn is_highlight_current_line_enabled(&self) -> bool
pub fn set_highlight_all_occurrences(&mut self, enabled: bool)
pub fn is_highlight_all_occurrences_enabled(&self) -> bool
pub fn get_draw_control_chars(&self) -> bool
pub fn set_draw_control_chars(&mut self, enabled: bool)
pub fn set_draw_tabs(&mut self, enabled: bool)
pub fn is_drawing_tabs(&self) -> bool
pub fn set_draw_spaces(&mut self, enabled: bool)
pub fn is_drawing_spaces(&self) -> bool
pub fn adjust_carets_after_edit( &mut self, caret: i32, from_line: i32, from_col: i32, to_line: i32, to_col: i32, )
pub fn get_caret_index_edit_order(&mut self) -> PackedArray<i32>
pub fn get_selection_line(&self) -> i32
pub fn get_selection_line(&self) -> i32
To set the default parameters, use Self::get_selection_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_line_ex<'a>(&'a self) -> ExGetSelectionLine<'a>
pub fn get_selection_column(&self) -> i32
pub fn get_selection_column(&self) -> i32
To set the default parameters, use Self::get_selection_column_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_selection_column_ex<'a>(&'a self) -> ExGetSelectionColumn<'a>
Methods from Deref<Target = Control>§
pub fn accept_event(&mut self)
pub fn get_minimum_size(&self) -> Vector2
pub fn get_combined_minimum_size(&self) -> Vector2
pub fn set_anchors_preset(&mut self, preset: LayoutPreset)
pub fn set_anchors_preset(&mut self, preset: LayoutPreset)
To set the default parameters, use Self::set_anchors_preset_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_anchors_preset_ex<'a>( &'a mut self, preset: LayoutPreset, ) -> ExSetAnchorsPreset<'a>
pub fn set_offsets_preset(&mut self, preset: LayoutPreset)
pub fn set_offsets_preset(&mut self, preset: LayoutPreset)
To set the default parameters, use Self::set_offsets_preset_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_offsets_preset_ex<'a>( &'a mut self, preset: LayoutPreset, ) -> ExSetOffsetsPreset<'a>
pub fn set_anchors_and_offsets_preset(&mut self, preset: LayoutPreset)
pub fn set_anchors_and_offsets_preset(&mut self, preset: LayoutPreset)
To set the default parameters, use Self::set_anchors_and_offsets_preset_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_anchors_and_offsets_preset_ex<'a>( &'a mut self, preset: LayoutPreset, ) -> ExSetAnchorsAndOffsetsPreset<'a>
pub fn set_anchor(&mut self, side: Side, anchor: f32)
pub fn set_anchor(&mut self, side: Side, anchor: f32)
To set the default parameters, use Self::set_anchor_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_anchor_ex<'a>( &'a mut self, side: Side, anchor: f32, ) -> ExSetAnchor<'a>
pub fn get_anchor(&self, side: Side) -> f32
pub fn set_offset(&mut self, side: Side, offset: f32)
pub fn get_offset(&self, offset: Side) -> f32
pub fn set_anchor_and_offset(&mut self, side: Side, anchor: f32, offset: f32)
pub fn set_anchor_and_offset(&mut self, side: Side, anchor: f32, offset: f32)
To set the default parameters, use Self::set_anchor_and_offset_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_anchor_and_offset_ex<'a>( &'a mut self, side: Side, anchor: f32, offset: f32, ) -> ExSetAnchorAndOffset<'a>
pub fn set_begin(&mut self, position: Vector2)
pub fn set_end(&mut self, position: Vector2)
pub fn set_position(&mut self, position: Vector2)
pub fn set_position(&mut self, position: Vector2)
To set the default parameters, use Self::set_position_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_position_ex<'a>(&'a mut self, position: Vector2) -> ExSetPosition<'a>
pub fn set_size(&mut self, size: Vector2)
pub fn set_size(&mut self, size: Vector2)
To set the default parameters, use Self::set_size_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_size_ex<'a>(&'a mut self, size: Vector2) -> ExSetSize<'a>
pub fn reset_size(&mut self)
pub fn set_custom_minimum_size(&mut self, size: Vector2)
pub fn set_global_position(&mut self, position: Vector2)
pub fn set_global_position(&mut self, position: Vector2)
To set the default parameters, use Self::set_global_position_ex
and its builder methods. See the book for detailed usage instructions.
pub fn set_global_position_ex<'a>( &'a mut self, position: Vector2, ) -> ExSetGlobalPosition<'a>
pub fn set_rotation(&mut self, radians: f32)
pub fn set_rotation_degrees(&mut self, degrees: f32)
pub fn set_scale(&mut self, scale: Vector2)
pub fn set_pivot_offset(&mut self, pivot_offset: Vector2)
pub fn get_begin(&self) -> Vector2
pub fn get_end(&self) -> Vector2
pub fn get_position(&self) -> Vector2
pub fn get_size(&self) -> Vector2
pub fn get_rotation(&self) -> f32
pub fn get_rotation_degrees(&self) -> f32
pub fn get_scale(&self) -> Vector2
pub fn get_pivot_offset(&self) -> Vector2
pub fn get_custom_minimum_size(&self) -> Vector2
pub fn get_parent_area_size(&self) -> Vector2
pub fn get_global_position(&self) -> Vector2
pub fn get_screen_position(&self) -> Vector2
pub fn get_rect(&self) -> Rect2
pub fn get_global_rect(&self) -> Rect2
pub fn set_focus_mode(&mut self, mode: FocusMode)
pub fn get_focus_mode(&self) -> FocusMode
pub fn has_focus(&self) -> bool
pub fn grab_focus(&mut self)
pub fn release_focus(&mut self)
pub fn find_prev_valid_focus(&self) -> Option<Gd<Control>>
pub fn find_next_valid_focus(&self) -> Option<Gd<Control>>
pub fn find_valid_focus_neighbor(&self, side: Side) -> Option<Gd<Control>>
pub fn set_h_size_flags(&mut self, flags: SizeFlags)
pub fn get_h_size_flags(&self) -> SizeFlags
pub fn set_stretch_ratio(&mut self, ratio: f32)
pub fn get_stretch_ratio(&self) -> f32
pub fn set_v_size_flags(&mut self, flags: SizeFlags)
pub fn get_v_size_flags(&self) -> SizeFlags
pub fn set_theme(&mut self, theme: impl AsArg<Option<Gd<Theme>>>)
pub fn get_theme(&self) -> Option<Gd<Theme>>
pub fn set_theme_type_variation(&mut self, theme_type: impl AsArg<StringName>)
pub fn get_theme_type_variation(&self) -> StringName
pub fn begin_bulk_theme_override(&mut self)
pub fn end_bulk_theme_override(&mut self)
pub fn add_theme_icon_override( &mut self, name: impl AsArg<StringName>, texture: impl AsArg<Option<Gd<Texture2D>>>, )
pub fn add_theme_stylebox_override( &mut self, name: impl AsArg<StringName>, stylebox: impl AsArg<Option<Gd<StyleBox>>>, )
pub fn add_theme_font_override( &mut self, name: impl AsArg<StringName>, font: impl AsArg<Option<Gd<Font>>>, )
pub fn add_theme_font_size_override( &mut self, name: impl AsArg<StringName>, font_size: i32, )
pub fn add_theme_color_override( &mut self, name: impl AsArg<StringName>, color: Color, )
pub fn add_theme_constant_override( &mut self, name: impl AsArg<StringName>, constant: i32, )
pub fn remove_theme_icon_override(&mut self, name: impl AsArg<StringName>)
pub fn remove_theme_stylebox_override(&mut self, name: impl AsArg<StringName>)
pub fn remove_theme_font_override(&mut self, name: impl AsArg<StringName>)
pub fn remove_theme_font_size_override(&mut self, name: impl AsArg<StringName>)
pub fn remove_theme_color_override(&mut self, name: impl AsArg<StringName>)
pub fn remove_theme_constant_override(&mut self, name: impl AsArg<StringName>)
pub fn get_theme_icon(
&self,
name: impl AsArg<StringName>,
) -> Option<Gd<Texture2D>>
pub fn get_theme_icon( &self, name: impl AsArg<StringName>, ) -> Option<Gd<Texture2D>>
To set the default parameters, use Self::get_theme_icon_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_icon_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeIcon<'a>
pub fn get_theme_stylebox(
&self,
name: impl AsArg<StringName>,
) -> Option<Gd<StyleBox>>
pub fn get_theme_stylebox( &self, name: impl AsArg<StringName>, ) -> Option<Gd<StyleBox>>
To set the default parameters, use Self::get_theme_stylebox_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_stylebox_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeStylebox<'a>
pub fn get_theme_font(&self, name: impl AsArg<StringName>) -> Option<Gd<Font>>
pub fn get_theme_font(&self, name: impl AsArg<StringName>) -> Option<Gd<Font>>
To set the default parameters, use Self::get_theme_font_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_font_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeFont<'a>
pub fn get_theme_font_size(&self, name: impl AsArg<StringName>) -> i32
pub fn get_theme_font_size(&self, name: impl AsArg<StringName>) -> i32
To set the default parameters, use Self::get_theme_font_size_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_font_size_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeFontSize<'a>
pub fn get_theme_color(&self, name: impl AsArg<StringName>) -> Color
pub fn get_theme_color(&self, name: impl AsArg<StringName>) -> Color
To set the default parameters, use Self::get_theme_color_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_color_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeColor<'a>
pub fn get_theme_constant(&self, name: impl AsArg<StringName>) -> i32
pub fn get_theme_constant(&self, name: impl AsArg<StringName>) -> i32
To set the default parameters, use Self::get_theme_constant_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_theme_constant_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetThemeConstant<'a>
pub fn has_theme_icon_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_stylebox_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_font_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_font_size_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_color_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_constant_override(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_icon(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_icon(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_icon_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_icon_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeIcon<'a>
pub fn has_theme_stylebox(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_stylebox(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_stylebox_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_stylebox_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeStylebox<'a>
pub fn has_theme_font(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_font(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_font_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_font_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeFont<'a>
pub fn has_theme_font_size(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_font_size(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_font_size_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_font_size_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeFontSize<'a>
pub fn has_theme_color(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_color(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_color_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_color_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeColor<'a>
pub fn has_theme_constant(&self, name: impl AsArg<StringName>) -> bool
pub fn has_theme_constant(&self, name: impl AsArg<StringName>) -> bool
To set the default parameters, use Self::has_theme_constant_ex
and its builder methods. See the book for detailed usage instructions.
pub fn has_theme_constant_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExHasThemeConstant<'a>
pub fn get_theme_default_base_scale(&self) -> f32
pub fn get_theme_default_font(&self) -> Option<Gd<Font>>
pub fn get_theme_default_font_size(&self) -> i32
pub fn get_parent_control(&self) -> Option<Gd<Control>>
pub fn set_h_grow_direction(&mut self, direction: GrowDirection)
pub fn get_h_grow_direction(&self) -> GrowDirection
pub fn set_v_grow_direction(&mut self, direction: GrowDirection)
pub fn get_v_grow_direction(&self) -> GrowDirection
pub fn set_tooltip_auto_translate_mode(&mut self, mode: AutoTranslateMode)
pub fn get_tooltip_auto_translate_mode(&self) -> AutoTranslateMode
pub fn set_tooltip_text(&mut self, hint: impl AsArg<GString>)
pub fn get_tooltip_text(&self) -> GString
pub fn get_tooltip(&self) -> GString
pub fn get_tooltip(&self) -> GString
To set the default parameters, use Self::get_tooltip_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_tooltip_ex<'a>(&'a self) -> ExGetTooltip<'a>
pub fn set_default_cursor_shape(&mut self, shape: CursorShape)
pub fn get_default_cursor_shape(&self) -> CursorShape
pub fn get_cursor_shape(&self) -> CursorShape
pub fn get_cursor_shape(&self) -> CursorShape
To set the default parameters, use Self::get_cursor_shape_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_cursor_shape_ex<'a>(&'a self) -> ExGetCursorShape<'a>
pub fn set_focus_neighbor(&mut self, side: Side, neighbor: impl AsArg<NodePath>)
pub fn get_focus_neighbor(&self, side: Side) -> NodePath
pub fn set_focus_next(&mut self, next: impl AsArg<NodePath>)
pub fn get_focus_next(&self) -> NodePath
pub fn set_focus_previous(&mut self, previous: impl AsArg<NodePath>)
pub fn get_focus_previous(&self) -> NodePath
pub fn force_drag( &mut self, data: &Variant, preview: impl AsArg<Option<Gd<Control>>>, )
pub fn set_mouse_filter(&mut self, filter: MouseFilter)
pub fn get_mouse_filter(&self) -> MouseFilter
pub fn set_force_pass_scroll_events(&mut self, force_pass_scroll_events: bool)
pub fn is_force_pass_scroll_events(&self) -> bool
pub fn set_clip_contents(&mut self, enable: bool)
pub fn is_clipping_contents(&mut self) -> bool
pub fn grab_click_focus(&mut self)
pub fn set_drag_forwarding( &mut self, drag_func: &Callable, can_drop_func: &Callable, drop_func: &Callable, )
pub fn set_drag_preview(&mut self, control: impl AsArg<Option<Gd<Control>>>)
pub fn is_drag_successful(&self) -> bool
pub fn warp_mouse(&mut self, position: Vector2)
pub fn set_shortcut_context(&mut self, node: impl AsArg<Option<Gd<Node>>>)
pub fn get_shortcut_context(&self) -> Option<Gd<Node>>
pub fn update_minimum_size(&mut self)
pub fn set_layout_direction(&mut self, direction: LayoutDirection)
pub fn get_layout_direction(&self) -> LayoutDirection
pub fn is_layout_rtl(&self) -> bool
pub fn set_auto_translate(&mut self, enable: bool)
pub fn is_auto_translating(&self) -> bool
pub fn set_localize_numeral_system(&mut self, enable: bool)
pub fn is_localizing_numeral_system(&self) -> bool
pub fn notify(&mut self, what: ControlNotification)
pub fn notify(&mut self, what: ControlNotification)
⚠️ Sends a Godot notification to all classes inherited by the object.
Triggers calls to on_notification()
, and depending on the notification, also to Godot’s lifecycle callbacks such as ready()
.
Starts from the highest ancestor (the Object
class) and goes down the hierarchy.
See also Godot docs for Object::notification()
.
§Panics
If you call this method on a user-defined object while holding a GdRef
or GdMut
guard on the instance, you will encounter
a panic. The reason is that the receiving virtual method on_notification()
acquires a GdMut
lock dynamically, which must
be exclusive.
pub fn notify_reversed(&mut self, what: ControlNotification)
pub fn notify_reversed(&mut self, what: ControlNotification)
⚠️ Like Self::notify()
, but starts at the most-derived class and goes up the hierarchy.
See docs of that method, including the panics.
Methods from Deref<Target = CanvasItem>§
pub fn get_canvas_item(&self) -> Rid
pub fn set_visible(&mut self, visible: bool)
pub fn is_visible(&self) -> bool
pub fn is_visible_in_tree(&self) -> bool
pub fn show(&mut self)
pub fn hide(&mut self)
pub fn queue_redraw(&mut self)
pub fn move_to_front(&mut self)
pub fn set_as_top_level(&mut self, enable: bool)
pub fn is_set_as_top_level(&self) -> bool
pub fn set_light_mask(&mut self, light_mask: i32)
pub fn get_light_mask(&self) -> i32
pub fn set_modulate(&mut self, modulate: Color)
pub fn get_modulate(&self) -> Color
pub fn set_self_modulate(&mut self, self_modulate: Color)
pub fn get_self_modulate(&self) -> Color
pub fn set_z_index(&mut self, z_index: i32)
pub fn get_z_index(&self) -> i32
pub fn set_z_as_relative(&mut self, enable: bool)
pub fn is_z_relative(&self) -> bool
pub fn set_y_sort_enabled(&mut self, enabled: bool)
pub fn is_y_sort_enabled(&self) -> bool
pub fn set_draw_behind_parent(&mut self, enable: bool)
pub fn is_draw_behind_parent_enabled(&self) -> bool
pub fn draw_line(&mut self, from: Vector2, to: Vector2, color: Color)
pub fn draw_line(&mut self, from: Vector2, to: Vector2, color: Color)
To set the default parameters, use Self::draw_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_line_ex<'a>( &'a mut self, from: Vector2, to: Vector2, color: Color, ) -> ExDrawLine<'a>
pub fn draw_dashed_line(&mut self, from: Vector2, to: Vector2, color: Color)
pub fn draw_dashed_line(&mut self, from: Vector2, to: Vector2, color: Color)
To set the default parameters, use Self::draw_dashed_line_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_dashed_line_ex<'a>( &'a mut self, from: Vector2, to: Vector2, color: Color, ) -> ExDrawDashedLine<'a>
pub fn draw_polyline(&mut self, points: &PackedArray<Vector2>, color: Color)
pub fn draw_polyline(&mut self, points: &PackedArray<Vector2>, color: Color)
To set the default parameters, use Self::draw_polyline_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_polyline_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, color: Color, ) -> ExDrawPolyline<'a>
pub fn draw_polyline_colors(
&mut self,
points: &PackedArray<Vector2>,
colors: &PackedArray<Color>,
)
pub fn draw_polyline_colors( &mut self, points: &PackedArray<Vector2>, colors: &PackedArray<Color>, )
To set the default parameters, use Self::draw_polyline_colors_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_polyline_colors_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, colors: &'a PackedArray<Color>, ) -> ExDrawPolylineColors<'a>
pub fn draw_arc(
&mut self,
center: Vector2,
radius: f32,
start_angle: f32,
end_angle: f32,
point_count: i32,
color: Color,
)
pub fn draw_arc( &mut self, center: Vector2, radius: f32, start_angle: f32, end_angle: f32, point_count: i32, color: Color, )
To set the default parameters, use Self::draw_arc_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_arc_ex<'a>( &'a mut self, center: Vector2, radius: f32, start_angle: f32, end_angle: f32, point_count: i32, color: Color, ) -> ExDrawArc<'a>
pub fn draw_multiline(&mut self, points: &PackedArray<Vector2>, color: Color)
pub fn draw_multiline(&mut self, points: &PackedArray<Vector2>, color: Color)
To set the default parameters, use Self::draw_multiline_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_multiline_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, color: Color, ) -> ExDrawMultiline<'a>
pub fn draw_multiline_colors(
&mut self,
points: &PackedArray<Vector2>,
colors: &PackedArray<Color>,
)
pub fn draw_multiline_colors( &mut self, points: &PackedArray<Vector2>, colors: &PackedArray<Color>, )
To set the default parameters, use Self::draw_multiline_colors_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_multiline_colors_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, colors: &'a PackedArray<Color>, ) -> ExDrawMultilineColors<'a>
pub fn draw_rect(&mut self, rect: Rect2, color: Color)
pub fn draw_rect(&mut self, rect: Rect2, color: Color)
To set the default parameters, use Self::draw_rect_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_rect_ex<'a>( &'a mut self, rect: Rect2, color: Color, ) -> ExDrawRect<'a>
pub fn draw_circle(&mut self, position: Vector2, radius: f32, color: Color)
pub fn draw_circle(&mut self, position: Vector2, radius: f32, color: Color)
To set the default parameters, use Self::draw_circle_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_circle_ex<'a>( &'a mut self, position: Vector2, radius: f32, color: Color, ) -> ExDrawCircle<'a>
pub fn draw_texture(
&mut self,
texture: impl AsArg<Option<Gd<Texture2D>>>,
position: Vector2,
)
pub fn draw_texture( &mut self, texture: impl AsArg<Option<Gd<Texture2D>>>, position: Vector2, )
To set the default parameters, use Self::draw_texture_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_texture_ex<'a>( &'a mut self, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, position: Vector2, ) -> ExDrawTexture<'a>
pub fn draw_texture_rect(
&mut self,
texture: impl AsArg<Option<Gd<Texture2D>>>,
rect: Rect2,
tile: bool,
)
pub fn draw_texture_rect( &mut self, texture: impl AsArg<Option<Gd<Texture2D>>>, rect: Rect2, tile: bool, )
To set the default parameters, use Self::draw_texture_rect_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_texture_rect_ex<'a>( &'a mut self, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, rect: Rect2, tile: bool, ) -> ExDrawTextureRect<'a>
pub fn draw_texture_rect_region(
&mut self,
texture: impl AsArg<Option<Gd<Texture2D>>>,
rect: Rect2,
src_rect: Rect2,
)
pub fn draw_texture_rect_region( &mut self, texture: impl AsArg<Option<Gd<Texture2D>>>, rect: Rect2, src_rect: Rect2, )
To set the default parameters, use Self::draw_texture_rect_region_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_texture_rect_region_ex<'a>( &'a mut self, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, rect: Rect2, src_rect: Rect2, ) -> ExDrawTextureRectRegion<'a>
pub fn draw_msdf_texture_rect_region(
&mut self,
texture: impl AsArg<Option<Gd<Texture2D>>>,
rect: Rect2,
src_rect: Rect2,
)
pub fn draw_msdf_texture_rect_region( &mut self, texture: impl AsArg<Option<Gd<Texture2D>>>, rect: Rect2, src_rect: Rect2, )
To set the default parameters, use Self::draw_msdf_texture_rect_region_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_msdf_texture_rect_region_ex<'a>( &'a mut self, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, rect: Rect2, src_rect: Rect2, ) -> ExDrawMsdfTextureRectRegion<'a>
pub fn draw_lcd_texture_rect_region(
&mut self,
texture: impl AsArg<Option<Gd<Texture2D>>>,
rect: Rect2,
src_rect: Rect2,
)
pub fn draw_lcd_texture_rect_region( &mut self, texture: impl AsArg<Option<Gd<Texture2D>>>, rect: Rect2, src_rect: Rect2, )
To set the default parameters, use Self::draw_lcd_texture_rect_region_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_lcd_texture_rect_region_ex<'a>( &'a mut self, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, rect: Rect2, src_rect: Rect2, ) -> ExDrawLcdTextureRectRegion<'a>
pub fn draw_style_box( &mut self, style_box: impl AsArg<Option<Gd<StyleBox>>>, rect: Rect2, )
pub fn draw_primitive(
&mut self,
points: &PackedArray<Vector2>,
colors: &PackedArray<Color>,
uvs: &PackedArray<Vector2>,
)
pub fn draw_primitive( &mut self, points: &PackedArray<Vector2>, colors: &PackedArray<Color>, uvs: &PackedArray<Vector2>, )
To set the default parameters, use Self::draw_primitive_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_primitive_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, colors: &'a PackedArray<Color>, uvs: &'a PackedArray<Vector2>, ) -> ExDrawPrimitive<'a>
pub fn draw_polygon(
&mut self,
points: &PackedArray<Vector2>,
colors: &PackedArray<Color>,
)
pub fn draw_polygon( &mut self, points: &PackedArray<Vector2>, colors: &PackedArray<Color>, )
To set the default parameters, use Self::draw_polygon_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_polygon_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, colors: &'a PackedArray<Color>, ) -> ExDrawPolygon<'a>
pub fn draw_colored_polygon(
&mut self,
points: &PackedArray<Vector2>,
color: Color,
)
pub fn draw_colored_polygon( &mut self, points: &PackedArray<Vector2>, color: Color, )
To set the default parameters, use Self::draw_colored_polygon_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_colored_polygon_ex<'a>( &'a mut self, points: &'a PackedArray<Vector2>, color: Color, ) -> ExDrawColoredPolygon<'a>
pub fn draw_string(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
text: impl AsArg<GString>,
)
pub fn draw_string( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, text: impl AsArg<GString>, )
To set the default parameters, use Self::draw_string_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_string_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, text: impl AsArg<GString> + 'a, ) -> ExDrawString<'a>
pub fn draw_multiline_string(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
text: impl AsArg<GString>,
)
pub fn draw_multiline_string( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, text: impl AsArg<GString>, )
To set the default parameters, use Self::draw_multiline_string_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_multiline_string_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, text: impl AsArg<GString> + 'a, ) -> ExDrawMultilineString<'a>
pub fn draw_string_outline(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
text: impl AsArg<GString>,
)
pub fn draw_string_outline( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, text: impl AsArg<GString>, )
To set the default parameters, use Self::draw_string_outline_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_string_outline_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, text: impl AsArg<GString> + 'a, ) -> ExDrawStringOutline<'a>
pub fn draw_multiline_string_outline(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
text: impl AsArg<GString>,
)
pub fn draw_multiline_string_outline( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, text: impl AsArg<GString>, )
To set the default parameters, use Self::draw_multiline_string_outline_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_multiline_string_outline_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, text: impl AsArg<GString> + 'a, ) -> ExDrawMultilineStringOutline<'a>
pub fn draw_char(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
char: impl AsArg<GString>,
)
pub fn draw_char( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, char: impl AsArg<GString>, )
To set the default parameters, use Self::draw_char_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_char_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, char: impl AsArg<GString> + 'a, ) -> ExDrawChar<'a>
pub fn draw_char_outline(
&self,
font: impl AsArg<Option<Gd<Font>>>,
pos: Vector2,
char: impl AsArg<GString>,
)
pub fn draw_char_outline( &self, font: impl AsArg<Option<Gd<Font>>>, pos: Vector2, char: impl AsArg<GString>, )
To set the default parameters, use Self::draw_char_outline_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_char_outline_ex<'a>( &'a self, font: impl AsArg<Option<Gd<Font>>> + 'a, pos: Vector2, char: impl AsArg<GString> + 'a, ) -> ExDrawCharOutline<'a>
pub fn draw_mesh(
&mut self,
mesh: impl AsArg<Option<Gd<Mesh>>>,
texture: impl AsArg<Option<Gd<Texture2D>>>,
)
pub fn draw_mesh( &mut self, mesh: impl AsArg<Option<Gd<Mesh>>>, texture: impl AsArg<Option<Gd<Texture2D>>>, )
To set the default parameters, use Self::draw_mesh_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_mesh_ex<'a>( &'a mut self, mesh: impl AsArg<Option<Gd<Mesh>>> + 'a, texture: impl AsArg<Option<Gd<Texture2D>>> + 'a, ) -> ExDrawMesh<'a>
pub fn draw_multimesh( &mut self, multimesh: impl AsArg<Option<Gd<MultiMesh>>>, texture: impl AsArg<Option<Gd<Texture2D>>>, )
pub fn draw_set_transform(&mut self, position: Vector2)
pub fn draw_set_transform(&mut self, position: Vector2)
To set the default parameters, use Self::draw_set_transform_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_set_transform_ex<'a>( &'a mut self, position: Vector2, ) -> ExDrawSetTransform<'a>
pub fn draw_set_transform_matrix(&mut self, xform: Transform2D)
pub fn draw_animation_slice(
&mut self,
animation_length: f64,
slice_begin: f64,
slice_end: f64,
)
pub fn draw_animation_slice( &mut self, animation_length: f64, slice_begin: f64, slice_end: f64, )
To set the default parameters, use Self::draw_animation_slice_ex
and its builder methods. See the book for detailed usage instructions.
pub fn draw_animation_slice_ex<'a>( &'a mut self, animation_length: f64, slice_begin: f64, slice_end: f64, ) -> ExDrawAnimationSlice<'a>
pub fn draw_end_animation(&mut self)
pub fn get_transform(&self) -> Transform2D
pub fn get_global_transform(&self) -> Transform2D
pub fn get_global_transform_with_canvas(&self) -> Transform2D
pub fn get_viewport_transform(&self) -> Transform2D
pub fn get_viewport_rect(&self) -> Rect2
pub fn get_canvas_transform(&self) -> Transform2D
pub fn get_screen_transform(&self) -> Transform2D
pub fn get_local_mouse_position(&self) -> Vector2
pub fn get_global_mouse_position(&self) -> Vector2
pub fn get_canvas(&self) -> Rid
pub fn get_canvas_layer_node(&self) -> Option<Gd<CanvasLayer>>
pub fn get_world_2d(&self) -> Option<Gd<World2D>>
pub fn set_material(&mut self, material: impl AsArg<Option<Gd<Material>>>)
pub fn get_material(&self) -> Option<Gd<Material>>
pub fn set_instance_shader_parameter( &mut self, name: impl AsArg<StringName>, value: &Variant, )
pub fn get_instance_shader_parameter( &self, name: impl AsArg<StringName>, ) -> Variant
pub fn set_use_parent_material(&mut self, enable: bool)
pub fn get_use_parent_material(&self) -> bool
pub fn set_notify_local_transform(&mut self, enable: bool)
pub fn is_local_transform_notification_enabled(&self) -> bool
pub fn set_notify_transform(&mut self, enable: bool)
pub fn is_transform_notification_enabled(&self) -> bool
pub fn force_update_transform(&mut self)
pub fn make_canvas_position_local(&self, viewport_point: Vector2) -> Vector2
pub fn make_input_local( &self, event: impl AsArg<Option<Gd<InputEvent>>>, ) -> Option<Gd<InputEvent>>
pub fn set_visibility_layer(&mut self, layer: u32)
pub fn get_visibility_layer(&self) -> u32
pub fn set_visibility_layer_bit(&mut self, layer: u32, enabled: bool)
pub fn get_visibility_layer_bit(&self, layer: u32) -> bool
pub fn set_texture_filter(&mut self, mode: TextureFilter)
pub fn get_texture_filter(&self) -> TextureFilter
pub fn set_texture_repeat(&mut self, mode: TextureRepeat)
pub fn get_texture_repeat(&self) -> TextureRepeat
pub fn set_clip_children_mode(&mut self, mode: ClipChildrenMode)
pub fn get_clip_children_mode(&self) -> ClipChildrenMode
pub fn notify(&mut self, what: CanvasItemNotification)
pub fn notify(&mut self, what: CanvasItemNotification)
⚠️ Sends a Godot notification to all classes inherited by the object.
Triggers calls to on_notification()
, and depending on the notification, also to Godot’s lifecycle callbacks such as ready()
.
Starts from the highest ancestor (the Object
class) and goes down the hierarchy.
See also Godot docs for Object::notification()
.
§Panics
If you call this method on a user-defined object while holding a GdRef
or GdMut
guard on the instance, you will encounter
a panic. The reason is that the receiving virtual method on_notification()
acquires a GdMut
lock dynamically, which must
be exclusive.
pub fn notify_reversed(&mut self, what: CanvasItemNotification)
pub fn notify_reversed(&mut self, what: CanvasItemNotification)
⚠️ Like Self::notify()
, but starts at the most-derived class and goes up the hierarchy.
See docs of that method, including the panics.
Methods from Deref<Target = Node>§
pub fn get_node_as<T>(&self, path: impl AsArg<NodePath>) -> Gd<T>
pub fn get_node_as<T>(&self, path: impl AsArg<NodePath>) -> Gd<T>
⚠️ Retrieves the node at path path
, panicking if not found or bad type.
§Panics
If the node is not found, or if it does not have type T
or inherited.
pub fn try_get_node_as<T>(&self, path: impl AsArg<NodePath>) -> Option<Gd<T>>
pub fn try_get_node_as<T>(&self, path: impl AsArg<NodePath>) -> Option<Gd<T>>
Retrieves the node at path path
(fallible).
If the node is not found, or if it does not have type T
or inherited,
None
will be returned.
pub fn add_sibling(&mut self, sibling: impl AsArg<Option<Gd<Node>>>)
pub fn add_sibling(&mut self, sibling: impl AsArg<Option<Gd<Node>>>)
To set the default parameters, use Self::add_sibling_ex
and its builder methods. See the book for detailed usage instructions.
pub fn add_sibling_ex<'a>( &'a mut self, sibling: impl AsArg<Option<Gd<Node>>> + 'a, ) -> ExAddSibling<'a>
pub fn set_name(&mut self, name: impl AsArg<GString>)
pub fn get_name(&self) -> StringName
pub fn add_child(&mut self, node: impl AsArg<Option<Gd<Node>>>)
pub fn add_child(&mut self, node: impl AsArg<Option<Gd<Node>>>)
To set the default parameters, use Self::add_child_ex
and its builder methods. See the book for detailed usage instructions.
pub fn add_child_ex<'a>( &'a mut self, node: impl AsArg<Option<Gd<Node>>> + 'a, ) -> ExAddChild<'a>
pub fn remove_child(&mut self, node: impl AsArg<Option<Gd<Node>>>)
pub fn reparent(&mut self, new_parent: impl AsArg<Option<Gd<Node>>>)
pub fn reparent(&mut self, new_parent: impl AsArg<Option<Gd<Node>>>)
To set the default parameters, use Self::reparent_ex
and its builder methods. See the book for detailed usage instructions.
pub fn reparent_ex<'a>( &'a mut self, new_parent: impl AsArg<Option<Gd<Node>>> + 'a, ) -> ExReparent<'a>
pub fn get_child_count(&self) -> i32
pub fn get_child_count(&self) -> i32
To set the default parameters, use Self::get_child_count_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_child_count_ex<'a>(&'a self) -> ExGetChildCount<'a>
pub fn get_children(&self) -> Array<Gd<Node>>
pub fn get_children(&self) -> Array<Gd<Node>>
To set the default parameters, use Self::get_children_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_children_ex<'a>(&'a self) -> ExGetChildren<'a>
pub fn get_child(&self, idx: i32) -> Option<Gd<Node>>
pub fn get_child(&self, idx: i32) -> Option<Gd<Node>>
To set the default parameters, use Self::get_child_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_child_ex<'a>(&'a self, idx: i32) -> ExGetChild<'a>
pub fn has_node(&self, path: impl AsArg<NodePath>) -> bool
pub fn get_node_or_null(&self, path: impl AsArg<NodePath>) -> Option<Gd<Node>>
pub fn get_parent(&self) -> Option<Gd<Node>>
pub fn find_child(&self, pattern: impl AsArg<GString>) -> Option<Gd<Node>>
pub fn find_child(&self, pattern: impl AsArg<GString>) -> Option<Gd<Node>>
To set the default parameters, use Self::find_child_ex
and its builder methods. See the book for detailed usage instructions.
pub fn find_child_ex<'a>( &'a self, pattern: impl AsArg<GString> + 'a, ) -> ExFindChild<'a>
pub fn find_children(&self, pattern: impl AsArg<GString>) -> Array<Gd<Node>>
pub fn find_children(&self, pattern: impl AsArg<GString>) -> Array<Gd<Node>>
To set the default parameters, use Self::find_children_ex
and its builder methods. See the book for detailed usage instructions.
pub fn find_children_ex<'a>( &'a self, pattern: impl AsArg<GString> + 'a, ) -> ExFindChildren<'a>
pub fn find_parent(&self, pattern: impl AsArg<GString>) -> Option<Gd<Node>>
pub fn has_node_and_resource(&self, path: impl AsArg<NodePath>) -> bool
pub fn get_node_and_resource( &mut self, path: impl AsArg<NodePath>, ) -> Array<Variant>
pub fn is_inside_tree(&self) -> bool
pub fn is_part_of_edited_scene(&self) -> bool
pub fn is_ancestor_of(&self, node: impl AsArg<Option<Gd<Node>>>) -> bool
pub fn is_greater_than(&self, node: impl AsArg<Option<Gd<Node>>>) -> bool
pub fn get_path(&self) -> NodePath
pub fn get_path_to(&self, node: impl AsArg<Option<Gd<Node>>>) -> NodePath
pub fn get_path_to(&self, node: impl AsArg<Option<Gd<Node>>>) -> NodePath
To set the default parameters, use Self::get_path_to_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_path_to_ex<'a>( &'a self, node: impl AsArg<Option<Gd<Node>>> + 'a, ) -> ExGetPathTo<'a>
pub fn add_to_group(&mut self, group: impl AsArg<StringName>)
pub fn add_to_group(&mut self, group: impl AsArg<StringName>)
To set the default parameters, use Self::add_to_group_ex
and its builder methods. See the book for detailed usage instructions.
pub fn add_to_group_ex<'a>( &'a mut self, group: impl AsArg<StringName> + 'a, ) -> ExAddToGroup<'a>
pub fn remove_from_group(&mut self, group: impl AsArg<StringName>)
pub fn is_in_group(&self, group: impl AsArg<StringName>) -> bool
pub fn move_child( &mut self, child_node: impl AsArg<Option<Gd<Node>>>, to_index: i32, )
pub fn get_groups(&self) -> Array<StringName>
pub fn set_owner(&mut self, owner: impl AsArg<Option<Gd<Node>>>)
pub fn get_owner(&self) -> Option<Gd<Node>>
pub fn get_index(&self) -> i32
pub fn get_index(&self) -> i32
To set the default parameters, use Self::get_index_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_index_ex<'a>(&'a self) -> ExGetIndex<'a>
pub fn print_tree(&mut self)
pub fn print_tree_pretty(&mut self)
pub fn get_tree_string(&mut self) -> GString
pub fn get_tree_string_pretty(&mut self) -> GString
pub fn set_scene_file_path(&mut self, scene_file_path: impl AsArg<GString>)
pub fn get_scene_file_path(&self) -> GString
pub fn propagate_notification(&mut self, what: i32)
pub fn propagate_call(&mut self, method: impl AsArg<StringName>)
pub fn propagate_call(&mut self, method: impl AsArg<StringName>)
To set the default parameters, use Self::propagate_call_ex
and its builder methods. See the book for detailed usage instructions.
pub fn propagate_call_ex<'a>( &'a mut self, method: impl AsArg<StringName> + 'a, ) -> ExPropagateCall<'a>
pub fn set_physics_process(&mut self, enable: bool)
pub fn get_physics_process_delta_time(&self) -> f64
pub fn is_physics_processing(&self) -> bool
pub fn get_process_delta_time(&self) -> f64
pub fn set_process(&mut self, enable: bool)
pub fn set_process_priority(&mut self, priority: i32)
pub fn get_process_priority(&self) -> i32
pub fn set_physics_process_priority(&mut self, priority: i32)
pub fn get_physics_process_priority(&self) -> i32
pub fn is_processing(&self) -> bool
pub fn set_process_input(&mut self, enable: bool)
pub fn is_processing_input(&self) -> bool
pub fn set_process_shortcut_input(&mut self, enable: bool)
pub fn is_processing_shortcut_input(&self) -> bool
pub fn set_process_unhandled_input(&mut self, enable: bool)
pub fn is_processing_unhandled_input(&self) -> bool
pub fn set_process_unhandled_key_input(&mut self, enable: bool)
pub fn is_processing_unhandled_key_input(&self) -> bool
pub fn set_process_mode(&mut self, mode: ProcessMode)
pub fn get_process_mode(&self) -> ProcessMode
pub fn can_process(&self) -> bool
pub fn set_process_thread_group(&mut self, mode: ProcessThreadGroup)
pub fn get_process_thread_group(&self) -> ProcessThreadGroup
pub fn set_process_thread_messages(&mut self, flags: ProcessThreadMessages)
pub fn get_process_thread_messages(&self) -> ProcessThreadMessages
pub fn set_process_thread_group_order(&mut self, order: i32)
pub fn get_process_thread_group_order(&self) -> i32
pub fn set_display_folded(&mut self, fold: bool)
pub fn is_displayed_folded(&self) -> bool
pub fn set_process_internal(&mut self, enable: bool)
pub fn is_processing_internal(&self) -> bool
pub fn set_physics_process_internal(&mut self, enable: bool)
pub fn is_physics_processing_internal(&self) -> bool
pub fn set_physics_interpolation_mode(&mut self, mode: PhysicsInterpolationMode)
pub fn get_physics_interpolation_mode(&self) -> PhysicsInterpolationMode
pub fn is_physics_interpolated(&self) -> bool
pub fn is_physics_interpolated_and_enabled(&self) -> bool
pub fn reset_physics_interpolation(&mut self)
pub fn set_auto_translate_mode(&mut self, mode: AutoTranslateMode)
pub fn get_auto_translate_mode(&self) -> AutoTranslateMode
pub fn set_translation_domain_inherited(&mut self)
pub fn get_window(&self) -> Option<Gd<Window>>
pub fn get_last_exclusive_window(&self) -> Option<Gd<Window>>
pub fn get_tree(&self) -> Option<Gd<SceneTree>>
pub fn create_tween(&mut self) -> Option<Gd<Tween>>
pub fn duplicate(&self) -> Option<Gd<Node>>
pub fn duplicate(&self) -> Option<Gd<Node>>
To set the default parameters, use Self::duplicate_ex
and its builder methods. See the book for detailed usage instructions.
pub fn duplicate_ex<'a>(&'a self) -> ExDuplicate<'a>
pub fn replace_by(&mut self, node: impl AsArg<Option<Gd<Node>>>)
pub fn replace_by(&mut self, node: impl AsArg<Option<Gd<Node>>>)
To set the default parameters, use Self::replace_by_ex
and its builder methods. See the book for detailed usage instructions.
pub fn replace_by_ex<'a>( &'a mut self, node: impl AsArg<Option<Gd<Node>>> + 'a, ) -> ExReplaceBy<'a>
pub fn set_scene_instance_load_placeholder(&mut self, load_placeholder: bool)
pub fn get_scene_instance_load_placeholder(&self) -> bool
pub fn set_editable_instance( &mut self, node: impl AsArg<Option<Gd<Node>>>, is_editable: bool, )
pub fn is_editable_instance(&self, node: impl AsArg<Option<Gd<Node>>>) -> bool
pub fn get_viewport(&self) -> Option<Gd<Viewport>>
pub fn queue_free(&mut self)
pub fn request_ready(&mut self)
pub fn is_node_ready(&self) -> bool
To set the default parameters, use Self::set_multiplayer_authority_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_multiplayer(&self) -> Option<Gd<MultiplayerApi>>
pub fn rpc_config(&mut self, method: impl AsArg<StringName>, config: &Variant)
pub fn get_rpc_config(&self) -> Variant
pub fn set_editor_description( &mut self, editor_description: impl AsArg<GString>, )
pub fn get_editor_description(&self) -> GString
pub fn set_unique_name_in_owner(&mut self, enable: bool)
pub fn is_unique_name_in_owner(&self) -> bool
pub fn atr(&self, message: impl AsArg<GString>) -> GString
pub fn atr(&self, message: impl AsArg<GString>) -> GString
To set the default parameters, use Self::atr_ex
and its builder methods. See the book for detailed usage instructions.
pub fn atr_ex<'a>(&'a self, message: impl AsArg<GString> + 'a) -> ExAtr<'a>
pub fn atr_n(
&self,
message: impl AsArg<GString>,
plural_message: impl AsArg<StringName>,
n: i32,
) -> GString
pub fn atr_n( &self, message: impl AsArg<GString>, plural_message: impl AsArg<StringName>, n: i32, ) -> GString
To set the default parameters, use Self::atr_n_ex
and its builder methods. See the book for detailed usage instructions.
pub fn atr_n_ex<'a>( &'a self, message: impl AsArg<GString> + 'a, plural_message: impl AsArg<StringName> + 'a, n: i32, ) -> ExAtrN<'a>
pub fn rpc(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Error
pub fn rpc( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Error
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_rpc(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Error, CallError>
pub fn try_rpc( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Error, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn rpc_id(
&mut self,
peer_id: i64,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Error
pub fn rpc_id( &mut self, peer_id: i64, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Error
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_rpc_id(
&mut self,
peer_id: i64,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Error, CallError>
pub fn try_rpc_id( &mut self, peer_id: i64, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Error, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn update_configuration_warnings(&mut self)
pub fn call_deferred_thread_group(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
pub fn call_deferred_thread_group( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_call_deferred_thread_group(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
pub fn try_call_deferred_thread_group( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn set_deferred_thread_group( &mut self, property: impl AsArg<StringName>, value: &Variant, )
pub fn notify_deferred_thread_group(&mut self, what: i32)
pub fn call_thread_safe(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
pub fn call_thread_safe( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_call_thread_safe(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
pub fn try_call_thread_safe( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn set_thread_safe( &mut self, property: impl AsArg<StringName>, value: &Variant, )
pub fn notify_thread_safe(&mut self, what: i32)
pub fn notify(&mut self, what: NodeNotification)
pub fn notify(&mut self, what: NodeNotification)
⚠️ Sends a Godot notification to all classes inherited by the object.
Triggers calls to on_notification()
, and depending on the notification, also to Godot’s lifecycle callbacks such as ready()
.
Starts from the highest ancestor (the Object
class) and goes down the hierarchy.
See also Godot docs for Object::notification()
.
§Panics
If you call this method on a user-defined object while holding a GdRef
or GdMut
guard on the instance, you will encounter
a panic. The reason is that the receiving virtual method on_notification()
acquires a GdMut
lock dynamically, which must
be exclusive.
pub fn notify_reversed(&mut self, what: NodeNotification)
pub fn notify_reversed(&mut self, what: NodeNotification)
⚠️ Like Self::notify()
, but starts at the most-derived class and goes up the hierarchy.
See docs of that method, including the panics.
Methods from Deref<Target = Object>§
pub fn get_script(&self) -> Option<Gd<Script>>
pub fn set_script(&mut self, script: impl AsArg<Option<Gd<Script>>>)
pub fn connect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, ) -> Error
pub fn connect_flags( &mut self, signal: impl AsArg<StringName>, callable: &Callable, flags: ConnectFlags, ) -> Error
pub fn get_class(&self) -> GString
pub fn is_class(&self, class: impl AsArg<GString>) -> bool
pub fn set(&mut self, property: impl AsArg<StringName>, value: &Variant)
pub fn get(&self, property: impl AsArg<StringName>) -> Variant
pub fn set_indexed( &mut self, property_path: impl AsArg<NodePath>, value: &Variant, )
pub fn get_indexed(&self, property_path: impl AsArg<NodePath>) -> Variant
pub fn get_property_list(&self) -> Array<Dictionary>
pub fn get_method_list(&self) -> Array<Dictionary>
pub fn property_can_revert(&self, property: impl AsArg<StringName>) -> bool
pub fn property_get_revert(&self, property: impl AsArg<StringName>) -> Variant
pub fn set_meta(&mut self, name: impl AsArg<StringName>, value: &Variant)
pub fn remove_meta(&mut self, name: impl AsArg<StringName>)
pub fn get_meta(&self, name: impl AsArg<StringName>) -> Variant
pub fn get_meta(&self, name: impl AsArg<StringName>) -> Variant
To set the default parameters, use Self::get_meta_ex
and its builder methods. See the book for detailed usage instructions.
pub fn get_meta_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetMeta<'a>
pub fn has_meta(&self, name: impl AsArg<StringName>) -> bool
pub fn get_meta_list(&self) -> Array<StringName>
pub fn add_user_signal(&mut self, signal: impl AsArg<GString>)
pub fn add_user_signal(&mut self, signal: impl AsArg<GString>)
To set the default parameters, use Self::add_user_signal_ex
and its builder methods. See the book for detailed usage instructions.
pub fn add_user_signal_ex<'a>( &'a mut self, signal: impl AsArg<GString> + 'a, ) -> ExAddUserSignal<'a>
pub fn has_user_signal(&self, signal: impl AsArg<StringName>) -> bool
pub fn remove_user_signal(&mut self, signal: impl AsArg<StringName>)
pub fn emit_signal(
&mut self,
signal: impl AsArg<StringName>,
varargs: &[Variant],
) -> Error
pub fn emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Error
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_emit_signal(
&mut self,
signal: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Error, CallError>
pub fn try_emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Error, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn call(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
pub fn call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_call(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
pub fn try_call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn call_deferred(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
pub fn call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant
§Panics
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will panic in such a case.
pub fn try_call_deferred(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
pub fn try_call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>
§Return type
This is a varcall method, meaning parameters and return values are passed as Variant
.
It can detect call failures and will return Err
in such a case.
pub fn set_deferred( &mut self, property: impl AsArg<StringName>, value: &Variant, )
pub fn callv( &mut self, method: impl AsArg<StringName>, arg_array: &Array<Variant>, ) -> Variant
pub fn has_method(&self, method: impl AsArg<StringName>) -> bool
pub fn get_method_argument_count(&self, method: impl AsArg<StringName>) -> i32
pub fn has_signal(&self, signal: impl AsArg<StringName>) -> bool
pub fn get_signal_list(&self) -> Array<Dictionary>
pub fn get_signal_connection_list( &self, signal: impl AsArg<StringName>, ) -> Array<Dictionary>
pub fn get_incoming_connections(&self) -> Array<Dictionary>
pub fn disconnect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, )
pub fn is_connected( &self, signal: impl AsArg<StringName>, callable: &Callable, ) -> bool
pub fn has_connections(&self, signal: impl AsArg<StringName>) -> bool
pub fn set_block_signals(&mut self, enable: bool)
pub fn is_blocking_signals(&self) -> bool
pub fn notify_property_list_changed(&mut self)
pub fn set_message_translation(&mut self, enable: bool)
pub fn can_translate_messages(&self) -> bool
pub fn tr(&self, message: impl AsArg<StringName>) -> GString
pub fn tr(&self, message: impl AsArg<StringName>) -> GString
To set the default parameters, use Self::tr_ex
and its builder methods. See the book for detailed usage instructions.
pub fn tr_ex<'a>(&'a self, message: impl AsArg<StringName> + 'a) -> ExTr<'a>
pub fn tr_n(
&self,
message: impl AsArg<StringName>,
plural_message: impl AsArg<StringName>,
n: i32,
) -> GString
pub fn tr_n( &self, message: impl AsArg<StringName>, plural_message: impl AsArg<StringName>, n: i32, ) -> GString
To set the default parameters, use Self::tr_n_ex
and its builder methods. See the book for detailed usage instructions.
pub fn tr_n_ex<'a>( &'a self, message: impl AsArg<StringName> + 'a, plural_message: impl AsArg<StringName> + 'a, n: i32, ) -> ExTrN<'a>
pub fn get_translation_domain(&self) -> StringName
pub fn set_translation_domain(&mut self, domain: impl AsArg<StringName>)
pub fn is_queued_for_deletion(&self) -> bool
pub fn cancel_free(&mut self)
pub fn notify(&mut self, what: ObjectNotification)
pub fn notify(&mut self, what: ObjectNotification)
⚠️ Sends a Godot notification to all classes inherited by the object.
Triggers calls to on_notification()
, and depending on the notification, also to Godot’s lifecycle callbacks such as ready()
.
Starts from the highest ancestor (the Object
class) and goes down the hierarchy.
See also Godot docs for Object::notification()
.
§Panics
If you call this method on a user-defined object while holding a GdRef
or GdMut
guard on the instance, you will encounter
a panic. The reason is that the receiving virtual method on_notification()
acquires a GdMut
lock dynamically, which must
be exclusive.
pub fn notify_reversed(&mut self, what: ObjectNotification)
pub fn notify_reversed(&mut self, what: ObjectNotification)
⚠️ Like Self::notify()
, but starts at the most-derived class and goes up the hierarchy.
See docs of that method, including the panics.
Trait Implementations§
§impl GodotClass for TextEdit
impl GodotClass for TextEdit
§const INIT_LEVEL: InitLevel = crate::init::InitLevel::Scene
const INIT_LEVEL: InitLevel = crate::init::InitLevel::Scene
§fn class_id() -> ClassId
fn class_id() -> ClassId
§fn class_name() -> ClassId
fn class_name() -> ClassId
class_id()
§fn inherits<Base>() -> boolwhere
Base: GodotClass,
fn inherits<Base>() -> boolwhere
Base: GodotClass,
§impl Inherits<CanvasItem> for TextEdit
impl Inherits<CanvasItem> for TextEdit
§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base
. Read more§impl Inherits<Control> for TextEdit
impl Inherits<Control> for TextEdit
§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base
. Read more§impl Inherits<Object> for TextEdit
impl Inherits<Object> for TextEdit
§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base
. Read more§impl Inherits<TextEdit> for CodeEdit
impl Inherits<TextEdit> for CodeEdit
§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base
. Read more§impl WithSignals for TextEdit
impl WithSignals for TextEdit
§type SignalCollection<'c, C: WithSignals> = SignalsOfTextEdit<'c, C>
type SignalCollection<'c, C: WithSignals> = SignalsOfTextEdit<'c, C>
impl GodotDefault for TextEdit
Auto Trait Implementations§
impl Freeze for TextEdit
impl RefUnwindSafe for TextEdit
impl !Send for TextEdit
impl !Sync for TextEdit
impl Unpin for TextEdit
impl UnwindSafe for TextEdit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Inherits<T> for Twhere
T: GodotClass,
impl<T> Inherits<T> for Twhere
T: GodotClass,
§const IS_SAME_CLASS: bool = true
const IS_SAME_CLASS: bool = true
Self == Base
. Read more