Struct rstk::text::TkText[][src]

pub struct TkText {
    pub id: String,
}
Expand description

Refers to a text widget

Fields

id: String

Implementations

Specifies the background colour.

Colours are specified as a string, by either:

  • name - using one of the values in the tk colours list
  • rgb - as a 6-digit hexadecimal value in form “#RRGGBB”

Size of border around widget.

Delete a range of text.

Delete a single character in text.

Specifies the font to use for text.

Specifies the foreground (text) colour.

Colours are specified as a string, by either:

  • name - using one of the values in the tk colours list
  • rgb - as a 6-digit hexadecimal value in form “#RRGGBB”

Get a range of text.

Get a range of text from a position to end.

Height of text, in rows

Insert at given (line, character) position of text.

Inserts at end of text.

Inserts at end of text, with given tags.

Inserts an image at given (line, character) position of text.

Inserts a Tk widget at given (line, character) position of text.

Insert at given (line, character) position of text, with given tags.

Sets named mark’s gravity to left.

Sets named mark’s gravity to right.

Returns a (line, character) tuple for the given mark’s position.

Returns a list of all the mark names defined in this text widget.

Returns name of next mark from given position.

Returns name of previous mark to given position.

Sets named mark to given position.

Removes named mark.

Amount of horizontal padding for widget.

Amount of vertical padding for widget.

Style of border around label.

Replaces a range of text with new text.

Searches the text widget from given position for the text, returning an Option type containing either the position of the found text or none.

Arranges text widget display to ensure the given line, character is visible.

Sets the state of the widget (normal or disabled only).

Associates given tag with text in specified range.

Binds event to given tag.

Deletes a tag.

Formatting is applied to tags using configuration options.

For the available options, see the Tk manual

Returns a list of all the tag names defined in this text widget.

Returns a list of all the tag names defined in this text widget at the given location.

De-associates given tag with text in specified range.

Width of text, in columns

How wrapping should be performed of long lines.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Creates a GridLayout instance for placing this widget within its parent.

Sets properties for widget layout directly through Tk: see Tk manual for options. Read more

Removes this widget from layout.

Creates a PackLayout instance for placing this widget within its parent

Sets properties for widget layout

Removes this widget from layout

Returns the widget’s id reference - used within tk

Binds a command to this widget to call on given event pattern

Retrieve the value of a configuration option as a string. Read more

Used to change properties of a widget. This function can be used to directly configure the widget using an option-value string pair: Read more

Destroys a widget and its children.

winfo retrieves information about widget. Read more

Makes this widget the focus window (e.g. for key presses)

Returns the widget x position in pixels, within its parent.

Returns the widget y position in pixels, within its parent.

Returns the widget height in pixels.

Returns the widget width in pixels.

Returns the position of the mouse on screen of widget as (x,y).

Gives the x position of the mouse on screen of widget.

Gives the y position of the mouse on screen of widget.

Height of screen of widget in pixels.

Height of screen of widget in millimetres.

Width of screen of widget in pixels.

Width of screen of widget in millimetres.

Lowers the widget in stacking order.

Raises the widget in stacking order.

Sets property for a given column of the grid layout contained within this widget. Read more

Sets property for a given row of the grid layout contained within this widget. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.