Struct imgui::ProgressBar[][src]

#[must_use]
pub struct ProgressBar<'ui, 'p> { /* fields omitted */ }

Progress bar widget.

Methods

impl<'ui, 'p> ProgressBar<'ui, 'p>
[src]

Creates a progress bar with a given fraction showing the progress (0.0 = 0%, 1.0 = 100%). The progress bar will be automatically sized to fill the entire width of the window if no custom size is specified.

Sets an optional text that will be drawn over the progress bar.

Sets the size of the progress bar. Negative values will automatically align to the end of the axis, zero will let the progress bar choose a size and positive values will use the given size.

Builds the progress bar. This has to be called after setting all parameters of the progress bar, otherwise the it will not be shown.

Auto Trait Implementations

impl<'ui, 'p> Send for ProgressBar<'ui, 'p>

impl<'ui, 'p> Sync for ProgressBar<'ui, 'p>