pub struct NumberSelect {
    pub handle: ControlHandle,
    /* private fields */
}
Expand description

A NumberSelect control is a pair of arrow buttons that the user can click to increment or decrement a value. NumberSelect is implemented as a custom control because the one provided by winapi really sucks.

Requires the number-select feature.

Builder parameters:

  • parent: Required. The number select parent container.
  • value: The default value of the number select
  • size: The number select size.
  • position: The number select position.
  • enabled: If the number select can be used by the user. It also has a grayed out look if disabled.
  • flags: A combination of the NumberSelectFlags values.
  • font: The font used for the number select text

Control events:

  • MousePress(_): Generic mouse press events on the button
  • OnMouseMove: Generic mouse mouse event
use native_windows_gui as nwg;
fn build_number_select(num_select: &mut nwg::NumberSelect, window: &nwg::Window, font: &nwg::Font) {
    nwg::NumberSelect::builder()
        .font(Some(font))
        .parent(window)
        .build(num_select);
}

Fields

handle: ControlHandle

Implementations

Returns inner data specifying the possible input of a number select See NumberSelectData for the possible values

Sets the inner data specifying the possible input of a number select. Also update the value display. See NumberSelectData for the possible values

Returns the font of the control

Sets the font of the control

Returns true if the control currently has the keyboard focus

Sets the keyboard focus on the button.

Returns true if the control user can interact with the control, return false otherwise

Enable or disable the control

Returns true if the control is visible to the user. Will return true even if the control is outside of the parent client view (ex: at the position (10000, 10000))

Show or hide the control to the user

Returns the size of the control in the parent window

Sets the size of the control in the parent window

Returns the position of the control in the parent window

Sets the position of the control in the parent window

Winapi class name used during control creation

Winapi base flags used during window creation

Winapi flags required by the control

Trait Implementations

Returns the “default value” for a type. Read more

Executes the destructor for this type. Read more

Converts to this type from the input type.

Converts to this type from the input type.

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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

Returns the argument unchanged.

Calls U::from(self).

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

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.