pub struct AnimationTimer {
    pub handle: ControlHandle,
}
Expand description

A timer is an invisible UI component that trigger the OnTimerTick event at the specified interval. Timers are mosty used to handle animations OR to create a timeout. To sync multithreaded action see the Notice object.

AnimationTimer is controlled from a singletion running in another thread. All instance of AnimationTimer will live on that thread.

A timer still requires a top level window parent. If the top level window parent is destroyed, the timer becomes invalid.

AnimationTimer replaces the default winapi timer. Please, for the love of god, do not use the default timer.

Builder parameters: * parent: Required. The timer parent container that will receive the timer event. Should be a top level window * interval: The timer tick interval as a rust Duration. Minimum is 1 ms * lifetime: The timer should automatically stop after the selected Duration. Defaults to None. * max_tick: The timer should automatically stop after sending X amount of OnTImerTick events. Defaults to None. * active: If the timer should start right away. Default to false

Control events: * OnTimerTick: When the timer ticks * OnTimerStop: When the timer stops itself (due to max_tick_count or lifetime being reached, not user actions)

use native_windows_gui as nwg;
use std::time::Duration;

/// Builds a timer that will animation something at 60fps for 3 sec
fn build_timer(parent: &nwg::Window)  {
    let mut timer = Default::default();
    nwg::AnimationTimer::builder()
        .parent(parent)
        .interval(Duration::from_millis(1000/60))
        .lifetime(Some(Duration::from_millis(3000)))
        .build(&mut timer);
}

Fields

handle: ControlHandle

Implementations

Checks if the timer is still usable. A timer becomes unusable when the parent window is destroyed. This will also return false if the timer is not initialized.

Start the selected timer. If the timer is already running this resets it. This resets the life time and tick count if relevant.

Stop the selected timer. If the timer is already stopped, this does nothing.

Sets the interval on the this timer

Sets the life time on the this timer

Sets the max tick count on the this timer

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.