[][src]Struct orbtk::Theme

pub struct Theme { /* fields omitted */ }

Theme is the representation of a css styling.

Methods

impl Theme[src]

pub fn create() -> ThemeBuilder[src]

Creates a new ThemeBuilder object with default theme as base.

pub fn create_from_css(css: impl Into<String>) -> ThemeBuilder[src]

Creates a new ThemeBuilder with the given css as base.

pub fn create_from_path(path: impl Into<String>) -> ThemeBuilder[src]

Creates a new ThemeBuilder with the given css path as base.

pub fn from_path<P>(path: P) -> Result<Theme, String> where
    P: AsRef<Path>, 
[src]

pub fn get(&self, property: &str, query: &Selector) -> Option<Value>[src]

pub fn brush(&self, property: &str, query: &Selector) -> Option<Brush>[src]

pub fn uint(&self, property: &str, query: &Selector) -> Option<u32>[src]

pub fn float(&self, property: &str, query: &Selector) -> Option<f32>[src]

pub fn string(&self, property: &str, query: &Selector) -> Option<String>[src]

Trait Implementations

impl IntoPropertySource<Theme> for (String, Entity)[src]

impl<'_> IntoPropertySource<Theme> for (&'_ str, Entity)[src]

impl IntoPropertySource<Theme> for Entity[src]

impl IntoPropertySource<Theme> for Theme[src]

impl Default for Theme[src]

impl StructuralPartialEq for Theme[src]

impl Clone for Theme[src]

impl PartialEq<Theme> for Theme[src]

impl Debug for Theme[src]

Auto Trait Implementations

impl Send for Theme

impl Sync for Theme

impl Unpin for Theme

impl UnwindSafe for Theme

impl RefUnwindSafe for Theme

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> Component for E where
    E: Any
[src]

impl<T> SetParameter for T