Struct droom_ui::control::text::Text [] [src]

pub struct Text(_);

Methods

impl Text
[src]

Creates a editable text-field.

Creates a spin control.

The spin increments and decrements an integer number.

Converts a (lin, col) character positioning into an absolute position.

lin and col starts at 1, pos starts at 0. For single line controls pos is always col-1.

Converts an absolute position into a (lin, col) character positioning.

lin and col starts at 1, pos starts at 0. For single line controls lin is always 1, and col is always pos+1.

Trait Implementations

impl Element for Text
[src]

Gets the raw IUP handle associated with this element.

Constructs an Element from a raw IUP handle. Read more

Gets the [class name][1] the derived object should be targeting. [1]: http://webserver2.tecgraf.puc-rio.br/iup/en/func/iupgetclassname.html Read more

Constructs a specialized Element object from a general Handle if they are compatible.

Constructs from a name associated with a element handle (with Element::add_handle_name or LED).

Constructs an Element from a raw IUP handle. Read more

Destroys an interface element and all its children. Read more

Checks if a specific attribute exists in the element.

Returns the names of all attributes of an element that are set in its internal hash table only. Read more

Sets an interface element attribute. Read more

Gets an interface element attribute. Read more

Sets a raw interface element attribute. Read more

Gets a raw interface element attribute.

Associates a element with an attribute. Read more

Gets the handle associated with an attribute.

Clears the value associated with an attribute and use the default value.

Removes an attribute from element and its children if the attrib is inheritable. Read more

Returns the identifier of an interface element that has an associated handle name using Element::add_handle_name or using LED. Read more

Associates a handle name with an interface element. Read more

Clears the handle name association on the specified name. Read more

impl Debug for Text
[src]

Formats the value using the given formatter.

impl Copy for Text
[src]

impl Clone for Text
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl DestroyCb for Text
[src]

impl Widget for Text
[src]

Creates (maps) the native interface objects corresponding to the given IUP interface elements. Read more

Unmap the element from the native system. It will also unmap all its children. Read more

Shows an interfance element. Read more

Hides an interface element. Read more

impl Node for Text
[src]

Detaches an interface element from its parent. Read more

Moves an interface element from one position in the hierarchy tree to another. Read more

Returns the parent of a element.

Returns the brother of an element.

Returns the handle of the dialog that contains that interface element. Read more

Returns the identifier of the child element that has the NAME attribute equals to the given value on the same dialog hierarchy. Read more

Updates the size and layout of all controls in the same dialog. Read more

Updates the size and layout of controls after changing size attributes, or attributes that affect the size of the control. Read more

Mark the element to be redraw when the control returns to the system.

Mark the element children to be redraw when the control returns to the system.

Force the element and its children to be redraw immediately.

impl ConvertXYToPos for Text
[src]

Returns a position in the string.

Converts a x,y coordinate in an item position in the container. Read more

impl MapCb for Text
[src]

impl UnmapCb for Text
[src]

impl GetFocusCb for Text
[src]

impl KillFocusCb for Text
[src]

impl EnterWindowCb for Text
[src]

impl LeaveWindowCb for Text
[src]

impl HelpCb for Text
[src]

impl ButtonCb for Text
[src]

Action generated when any mouse button is pressed or released.

Use convert_xy_to_pos to convert (x,y) coordinates in character positioning.

impl CaretCb for Text
[src]

Action generated when the caret/cursor position is changed.

For single line controls lin (2nd param) is always 1, and pos (3rd param) is always col-1.

impl DropFilesCb for Text
[src]

Action generated when one or more files are dropped in the element.

impl MotionCb for Text
[src]

Action generated when the mouse is moved.

Use convert_xy_to_pos to convert (x,y) coordinates in character positioning.

impl SpinCb for Text
[src]

Action generated when a spin button is pressed.

Valid only when the element is a spin (Text::new_spin or SPIN=YES attribute). When this callback is called the ACTION callback is not called. The VALUE attribute can be changed during this callback only if SPINAUTO=NO.

The i32 parameter received by the callback is the value of the spin (after incremented).

May return CallbackReturn::Ignore but that is only allowed on Windows and Motif.

impl ValueChangedCb for Text
[src]

Called after the value was interactively changed by the user.

impl TextAction for Text
[src]

See the TextAction documentation.