[][src]Trait winit::platform::windows::WindowBuilderExtWindows

pub trait WindowBuilderExtWindows {
    fn with_parent_window(self, parent: HWND) -> WindowBuilder;
fn with_taskbar_icon(self, taskbar_icon: Option<Icon>) -> WindowBuilder;
fn with_no_redirection_bitmap(self, flag: bool) -> WindowBuilder; }

Additional methods on WindowBuilder that are specific to Windows.

Required methods

fn with_parent_window(self, parent: HWND) -> WindowBuilder

Sets a parent to the window to be created.

fn with_taskbar_icon(self, taskbar_icon: Option<Icon>) -> WindowBuilder

This sets ICON_BIG. A good ceiling here is 256x256.

fn with_no_redirection_bitmap(self, flag: bool) -> WindowBuilder

This sets WS_EX_NOREDIRECTIONBITMAP.

Loading content...

Implementors

impl WindowBuilderExtWindows for WindowBuilder[src]

Loading content...