sge_ui 1.2.0

UI library for SGE
Documentation
use super::super::{UiRef, *};

pub struct ProgressBar;

impl ProgressBar {
    pub fn new(size: Vec2, color: Color, bg: Color, value: f32, max: f32, id: usize) -> UiRef {
        SizedBox::new(
            size,
            Border::all(
                4.0,
                color,
                base::ProgressBar::new(
                    value,
                    max,
                    BoxFill::new(color, EMPTY),
                    BoxFill::new(bg, EMPTY),
                    id,
                ),
            ),
        )
    }

    pub fn rounded(
        size: Vec2,
        color: Color,
        bg: Color,
        value: f32,
        max: f32,
        radius: f32,
        id: usize,
    ) -> UiRef {
        SizedBox::new(
            size,
            Border::all(
                4.0,
                color,
                base::ProgressBar::new(value, max, Fill::rounded(color, radius, EMPTY), EMPTY, id),
            )
            .fill(bg),
        )
    }

    pub fn primary(size: Vec2, value: f32, max: f32, id: usize) -> UiRef {
        Self::new(size, super::PRIMARY_TEXT_COLOR, super::BG1, value, max, id)
    }
}