Struct show_image::WindowOptions[][src]

pub struct WindowOptions {
    pub preserve_aspect_ratio: bool,
    pub background_color: Color,
    pub start_hidden: bool,
    pub size: Option<[u32; 2]>,
    pub resizable: bool,
    pub borderless: bool,
    pub show_overlays: bool,
}

Options for creating a new window.

Fields

preserve_aspect_ratio: bool

Preserve the aspect ratio of the image when scaling.

background_color: Color

The background color for the window.

This is used to color areas without image data if preserve_aspect_ratio is true.

start_hidden: bool

Create the window hidden.

The window can manually be made visible at a later time.

size: Option<[u32; 2]>

The initial size of the window in pixel.

This may be ignored by a window manager.

resizable: bool

If true allow the window to be resized.

This may be ignored by a window manager.

borderless: bool

Make the window borderless.

show_overlays: bool

If true, draw overlays on the image.

Defaults to true.

Implementations

impl WindowOptions[src]

pub fn set_preserve_aspect_ratio(
    mut self: Self,
    preserve_aspect_ratio: bool
) -> Self
[src]

Preserve the aspect ratio of displayed images, or not.

This function consumes and returns self to allow daisy chaining.

pub fn set_background_color(mut self: Self, background_color: Color) -> Self[src]

Set the background color of the window.

This function consumes and returns self to allow daisy chaining.

pub fn set_start_hidden(mut self: Self, start_hidden: bool) -> Self[src]

Start the window hidden.

This function consumes and returns self to allow daisy chaining.

pub fn set_size(mut self: Self, size: [u32; 2]) -> Self[src]

Set the initial size of the window.

This property may be ignored by a window manager.

This function consumes and returns self to allow daisy chaining.

pub fn set_resizable(mut self: Self, resizable: bool) -> Self[src]

Make the window resizable or not.

This property may be ignored by a window manager.

This function consumes and returns self to allow daisy chaining.

pub fn set_borderless(mut self: Self, borderless: bool) -> Self[src]

Make the window borderless or not.

This function consumes and returns self to allow daisy chaining.

pub fn set_show_overlays(mut self: Self, show_overlays: bool) -> Self[src]

Set wether or not overlays should be drawn on the window.

Trait Implementations

impl Clone for WindowOptions[src]

impl Debug for WindowOptions[src]

impl Default for WindowOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,