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

pub trait WindowExtWindows {
    pub fn hinstance(&self) -> *mut c_void;
pub fn hwnd(&self) -> *mut c_void;
pub fn set_taskbar_icon(&self, taskbar_icon: Option<Icon>);
pub fn theme(&self) -> Theme; }

Additional methods on Window that are specific to Windows.

Required methods

pub fn hinstance(&self) -> *mut c_void[src]

Returns the HINSTANCE of the window

pub fn hwnd(&self) -> *mut c_void[src]

Returns the native handle that is used by this window.

The pointer will become invalid when the native window was destroyed.

pub fn set_taskbar_icon(&self, taskbar_icon: Option<Icon>)[src]

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

pub fn theme(&self) -> Theme[src]

Returns the current window theme.

Loading content...

Implementors

impl WindowExtWindows for Window[src]

Loading content...