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

A trackbar is a window that contains a slider (sometimes called a thumb) in a channel, and optional tick marks. When the user moves the slider, using either the mouse or the direction keys, the trackbar sends notification messages to indicate the change.

Requires the trackbar feature.

Builder parameters:

  • parent: Required. The trackbar parent container.
  • size: The trackbar size.
  • position: The trackbar position.
  • focus: The control receive focus after being created
  • flags: A combination of the TrackBarFlags values.
  • ex_flags: A combination of win32 window extended flags. Unlike flags, ex_flags must be used straight from winapi
  • range: The value range of the trackbar
  • selected_range: The selected value range of the trackbar. Used with TrackBarFlags::RANGE
  • pos: The current value of the trackbar
  • background_color: The background color the of the trackbar

Control events:

  • OnVerticalScroll: When the value of a trackbar with the VERTICAL flags is changed
  • OnHorizontalScroll: When the value of a trackbar with the HORIZONTAL flags is changed
  • MousePress(_): Generic mouse press events on the button
  • OnMouseMove: Generic mouse mouse event
  • OnMouseWheel: Generic mouse wheel event
use native_windows_gui as nwg;
fn build_trackbar(track: &mut nwg::TrackBar, window: &nwg::Window) {
    nwg::TrackBar::builder()
        .range(Some(0..100))
        .pos(Some(10))
        .parent(window)
        .build(track);
}

Fields

handle: ControlHandle

Implementations

Retrieves the current logical position of the slider in a trackbar. The logical positions are the integer values in the trackbar’s range of minimum to maximum slider positions.

Sets the current logical position of the slider in a trackbar.

Retrieves the starting and ending position of the current selection range in a trackbar. Only work for trackbar with the Range flags

Sets the range value of the trackbar Only work for trackbar with the Range flags

Retrieves the minimum position for the slider in a trackbar.

Sets the minium logical position for the slider in a trackbar.

Retrieves the maximum position for the slider in a trackbar.

Sets the maximum logical position for the slider in a trackbar.

Retrieves the number of tick marks in a trackbar

Retrieves the logical position of a tick mark in a trackbar. The logical position can be any of the integer values in the trackbar’s range of minimum to maximum slider positions.

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

Enable or disable the control

Return 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

Return the size of the button in the parent window

Set the size of the button in the parent window

Return the position of the button in the parent window

Set the position of the button in the parent window

Return true if the control currently has the keyboard focus

Set the keyboard focus on the track bar

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

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.