pub struct WryWindowBuilder {
    pub window: WindowAttributes,
    /* private fields */
}
Expand description

Object that allows you to build windows.

Fields

window: WindowAttributes

The attributes to use to create the window.

Implementations

Initializes a new WindowBuilder with default values.

Requests the window to be of specific dimensions.

See Window::set_inner_size for details.

Sets a minimum dimension size for the window.

See Window::set_min_inner_size for details.

Sets a maximum dimension size for the window.

See Window::set_max_inner_size for details.

Sets a desired initial position for the window.

See WindowAttributes::position for details.

Sets whether the window is resizable or not.

See Window::set_resizable for details.

Requests a specific title for the window.

See Window::set_title for details.

Requests a specific menu for the window.

See Window::set_menu for details.

Sets the window fullscreen state.

See Window::set_fullscreen for details.

Requests maximized mode.

See Window::set_maximized for details.

Sets whether the window will be initially hidden or visible.

See Window::set_visible for details.

Sets whether the background of the window should be transparent.

Sets whether the window should have a border, a title bar, etc.

See Window::set_decorations for details.

Sets whether or not the window will always be below other windows.

See Window::set_always_on_bottom for details.

Sets whether or not the window will always be on top of other windows.

See Window::set_always_on_top for details.

Sets the window icon.

See Window::set_window_icon for details.

Forces a theme or uses the system settings if None was provided.

Builds the window.

Possible causes of error include denied permission, incompatible system, and lack of memory.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Sets a parent to the window to be created. Read more
Set an owner to the window to be created. Can be used to create a dialog box, for example. Can be used in combination with WindowExtWindows::set_enable(false) on the owner window to create a modal dialog box. Read more
Sets a menu on the window to be created. Read more
This sets ICON_BIG. A good ceiling here is 256x256.
This sets WS_EX_NOREDIRECTIONBITMAP.
Enables or disables drag and drop support (enabled by default). Will interfere with other crates that use multi-threaded COM API (CoInitializeEx with COINIT_MULTITHREADED instead of COINIT_APARTMENTTHREADED) on the same thread. Note that tao may still attempt to initialize COM API regardless of this option. Currently only fullscreen mode does that, but there may be more in the future. If you need COM API with COINIT_MULTITHREADED you must initialize it before calling any tao functions. See https://docs.microsoft.com/en-us/windows/win32/api/objbase/nf-objbase-coinitialize#remarks for more information. Read more
Whether to create the window icon with the taskbar icon or not.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.