sge_ui 1.2.0

UI library for SGE
Documentation
use std::marker::PhantomData;

use sge_text::{MONO, SANS};

use crate::prelude::*;

use super::PRIMARY_TEXT_COLOR;

pub struct TextInput;

impl TextInput {
    pub fn new(bg: Color, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::TextInput::new(id, None, Some(SANS), 16, PRIMARY_TEXT_COLOR, 10.0, true),
        ))
    }

    pub fn with_prompt(bg: Color, prompt: impl ToString, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::TextInput::new(
                id,
                Some(prompt.to_string()),
                Some(SANS),
                16,
                PRIMARY_TEXT_COLOR,
                10.0,
                true,
            ),
        ))
    }
}

pub struct DataInput<T: DataInputValue>(PhantomData<T>);

impl<T: DataInputValue> DataInput<T> {
    pub fn new(bg: Color, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::DataInput::<T>::new(id, None, Some(SANS), 16, PRIMARY_TEXT_COLOR, 10.0, true),
        ))
    }

    pub fn with_prompt(bg: Color, prompt: impl ToString, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::DataInput::<T>::new(
                id,
                Some(prompt.to_string()),
                Some(SANS),
                16,
                PRIMARY_TEXT_COLOR,
                10.0,
                true,
            ),
        ))
    }

    pub fn mono(bg: Color, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::DataInput::<T>::new(id, None, Some(MONO), 16, PRIMARY_TEXT_COLOR, 10.0, true),
        ))
    }

    pub fn mono_with_prompt(bg: Color, prompt: impl ToString, id: usize) -> UiRef {
        Fit::new(BoxFill::new(
            bg,
            base::DataInput::<T>::new(
                id,
                Some(prompt.to_string()),
                Some(MONO),
                16,
                PRIMARY_TEXT_COLOR,
                10.0,
                true,
            ),
        ))
    }
}