Struct TextEdit

Source
pub struct TextEdit { /* private fields */ }
Expand description

core class TextEdit inherits Control (unsafe).

§Official documentation

See the documentation of this class in the Godot engine’s official documentation.

§Memory management

Non reference counted objects such as the ones of this type are usually owned by the engine.

TextEdit is an unsafe pointer, and all of its methods are unsafe.

In the cases where Rust code owns an object of this type, for example if the object was just created on the Rust side and not passed to the engine yet, ownership should be either given to the engine or the object must be manually destroyed using TextEdit::free.

§Feature flag

This type is behind the gdnative crate’s ui feature flag.

§Class hierarchy

TextEdit inherits methods from:

Implementations§

Source§

impl TextEdit

Source

pub fn new() -> Self

Constructor.

Because this type is not reference counted, the lifetime of the returned object is not automatically managed. Immediately after creation, the object is owned by the caller, and can be passed to the engine (in which case the engine will be responsible for destroying the object) or destroyed manually using TextEdit::free.

Source

pub unsafe fn free(self)

Manually deallocate the object.

Source

pub unsafe fn _gui_input(&mut self, arg0: Option<InputEvent>)

Source

pub unsafe fn _scroll_moved(&mut self, arg0: f64)

Source

pub unsafe fn _cursor_changed_emit(&mut self)

Source

pub unsafe fn _text_changed_emit(&mut self)

Source

pub unsafe fn _push_current_op(&mut self)

Source

pub unsafe fn _click_selection_held(&mut self)

Source

pub unsafe fn _toggle_draw_caret(&mut self)

Source

pub unsafe fn _v_scroll_input(&mut self)

Source

pub unsafe fn set_text(&mut self, text: GodotString)

Source

pub unsafe fn insert_text_at_cursor(&mut self, text: GodotString)

Source

pub unsafe fn get_line_count(&self) -> i64

Source

pub unsafe fn get_text(&mut self) -> GodotString

Source

pub unsafe fn get_line(&self, line: i64) -> GodotString

Source

pub unsafe fn cursor_set_column(&mut self, column: i64, adjust_viewport: bool)

Source

pub unsafe fn cursor_set_line( &mut self, line: i64, adjust_viewport: bool, can_be_hidden: bool, wrap_index: i64, )

Source

pub unsafe fn cursor_get_column(&self) -> i64

Source

pub unsafe fn cursor_get_line(&self) -> i64

Source

pub unsafe fn cursor_set_block_mode(&mut self, enable: bool)

Source

pub unsafe fn cursor_is_block_mode(&self) -> bool

Source

pub unsafe fn set_right_click_moves_caret(&mut self, enable: bool)

Source

pub unsafe fn is_right_click_moving_caret(&self) -> bool

Source

pub unsafe fn set_readonly(&mut self, enable: bool)

Source

pub unsafe fn is_readonly(&self) -> bool

Source

pub unsafe fn set_wrap_enabled(&mut self, enable: bool)

Source

pub unsafe fn is_wrap_enabled(&self) -> bool

Source

pub unsafe fn set_context_menu_enabled(&mut self, enable: bool)

Source

pub unsafe fn is_context_menu_enabled(&mut self) -> bool

Source

pub unsafe fn cut(&mut self)

Source

pub unsafe fn copy(&mut self)

Source

pub unsafe fn paste(&mut self)

Source

pub unsafe fn select( &mut self, from_line: i64, from_column: i64, to_line: i64, to_column: i64, )

Source

pub unsafe fn select_all(&mut self)

Source

pub unsafe fn deselect(&mut self)

Source

pub unsafe fn is_selection_active(&self) -> bool

Source

pub unsafe fn get_selection_from_line(&self) -> i64

Source

pub unsafe fn get_selection_from_column(&self) -> i64

Source

pub unsafe fn get_selection_to_line(&self) -> i64

Source

pub unsafe fn get_selection_to_column(&self) -> i64

Source

pub unsafe fn get_selection_text(&self) -> GodotString

Source

pub unsafe fn get_word_under_cursor(&self) -> GodotString

Source

pub unsafe fn search( &self, key: GodotString, flags: i64, from_line: i64, from_column: i64, ) -> Int32Array

Source

pub unsafe fn undo(&mut self)

Source

pub unsafe fn redo(&mut self)

Source

pub unsafe fn clear_undo_history(&mut self)

Source

pub unsafe fn set_show_line_numbers(&mut self, enable: bool)

Source

pub unsafe fn is_show_line_numbers_enabled(&self) -> bool

Source

pub unsafe fn set_breakpoint_gutter_enabled(&mut self, enable: bool)

Source

pub unsafe fn is_breakpoint_gutter_enabled(&self) -> bool

Source

pub unsafe fn set_hiding_enabled(&mut self, enable: i64)

Source

pub unsafe fn is_hiding_enabled(&self) -> i64

Source

pub unsafe fn set_line_as_hidden(&mut self, line: i64, enable: bool)

Source

pub unsafe fn is_line_hidden(&self, line: i64) -> bool

Source

pub unsafe fn fold_all_lines(&mut self)

Source

pub unsafe fn unhide_all_lines(&mut self)

Source

pub unsafe fn fold_line(&mut self, line: i64)

Source

pub unsafe fn unfold_line(&mut self, line: i64)

Source

pub unsafe fn toggle_fold_line(&mut self, line: i64)

Source

pub unsafe fn can_fold(&self, line: i64) -> bool

Source

pub unsafe fn is_folded(&self, line: i64) -> bool

Source

pub unsafe fn set_highlight_all_occurrences(&mut self, enable: bool)

Source

pub unsafe fn is_highlight_all_occurrences_enabled(&self) -> bool

Source

pub unsafe fn set_override_selected_font_color(&mut self, _override: bool)

Source

pub unsafe fn is_overriding_selected_font_color(&self) -> bool

Source

pub unsafe fn set_syntax_coloring(&mut self, enable: bool)

Source

pub unsafe fn is_syntax_coloring_enabled(&self) -> bool

Source

pub unsafe fn set_highlight_current_line(&mut self, enabled: bool)

Source

pub unsafe fn is_highlight_current_line_enabled(&self) -> bool

Source

pub unsafe fn set_smooth_scroll_enable(&mut self, enable: bool)

Source

pub unsafe fn is_smooth_scroll_enabled(&self) -> bool

Source

pub unsafe fn set_v_scroll_speed(&mut self, speed: f64)

Source

pub unsafe fn get_v_scroll_speed(&self) -> f64

Source

pub unsafe fn add_keyword_color(&mut self, keyword: GodotString, color: Color)

Source

pub unsafe fn has_keyword_color(&self, keyword: GodotString) -> bool

Source

pub unsafe fn get_keyword_color(&self, keyword: GodotString) -> Color

Source

pub unsafe fn add_color_region( &mut self, begin_key: GodotString, end_key: GodotString, color: Color, line_only: bool, )

Source

pub unsafe fn clear_colors(&mut self)

Source

pub unsafe fn menu_option(&mut self, option: i64)

Source

pub unsafe fn get_menu(&self) -> Option<PopupMenu>

Source

pub unsafe fn get_breakpoints(&self) -> VariantArray

Source

pub unsafe fn remove_breakpoints(&mut self)

Source

pub unsafe fn _get_minimum_size(&mut self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_drag_data(&mut self, position: Vector2) -> Option<Object>

Inherited from Control.

Source

pub unsafe fn can_drop_data(&mut self, position: Vector2, data: Variant) -> bool

Inherited from Control.

Source

pub unsafe fn drop_data(&mut self, position: Vector2, data: Variant)

Inherited from Control.

Source

pub unsafe fn _make_custom_tooltip( &mut self, for_text: GodotString, ) -> Option<Object>

Inherited from Control.

Source

pub unsafe fn has_point(&mut self, point: Vector2) -> bool

Inherited from Control.

Source

pub unsafe fn _size_changed(&mut self)

Inherited from Control.

Source

pub unsafe fn _update_minimum_size(&mut self)

Inherited from Control.

Source

pub unsafe fn accept_event(&mut self)

Inherited from Control.

Source

pub unsafe fn get_minimum_size(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_combined_minimum_size(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn set_anchors_preset(&mut self, preset: i64, keep_margin: bool)

Inherited from Control.

Source

pub unsafe fn set_margins_preset( &mut self, preset: i64, resize_mode: i64, margin: i64, )

Inherited from Control.

Source

pub unsafe fn set_anchors_and_margins_preset( &mut self, preset: i64, resize_mode: i64, margin: i64, )

Inherited from Control.

Source

pub unsafe fn set_anchor( &mut self, margin: i64, anchor: f64, keep_margin: bool, push_opposite_anchor: bool, )

Inherited from Control.

Source

pub unsafe fn _set_anchor(&mut self, margin: i64, anchor: f64)

Inherited from Control.

Source

pub unsafe fn get_anchor(&self, margin: i64) -> f64

Inherited from Control.

Source

pub unsafe fn set_margin(&mut self, margin: i64, offset: f64)

Inherited from Control.

Source

pub unsafe fn set_anchor_and_margin( &mut self, margin: i64, anchor: f64, offset: f64, push_opposite_anchor: bool, )

Inherited from Control.

Source

pub unsafe fn set_begin(&mut self, position: Vector2)

Inherited from Control.

Source

pub unsafe fn set_end(&mut self, position: Vector2)

Inherited from Control.

Source

pub unsafe fn set_position(&mut self, position: Vector2)

Inherited from Control.

Source

pub unsafe fn set_size(&mut self, size: Vector2)

Inherited from Control.

Source

pub unsafe fn set_custom_minimum_size(&mut self, size: Vector2)

Inherited from Control.

Source

pub unsafe fn set_global_position(&mut self, position: Vector2)

Inherited from Control.

Source

pub unsafe fn set_rotation(&mut self, radians: f64)

Inherited from Control.

Source

pub unsafe fn set_rotation_degrees(&mut self, degrees: f64)

Inherited from Control.

Source

pub unsafe fn set_scale(&mut self, scale: Vector2)

Inherited from Control.

Source

pub unsafe fn set_pivot_offset(&mut self, pivot_offset: Vector2)

Inherited from Control.

Source

pub unsafe fn get_margin(&self, margin: i64) -> f64

Inherited from Control.

Source

pub unsafe fn get_begin(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_end(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_position(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_size(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_rotation(&self) -> f64

Inherited from Control.

Source

pub unsafe fn get_rotation_degrees(&self) -> f64

Inherited from Control.

Source

pub unsafe fn get_scale(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_pivot_offset(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_custom_minimum_size(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_parent_area_size(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_global_position(&self) -> Vector2

Inherited from Control.

Source

pub unsafe fn get_rect(&self) -> Rect2

Inherited from Control.

Source

pub unsafe fn get_global_rect(&self) -> Rect2

Inherited from Control.

Source

pub unsafe fn show_modal(&mut self, exclusive: bool)

Inherited from Control.

Source

pub unsafe fn set_focus_mode(&mut self, mode: i64)

Inherited from Control.

Source

pub unsafe fn get_focus_mode(&self) -> ControlFocusMode

Inherited from Control.

Source

pub unsafe fn has_focus(&self) -> bool

Inherited from Control.

Source

pub unsafe fn grab_focus(&mut self)

Inherited from Control.

Source

pub unsafe fn release_focus(&mut self)

Inherited from Control.

Source

pub unsafe fn get_focus_owner(&self) -> Option<Control>

Inherited from Control.

Source

pub unsafe fn set_h_size_flags(&mut self, flags: i64)

Inherited from Control.

Source

pub unsafe fn get_h_size_flags(&self) -> i64

Inherited from Control.

Source

pub unsafe fn set_stretch_ratio(&mut self, ratio: f64)

Inherited from Control.

Source

pub unsafe fn get_stretch_ratio(&self) -> f64

Inherited from Control.

Source

pub unsafe fn set_v_size_flags(&mut self, flags: i64)

Inherited from Control.

Source

pub unsafe fn get_v_size_flags(&self) -> i64

Inherited from Control.

Source

pub unsafe fn set_theme(&mut self, theme: Option<Theme>)

Inherited from Control.

Source

pub unsafe fn get_theme(&self) -> Option<Theme>

Inherited from Control.

Source

pub unsafe fn add_icon_override( &mut self, name: GodotString, texture: Option<Texture>, )

Inherited from Control.

Source

pub unsafe fn add_shader_override( &mut self, name: GodotString, shader: Option<Shader>, )

Inherited from Control.

Source

pub unsafe fn add_stylebox_override( &mut self, name: GodotString, stylebox: Option<StyleBox>, )

Inherited from Control.

Source

pub unsafe fn add_font_override( &mut self, name: GodotString, font: Option<Font>, )

Inherited from Control.

Source

pub unsafe fn add_color_override(&mut self, name: GodotString, color: Color)

Inherited from Control.

Source

pub unsafe fn add_constant_override(&mut self, name: GodotString, constant: i64)

Inherited from Control.

Source

pub unsafe fn get_icon( &self, name: GodotString, _type: GodotString, ) -> Option<Texture>

Inherited from Control.

Source

pub unsafe fn get_stylebox( &self, name: GodotString, _type: GodotString, ) -> Option<StyleBox>

Inherited from Control.

Source

pub unsafe fn get_font( &self, name: GodotString, _type: GodotString, ) -> Option<Font>

Inherited from Control.

Source

pub unsafe fn get_color(&self, name: GodotString, _type: GodotString) -> Color

Inherited from Control.

Source

pub unsafe fn get_constant(&self, name: GodotString, _type: GodotString) -> i64

Inherited from Control.

Source

pub unsafe fn has_icon_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_shader_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_stylebox_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_font_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_color_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_constant_override(&self, name: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_icon(&self, name: GodotString, _type: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_stylebox(&self, name: GodotString, _type: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_font(&self, name: GodotString, _type: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_color(&self, name: GodotString, _type: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn has_constant(&self, name: GodotString, _type: GodotString) -> bool

Inherited from Control.

Source

pub unsafe fn get_parent_control(&self) -> Option<Control>

Inherited from Control.

Source

pub unsafe fn set_h_grow_direction(&mut self, direction: i64)

Inherited from Control.

Source

pub unsafe fn get_h_grow_direction(&self) -> ControlGrowDirection

Inherited from Control.

Source

pub unsafe fn set_v_grow_direction(&mut self, direction: i64)

Inherited from Control.

Source

pub unsafe fn get_v_grow_direction(&self) -> ControlGrowDirection

Inherited from Control.

Source

pub unsafe fn set_tooltip(&mut self, tooltip: GodotString)

Inherited from Control.

Source

pub unsafe fn get_tooltip(&self, at_position: Vector2) -> GodotString

Inherited from Control.

Source

pub unsafe fn _get_tooltip(&self) -> GodotString

Inherited from Control.

Source

pub unsafe fn set_default_cursor_shape(&mut self, shape: i64)

Inherited from Control.

Source

pub unsafe fn get_default_cursor_shape(&self) -> ControlCursorShape

Inherited from Control.

Source

pub unsafe fn get_cursor_shape(&self, position: Vector2) -> ControlCursorShape

Inherited from Control.

Source

pub unsafe fn set_focus_neighbour(&mut self, margin: i64, neighbour: NodePath)

Inherited from Control.

Source

pub unsafe fn get_focus_neighbour(&self, margin: i64) -> NodePath

Inherited from Control.

Source

pub unsafe fn set_focus_next(&mut self, next: NodePath)

Inherited from Control.

Source

pub unsafe fn get_focus_next(&self) -> NodePath

Inherited from Control.

Source

pub unsafe fn set_focus_previous(&mut self, previous: NodePath)

Inherited from Control.

Source

pub unsafe fn get_focus_previous(&self) -> NodePath

Inherited from Control.

Source

pub unsafe fn force_drag(&mut self, data: Variant, preview: Option<Object>)

Inherited from Control.

Source

pub unsafe fn set_mouse_filter(&mut self, filter: i64)

Inherited from Control.

Source

pub unsafe fn get_mouse_filter(&self) -> ControlMouseFilter

Inherited from Control.

Source

pub unsafe fn set_clip_contents(&mut self, enable: bool)

Inherited from Control.

Source

pub unsafe fn is_clipping_contents(&mut self) -> bool

Inherited from Control.

Source

pub unsafe fn grab_click_focus(&mut self)

Inherited from Control.

Source

pub unsafe fn set_drag_forwarding(&mut self, target: Option<Object>)

Inherited from Control.

Source

pub unsafe fn set_drag_preview(&mut self, control: Option<Object>)

Inherited from Control.

Source

pub unsafe fn warp_mouse(&mut self, to_position: Vector2)

Inherited from Control.

Source

pub unsafe fn minimum_size_changed(&mut self)

Inherited from Control.

Source

pub unsafe fn _theme_changed(&mut self)

Inherited from Control.

Source

pub unsafe fn _font_changed(&mut self)

Inherited from Control.

Source

pub unsafe fn _draw(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn _toplevel_raise_self(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn _update_callback(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_state(&mut self, state: Dictionary)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_state(&self) -> Dictionary

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_position(&mut self, position: Vector2)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_position(&self) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_scale(&mut self, scale: Vector2)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_scale(&self) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_rect(&mut self, rect: Rect2)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_rect(&self) -> Rect2

Inherited from CanvasItem.

Source

pub unsafe fn _edit_use_rect(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_rotation(&mut self, degrees: f64)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_rotation(&self) -> f64

Inherited from CanvasItem.

Source

pub unsafe fn _edit_use_rotation(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn _edit_set_pivot(&mut self, pivot: Vector2)

Inherited from CanvasItem.

Source

pub unsafe fn _edit_get_pivot(&self) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn _edit_use_pivot(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn get_canvas_item(&self) -> Rid

Inherited from CanvasItem.

Source

pub unsafe fn set_visible(&mut self, visible: bool)

Inherited from CanvasItem.

Source

pub unsafe fn is_visible(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn is_visible_in_tree(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn show(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn hide(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn update(&mut self)

Inherited from CanvasItem.

Source

pub unsafe fn set_as_toplevel(&mut self, enable: bool)

Inherited from CanvasItem.

Source

pub unsafe fn is_set_as_toplevel(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn set_light_mask(&mut self, light_mask: i64)

Inherited from CanvasItem.

Source

pub unsafe fn get_light_mask(&self) -> i64

Inherited from CanvasItem.

Source

pub unsafe fn set_modulate(&mut self, modulate: Color)

Inherited from CanvasItem.

Source

pub unsafe fn get_modulate(&self) -> Color

Inherited from CanvasItem.

Source

pub unsafe fn set_self_modulate(&mut self, self_modulate: Color)

Inherited from CanvasItem.

Source

pub unsafe fn get_self_modulate(&self) -> Color

Inherited from CanvasItem.

Source

pub unsafe fn set_draw_behind_parent(&mut self, enable: bool)

Inherited from CanvasItem.

Source

pub unsafe fn is_draw_behind_parent_enabled(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn _set_on_top(&mut self, on_top: bool)

Inherited from CanvasItem.

Source

pub unsafe fn _is_on_top(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn draw_line( &mut self, from: Vector2, to: Vector2, color: Color, width: f64, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_polyline( &mut self, points: Vector2Array, color: Color, width: f64, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_polyline_colors( &mut self, points: Vector2Array, colors: ColorArray, width: f64, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_multiline( &mut self, points: Vector2Array, color: Color, width: f64, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_multiline_colors( &mut self, points: Vector2Array, colors: ColorArray, width: f64, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_rect(&mut self, rect: Rect2, color: Color, filled: bool)

Inherited from CanvasItem.

Source

pub unsafe fn draw_circle( &mut self, position: Vector2, radius: f64, color: Color, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_texture( &mut self, texture: Option<Texture>, position: Vector2, modulate: Color, normal_map: Option<Texture>, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_texture_rect( &mut self, texture: Option<Texture>, rect: Rect2, tile: bool, modulate: Color, transpose: bool, normal_map: Option<Texture>, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_texture_rect_region( &mut self, texture: Option<Texture>, rect: Rect2, src_rect: Rect2, modulate: Color, transpose: bool, normal_map: Option<Texture>, clip_uv: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_style_box( &mut self, style_box: Option<StyleBox>, rect: Rect2, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_primitive( &mut self, points: Vector2Array, colors: ColorArray, uvs: Vector2Array, texture: Option<Texture>, width: f64, normal_map: Option<Texture>, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_polygon( &mut self, points: Vector2Array, colors: ColorArray, uvs: Vector2Array, texture: Option<Texture>, normal_map: Option<Texture>, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_colored_polygon( &mut self, points: Vector2Array, color: Color, uvs: Vector2Array, texture: Option<Texture>, normal_map: Option<Texture>, antialiased: bool, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_string( &mut self, font: Option<Font>, position: Vector2, text: GodotString, modulate: Color, clip_w: i64, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_char( &mut self, font: Option<Font>, position: Vector2, char: GodotString, next: GodotString, modulate: Color, ) -> f64

Inherited from CanvasItem.

Source

pub unsafe fn draw_mesh( &mut self, mesh: Option<Mesh>, texture: Option<Texture>, normal_map: Option<Texture>, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_multimesh( &mut self, mesh: Option<Mesh>, texture: Option<Texture>, normal_map: Option<Texture>, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_set_transform( &mut self, position: Vector2, rotation: f64, scale: Vector2, )

Inherited from CanvasItem.

Source

pub unsafe fn draw_set_transform_matrix(&mut self, xform: Transform2D)

Inherited from CanvasItem.

Source

pub unsafe fn get_transform(&self) -> Transform2D

Inherited from CanvasItem.

Source

pub unsafe fn get_global_transform(&self) -> Transform2D

Inherited from CanvasItem.

Source

pub unsafe fn get_global_transform_with_canvas(&self) -> Transform2D

Inherited from CanvasItem.

Source

pub unsafe fn get_viewport_transform(&self) -> Transform2D

Inherited from CanvasItem.

Source

pub unsafe fn get_viewport_rect(&self) -> Rect2

Inherited from CanvasItem.

Source

pub unsafe fn get_canvas_transform(&self) -> Transform2D

Inherited from CanvasItem.

Source

pub unsafe fn get_local_mouse_position(&self) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn get_global_mouse_position(&self) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn get_canvas(&self) -> Rid

Inherited from CanvasItem.

Source

pub unsafe fn get_world_2d(&self) -> Option<World2D>

Inherited from CanvasItem.

Source

pub unsafe fn set_material(&mut self, material: Option<Material>)

Inherited from CanvasItem.

Source

pub unsafe fn get_material(&self) -> Option<Material>

Inherited from CanvasItem.

Source

pub unsafe fn set_use_parent_material(&mut self, enable: bool)

Inherited from CanvasItem.

Source

pub unsafe fn get_use_parent_material(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn set_notify_local_transform(&mut self, enable: bool)

Inherited from CanvasItem.

Source

pub unsafe fn is_local_transform_notification_enabled(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn set_notify_transform(&mut self, enable: bool)

Inherited from CanvasItem.

Source

pub unsafe fn is_transform_notification_enabled(&self) -> bool

Inherited from CanvasItem.

Source

pub unsafe fn make_canvas_position_local( &self, screen_point: Vector2, ) -> Vector2

Inherited from CanvasItem.

Source

pub unsafe fn make_input_local( &self, event: Option<InputEvent>, ) -> Option<InputEvent>

Inherited from CanvasItem.

Source

pub unsafe fn _process(&mut self, delta: f64)

Inherited from Node.

Source

pub unsafe fn _physics_process(&mut self, delta: f64)

Inherited from Node.

Source

pub unsafe fn _enter_tree(&mut self)

Inherited from Node.

Source

pub unsafe fn _exit_tree(&mut self)

Inherited from Node.

Source

pub unsafe fn _ready(&mut self)

Inherited from Node.

Source

pub unsafe fn _input(&mut self, event: Option<InputEvent>)

Inherited from Node.

Source

pub unsafe fn _unhandled_input(&mut self, event: Option<InputEvent>)

Inherited from Node.

Source

pub unsafe fn _unhandled_key_input(&mut self, event: Option<InputEventKey>)

Inherited from Node.

Source

pub unsafe fn add_child_below_node( &mut self, node: Option<Object>, child_node: Option<Object>, legible_unique_name: bool, )

Inherited from Node.

Source

pub unsafe fn set_name(&mut self, name: GodotString)

Inherited from Node.

Source

pub unsafe fn get_name(&self) -> GodotString

Inherited from Node.

Source

pub unsafe fn add_child( &mut self, node: Option<Object>, legible_unique_name: bool, )

Inherited from Node.

Source

pub unsafe fn remove_child(&mut self, node: Option<Object>)

Inherited from Node.

Source

pub unsafe fn get_child_count(&self) -> i64

Inherited from Node.

Source

pub unsafe fn get_children(&self) -> VariantArray

Inherited from Node.

Source

pub unsafe fn get_child(&self, idx: i64) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn has_node(&self, path: NodePath) -> bool

Inherited from Node.

Source

pub unsafe fn get_node(&self, path: NodePath) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn get_parent(&self) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn find_node( &self, mask: GodotString, recursive: bool, owned: bool, ) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn has_node_and_resource(&self, path: NodePath) -> bool

Inherited from Node.

Source

pub unsafe fn get_node_and_resource(&mut self, path: NodePath) -> VariantArray

Inherited from Node.

Source

pub unsafe fn is_inside_tree(&self) -> bool

Inherited from Node.

Source

pub unsafe fn is_a_parent_of(&self, node: Option<Object>) -> bool

Inherited from Node.

Source

pub unsafe fn is_greater_than(&self, node: Option<Object>) -> bool

Inherited from Node.

Source

pub unsafe fn get_path(&self) -> NodePath

Inherited from Node.

Source

pub unsafe fn get_path_to(&self, node: Option<Object>) -> NodePath

Inherited from Node.

Source

pub unsafe fn add_to_group(&mut self, group: GodotString, persistent: bool)

Inherited from Node.

Source

pub unsafe fn remove_from_group(&mut self, group: GodotString)

Inherited from Node.

Source

pub unsafe fn is_in_group(&self, group: GodotString) -> bool

Inherited from Node.

Source

pub unsafe fn move_child( &mut self, child_node: Option<Object>, to_position: i64, )

Inherited from Node.

Source

pub unsafe fn get_groups(&self) -> VariantArray

Inherited from Node.

Source

pub unsafe fn raise(&mut self)

Inherited from Node.

Source

pub unsafe fn set_owner(&mut self, owner: Option<Object>)

Inherited from Node.

Source

pub unsafe fn get_owner(&self) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn remove_and_skip(&mut self)

Inherited from Node.

Source

pub unsafe fn get_index(&self) -> i64

Inherited from Node.

Source

pub unsafe fn print_tree(&mut self)

Inherited from Node.

Source

pub unsafe fn print_tree_pretty(&mut self)

Inherited from Node.

Source

pub unsafe fn set_filename(&mut self, filename: GodotString)

Inherited from Node.

Source

pub unsafe fn get_filename(&self) -> GodotString

Inherited from Node.

Source

pub unsafe fn propagate_notification(&mut self, what: i64)

Inherited from Node.

Source

pub unsafe fn propagate_call( &mut self, method: GodotString, args: VariantArray, parent_first: bool, )

Inherited from Node.

Source

pub unsafe fn set_physics_process(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn get_physics_process_delta_time(&self) -> f64

Inherited from Node.

Source

pub unsafe fn is_physics_processing(&self) -> bool

Inherited from Node.

Source

pub unsafe fn get_process_delta_time(&self) -> f64

Inherited from Node.

Source

pub unsafe fn set_process(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn set_process_priority(&mut self, priority: i64)

Inherited from Node.

Source

pub unsafe fn is_processing(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_process_input(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn is_processing_input(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_process_unhandled_input(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn is_processing_unhandled_input(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_process_unhandled_key_input(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn is_processing_unhandled_key_input(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_pause_mode(&mut self, mode: i64)

Inherited from Node.

Source

pub unsafe fn get_pause_mode(&self) -> NodePauseMode

Inherited from Node.

Source

pub unsafe fn can_process(&self) -> bool

Inherited from Node.

Source

pub unsafe fn print_stray_nodes(&mut self)

Inherited from Node.

Source

pub unsafe fn get_position_in_parent(&self) -> i64

Inherited from Node.

Source

pub unsafe fn set_display_folded(&mut self, fold: bool)

Inherited from Node.

Source

pub unsafe fn is_displayed_folded(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_process_internal(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn is_processing_internal(&self) -> bool

Inherited from Node.

Source

pub unsafe fn set_physics_process_internal(&mut self, enable: bool)

Inherited from Node.

Source

pub unsafe fn is_physics_processing_internal(&self) -> bool

Inherited from Node.

Source

pub unsafe fn get_tree(&self) -> Option<SceneTree>

Inherited from Node.

Source

pub unsafe fn duplicate(&self, flags: i64) -> Option<Node>

Inherited from Node.

Source

pub unsafe fn replace_by(&mut self, node: Option<Object>, keep_data: bool)

Inherited from Node.

Source

pub unsafe fn set_scene_instance_load_placeholder( &mut self, load_placeholder: bool, )

Inherited from Node.

Source

pub unsafe fn get_scene_instance_load_placeholder(&self) -> bool

Inherited from Node.

Source

pub unsafe fn get_viewport(&self) -> Option<Viewport>

Inherited from Node.

Source

pub unsafe fn queue_free(&mut self)

Inherited from Node.

Source

pub unsafe fn request_ready(&mut self)

Inherited from Node.

Source

pub unsafe fn set_network_master(&mut self, id: i64, recursive: bool)

Inherited from Node.

Source

pub unsafe fn get_network_master(&self) -> i64

Inherited from Node.

Source

pub unsafe fn is_network_master(&self) -> bool

Inherited from Node.

Source

pub unsafe fn get_multiplayer(&self) -> Option<MultiplayerAPI>

Inherited from Node.

Source

pub unsafe fn get_custom_multiplayer(&self) -> Option<MultiplayerAPI>

Inherited from Node.

Source

pub unsafe fn set_custom_multiplayer(&mut self, api: Option<MultiplayerAPI>)

Inherited from Node.

Source

pub unsafe fn rpc_config(&mut self, method: GodotString, mode: i64)

Inherited from Node.

Source

pub unsafe fn rset_config(&mut self, property: GodotString, mode: i64)

Inherited from Node.

Source

pub unsafe fn _set_import_path(&mut self, import_path: NodePath)

Inherited from Node.

Source

pub unsafe fn _get_import_path(&self) -> NodePath

Inherited from Node.

Source

pub unsafe fn rpc( &mut self, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Node.

Source

pub unsafe fn rpc_unreliable( &mut self, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Node.

Source

pub unsafe fn rpc_id( &mut self, peer_id: i64, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Node.

Source

pub unsafe fn rpc_unreliable_id( &mut self, peer_id: i64, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Node.

Source

pub unsafe fn rset(&mut self, property: GodotString, value: Variant)

Inherited from Node.

Source

pub unsafe fn rset_id( &mut self, peer_id: i64, property: GodotString, value: Variant, )

Inherited from Node.

Source

pub unsafe fn rset_unreliable(&mut self, property: GodotString, value: Variant)

Inherited from Node.

Source

pub unsafe fn rset_unreliable_id( &mut self, peer_id: i64, property: GodotString, value: Variant, )

Inherited from Node.

Source

pub unsafe fn _notification(&mut self, what: i64)

Inherited from Object.

Source

pub unsafe fn _set(&mut self, property: GodotString, value: Variant) -> bool

Inherited from Object.

Source

pub unsafe fn _get(&mut self, property: GodotString) -> Variant

Inherited from Object.

Source

pub unsafe fn _get_property_list(&mut self) -> VariantArray

Inherited from Object.

Source

pub unsafe fn _init(&mut self)

Inherited from Object.

Source

pub unsafe fn get_class(&self) -> GodotString

Inherited from Object.

Source

pub unsafe fn is_class(&self, _type: GodotString) -> bool

Inherited from Object.

Source

pub unsafe fn set(&mut self, property: GodotString, value: Variant)

Inherited from Object.

Source

pub unsafe fn get(&self, property: GodotString) -> Variant

Inherited from Object.

Source

pub unsafe fn set_indexed(&mut self, property: NodePath, value: Variant)

Inherited from Object.

Source

pub unsafe fn get_indexed(&self, property: NodePath) -> Variant

Inherited from Object.

Source

pub unsafe fn get_property_list(&self) -> VariantArray

Inherited from Object.

Source

pub unsafe fn get_method_list(&self) -> VariantArray

Inherited from Object.

Source

pub unsafe fn notification(&mut self, what: i64, reversed: bool)

Inherited from Object.

Source

pub unsafe fn get_instance_id(&self) -> i64

Inherited from Object.

Source

pub unsafe fn set_script(&mut self, script: Option<Reference>)

Inherited from Object.

Source

pub unsafe fn get_script(&self) -> Option<Reference>

Inherited from Object.

Source

pub unsafe fn set_meta(&mut self, name: GodotString, value: Variant)

Inherited from Object.

Source

pub unsafe fn get_meta(&self, name: GodotString) -> Variant

Inherited from Object.

Source

pub unsafe fn has_meta(&self, name: GodotString) -> bool

Inherited from Object.

Source

pub unsafe fn get_meta_list(&self) -> StringArray

Inherited from Object.

Source

pub unsafe fn add_user_signal( &mut self, signal: GodotString, arguments: VariantArray, )

Inherited from Object.

Source

pub unsafe fn has_user_signal(&self, signal: GodotString) -> bool

Inherited from Object.

Source

pub unsafe fn emit_signal( &mut self, signal: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Object.

Source

pub unsafe fn call( &mut self, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Object.

Source

pub unsafe fn call_deferred( &mut self, method: GodotString, varargs: &[Variant], ) -> Variant

Inherited from Object.

Source

pub unsafe fn callv( &mut self, method: GodotString, arg_array: VariantArray, ) -> Variant

Inherited from Object.

Source

pub unsafe fn has_method(&self, method: GodotString) -> bool

Inherited from Object.

Source

pub unsafe fn get_signal_list(&self) -> VariantArray

Inherited from Object.

Source

pub unsafe fn get_signal_connection_list( &self, signal: GodotString, ) -> VariantArray

Inherited from Object.

Source

pub unsafe fn get_incoming_connections(&self) -> VariantArray

Inherited from Object.

Source

pub unsafe fn connect( &mut self, signal: GodotString, target: Option<Object>, method: GodotString, binds: VariantArray, flags: i64, ) -> GodotResult

Inherited from Object.

Source

pub unsafe fn disconnect( &mut self, signal: GodotString, target: Option<Object>, method: GodotString, )

Inherited from Object.

Source

pub unsafe fn is_connected( &self, signal: GodotString, target: Option<Object>, method: GodotString, ) -> bool

Inherited from Object.

Source

pub unsafe fn set_block_signals(&mut self, enable: bool)

Inherited from Object.

Source

pub unsafe fn is_blocking_signals(&self) -> bool

Inherited from Object.

Source

pub unsafe fn property_list_changed_notify(&mut self)

Inherited from Object.

Source

pub unsafe fn set_message_translation(&mut self, enable: bool)

Inherited from Object.

Source

pub unsafe fn can_translate_messages(&self) -> bool

Inherited from Object.

Source

pub unsafe fn tr(&self, message: GodotString) -> GodotString

Inherited from Object.

Source

pub unsafe fn is_queued_for_deletion(&self) -> bool

Inherited from Object.

Source

pub unsafe fn to_control(&self) -> Control

Up-cast.

Source

pub unsafe fn to_canvas_item(&self) -> CanvasItem

Up-cast.

Source

pub unsafe fn to_node(&self) -> Node

Up-cast.

Source

pub unsafe fn to_object(&self) -> Object

Up-cast.

Source

pub unsafe fn cast<T: GodotObject>(&self) -> Option<T>

Generic dynamic cast.

Trait Implementations§

Source§

impl Clone for TextEdit

Source§

fn clone(&self) -> TextEdit

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TextEdit

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Free for TextEdit

Source§

unsafe fn godot_free(self)

Source§

impl GodotObject for TextEdit

Source§

fn class_name() -> &'static str

Source§

impl QueueFree for TextEdit

Source§

unsafe fn godot_queue_free(&mut self)

Source§

impl ToVariant for TextEdit

Source§

fn to_variant(&self) -> Variant

Source§

fn from_variant(variant: &Variant) -> Option<Self>

Source§

impl Copy for TextEdit

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.