Struct pix_engine::gui::theme::Theme
source · #[non_exhaustive]pub struct Theme {
pub name: String,
pub fonts: Fonts,
pub font_size: u32,
pub styles: FontStyles,
pub colors: Colors,
pub spacing: Spacing,
}Expand description
A UI Theme containing font families, sizes, styles, and colors.
See the [Builder] examples for building a custom theme.
Example
fn on_update(&mut self, s: &mut PixState) -> PixResult<()> {
s.fill(Color::CADET_BLUE); // Change font color
s.font_size(16)?;
s.font_style(FontStyle::UNDERLINE);
s.font_family(Font::from_file("Some font", "./some_font.ttf"))?;
s.text("Blue, underlined, size 16 text in Some Font")?;
Ok(())
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of this theme.
fonts: FontsThe font families used in this theme.
font_size: u32The body font size used in this theme.
styles: FontStylesThe font styles used in this theme.
colors: ColorsThe colors used in this theme.
spacing: SpacingThe padding, offsets, and other styles used in this theme.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Theme
impl<'de> Deserialize<'de> for Theme
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<Theme> for Theme
impl PartialEq<Theme> for Theme
impl Eq for Theme
impl StructuralEq for Theme
impl StructuralPartialEq for Theme
Auto Trait Implementations§
impl RefUnwindSafe for Theme
impl Send for Theme
impl Sync for Theme
impl Unpin for Theme
impl UnwindSafe for Theme
Blanket Implementations§
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more