[−][src]Struct pushrod_widgets::system_widgets::progress_widget::ProgressWidget
Base Widget.
Trait Implementations
impl Default for ProgressWidget[src]
fn default() -> ProgressWidget[src]
impl Widget for ProgressWidget[src]
Implementation for drawing a ProgressWidget, with the Widget trait objects applied.
fn properties(&mut self) -> &mut WidgetProperties[src]
fn draw(
&mut self,
c: &mut Canvas<Window>,
_t: &mut TextureCache
) -> Option<&Texture>[src]
&mut self,
c: &mut Canvas<Window>,
_t: &mut TextureCache
) -> Option<&Texture>
Draws the ProgressWidget using the following properties:
- PROPERTY_MAIN_COLOR: the
Colorof the body of theWidget - PROPERTY_BORDER_WIDTH: the width of the border to draw
- PROPERTY_BORDER_COLOR: the
Colorof the border. - PROPERTY_PROGRESS_COLOR: the
Colorof the progress bar - PROPERTY_PROGRESS: the progress value (from 0 to 100)
fn handle_event(&mut self, _e: PushrodEvent) -> Option<PushrodEvent>[src]
fn invalidate(&mut self)[src]
fn invalidated(&mut self) -> bool[src]
Auto Trait Implementations
impl RefUnwindSafe for ProgressWidget
impl !Send for ProgressWidget
impl !Sync for ProgressWidget
impl Unpin for ProgressWidget
impl UnwindSafe for ProgressWidget
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,