Enum iced_native::Theme

source ·
pub enum Theme {
    Light,
    Dark,
    Custom(Box<Custom, Global>),
}
Expand description

A built-in theme.

Variants§

§

Light

The built-in light variant.

§

Dark

The built-in dark variant.

§

Custom(Box<Custom, Global>)

A Theme that uses a Custom palette.

Implementations§

source§

impl Theme

source

pub fn custom(palette: Palette) -> Theme

Creates a new custom Theme from the given Palette.

source

pub fn palette(&self) -> Palette

Returns the Palette of the Theme.

source

pub fn extended_palette(&self) -> &Extended

Returns the palette::Extended of the Theme.

Trait Implementations§

source§

impl Clone for Theme

source§

fn clone(&self) -> Theme

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Theme

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Theme

source§

fn default() -> Theme

Returns the “default value” for a type. Read more
source§

impl PartialEq<Theme> for Theme

source§

fn eq(&self, other: &Theme) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StyleSheet for Theme

§

type Style = Checkbox

The supported style of the StyleSheet.
source§

fn active( &self, style: &<Theme as StyleSheet>::Style, is_checked: bool ) -> Appearance

Produces the active Appearance of a checkbox.
source§

fn hovered( &self, style: &<Theme as StyleSheet>::Style, is_checked: bool ) -> Appearance

Produces the hovered Appearance of a checkbox.
source§

impl StyleSheet for Theme

§

type Style = Scrollable

The supported style of the StyleSheet.
source§

fn active(&self, style: &<Theme as StyleSheet>::Style) -> Scrollbar

Produces the style of an active scrollbar.
source§

fn hovered( &self, style: &<Theme as StyleSheet>::Style, is_mouse_over_scrollbar: bool ) -> Scrollbar

Produces the style of a scrollbar when the scrollable is being hovered.
source§

fn dragging(&self, style: &<Theme as StyleSheet>::Style) -> Scrollbar

Produces the style of a scrollbar that is being dragged.
source§

fn active_horizontal(&self, style: &<Theme as StyleSheet>::Style) -> Scrollbar

Produces the style of an active horizontal scrollbar.
source§

fn hovered_horizontal( &self, style: &<Theme as StyleSheet>::Style, is_mouse_over_scrollbar: bool ) -> Scrollbar

Produces the style of a horizontal scrollbar when the scrollable is being hovered.
source§

fn dragging_horizontal(&self, style: &<Theme as StyleSheet>::Style) -> Scrollbar

Produces the style of a horizontal scrollbar that is being dragged.
source§

impl StyleSheet for Theme

§

type Style = Container

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the Appearance of a container.
source§

impl StyleSheet for Theme

§

type Style = Slider

The supported style of the StyleSheet.
source§

fn active(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of an active slider.
source§

fn hovered(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of an hovered slider.
source§

fn dragging(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of a slider that is being dragged.
source§

impl StyleSheet for Theme

§

type Style = ProgressBar

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the Appearance of the progress bar.
source§

impl StyleSheet for Theme

§

type Style = PickList

The supported style of the StyleSheet.
source§

fn active(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the active Appearance of a pick list.
source§

fn hovered(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the hovered Appearance of a pick list.
source§

impl StyleSheet for Theme

§

type Style = Button

The supported style of the StyleSheet.
source§

fn active(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the active Appearance of a button.
source§

fn hovered(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the hovered Appearance of a button.
source§

fn pressed(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the pressed Appearance of a button.
source§

fn disabled(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the disabled Appearance of a button.
source§

impl StyleSheet for Theme

§

type Style = Toggler

The supported style of the StyleSheet.
source§

fn active( &self, style: &<Theme as StyleSheet>::Style, is_active: bool ) -> Appearance

Returns the active Appearance of the toggler for the provided Style.
source§

fn hovered( &self, style: &<Theme as StyleSheet>::Style, is_active: bool ) -> Appearance

Returns the hovered Appearance of the toggler for the provided Style.
source§

impl StyleSheet for Theme

§

type Style = TextInput

The supported style of the StyleSheet.
source§

fn active(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of an active text input.
source§

fn hovered(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of an hovered text input.
source§

fn focused(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of a focused text input.
source§

fn placeholder_color(&self, style: &<Theme as StyleSheet>::Style) -> Color

Produces the Color of the placeholder of a text input.
source§

fn value_color(&self, style: &<Theme as StyleSheet>::Style) -> Color

Produces the Color of the value of a text input.
source§

fn selection_color(&self, style: &<Theme as StyleSheet>::Style) -> Color

Produces the Color of the selection of a text input.
source§

fn disabled(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of a disabled text input.
source§

fn disabled_color(&self, style: &<Theme as StyleSheet>::Style) -> Color

Produces the Color of the value of a disabled text input.
source§

impl StyleSheet for Theme

§

type Style = Rule

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the style of a rule.
source§

impl StyleSheet for Theme

§

type Style = Menu

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the Appearance of a menu.
source§

impl StyleSheet for Theme

§

type Style = Svg

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Produces the Appearance of the svg.
source§

impl StyleSheet for Theme

§

type Style = Radio

The supported style of the StyleSheet.
source§

fn active( &self, style: &<Theme as StyleSheet>::Style, is_selected: bool ) -> Appearance

Produces the active Appearance of a radio button.
source§

fn hovered( &self, style: &<Theme as StyleSheet>::Style, is_selected: bool ) -> Appearance

Produces the hovered Appearance of a radio button.
source§

impl StyleSheet for Theme

§

type Style = Application

The supported style of the StyleSheet.
source§

fn appearance(&self, style: &<Theme as StyleSheet>::Style) -> Appearance

Returns the Appearance of the application for the provided Style.
source§

impl StyleSheet for Theme

§

type Style = PaneGrid

The supported style of the StyleSheet.
source§

fn picked_split(&self, style: &<Theme as StyleSheet>::Style) -> Option<Line>

The Line to draw when a split is picked.
source§

fn hovered_split(&self, style: &<Theme as StyleSheet>::Style) -> Option<Line>

The Line to draw when a split is hovered.
source§

impl StyleSheet for Theme

§

type Style = Text

The supported style of the StyleSheet.
source§

fn appearance(&self, style: <Theme as StyleSheet>::Style) -> Appearance

Produces the Appearance of some text.
source§

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§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere T: FloatComponent, Swp: WhitePoint, Dwp: WhitePoint, D: AdaptFrom<S, Swp, Dwp, T>,

source§

fn adapt_into_using<M>(self, method: M) -> Dwhere M: TransformMatrix<Swp, Dwp, T>,

Convert the source color to the destination color using the specified method
source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default
source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> IntoColor<U> for Twhere U: FromColor<T>,

source§

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
source§

impl<T, U> IntoColorUnclamped<U> for Twhere U: FromColorUnclamped<T>,

source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T, U> TryIntoColor<U> for Twhere U: TryFromColor<T>,

source§

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
source§

impl<T> MaybeSend for Twhere T: Send,