diff options
author | 2020-01-16 05:54:22 +0100 | |
---|---|---|
committer | 2020-01-16 05:54:22 +0100 | |
commit | c96492b95660640eb2dd66a77c96ad32d5d5b0ae (patch) | |
tree | d072f613ac78a7389456681b48650badaca8d60b /winit/src/conversion.rs | |
parent | d6b20d3e796951e6b42726fddc78fbb1b9aaa094 (diff) | |
download | iced-c96492b95660640eb2dd66a77c96ad32d5d5b0ae.tar.gz iced-c96492b95660640eb2dd66a77c96ad32d5d5b0ae.tar.bz2 iced-c96492b95660640eb2dd66a77c96ad32d5d5b0ae.zip |
Expose `window::Mode` in `iced`
Although the Fullscreen API in the Web platform has some limitations, it
is still useful to be able to support fullscreen on the native side.
Diffstat (limited to '')
-rw-r--r-- | winit/src/conversion.rs | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/winit/src/conversion.rs b/winit/src/conversion.rs index 16ed7547..725b2d86 100644 --- a/winit/src/conversion.rs +++ b/winit/src/conversion.rs @@ -7,23 +7,25 @@ use crate::{ keyboard::{KeyCode, ModifiersState}, mouse, ButtonState, }, - window, MouseCursor, + Mode, MouseCursor, }; -/// Convert a `Mode` from [`iced_native`] to a [`winit`] fullscreen mode. +/// Converts a [`Mode`] to a [`winit`] fullscreen mode. +/// +/// [`Mode`]: pub fn fullscreen( monitor: winit::monitor::MonitorHandle, - mode: window::Mode, + mode: Mode, ) -> Option<winit::window::Fullscreen> { match mode { - window::Mode::Windowed => None, - window::Mode::Fullscreen => { + Mode::Windowed => None, + Mode::Fullscreen => { Some(winit::window::Fullscreen::Borderless(monitor)) } } } -/// Convert a `MouseCursor` from [`iced_native`] to a [`winit`] cursor icon. +/// Converts a `MouseCursor` from [`iced_native`] to a [`winit`] cursor icon. /// /// [`winit`]: https://github.com/rust-windowing/winit /// [`iced_native`]: https://github.com/hecrj/iced/tree/master/native @@ -39,7 +41,7 @@ pub fn mouse_cursor(mouse_cursor: MouseCursor) -> winit::window::CursorIcon { } } -/// Convert a `MouseButton` from [`winit`] to an [`iced_native`] mouse button. +/// Converts a `MouseButton` from [`winit`] to an [`iced_native`] mouse button. /// /// [`winit`]: https://github.com/rust-windowing/winit /// [`iced_native`]: https://github.com/hecrj/iced/tree/master/native @@ -52,7 +54,7 @@ pub fn mouse_button(mouse_button: winit::event::MouseButton) -> mouse::Button { } } -/// Convert an `ElementState` from [`winit`] to an [`iced_native`] button state. +/// Converts an `ElementState` from [`winit`] to an [`iced_native`] button state. /// /// [`winit`]: https://github.com/rust-windowing/winit /// [`iced_native`]: https://github.com/hecrj/iced/tree/master/native @@ -63,8 +65,8 @@ pub fn button_state(element_state: winit::event::ElementState) -> ButtonState { } } -/// Convert some `ModifiersState` from [`winit`] to an [`iced_native`] modifiers -/// state. +/// Converts some `ModifiersState` from [`winit`] to an [`iced_native`] +/// modifiers state. /// /// [`winit`]: https://github.com/rust-windowing/winit /// [`iced_native`]: https://github.com/hecrj/iced/tree/master/native @@ -79,7 +81,7 @@ pub fn modifiers_state( } } -/// Convert a `VirtualKeyCode` from [`winit`] to an [`iced_native`] key code. +/// Converts a `VirtualKeyCode` from [`winit`] to an [`iced_native`] key code. /// /// [`winit`]: https://github.com/rust-windowing/winit /// [`iced_native`]: https://github.com/hecrj/iced/tree/master/native |