Enum zng_ext_window::WindowIcon

source ·
pub enum WindowIcon {
    Default,
    Image(ImageSource),
}
Expand description

Window icon.

Variants§

§

Default

The operating system’s default icon.

§

Image(ImageSource)

Image is requested from IMAGES.

Implementations§

source§

impl WindowIcon

source

pub fn render<I, F>(new_icon: F) -> Self
where I: UiNode, F: Fn() -> I + Send + Sync + 'static,

New window icon from a closure that generates a new icon UiNode for the window.

The closure is called once on init and every time the window icon property changes, the closure runs in a headless window context, it must return a node to be rendered as an icon.

The icon node is deinited and dropped after the first render, you can enable image::render_retain on it to cause the icon to continue rendering on updates.

§Examples
WindowIcon::render(
    || Container! {
        // image::render_retain = true;
        size = (36, 36);
        background_gradient = Line::to_bottom_right(), stops![colors::MIDNIGHT_BLUE, 70.pct(), colors::CRIMSON];
        corner_radius = 6;
        font_size = 28;
        font_weight = FontWeight::BOLD;
        child = Text!("A");
    }
)

Trait Implementations§

source§

impl Clone for WindowIcon

source§

fn clone(&self) -> WindowIcon

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 WindowIcon

source§

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

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

impl Default for WindowIcon

source§

impl From<&'static [u8]> for WindowIcon

source§

fn from(data: &'static [u8]) -> Self

From encoded data of Unknown format.

source§

impl<const N: usize> From<&'static [u8; N]> for WindowIcon

source§

fn from(data: &'static [u8; N]) -> Self

From encoded data of Unknown format.

source§

impl From<&Path> for WindowIcon

source§

fn from(path: &Path) -> Self

Converts to this type from the input type.
source§

impl From<&str> for WindowIcon

source§

fn from(s: &str) -> Self

See ImageSource conversion from &str

source§

impl<F: Into<ImageDataFormat>> From<(&'static [u8], F)> for WindowIcon

source§

fn from((data, format): (&'static [u8], F)) -> Self

From encoded data of known format.

source§

impl<F: Into<ImageDataFormat>, const N: usize> From<(&'static [u8; N], F)> for WindowIcon

source§

fn from((data, format): (&'static [u8; N], F)) -> Self

From encoded data of known format.

source§

impl<F: Into<ImageDataFormat>> From<(Arc<Vec<u8>>, F)> for WindowIcon

source§

fn from((data, format): (Arc<Vec<u8>>, F)) -> Self

From encoded data of known format.

source§

impl<F: Into<ImageDataFormat>> From<(Vec<u8>, F)> for WindowIcon

source§

fn from((data, format): (Vec<u8>, F)) -> Self

From encoded data of known format.

source§

impl From<Arc<Vec<u8>>> for WindowIcon

source§

fn from(data: Arc<Vec<u8>>) -> Self

From encoded data of Unknown format.

source§

impl From<ImageSource> for WindowIcon

source§

fn from(source: ImageSource) -> Self

Converts to this type from the input type.
source§

impl From<PathBuf> for WindowIcon

source§

fn from(path: PathBuf) -> Self

Converts to this type from the input type.
source§

impl From<ReadOnlyVar<Img, ArcVar<Img>>> for WindowIcon

source§

fn from(image: ImageVar) -> Self

Converts to this type from the input type.
source§

impl From<String> for WindowIcon

source§

fn from(s: String) -> Self

Same as conversion from &str.

source§

impl From<Txt> for WindowIcon

source§

fn from(s: Txt) -> Self

Same as conversion from &str.

source§

impl From<Uri> for WindowIcon

source§

fn from(uri: Uri) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8>> for WindowIcon

source§

fn from(data: Vec<u8>) -> Self

From encoded data of Unknown format.

source§

impl IntoVar<WindowIcon> for &'static [u8]

source§

fn into_var(self) -> Self::Var

From encoded data of Unknown format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<const N: usize> IntoVar<WindowIcon> for &'static [u8; N]

source§

fn into_var(self) -> Self::Var

From encoded data of Unknown format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for &Path

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for &str

source§

fn into_var(self) -> Self::Var

See ImageSource conversion from &str

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<F: Into<ImageDataFormat>> IntoVar<WindowIcon> for (&'static [u8], F)

source§

fn into_var(self) -> Self::Var

From encoded data of known format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<F: Into<ImageDataFormat>, const N: usize> IntoVar<WindowIcon> for (&'static [u8; N], F)

source§

fn into_var(self) -> Self::Var

From encoded data of known format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<F: Into<ImageDataFormat>> IntoVar<WindowIcon> for (Arc<Vec<u8>>, F)

source§

fn into_var(self) -> Self::Var

From encoded data of known format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<F: Into<ImageDataFormat>> IntoVar<WindowIcon> for (Vec<u8>, F)

source§

fn into_var(self) -> Self::Var

From encoded data of known format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for Arc<Vec<u8>>

source§

fn into_var(self) -> Self::Var

From encoded data of Unknown format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for ImageSource

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for PathBuf

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for ImageVar

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for String

source§

fn into_var(self) -> Self::Var

Same as conversion from &str.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for Txt

source§

fn into_var(self) -> Self::Var

Same as conversion from &str.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for Uri

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<WindowIcon> for Vec<u8>

source§

fn into_var(self) -> Self::Var

From encoded data of Unknown format.

§

type Var = LocalVar<WindowIcon>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl PartialEq for WindowIcon

source§

fn eq(&self, other: &WindowIcon) -> 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 IntoValue<WindowIcon> for &'static [u8]

source§

impl<const N: usize> IntoValue<WindowIcon> for &'static [u8; N]

source§

impl IntoValue<WindowIcon> for &Path

source§

impl IntoValue<WindowIcon> for &str

source§

impl<F: Into<ImageDataFormat>> IntoValue<WindowIcon> for (&'static [u8], F)

source§

impl<F: Into<ImageDataFormat>, const N: usize> IntoValue<WindowIcon> for (&'static [u8; N], F)

source§

impl<F: Into<ImageDataFormat>> IntoValue<WindowIcon> for (Arc<Vec<u8>>, F)

source§

impl<F: Into<ImageDataFormat>> IntoValue<WindowIcon> for (Vec<u8>, F)

source§

impl IntoValue<WindowIcon> for Arc<Vec<u8>>

source§

impl IntoValue<WindowIcon> for ImageSource

source§

impl IntoValue<WindowIcon> for PathBuf

source§

impl IntoValue<WindowIcon> for ImageVar

source§

impl IntoValue<WindowIcon> for String

source§

impl IntoValue<WindowIcon> for Txt

source§

impl IntoValue<WindowIcon> for Uri

source§

impl IntoValue<WindowIcon> for Vec<u8>

source§

impl StructuralPartialEq for WindowIcon

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool

Gets if self equals other.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> StateValue for T
where T: Any + Send + Sync,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,