Compare commits
47 Commits
notgull/sp
...
notgull/sp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0871c849ef | ||
|
|
204dd734dd | ||
|
|
4dc8878511 | ||
|
|
47e7d8b7fa | ||
|
|
388c40b1e0 | ||
|
|
7a40aa43dc | ||
|
|
944347696a | ||
|
|
96172693fe | ||
|
|
32004405ee | ||
|
|
22e932b5ab | ||
|
|
3d4c53459a | ||
|
|
f0b4889227 | ||
|
|
c81448e0b8 | ||
|
|
f498ff0369 | ||
|
|
c4e6e94b80 | ||
|
|
a5dbd3ee52 | ||
|
|
a4480a0652 | ||
|
|
e41f0eabb1 | ||
|
|
7e28d7615e | ||
|
|
010787a430 | ||
|
|
352e70b8ac | ||
|
|
990bbf178f | ||
|
|
97cfdd4b09 | ||
|
|
a127bd6f66 | ||
|
|
4a8648be57 | ||
|
|
a8c7109e89 | ||
|
|
7abd427216 | ||
|
|
3fb93b4f83 | ||
|
|
19190a95a0 | ||
|
|
c4310af83c | ||
|
|
542d1938ce | ||
|
|
31f8b816bd | ||
|
|
e61a7320a2 | ||
|
|
db41938deb | ||
|
|
2bc1943188 | ||
|
|
385c4b3c88 | ||
|
|
ea70f773d3 | ||
|
|
83012f4c1c | ||
|
|
6825fed073 | ||
|
|
273984a385 | ||
|
|
dbe0f852da | ||
|
|
d1902aa15a | ||
|
|
4112fccc12 | ||
|
|
bd6ce32860 | ||
|
|
8936fe1acd | ||
|
|
fedb86ea5a | ||
|
|
20687fef1c |
13
.cspell.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
|
||||||
|
"version": "0.2",
|
||||||
|
"dictionaryDefinitions": [
|
||||||
|
{
|
||||||
|
"name": "project-words",
|
||||||
|
"path": "./project-words.txt",
|
||||||
|
"addWords": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dictionaries": ["project-words"],
|
||||||
|
"ignorePaths": ["/target", "/project-words.txt"]
|
||||||
|
}
|
||||||
15
.github/workflows/ci.yml
vendored
@@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fmt:
|
fmt:
|
||||||
name: Check formatting
|
name: Tidy Code
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@@ -16,10 +16,13 @@ jobs:
|
|||||||
components: rustfmt
|
components: rustfmt
|
||||||
- name: Check Formatting
|
- name: Check Formatting
|
||||||
run: cargo fmt -- --check
|
run: cargo fmt -- --check
|
||||||
|
- name: Check Spelling
|
||||||
|
run: npx -y cspell --no-progress --no-summary '**/*.rs' '**/*.md'
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
name: Test ${{ matrix.toolchain }} ${{ matrix.platform.name }}
|
name: Test ${{ matrix.toolchain }} ${{ matrix.platform.name }}
|
||||||
runs-on: ${{ matrix.platform.os }}
|
runs-on: ${{ matrix.platform.os }}
|
||||||
|
needs: fmt
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
@@ -35,7 +38,7 @@ jobs:
|
|||||||
- { name: 'Linux 64bit', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, }
|
- { name: 'Linux 64bit', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, }
|
||||||
- { name: 'X11', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: '--no-default-features --features=x11' }
|
- { name: 'X11', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: '--no-default-features --features=x11' }
|
||||||
- { name: 'Wayland', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: '--no-default-features --features=wayland,wayland-dlopen' }
|
- { name: 'Wayland', target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: '--no-default-features --features=wayland,wayland-dlopen' }
|
||||||
- { name: 'Android', target: aarch64-linux-android, os: ubuntu-latest, options: '--features=android-native-activity', cmd: 'apk --' }
|
- { name: 'Android', target: aarch64-linux-android, os: ubuntu-latest, options: '--package=winit --features=android-native-activity', cmd: 'apk --' }
|
||||||
- { name: 'Redox OS', target: x86_64-unknown-redox, os: ubuntu-latest, }
|
- { name: 'Redox OS', target: x86_64-unknown-redox, os: ubuntu-latest, }
|
||||||
- { name: 'macOS', target: x86_64-apple-darwin, os: macos-latest, }
|
- { name: 'macOS', target: x86_64-apple-darwin, os: macos-latest, }
|
||||||
- { name: 'iOS x86_64', target: x86_64-apple-ios, os: macos-latest, }
|
- { name: 'iOS x86_64', target: x86_64-apple-ios, os: macos-latest, }
|
||||||
@@ -89,7 +92,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Generate lockfile
|
- name: Generate lockfile
|
||||||
# Also updates the crates.io index
|
# Also updates the crates.io index
|
||||||
run: cargo generate-lockfile
|
run: cargo generate-lockfile && cargo update -p ahash --precise 0.8.7 && cargo update -p bumpalo --precise 3.14.0
|
||||||
|
|
||||||
- name: Install GCC Multilib
|
- name: Install GCC Multilib
|
||||||
if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')
|
if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')
|
||||||
@@ -125,13 +128,13 @@ jobs:
|
|||||||
RUSTDOCFLAGS: '--deny=warnings ${{ matrix.platform.rustflags }}'
|
RUSTDOCFLAGS: '--deny=warnings ${{ matrix.platform.rustflags }}'
|
||||||
|
|
||||||
- name: Build crate
|
- name: Build crate
|
||||||
run: cargo $CMD build -p winit $OPTIONS
|
run: cargo $CMD build $OPTIONS
|
||||||
|
|
||||||
- name: Build tests
|
- name: Build tests
|
||||||
if: >
|
if: >
|
||||||
!contains(matrix.platform.target, 'redox') &&
|
!contains(matrix.platform.target, 'redox') &&
|
||||||
matrix.toolchain != '1.70.0'
|
matrix.toolchain != '1.70.0'
|
||||||
run: cargo $CMD test -p winit --no-run $OPTIONS
|
run: cargo $CMD test --no-run $OPTIONS
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
if: >
|
if: >
|
||||||
@@ -150,7 +153,7 @@ jobs:
|
|||||||
if: >
|
if: >
|
||||||
!contains(matrix.platform.target, 'redox') &&
|
!contains(matrix.platform.target, 'redox') &&
|
||||||
matrix.toolchain != '1.70.0'
|
matrix.toolchain != '1.70.0'
|
||||||
run: cargo $CMD test --no-run $OPTIONS -p winit --features serde
|
run: cargo $CMD test --no-run $OPTIONS --features serde
|
||||||
|
|
||||||
- name: Run tests with serde enabled
|
- name: Run tests with serde enabled
|
||||||
if: >
|
if: >
|
||||||
|
|||||||
77
CHANGELOG.md
@@ -11,15 +11,20 @@ Unreleased` header.
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
- On X11, fix swapped instance and general class names.
|
- Move `dpi` types to its own crate, and re-export it from the root crate.
|
||||||
|
- Implement `Sync` for `EventLoopProxy<T: Send>`.
|
||||||
|
- **Breaking:** Move `Window::new` to `ActiveEventLoop::create_window` and `EventLoop::create_window` (with the latter being deprecated).
|
||||||
|
- **Breaking:** Rename `EventLoopWindowTarget` to `ActiveEventLoop`.
|
||||||
|
- **Breaking:** Remove `Deref` implementation for `EventLoop` that gave `EventLoopWindowTarget`.
|
||||||
|
- **Breaking**: Remove `WindowBuilder` in favor of `WindowAttributes`.
|
||||||
- **Breaking:** Removed unnecessary generic parameter `T` from `EventLoopWindowTarget`.
|
- **Breaking:** Removed unnecessary generic parameter `T` from `EventLoopWindowTarget`.
|
||||||
- On Windows, macOS, X11, Wayland and Web, implement setting images as cursors. See the `custom_cursors.rs` example.
|
- On Windows, macOS, X11, Wayland and Web, implement setting images as cursors. See the `custom_cursors.rs` example.
|
||||||
- **Breaking:** Remove `Window::set_cursor_icon`
|
- **Breaking:** Remove `Window::set_cursor_icon`
|
||||||
- Add `WindowBuilder::with_cursor` and `Window::set_cursor` which takes a `CursorIcon` or `CustomCursor`
|
- Add `WindowBuilder::with_cursor` and `Window::set_cursor` which takes a `CursorIcon` or `CustomCursor`
|
||||||
- Add `CustomCursor`
|
|
||||||
- Add `CustomCursor::from_rgba` to allow creating cursor images from RGBA data.
|
- Add `CustomCursor::from_rgba` to allow creating cursor images from RGBA data.
|
||||||
- Add `CustomCursorExtWebSys::from_url` to allow loading cursor images from URLs.
|
- Add `CustomCursorExtWebSys::from_url` to allow loading cursor images from URLs.
|
||||||
- Add `CustomCursorExtWebSys::from_animation` to allow creating animated cursors from other `CustomCursor`s.
|
- Add `CustomCursorExtWebSys::from_animation` to allow creating animated cursors from other `CustomCursor`s.
|
||||||
|
- Add `{Active,}EventLoop::create_custom_cursor` to load custom cursor image sources.
|
||||||
- On macOS, add services menu.
|
- On macOS, add services menu.
|
||||||
- **Breaking:** On Web, remove queuing fullscreen request in absence of transient activation.
|
- **Breaking:** On Web, remove queuing fullscreen request in absence of transient activation.
|
||||||
- On Web, fix setting cursor icon overriding cursor visibility.
|
- On Web, fix setting cursor icon overriding cursor visibility.
|
||||||
@@ -36,27 +41,57 @@ Unreleased` header.
|
|||||||
- on iOS, add detection support for `PinchGesture`, `DoubleTapGesture` and `RotationGesture`.
|
- on iOS, add detection support for `PinchGesture`, `DoubleTapGesture` and `RotationGesture`.
|
||||||
- on Windows: add `with_system_backdrop`, `with_border_color`, `with_title_background_color`, `with_title_text_color` and `with_corner_preference`
|
- on Windows: add `with_system_backdrop`, `with_border_color`, `with_title_background_color`, `with_title_text_color` and `with_corner_preference`
|
||||||
- On Windows, Remove `WS_CAPTION`, `WS_BORDER` and `WS_EX_WINDOWEDGE` styles for child windows without decorations.
|
- On Windows, Remove `WS_CAPTION`, `WS_BORDER` and `WS_EX_WINDOWEDGE` styles for child windows without decorations.
|
||||||
- On Windows, fixed a race condition when sending an event through the loop proxy.
|
|
||||||
- **Breaking:** Removed `EventLoopError::AlreadyRunning`, which can't happen as it is already prevented by the type system.
|
- **Breaking:** Removed `EventLoopError::AlreadyRunning`, which can't happen as it is already prevented by the type system.
|
||||||
- On Wayland, disable `Occluded` event handling.
|
|
||||||
- Added `EventLoop::builder`, which is intended to replace the (now deprecated) `EventLoopBuilder::new`.
|
- Added `EventLoop::builder`, which is intended to replace the (now deprecated) `EventLoopBuilder::new`.
|
||||||
- **Breaking:** Changed the signature of `EventLoop::with_user_event` to return a builder.
|
- **Breaking:** Changed the signature of `EventLoop::with_user_event` to return a builder.
|
||||||
- **Breaking:** Removed `EventLoopBuilder::with_user_event`, the functionality is now available in `EventLoop::with_user_event`.
|
- **Breaking:** Removed `EventLoopBuilder::with_user_event`, the functionality is now available in `EventLoop::with_user_event`.
|
||||||
- Add `Window::builder`, which is intended to replace the (now deprecated) `WindowBuilder::new`.
|
- Add `Window::default_attributes` to get default `WindowAttributes`.
|
||||||
|
- `log` has been replaced with `tracing`. The old behavior can be emulated by setting the `log` feature on the `tracing` crate.
|
||||||
|
|
||||||
|
# 0.29.13
|
||||||
|
|
||||||
|
- On Web, fix possible crash with `ControlFlow::Wait` and `ControlFlow::WaitUntil`.
|
||||||
|
|
||||||
|
# 0.29.12
|
||||||
|
|
||||||
|
- On X11, fix use after free during xinput2 handling.
|
||||||
|
- On X11, filter close to zero values in mouse device events
|
||||||
|
|
||||||
|
# 0.29.11
|
||||||
|
|
||||||
|
- Fix compatibility with 32-bit platforms without 64-bit atomics.
|
||||||
|
- On macOS, fix incorrect IME cursor rect origin.
|
||||||
|
- On Windows, fixed a race condition when sending an event through the loop proxy.
|
||||||
|
- On X11, fix swapped instance and general class names.
|
||||||
|
- On X11, don't require XIM to run.
|
||||||
|
- On X11, fix xkb state not being updated correctly sometimes leading to wrong input.
|
||||||
- On X11, reload dpi on `_XSETTINGS_SETTINGS` update.
|
- On X11, reload dpi on `_XSETTINGS_SETTINGS` update.
|
||||||
- On X11, fix deadlock when adjusting DPI and resizing at the same time.
|
- On X11, fix deadlock when adjusting DPI and resizing at the same time.
|
||||||
|
- On Wayland, disable `Occluded` event handling.
|
||||||
|
- On Wayland, fix DeviceEvent::Motion not being sent
|
||||||
- On Wayland, fix `Focused(false)` being send when other seats still have window focused.
|
- On Wayland, fix `Focused(false)` being send when other seats still have window focused.
|
||||||
- On Wayland, fix `Window::set_{min,max}_inner_size` not always applied.
|
- On Wayland, fix `Window::set_{min,max}_inner_size` not always applied.
|
||||||
|
- On Wayland, fix title in CSD not updated from `AboutToWait`.
|
||||||
- On Windows, fix inconsistent resizing behavior with multi-monitor setups when repositioning outside the event loop.
|
- On Windows, fix inconsistent resizing behavior with multi-monitor setups when repositioning outside the event loop.
|
||||||
- On Wayland, fix `WAYLAND_SOCKET` not used when detecting platform.
|
- On Wayland, fix `WAYLAND_SOCKET` not used when detecting platform.
|
||||||
- **Breaking:** Move some types to the `winit-core` crate. Most types are
|
- On Orbital, fix `logical_key` and `text` not reported in `KeyEvent`.
|
||||||
re-exported verbatim; however:
|
- On Orbital, implement `KeyEventExtModifierSupplement`.
|
||||||
- `Event`, `WindowEvent` and `KeyEvent` now take a generic that `winit`
|
- On Orbital, map keys to `NamedKey` when possible.
|
||||||
implements.
|
- On Orbital, implement `set_cursor_grab`.
|
||||||
- `ActivationToken` and `InnerSizeWriter` expose new methods to make them
|
- On Orbital, implement `set_cursor_visible`.
|
||||||
useful.
|
- On Orbital, implement `drag_window`.
|
||||||
- `InnerSizeWriter::request_inner_size` returns an `InnerSizeIgnored` error
|
- On Orbital, implement `drag_resize_window`.
|
||||||
instead of an `ExternalError`.
|
- On Orbital, implement `set_transparent`.
|
||||||
|
- On Orbital, implement `set_visible`.
|
||||||
|
- On Orbital, implement `is_visible`.
|
||||||
|
- On Orbital, implement `set_resizable`.
|
||||||
|
- On Orbital, implement `is_resizable`.
|
||||||
|
- On Orbital, implement `set_maximized`.
|
||||||
|
- On Orbital, implement `is_maximized`.
|
||||||
|
- On Orbital, implement `set_decorations`.
|
||||||
|
- On Orbital, implement `is_decorated`.
|
||||||
|
- On Orbital, implement `set_window_level`.
|
||||||
|
- On Orbital, emit `DeviceEvent::MouseMotion`.
|
||||||
|
|
||||||
# 0.29.10
|
# 0.29.10
|
||||||
|
|
||||||
@@ -118,7 +153,7 @@ Unreleased` header.
|
|||||||
# 0.29.3
|
# 0.29.3
|
||||||
|
|
||||||
- On Wayland, apply correct scale to `PhysicalSize` passed in `WindowBuilder::with_inner_size` when possible.
|
- On Wayland, apply correct scale to `PhysicalSize` passed in `WindowBuilder::with_inner_size` when possible.
|
||||||
- On Wayland, fix `RedrawRequsted` being always sent without decorations and `sctk-adwaita` feature.
|
- On Wayland, fix `RedrawRequested` being always sent without decorations and `sctk-adwaita` feature.
|
||||||
- On Wayland, ignore resize requests when the window is fully tiled.
|
- On Wayland, ignore resize requests when the window is fully tiled.
|
||||||
- On Wayland, use `configure_bounds` to constrain `with_inner_size` when compositor wants users to pick size.
|
- On Wayland, use `configure_bounds` to constrain `with_inner_size` when compositor wants users to pick size.
|
||||||
- On Windows, fix deadlock when accessing the state during `Cursor{Enter,Leave}`.
|
- On Windows, fix deadlock when accessing the state during `Cursor{Enter,Leave}`.
|
||||||
@@ -370,7 +405,7 @@ Unreleased` header.
|
|||||||
- **Breaking:**: Removed deprecated method `platform::unix::WindowExtUnix::is_ready`.
|
- **Breaking:**: Removed deprecated method `platform::unix::WindowExtUnix::is_ready`.
|
||||||
- Removed `parking_lot` dependency.
|
- Removed `parking_lot` dependency.
|
||||||
- **Breaking:** On macOS, add support for two-finger touchpad magnification and rotation gestures with new events `WindowEvent::TouchpadMagnify` and `WindowEvent::TouchpadRotate`. Also add support for touchpad smart-magnification gesture with a new event `WindowEvent::SmartMagnify`.
|
- **Breaking:** On macOS, add support for two-finger touchpad magnification and rotation gestures with new events `WindowEvent::TouchpadMagnify` and `WindowEvent::TouchpadRotate`. Also add support for touchpad smart-magnification gesture with a new event `WindowEvent::SmartMagnify`.
|
||||||
- **Breaking:** On web, the `WindowBuilderExtWebSys::with_prevent_default` setting (enabled by default), now additionally prevents scrolling of the webpage in mobile browsers, previously it only disabled scrolling on desktop.
|
- **Breaking:** On Web, the `WindowBuilderExtWebSys::with_prevent_default` setting (enabled by default), now additionally prevents scrolling of the webpage in mobile browsers, previously it only disabled scrolling on desktop.
|
||||||
- On Wayland, `wayland-csd-adwaita` now uses `ab_glyph` instead of `crossfont` to render the title for decorations.
|
- On Wayland, `wayland-csd-adwaita` now uses `ab_glyph` instead of `crossfont` to render the title for decorations.
|
||||||
- On Wayland, a new `wayland-csd-adwaita-crossfont` feature was added to use `crossfont` instead of `ab_glyph` for decorations.
|
- On Wayland, a new `wayland-csd-adwaita-crossfont` feature was added to use `crossfont` instead of `ab_glyph` for decorations.
|
||||||
- On Wayland, if not otherwise specified use upstream automatic CSD theme selection.
|
- On Wayland, if not otherwise specified use upstream automatic CSD theme selection.
|
||||||
@@ -390,7 +425,7 @@ Unreleased` header.
|
|||||||
- Added `Window::set_transparent` to provide a hint about transparency of the window on Wayland and macOS.
|
- Added `Window::set_transparent` to provide a hint about transparency of the window on Wayland and macOS.
|
||||||
- On macOS, fix the mouse buttons other than left/right/middle being reported as middle.
|
- On macOS, fix the mouse buttons other than left/right/middle being reported as middle.
|
||||||
- On Wayland, support fractional scaling via the wp-fractional-scale protocol.
|
- On Wayland, support fractional scaling via the wp-fractional-scale protocol.
|
||||||
- On web, fix removal of mouse event listeners from the global object upon window distruction.
|
- On Web, fix removal of mouse event listeners from the global object upon window destruction.
|
||||||
- Add WindowAttributes getter to WindowBuilder to allow introspection of default values.
|
- Add WindowAttributes getter to WindowBuilder to allow introspection of default values.
|
||||||
- Added `Window::set_ime_purpose` for setting the IME purpose, currently implemented on Wayland only.
|
- Added `Window::set_ime_purpose` for setting the IME purpose, currently implemented on Wayland only.
|
||||||
|
|
||||||
@@ -496,7 +531,7 @@ Unreleased` header.
|
|||||||
- On Web, add `with_prevent_default` and `with_focusable` to `WindowBuilderExtWebSys` to control whether events should be propagated.
|
- On Web, add `with_prevent_default` and `with_focusable` to `WindowBuilderExtWebSys` to control whether events should be propagated.
|
||||||
- On Windows, fix focus events being sent to inactive windows.
|
- On Windows, fix focus events being sent to inactive windows.
|
||||||
- **Breaking**, update `raw-window-handle` to `v0.5` and implement `HasRawDisplayHandle` for `Window` and `EventLoopWindowTarget`.
|
- **Breaking**, update `raw-window-handle` to `v0.5` and implement `HasRawDisplayHandle` for `Window` and `EventLoopWindowTarget`.
|
||||||
- On X11, add function `register_xlib_error_hook` into `winit::platform::unix` to subscribe for errors comming from Xlib.
|
- On X11, add function `register_xlib_error_hook` into `winit::platform::unix` to subscribe for errors coming from Xlib.
|
||||||
- On Android, upgrade `ndk` and `ndk-glue` dependencies to the recently released `0.7.0`.
|
- On Android, upgrade `ndk` and `ndk-glue` dependencies to the recently released `0.7.0`.
|
||||||
- All platforms can now be relied on to emit a `Resumed` event. Applications are recommended to lazily initialize graphics state and windows on first resume for portability.
|
- All platforms can now be relied on to emit a `Resumed` event. Applications are recommended to lazily initialize graphics state and windows on first resume for portability.
|
||||||
- **Breaking:**: Reverse horizontal scrolling sign in `MouseScrollDelta` to match the direction of vertical scrolling. A positive X value now means moving the content to the right. The meaning of vertical scrolling stays the same: a positive Y value means moving the content down.
|
- **Breaking:**: Reverse horizontal scrolling sign in `MouseScrollDelta` to match the direction of vertical scrolling. A positive X value now means moving the content to the right. The meaning of vertical scrolling stays the same: a positive Y value means moving the content down.
|
||||||
@@ -795,7 +830,7 @@ Unreleased` header.
|
|||||||
- On Windows, fix handling of surrogate pairs when dispatching `ReceivedCharacter`.
|
- On Windows, fix handling of surrogate pairs when dispatching `ReceivedCharacter`.
|
||||||
- On macOS 10.15, fix freeze upon exiting exclusive fullscreen mode.
|
- On macOS 10.15, fix freeze upon exiting exclusive fullscreen mode.
|
||||||
- On iOS, fix panic upon closing the app.
|
- On iOS, fix panic upon closing the app.
|
||||||
- On X11, allow setting mulitple `XWindowType`s.
|
- On X11, allow setting multiple `XWindowType`s.
|
||||||
- On iOS, fix null window on initial `HiDpiFactorChanged` event.
|
- On iOS, fix null window on initial `HiDpiFactorChanged` event.
|
||||||
- On Windows, fix fullscreen window shrinking upon getting restored to a normal window.
|
- On Windows, fix fullscreen window shrinking upon getting restored to a normal window.
|
||||||
- On macOS, fix events not being emitted during modal loops, such as when windows are being resized
|
- On macOS, fix events not being emitted during modal loops, such as when windows are being resized
|
||||||
@@ -948,7 +983,7 @@ and `WindowEvent::HoveredFile`.
|
|||||||
- On Windows, hiding the cursor no longer hides the cursor for all Winit windows - just the one `hide_cursor` was called on.
|
- On Windows, hiding the cursor no longer hides the cursor for all Winit windows - just the one `hide_cursor` was called on.
|
||||||
- On Windows, cursor grabs used to get perpetually canceled when the grabbing window lost focus. Now, cursor grabs automatically get re-initialized when the window regains focus and the mouse moves over the client area.
|
- On Windows, cursor grabs used to get perpetually canceled when the grabbing window lost focus. Now, cursor grabs automatically get re-initialized when the window regains focus and the mouse moves over the client area.
|
||||||
- On Windows, only vertical mouse wheel events were handled. Now, horizontal mouse wheel events are also handled.
|
- On Windows, only vertical mouse wheel events were handled. Now, horizontal mouse wheel events are also handled.
|
||||||
- On Windows, ignore the AltGr key when populating the `ModifersState` type.
|
- On Windows, ignore the AltGr key when populating the `ModifiersState` type.
|
||||||
|
|
||||||
# Version 0.18.1 (2018-12-30)
|
# Version 0.18.1 (2018-12-30)
|
||||||
|
|
||||||
@@ -1228,7 +1263,7 @@ _Yanked_
|
|||||||
|
|
||||||
# Version 0.8.2 (2017-09-28)
|
# Version 0.8.2 (2017-09-28)
|
||||||
|
|
||||||
- Uniformize keyboard scancode values accross Wayland and X11 (#297).
|
- Uniformize keyboard scancode values across Wayland and X11 (#297).
|
||||||
- Internal rework of the wayland event loop
|
- Internal rework of the wayland event loop
|
||||||
- Added method `os::linux::WindowExt::is_ready`
|
- Added method `os::linux::WindowExt::is_ready`
|
||||||
|
|
||||||
@@ -1242,7 +1277,7 @@ _Yanked_
|
|||||||
- Added `Window::set_maximized`, `WindowAttributes::maximized` and `WindowBuilder::with_maximized`.
|
- Added `Window::set_maximized`, `WindowAttributes::maximized` and `WindowBuilder::with_maximized`.
|
||||||
- Added `Window::set_fullscreen`.
|
- Added `Window::set_fullscreen`.
|
||||||
- Changed `with_fullscreen` to take a `Option<MonitorId>` instead of a `MonitorId`.
|
- Changed `with_fullscreen` to take a `Option<MonitorId>` instead of a `MonitorId`.
|
||||||
- Removed `MonitorId::get_native_identifer()` in favor of platform-specific traits in the `os`
|
- Removed `MonitorId::get_native_identifier()` in favor of platform-specific traits in the `os`
|
||||||
module.
|
module.
|
||||||
- Changed `get_available_monitors()` and `get_primary_monitor()` to be methods of `EventsLoop`
|
- Changed `get_available_monitors()` and `get_primary_monitor()` to be methods of `EventsLoop`
|
||||||
instead of stand-alone methods.
|
instead of stand-alone methods.
|
||||||
|
|||||||
@@ -42,11 +42,9 @@ Once your PR is deemed ready, the merging maintainer will take care of resolving
|
|||||||
`CHANGELOG.md` (but you must resolve other conflicts yourself). Doing this requires that you check the
|
`CHANGELOG.md` (but you must resolve other conflicts yourself). Doing this requires that you check the
|
||||||
"give contributors write access to the branch" checkbox when creating the PR.
|
"give contributors write access to the branch" checkbox when creating the PR.
|
||||||
|
|
||||||
## Maintainers & Testers
|
## Maintainers
|
||||||
|
|
||||||
The current maintainers are listed in the [CODEOWNERS](.github/CODEOWNERS) file.
|
The current maintainers for each platform are listed in the [CODEOWNERS](.github/CODEOWNERS) file.
|
||||||
|
|
||||||
If you are interested in being pinged when testing is needed for a specific platform, please add yourself to the [Testers and Contributors](https://github.com/rust-windowing/winit/wiki/Testers-and-Contributors) table!
|
|
||||||
|
|
||||||
## Release process
|
## Release process
|
||||||
|
|
||||||
@@ -63,7 +61,7 @@ The exact steps for an exemplary `0.2.0` release might look like this:
|
|||||||
5. The version is pushed to crates.io
|
5. The version is pushed to crates.io
|
||||||
6. A GitHub release is created for the `v0.2.0` tag
|
6. A GitHub release is created for the `v0.2.0` tag
|
||||||
7. On master, the version is bumped to `0.2.0`, and the CHANGELOG is updated
|
7. On master, the version is bumped to `0.2.0`, and the CHANGELOG is updated
|
||||||
|
|
||||||
When doing a patch release, the process is similar:
|
When doing a patch release, the process is similar:
|
||||||
1. Initially, the version of the latest release is `0.2.0`
|
1. Initially, the version of the latest release is `0.2.0`
|
||||||
2. Checkout the `v0.2.x` branch
|
2. Checkout the `v0.2.x` branch
|
||||||
|
|||||||
284
Cargo.toml
@@ -1,16 +1,278 @@
|
|||||||
[workspace]
|
[package]
|
||||||
members = [
|
name = "winit"
|
||||||
"run-wasm",
|
version = "0.29.13"
|
||||||
"winit",
|
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
"winit-core"
|
description = "Cross-platform window creation library."
|
||||||
|
keywords = ["windowing"]
|
||||||
|
readme = "README.md"
|
||||||
|
documentation = "https://docs.rs/winit"
|
||||||
|
categories = ["gui"]
|
||||||
|
rust-version.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
features = [
|
||||||
|
"rwh_04",
|
||||||
|
"rwh_05",
|
||||||
|
"rwh_06",
|
||||||
|
"serde",
|
||||||
|
"mint",
|
||||||
|
# Enabled to get docs to compile
|
||||||
|
"android-native-activity",
|
||||||
]
|
]
|
||||||
|
# These are all tested in CI
|
||||||
|
targets = [
|
||||||
|
# Windows
|
||||||
|
"i686-pc-windows-msvc",
|
||||||
|
"x86_64-pc-windows-msvc",
|
||||||
|
# macOS
|
||||||
|
"x86_64-apple-darwin",
|
||||||
|
# Unix (X11 & Wayland)
|
||||||
|
"i686-unknown-linux-gnu",
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
# iOS
|
||||||
|
"x86_64-apple-ios",
|
||||||
|
# Android
|
||||||
|
"aarch64-linux-android",
|
||||||
|
# Web
|
||||||
|
"wasm32-unknown-unknown",
|
||||||
|
]
|
||||||
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
|
# Features are documented in either `lib.rs` or under `winit::platform`.
|
||||||
|
[features]
|
||||||
|
default = ["rwh_06", "x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]
|
||||||
|
x11 = ["x11-dl", "bytemuck", "percent-encoding", "xkbcommon-dl/x11", "x11rb"]
|
||||||
|
wayland = ["wayland-client", "wayland-backend", "wayland-protocols", "wayland-protocols-plasma", "sctk", "ahash", "memmap2"]
|
||||||
|
wayland-dlopen = ["wayland-backend/dlopen"]
|
||||||
|
wayland-csd-adwaita = ["sctk-adwaita", "sctk-adwaita/ab_glyph"]
|
||||||
|
wayland-csd-adwaita-crossfont = ["sctk-adwaita", "sctk-adwaita/crossfont"]
|
||||||
|
wayland-csd-adwaita-notitle = ["sctk-adwaita"]
|
||||||
|
android-native-activity = ["android-activity/native-activity"]
|
||||||
|
android-game-activity = ["android-activity/game-activity"]
|
||||||
|
serde = ["dep:serde", "cursor-icon/serde", "smol_str/serde", "dpi/serde"]
|
||||||
|
mint = ["dpi/mint"]
|
||||||
|
rwh_04 = ["dep:rwh_04", "ndk/rwh_04"]
|
||||||
|
rwh_05 = ["dep:rwh_05", "ndk/rwh_05"]
|
||||||
|
rwh_06 = ["dep:rwh_06", "ndk/rwh_06"]
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
cfg_aliases = "0.2.0"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
bitflags = "2"
|
||||||
|
cursor-icon = "1.1.0"
|
||||||
|
rwh_04 = { package = "raw-window-handle", version = "0.4", optional = true }
|
||||||
|
rwh_05 = { package = "raw-window-handle", version = "0.5.2", features = ["std"], optional = true }
|
||||||
|
rwh_06 = { package = "raw-window-handle", version = "0.6", features = ["std"], optional = true }
|
||||||
|
serde = { workspace = true, optional = true }
|
||||||
|
smol_str = "0.2.0"
|
||||||
|
dpi = { path = "dpi" }
|
||||||
|
tracing = { version = "0.1.40", default_features = false }
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
image = { version = "0.24.0", default-features = false, features = ["png"] }
|
||||||
|
tracing = { version = "0.1.40", default_features = false, features = ["log"] }
|
||||||
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||||
|
winit = { path = ".", features = ["rwh_05"] }
|
||||||
|
|
||||||
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dev-dependencies]
|
||||||
|
softbuffer = { version = "0.3.0", default-features = false, features = ["x11", "x11-dlopen", "wayland", "wayland-dlopen"] }
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
|
android-activity = "0.5.0"
|
||||||
|
ndk = { version = "0.8.0", default-features = false }
|
||||||
|
ndk-sys = "0.5.0"
|
||||||
|
|
||||||
|
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
|
||||||
|
core-foundation = "0.9.3"
|
||||||
|
objc2 = "0.5.0"
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
|
core-graphics = "0.23.1"
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "macos")'.dependencies.icrate]
|
||||||
|
version = "0.1.0"
|
||||||
|
features = [
|
||||||
|
"dispatch",
|
||||||
|
"Foundation",
|
||||||
|
"Foundation_NSArray",
|
||||||
|
"Foundation_NSAttributedString",
|
||||||
|
"Foundation_NSMutableAttributedString",
|
||||||
|
"Foundation_NSData",
|
||||||
|
"Foundation_NSDictionary",
|
||||||
|
"Foundation_NSString",
|
||||||
|
"Foundation_NSProcessInfo",
|
||||||
|
"Foundation_NSThread",
|
||||||
|
"Foundation_NSNumber",
|
||||||
|
"AppKit",
|
||||||
|
"AppKit_NSAppearance",
|
||||||
|
"AppKit_NSApplication",
|
||||||
|
"AppKit_NSBitmapImageRep",
|
||||||
|
"AppKit_NSButton",
|
||||||
|
"AppKit_NSColor",
|
||||||
|
"AppKit_NSControl",
|
||||||
|
"AppKit_NSCursor",
|
||||||
|
"AppKit_NSEvent",
|
||||||
|
"AppKit_NSGraphicsContext",
|
||||||
|
"AppKit_NSImage",
|
||||||
|
"AppKit_NSImageRep",
|
||||||
|
"AppKit_NSMenu",
|
||||||
|
"AppKit_NSMenuItem",
|
||||||
|
"AppKit_NSPasteboard",
|
||||||
|
"AppKit_NSResponder",
|
||||||
|
"AppKit_NSScreen",
|
||||||
|
"AppKit_NSTextInputContext",
|
||||||
|
"AppKit_NSView",
|
||||||
|
"AppKit_NSWindow",
|
||||||
|
"AppKit_NSWindowTabGroup",
|
||||||
|
]
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "ios")'.dependencies.icrate]
|
||||||
|
version = "0.1.0"
|
||||||
|
features = [
|
||||||
|
"dispatch",
|
||||||
|
"Foundation",
|
||||||
|
"Foundation_NSArray",
|
||||||
|
"Foundation_NSString",
|
||||||
|
"Foundation_NSProcessInfo",
|
||||||
|
"Foundation_NSThread",
|
||||||
|
"Foundation_NSSet",
|
||||||
|
]
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
|
unicode-segmentation = "1.7.1"
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
||||||
|
version = "0.48"
|
||||||
|
features = [
|
||||||
|
"Win32_Devices_HumanInterfaceDevice",
|
||||||
|
"Win32_Foundation",
|
||||||
|
"Win32_Globalization",
|
||||||
|
"Win32_Graphics_Dwm",
|
||||||
|
"Win32_Graphics_Gdi",
|
||||||
|
"Win32_Media",
|
||||||
|
"Win32_System_Com_StructuredStorage",
|
||||||
|
"Win32_System_Com",
|
||||||
|
"Win32_System_LibraryLoader",
|
||||||
|
"Win32_System_Ole",
|
||||||
|
"Win32_System_SystemInformation",
|
||||||
|
"Win32_System_SystemServices",
|
||||||
|
"Win32_System_Threading",
|
||||||
|
"Win32_System_WindowsProgramming",
|
||||||
|
"Win32_UI_Accessibility",
|
||||||
|
"Win32_UI_Controls",
|
||||||
|
"Win32_UI_HiDpi",
|
||||||
|
"Win32_UI_Input_Ime",
|
||||||
|
"Win32_UI_Input_KeyboardAndMouse",
|
||||||
|
"Win32_UI_Input_Pointer",
|
||||||
|
"Win32_UI_Input_Touch",
|
||||||
|
"Win32_UI_Shell",
|
||||||
|
"Win32_UI_TextServices",
|
||||||
|
"Win32_UI_WindowsAndMessaging",
|
||||||
|
]
|
||||||
|
|
||||||
|
[target.'cfg(all(unix, not(any(target_os = "redox", target_family = "wasm", target_os = "android", target_os = "ios", target_os = "macos"))))'.dependencies]
|
||||||
|
ahash = { version = "0.8.7", features = ["no-rng"], optional = true }
|
||||||
|
bytemuck = { version = "1.13.1", default-features = false, optional = true }
|
||||||
|
calloop = "0.12.3"
|
||||||
|
libc = "0.2.64"
|
||||||
|
memmap2 = { version = "0.9.0", optional = true }
|
||||||
|
percent-encoding = { version = "2.0", optional = true }
|
||||||
|
rustix = { version = "0.38.4", default-features = false, features = ["std", "system", "thread", "process"] }
|
||||||
|
sctk = { package = "smithay-client-toolkit", version = "0.18.0", default-features = false, features = ["calloop"], optional = true }
|
||||||
|
sctk-adwaita = { version = "0.8.0", default_features = false, optional = true }
|
||||||
|
wayland-backend = { version = "0.3.0", default_features = false, features = ["client_system"], optional = true }
|
||||||
|
wayland-client = { version = "0.31.1", optional = true }
|
||||||
|
wayland-protocols = { version = "0.31.0", features = [ "staging"], optional = true }
|
||||||
|
wayland-protocols-plasma = { version = "0.2.0", features = [ "client" ], optional = true }
|
||||||
|
x11-dl = { version = "2.18.5", optional = true }
|
||||||
|
x11rb = { version = "0.13.0", default-features = false, features = ["allow-unsafe-code", "dl-libxcb", "randr", "resource_manager", "xinput", "xkb"], optional = true }
|
||||||
|
xkbcommon-dl = "0.4.2"
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "redox")'.dependencies]
|
||||||
|
orbclient = { version = "0.3.47", default-features = false }
|
||||||
|
redox_syscall = "0.4.1"
|
||||||
|
|
||||||
|
[target.'cfg(target_family = "wasm")'.dependencies.web_sys]
|
||||||
|
package = "web-sys"
|
||||||
|
version = "0.3.64"
|
||||||
|
features = [
|
||||||
|
'AbortController',
|
||||||
|
'AbortSignal',
|
||||||
|
'Blob',
|
||||||
|
'console',
|
||||||
|
'CssStyleDeclaration',
|
||||||
|
'Document',
|
||||||
|
'DomException',
|
||||||
|
'DomRect',
|
||||||
|
'DomRectReadOnly',
|
||||||
|
'Element',
|
||||||
|
'Event',
|
||||||
|
'EventTarget',
|
||||||
|
'FocusEvent',
|
||||||
|
'HtmlCanvasElement',
|
||||||
|
'HtmlElement',
|
||||||
|
'HtmlImageElement',
|
||||||
|
'ImageBitmap',
|
||||||
|
'ImageBitmapOptions',
|
||||||
|
'ImageBitmapRenderingContext',
|
||||||
|
'ImageData',
|
||||||
|
'IntersectionObserver',
|
||||||
|
'IntersectionObserverEntry',
|
||||||
|
'KeyboardEvent',
|
||||||
|
'MediaQueryList',
|
||||||
|
'MessageChannel',
|
||||||
|
'MessagePort',
|
||||||
|
'Node',
|
||||||
|
'PageTransitionEvent',
|
||||||
|
'PointerEvent',
|
||||||
|
'PremultiplyAlpha',
|
||||||
|
'ResizeObserver',
|
||||||
|
'ResizeObserverBoxOptions',
|
||||||
|
'ResizeObserverEntry',
|
||||||
|
'ResizeObserverOptions',
|
||||||
|
'ResizeObserverSize',
|
||||||
|
'VisibilityState',
|
||||||
|
'Window',
|
||||||
|
'WheelEvent',
|
||||||
|
'Url',
|
||||||
|
]
|
||||||
|
|
||||||
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
||||||
|
js-sys = "0.3.64"
|
||||||
|
pin-project = "1"
|
||||||
|
wasm-bindgen = "0.2"
|
||||||
|
wasm-bindgen-futures = "0.4"
|
||||||
|
web-time = "1"
|
||||||
|
|
||||||
|
[target.'cfg(all(target_family = "wasm", target_feature = "atomics"))'.dependencies]
|
||||||
|
atomic-waker = "1"
|
||||||
|
concurrent-queue = { version = "2", default-features = false }
|
||||||
|
|
||||||
|
[target.'cfg(target_family = "wasm")'.dev-dependencies]
|
||||||
|
console_log = "1"
|
||||||
|
web-sys = { version = "0.3.22", features = ['CanvasRenderingContext2d'] }
|
||||||
|
|
||||||
|
[[example]]
|
||||||
|
doc-scrape-examples = true
|
||||||
|
name = "window"
|
||||||
|
|
||||||
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
members = [
|
||||||
|
"dpi",
|
||||||
|
"run-wasm",
|
||||||
|
]
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
rust-version = "1.70.0"
|
||||||
|
repository = "https://github.com/rust-windowing/winit"
|
||||||
|
license = "Apache-2.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
bitflags = "2"
|
|
||||||
cfg_aliases = "0.2.0"
|
|
||||||
cursor-icon = "1.1.0"
|
|
||||||
serde = { version = "1", features = ["serde_derive"] }
|
serde = { version = "1", features = ["serde_derive"] }
|
||||||
smol_str = "0.2.0"
|
mint = "0.5.6"
|
||||||
web-time = "1"
|
|
||||||
winit-core = { path = "./winit-core", default-features = false, features = ["std"] }
|
|
||||||
|
|||||||
11
FEATURES.md
@@ -3,8 +3,8 @@
|
|||||||
Winit aims to expose an interface that abstracts over window creation and input handling and can
|
Winit aims to expose an interface that abstracts over window creation and input handling and can
|
||||||
be used to create both games and applications. It supports the following main graphical platforms:
|
be used to create both games and applications. It supports the following main graphical platforms:
|
||||||
- Desktop
|
- Desktop
|
||||||
- Windows 7+ (10+ is tested regularly)
|
- Windows
|
||||||
- macOS 10.7+ (10.14+ is tested regularly)
|
- macOS
|
||||||
- Unix
|
- Unix
|
||||||
- via X11
|
- via X11
|
||||||
- via Wayland
|
- via Wayland
|
||||||
@@ -13,9 +13,6 @@ be used to create both games and applications. It supports the following main gr
|
|||||||
- iOS
|
- iOS
|
||||||
- Android
|
- Android
|
||||||
- Web
|
- Web
|
||||||
- Chrome
|
|
||||||
- Firefox
|
|
||||||
- Safari 13.1+
|
|
||||||
|
|
||||||
Most platforms expose capabilities that cannot be meaningfully transposed onto others. Winit does not
|
Most platforms expose capabilities that cannot be meaningfully transposed onto others. Winit does not
|
||||||
aim to support every single feature of every platform, but rather to abstract over the common features
|
aim to support every single feature of every platform, but rather to abstract over the common features
|
||||||
@@ -151,7 +148,6 @@ If your PR makes notable changes to Winit's features, please update this section
|
|||||||
* Setting the X11 parent window
|
* Setting the X11 parent window
|
||||||
|
|
||||||
### iOS
|
### iOS
|
||||||
* `winit` has a minimum OS requirement of iOS 8
|
|
||||||
* Get the `UIScreen` object pointer
|
* Get the `UIScreen` object pointer
|
||||||
* Setting the `UIView` hidpi factor
|
* Setting the `UIView` hidpi factor
|
||||||
* Valid orientations
|
* Valid orientations
|
||||||
@@ -164,9 +160,6 @@ If your PR makes notable changes to Winit's features, please update this section
|
|||||||
### Web
|
### Web
|
||||||
* Get if the systems preferred color scheme is "dark"
|
* Get if the systems preferred color scheme is "dark"
|
||||||
|
|
||||||
## Usability
|
|
||||||
* `serde`: Enables serialization/deserialization of certain types with Serde. (Maintainer: @Osspial)
|
|
||||||
|
|
||||||
## Compatibility Matrix
|
## Compatibility Matrix
|
||||||
|
|
||||||
Legend:
|
Legend:
|
||||||
|
|||||||
128
README.md
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = "0.29.10"
|
winit = "0.29.13"
|
||||||
```
|
```
|
||||||
|
|
||||||
## [Documentation](https://docs.rs/winit)
|
## [Documentation](https://docs.rs/winit)
|
||||||
@@ -21,7 +21,7 @@ For features _outside_ the scope of winit, see [Are we GUI Yet?](https://arewegu
|
|||||||
|
|
||||||
Join us in our [](https://matrix.to/#/#rust-windowing:matrix.org) room. If you don't get an answer there, try [](https://web.libera.chat/#winit).
|
Join us in our [](https://matrix.to/#/#rust-windowing:matrix.org) room. If you don't get an answer there, try [](https://web.libera.chat/#winit).
|
||||||
|
|
||||||
The maintainers have a meeting every friday at UTC 14. The meeting notes can be found [here](https://hackmd.io/@winit-meetings).
|
The maintainers have a meeting every friday at UTC 15. The meeting notes can be found [here](https://hackmd.io/@winit-meetings).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -33,14 +33,6 @@ Winit is designed to be a low-level brick in a hierarchy of libraries. Consequen
|
|||||||
show something on the window you need to use the platform-specific getters provided by winit, or
|
show something on the window you need to use the platform-specific getters provided by winit, or
|
||||||
another library.
|
another library.
|
||||||
|
|
||||||
### Cargo Features
|
|
||||||
|
|
||||||
Winit provides the following features, which can be enabled in your `Cargo.toml` file:
|
|
||||||
* `serde`: Enables serialization/deserialization of certain types with [Serde](https://crates.io/crates/serde).
|
|
||||||
* `x11` (enabled by default): On Unix platform, compiles with the X11 backend
|
|
||||||
* `wayland` (enabled by default): On Unix platform, compiles with the Wayland backend
|
|
||||||
* `mint`: Enables mint (math interoperability standard types) conversions.
|
|
||||||
|
|
||||||
## MSRV Policy
|
## MSRV Policy
|
||||||
|
|
||||||
This crate's Minimum Supported Rust Version (MSRV) is **1.70**. Changes to
|
This crate's Minimum Supported Rust Version (MSRV) is **1.70**. Changes to
|
||||||
@@ -71,118 +63,4 @@ same MSRV policy.
|
|||||||
|
|
||||||
### Platform-specific usage
|
### Platform-specific usage
|
||||||
|
|
||||||
#### Wayland
|
Check out the [`winit::platform`](https://rust-windowing.github.io/winit/winit/platform/index.html) module for platform-specific usage.
|
||||||
|
|
||||||
Note that windows don't appear on Wayland until you draw/present to them.
|
|
||||||
|
|
||||||
#### Web
|
|
||||||
|
|
||||||
To run the web example: `cargo run-wasm --example web`
|
|
||||||
|
|
||||||
Winit supports compiling to the `wasm32-unknown-unknown` target with `web-sys`.
|
|
||||||
|
|
||||||
On the web platform, a Winit window is backed by a `<canvas>` element. You can
|
|
||||||
either [provide Winit with a `<canvas>` element][web with_canvas], or [let Winit
|
|
||||||
create a `<canvas>` element which you can then retrieve][web canvas getter] and
|
|
||||||
insert it into the DOM yourself.
|
|
||||||
|
|
||||||
For the example code using Winit on Web, check out the [web example]. For
|
|
||||||
information on using Rust on WebAssembly, check out the [Rust and WebAssembly
|
|
||||||
book].
|
|
||||||
|
|
||||||
[web with_canvas]: https://docs.rs/winit/latest/wasm32-unknown-unknown/winit/platform/web/trait.WindowBuilderExtWebSys.html#tymethod.with_canvas
|
|
||||||
[web canvas getter]: https://docs.rs/winit/latest/wasm32-unknown-unknown/winit/platform/web/trait.WindowExtWebSys.html#tymethod.canvas
|
|
||||||
[web example]: ./examples/web.rs
|
|
||||||
[Rust and WebAssembly book]: https://rustwasm.github.io/book/
|
|
||||||
|
|
||||||
#### Android
|
|
||||||
|
|
||||||
The Android backend builds on (and exposes types from) the [`ndk`](https://docs.rs/ndk/latest/ndk/) crate.
|
|
||||||
|
|
||||||
Native Android applications need some form of "glue" crate that is responsible
|
|
||||||
for defining the main entry point for your Rust application as well as tracking
|
|
||||||
various life-cycle events and synchronizing with the main JVM thread.
|
|
||||||
|
|
||||||
Winit uses the [android-activity](https://github.com/rib/android-activity) as a
|
|
||||||
glue crate (prior to `0.28` it used
|
|
||||||
[ndk-glue](https://github.com/rust-windowing/android-ndk-rs/tree/master/ndk-glue)).
|
|
||||||
|
|
||||||
The version of the glue crate that your application depends on _must_ match the
|
|
||||||
version that Winit depends on because the glue crate is responsible for your
|
|
||||||
application's main entry point. If Cargo resolves multiple versions, they will
|
|
||||||
clash.
|
|
||||||
|
|
||||||
`winit` glue compatibility table:
|
|
||||||
|
|
||||||
| winit | ndk-glue |
|
|
||||||
| :---: | :--------------------------: |
|
|
||||||
| 0.29 | `android-activity = "0.5"` |
|
|
||||||
| 0.28 | `android-activity = "0.4"` |
|
|
||||||
| 0.27 | `ndk-glue = "0.7"` |
|
|
||||||
| 0.26 | `ndk-glue = "0.5"` |
|
|
||||||
| 0.25 | `ndk-glue = "0.3"` |
|
|
||||||
| 0.24 | `ndk-glue = "0.2"` |
|
|
||||||
|
|
||||||
The recommended way to avoid a conflict with the glue version is to avoid explicitly
|
|
||||||
depending on the `android-activity` crate, and instead consume the API that
|
|
||||||
is re-exported by Winit under `winit::platform::android::activity::*`
|
|
||||||
|
|
||||||
Running on an Android device needs a dynamic system library. Add this to Cargo.toml:
|
|
||||||
|
|
||||||
```toml
|
|
||||||
[lib]
|
|
||||||
name = "main"
|
|
||||||
crate-type = ["cdylib"]
|
|
||||||
```
|
|
||||||
|
|
||||||
All Android applications are based on an `Activity` subclass, and the
|
|
||||||
`android-activity` crate is designed to support different choices for this base
|
|
||||||
class. Your application _must_ specify the base class it needs via a feature flag:
|
|
||||||
|
|
||||||
| Base Class | Feature Flag | Notes |
|
|
||||||
| :--------------: | :---------------: | :-----: |
|
|
||||||
| `NativeActivity` | `android-native-activity` | Built-in to Android - it is possible to use without compiling any Java or Kotlin code. Java or Kotlin code may be needed to subclass `NativeActivity` to access some platform features. It does not derive from the [`AndroidAppCompat`] base class.|
|
|
||||||
| [`GameActivity`] | `android-game-activity` | Derives from [`AndroidAppCompat`], a defacto standard `Activity` base class that helps support a wider range of Android versions. Requires a build system that can compile Java or Kotlin and fetch Android dependencies from a [Maven repository][agdk_jetpack] (or link with an embedded [release][agdk_releases] of [`GameActivity`]) |
|
|
||||||
|
|
||||||
[`GameActivity`]: https://developer.android.com/games/agdk/game-activity
|
|
||||||
[`GameTextInput`]: https://developer.android.com/games/agdk/add-support-for-text-input
|
|
||||||
[`AndroidAppCompat`]: https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity
|
|
||||||
[agdk_jetpack]: https://developer.android.com/jetpack/androidx/releases/games
|
|
||||||
[agdk_releases]: https://developer.android.com/games/agdk/download#agdk-libraries
|
|
||||||
[Gradle]: https://developer.android.com/studio/build
|
|
||||||
|
|
||||||
For more details, refer to these `android-activity` [example applications](https://github.com/rust-mobile/android-activity/tree/main/examples).
|
|
||||||
|
|
||||||
##### Converting from `ndk-glue` to `android-activity`
|
|
||||||
|
|
||||||
If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building with `cargo apk`, then the minimal changes would be:
|
|
||||||
1. Remove `ndk-glue` from your `Cargo.toml`
|
|
||||||
2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.29.10", features = [ "android-native-activity" ] }`
|
|
||||||
3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize logging as above).
|
|
||||||
4. Pass a clone of the `AndroidApp` that your application receives to Winit when building your event loop (as shown above).
|
|
||||||
|
|
||||||
#### MacOS
|
|
||||||
|
|
||||||
A lot of functionality expects the application to be ready before you start
|
|
||||||
doing anything; this includes creating windows, fetching monitors, drawing,
|
|
||||||
and so on, see issues [#2238], [#2051] and [#2087].
|
|
||||||
|
|
||||||
If you encounter problems, you should try doing your initialization inside
|
|
||||||
`Event::Resumed`.
|
|
||||||
|
|
||||||
#### iOS
|
|
||||||
|
|
||||||
Similar to macOS, iOS's main `UIApplicationMain` does some init work that's required
|
|
||||||
by all UI-related code (see issue [#1705]). It would be best to consider creating your windows
|
|
||||||
inside `Event::Resumed`.
|
|
||||||
|
|
||||||
|
|
||||||
[#2238]: https://github.com/rust-windowing/winit/issues/2238
|
|
||||||
[#2051]: https://github.com/rust-windowing/winit/issues/2051
|
|
||||||
[#2087]: https://github.com/rust-windowing/winit/issues/2087
|
|
||||||
[#1705]: https://github.com/rust-windowing/winit/issues/1705
|
|
||||||
|
|
||||||
#### Redox OS
|
|
||||||
|
|
||||||
Redox OS has some functionality not yet present that will be implemented when
|
|
||||||
its orbital display server provides it.
|
|
||||||
|
|||||||
@@ -35,9 +35,7 @@ skip = [
|
|||||||
{ name = "bitflags" }, # the ecosystem is in the process of migrating.
|
{ name = "bitflags" }, # the ecosystem is in the process of migrating.
|
||||||
{ name = "libloading" }, # x11rb uses a different version until the next update
|
{ name = "libloading" }, # x11rb uses a different version until the next update
|
||||||
]
|
]
|
||||||
skip-tree = [
|
skip-tree = []
|
||||||
{ name = "run-wasm", version = "0.1.0" }
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
[licenses]
|
[licenses]
|
||||||
|
|||||||
39
dpi/Cargo.toml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
[package]
|
||||||
|
name = "dpi"
|
||||||
|
version = "0.0.0"
|
||||||
|
description = "Types for handling UI scaling"
|
||||||
|
keywords = ["DPI", "HiDPI", "scale-factor"]
|
||||||
|
categories = ["gui"]
|
||||||
|
rust-version.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
|
||||||
|
[features]
|
||||||
|
serde = ["dep:serde"]
|
||||||
|
mint = ["dep:mint"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
serde = { workspace = true, optional = true }
|
||||||
|
mint = { workspace = true, optional = true }
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
features = ["serde", "mint"]
|
||||||
|
# These are all tested in CI
|
||||||
|
targets = [
|
||||||
|
# Windows
|
||||||
|
"i686-pc-windows-msvc",
|
||||||
|
"x86_64-pc-windows-msvc",
|
||||||
|
# macOS
|
||||||
|
"x86_64-apple-darwin",
|
||||||
|
# Unix (X11 & Wayland)
|
||||||
|
"i686-unknown-linux-gnu",
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
# iOS
|
||||||
|
"x86_64-apple-ios",
|
||||||
|
# Android
|
||||||
|
"aarch64-linux-android",
|
||||||
|
# Web
|
||||||
|
"wasm32-unknown-unknown",
|
||||||
|
]
|
||||||
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
1
dpi/LICENSE
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../LICENSE
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
//! UI scaling is important, so read the docs for this module if you don't want to be confused.
|
//! # DPI
|
||||||
//!
|
//!
|
||||||
//! ## Why should I care about UI scaling?
|
//! ## Why should I care about UI scaling?
|
||||||
//!
|
//!
|
||||||
@@ -35,14 +35,11 @@
|
|||||||
//!
|
//!
|
||||||
//! ### Position and Size types
|
//! ### Position and Size types
|
||||||
//!
|
//!
|
||||||
//! Winit's [`PhysicalPosition`] / [`PhysicalSize`] types correspond with the actual pixels on the
|
//! The [`PhysicalPosition`] / [`PhysicalSize`] types correspond with the actual pixels on the
|
||||||
//! device, and the [`LogicalPosition`] / [`LogicalSize`] types correspond to the physical pixels
|
//! device, and the [`LogicalPosition`] / [`LogicalSize`] types correspond to the physical pixels
|
||||||
//! divided by the scale factor.
|
//! divided by the scale factor.
|
||||||
//! All of Winit's functions return physical types, but can take either logical or physical
|
|
||||||
//! coordinates as input, allowing you to use the most convenient coordinate system for your
|
|
||||||
//! particular application.
|
|
||||||
//!
|
//!
|
||||||
//! Winit's position and size types are generic over their exact pixel type, `P`, to allow the
|
//! The position and size types are generic over their exact pixel type, `P`, to allow the
|
||||||
//! API to have integer precision where appropriate (e.g. most window manipulation functions) and
|
//! API to have integer precision where appropriate (e.g. most window manipulation functions) and
|
||||||
//! floating precision when necessary (e.g. logical sizes for fractional scale factors and touch
|
//! floating precision when necessary (e.g. logical sizes for fractional scale factors and touch
|
||||||
//! input). If `P` is a floating-point type, please do not cast the values with `as {int}`. Doing so
|
//! input). If `P` is a floating-point type, please do not cast the values with `as {int}`. Doing so
|
||||||
@@ -51,58 +48,24 @@
|
|||||||
//! rounding properly. Note that precision loss will still occur when rounding from a float to an
|
//! rounding properly. Note that precision loss will still occur when rounding from a float to an
|
||||||
//! int, although rounding lessens the problem.
|
//! int, although rounding lessens the problem.
|
||||||
//!
|
//!
|
||||||
//! ### Events
|
//! ## Cargo Features
|
||||||
//!
|
//!
|
||||||
//! Winit will dispatch a [`ScaleFactorChanged`] event whenever a window's scale factor has changed.
|
//! This crate provides the following Cargo features:
|
||||||
//! This can happen if the user drags their window from a standard-resolution monitor to a high-DPI
|
|
||||||
//! monitor or if the user changes their DPI settings. This allows you to rescale your application's
|
|
||||||
//! UI elements and adjust how the platform changes the window's size to reflect the new scale
|
|
||||||
//! factor. If a window hasn't received a [`ScaleFactorChanged`] event, its scale factor
|
|
||||||
//! can be found by calling [`window.scale_factor()`].
|
|
||||||
//!
|
//!
|
||||||
//! ## How is the scale factor calculated?
|
//! * `serde`: Enables serialization/deserialization of certain types with
|
||||||
//!
|
//! [Serde](https://crates.io/crates/serde).
|
||||||
//! The scale factor is calculated differently on different platforms:
|
//! * `mint`: Enables mint (math interoperability standard types) conversions.
|
||||||
//!
|
|
||||||
//! - **Windows:** On Windows 8 and 10, per-monitor scaling is readily configured by users from the
|
|
||||||
//! display settings. While users are free to select any option they want, they're only given a
|
|
||||||
//! selection of "nice" scale factors, i.e. 1.0, 1.25, 1.5... on Windows 7. The scale factor is
|
|
||||||
//! global and changing it requires logging out. See [this article][windows_1] for technical
|
|
||||||
//! details.
|
|
||||||
//! - **macOS:** Recent macOS versions allow the user to change the scaling factor for specific
|
|
||||||
//! displays. When available, the user may pick a per-monitor scaling factor from a set of
|
|
||||||
//! pre-defined settings. All "retina displays" have a scaling factor above 1.0 by default,
|
|
||||||
//! but the specific value varies across devices.
|
|
||||||
//! - **X11:** Many man-hours have been spent trying to figure out how to handle DPI in X11. Winit
|
|
||||||
//! currently uses a three-pronged approach:
|
|
||||||
//! + Use the value in the `WINIT_X11_SCALE_FACTOR` environment variable if present.
|
|
||||||
//! + If not present, use the value set in `Xft.dpi` in Xresources.
|
|
||||||
//! + Otherwise, calculate the scale factor based on the millimeter monitor dimensions provided by XRandR.
|
|
||||||
//!
|
|
||||||
//! If `WINIT_X11_SCALE_FACTOR` is set to `randr`, it'll ignore the `Xft.dpi` field and use the
|
|
||||||
//! XRandR scaling method. Generally speaking, you should try to configure the standard system
|
|
||||||
//! variables to do what you want before resorting to `WINIT_X11_SCALE_FACTOR`.
|
|
||||||
//! - **Wayland:** The scale factor is suggested by the compositor for each window individually. The
|
|
||||||
//! monitor scale factor may differ from the window scale factor.
|
|
||||||
//! - **iOS:** Scale factors are set by Apple to the value that best suits the device, and range
|
|
||||||
//! from `1.0` to `3.0`. See [this article][apple_1] and [this article][apple_2] for more
|
|
||||||
//! information.
|
|
||||||
//! - **Android:** Scale factors are set by the manufacturer to the value that best suits the
|
|
||||||
//! device, and range from `1.0` to `4.0`. See [this article][android_1] for more information.
|
|
||||||
//! - **Web:** The scale factor is the ratio between CSS pixels and the physical device pixels.
|
|
||||||
//! In other words, it is the value of [`window.devicePixelRatio`][web_1]. It is affected by
|
|
||||||
//! both the screen scaling and the browser zoom level and can go below `1.0`.
|
|
||||||
//!
|
//!
|
||||||
//!
|
//!
|
||||||
//! [points]: https://en.wikipedia.org/wiki/Point_(typography)
|
//! [points]: https://en.wikipedia.org/wiki/Point_(typography)
|
||||||
//! [picas]: https://en.wikipedia.org/wiki/Pica_(typography)
|
//! [picas]: https://en.wikipedia.org/wiki/Pica_(typography)
|
||||||
//! [`ScaleFactorChanged`]: crate::event::WindowEvent::ScaleFactorChanged
|
|
||||||
//! [`window.scale_factor()`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.scale_factor
|
#![cfg_attr(
|
||||||
//! [windows_1]: https://docs.microsoft.com/en-us/windows/win32/hidpi/high-dpi-desktop-application-development-on-windows
|
docsrs,
|
||||||
//! [apple_1]: https://developer.apple.com/library/archive/documentation/DeviceInformation/Reference/iOSDeviceCompatibility/Displays/Displays.html
|
feature(doc_auto_cfg, doc_cfg_hide),
|
||||||
//! [apple_2]: https://developer.apple.com/design/human-interface-guidelines/macos/icons-and-images/image-size-and-resolution/
|
doc(cfg_hide(doc, docsrs))
|
||||||
//! [android_1]: https://developer.android.com/training/multiscreen/screendensities
|
)]
|
||||||
//! [web_1]: https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio
|
#![forbid(unsafe_code)]
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
@@ -168,7 +131,7 @@ pub fn validate_scale_factor(scale_factor: f64) -> bool {
|
|||||||
/// A position represented in logical pixels.
|
/// A position represented in logical pixels.
|
||||||
///
|
///
|
||||||
/// The position is stored as floats, so please be careful. Casting floats to integers truncates the
|
/// The position is stored as floats, so please be careful. Casting floats to integers truncates the
|
||||||
/// fractional part, which can cause noticable issues. To help with that, an `Into<(i32, i32)>`
|
/// fractional part, which can cause noticeable issues. To help with that, an `Into<(i32, i32)>`
|
||||||
/// implementation is provided which does the rounding for you.
|
/// implementation is provided which does the rounding for you.
|
||||||
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Default, Hash)]
|
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Default, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
@@ -587,15 +550,13 @@ impl<P: Pixel> From<LogicalPosition<P>> for Position {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::dpi;
|
use super::*;
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
macro_rules! test_pixel_int_impl {
|
macro_rules! test_pixel_int_impl {
|
||||||
($($name:ident => $ty:ty),*) => {$(
|
($($name:ident => $ty:ty),*) => {$(
|
||||||
#[test]
|
#[test]
|
||||||
fn $name() {
|
fn $name() {
|
||||||
use dpi::Pixel;
|
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
<$ty as Pixel>::from_f64(37.0),
|
<$ty as Pixel>::from_f64(37.0),
|
||||||
37,
|
37,
|
||||||
@@ -664,8 +625,6 @@ mod tests {
|
|||||||
($($name:ident => $ty:ty),*) => {$(
|
($($name:ident => $ty:ty),*) => {$(
|
||||||
#[test]
|
#[test]
|
||||||
fn $name() {
|
fn $name() {
|
||||||
use dpi::Pixel;
|
|
||||||
|
|
||||||
assert_approx_eq!(
|
assert_approx_eq!(
|
||||||
<$ty as Pixel>::from_f64(37.0),
|
<$ty as Pixel>::from_f64(37.0),
|
||||||
37.0,
|
37.0,
|
||||||
@@ -758,46 +717,40 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_validate_scale_factor() {
|
fn test_validate_scale_factor() {
|
||||||
assert!(dpi::validate_scale_factor(1.0));
|
assert!(validate_scale_factor(1.0));
|
||||||
assert!(dpi::validate_scale_factor(2.0));
|
assert!(validate_scale_factor(2.0));
|
||||||
assert!(dpi::validate_scale_factor(3.0));
|
assert!(validate_scale_factor(3.0));
|
||||||
assert!(dpi::validate_scale_factor(1.5));
|
assert!(validate_scale_factor(1.5));
|
||||||
assert!(dpi::validate_scale_factor(0.5));
|
assert!(validate_scale_factor(0.5));
|
||||||
|
|
||||||
assert!(!dpi::validate_scale_factor(0.0));
|
assert!(!validate_scale_factor(0.0));
|
||||||
assert!(!dpi::validate_scale_factor(-1.0));
|
assert!(!validate_scale_factor(-1.0));
|
||||||
assert!(!dpi::validate_scale_factor(f64::INFINITY));
|
assert!(!validate_scale_factor(f64::INFINITY));
|
||||||
assert!(!dpi::validate_scale_factor(f64::NAN));
|
assert!(!validate_scale_factor(f64::NAN));
|
||||||
assert!(!dpi::validate_scale_factor(f64::NEG_INFINITY));
|
assert!(!validate_scale_factor(f64::NEG_INFINITY));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_logical_position() {
|
fn test_logical_position() {
|
||||||
let log_pos = dpi::LogicalPosition::new(1.0, 2.0);
|
let log_pos = LogicalPosition::new(1.0, 2.0);
|
||||||
assert_eq!(
|
assert_eq!(log_pos.to_physical::<u32>(1.0), PhysicalPosition::new(1, 2));
|
||||||
log_pos.to_physical::<u32>(1.0),
|
assert_eq!(log_pos.to_physical::<u32>(2.0), PhysicalPosition::new(2, 4));
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
assert_eq!(log_pos.cast::<u32>(), LogicalPosition::new(1, 2));
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
log_pos.to_physical::<u32>(2.0),
|
|
||||||
dpi::PhysicalPosition::new(2, 4)
|
|
||||||
);
|
|
||||||
assert_eq!(log_pos.cast::<u32>(), dpi::LogicalPosition::new(1, 2));
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
log_pos,
|
log_pos,
|
||||||
dpi::LogicalPosition::from_physical(dpi::PhysicalPosition::new(1.0, 2.0), 1.0)
|
LogicalPosition::from_physical(PhysicalPosition::new(1.0, 2.0), 1.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
log_pos,
|
log_pos,
|
||||||
dpi::LogicalPosition::from_physical(dpi::PhysicalPosition::new(2.0, 4.0), 2.0)
|
LogicalPosition::from_physical(PhysicalPosition::new(2.0, 4.0), 2.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::LogicalPosition::from((2.0, 2.0)),
|
LogicalPosition::from((2.0, 2.0)),
|
||||||
dpi::LogicalPosition::new(2.0, 2.0)
|
LogicalPosition::new(2.0, 2.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::LogicalPosition::from([2.0, 3.0]),
|
LogicalPosition::from([2.0, 3.0]),
|
||||||
dpi::LogicalPosition::new(2.0, 3.0)
|
LogicalPosition::new(2.0, 3.0)
|
||||||
);
|
);
|
||||||
|
|
||||||
let x: (f64, f64) = log_pos.into();
|
let x: (f64, f64) = log_pos.into();
|
||||||
@@ -809,56 +762,44 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_physical_position() {
|
fn test_physical_position() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalPosition::from_logical(dpi::LogicalPosition::new(1.0, 2.0), 1.0),
|
PhysicalPosition::from_logical(LogicalPosition::new(1.0, 2.0), 1.0),
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
PhysicalPosition::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalPosition::from_logical(dpi::LogicalPosition::new(2.0, 4.0), 0.5),
|
PhysicalPosition::from_logical(LogicalPosition::new(2.0, 4.0), 0.5),
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
PhysicalPosition::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalPosition::from((2.0, 2.0)),
|
PhysicalPosition::from((2.0, 2.0)),
|
||||||
dpi::PhysicalPosition::new(2.0, 2.0)
|
PhysicalPosition::new(2.0, 2.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalPosition::from([2.0, 3.0]),
|
PhysicalPosition::from([2.0, 3.0]),
|
||||||
dpi::PhysicalPosition::new(2.0, 3.0)
|
PhysicalPosition::new(2.0, 3.0)
|
||||||
);
|
);
|
||||||
|
|
||||||
let x: (f64, f64) = dpi::PhysicalPosition::new(1, 2).into();
|
let x: (f64, f64) = PhysicalPosition::new(1, 2).into();
|
||||||
assert_eq!(x, (1.0, 2.0));
|
assert_eq!(x, (1.0, 2.0));
|
||||||
let x: [f64; 2] = dpi::PhysicalPosition::new(1, 2).into();
|
let x: [f64; 2] = PhysicalPosition::new(1, 2).into();
|
||||||
assert_eq!(x, [1.0, 2.0]);
|
assert_eq!(x, [1.0, 2.0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_logical_size() {
|
fn test_logical_size() {
|
||||||
let log_size = dpi::LogicalSize::new(1.0, 2.0);
|
let log_size = LogicalSize::new(1.0, 2.0);
|
||||||
assert_eq!(
|
assert_eq!(log_size.to_physical::<u32>(1.0), PhysicalSize::new(1, 2));
|
||||||
log_size.to_physical::<u32>(1.0),
|
assert_eq!(log_size.to_physical::<u32>(2.0), PhysicalSize::new(2, 4));
|
||||||
dpi::PhysicalSize::new(1, 2)
|
assert_eq!(log_size.cast::<u32>(), LogicalSize::new(1, 2));
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
log_size.to_physical::<u32>(2.0),
|
|
||||||
dpi::PhysicalSize::new(2, 4)
|
|
||||||
);
|
|
||||||
assert_eq!(log_size.cast::<u32>(), dpi::LogicalSize::new(1, 2));
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
log_size,
|
log_size,
|
||||||
dpi::LogicalSize::from_physical(dpi::PhysicalSize::new(1.0, 2.0), 1.0)
|
LogicalSize::from_physical(PhysicalSize::new(1.0, 2.0), 1.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
log_size,
|
log_size,
|
||||||
dpi::LogicalSize::from_physical(dpi::PhysicalSize::new(2.0, 4.0), 2.0)
|
LogicalSize::from_physical(PhysicalSize::new(2.0, 4.0), 2.0)
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
dpi::LogicalSize::from((2.0, 2.0)),
|
|
||||||
dpi::LogicalSize::new(2.0, 2.0)
|
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
dpi::LogicalSize::from([2.0, 3.0]),
|
|
||||||
dpi::LogicalSize::new(2.0, 3.0)
|
|
||||||
);
|
);
|
||||||
|
assert_eq!(LogicalSize::from((2.0, 2.0)), LogicalSize::new(2.0, 2.0));
|
||||||
|
assert_eq!(LogicalSize::from([2.0, 3.0]), LogicalSize::new(2.0, 3.0));
|
||||||
|
|
||||||
let x: (f64, f64) = log_size.into();
|
let x: (f64, f64) = log_size.into();
|
||||||
assert_eq!(x, (1.0, 2.0));
|
assert_eq!(x, (1.0, 2.0));
|
||||||
@@ -869,136 +810,130 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_physical_size() {
|
fn test_physical_size() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalSize::from_logical(dpi::LogicalSize::new(1.0, 2.0), 1.0),
|
PhysicalSize::from_logical(LogicalSize::new(1.0, 2.0), 1.0),
|
||||||
dpi::PhysicalSize::new(1, 2)
|
PhysicalSize::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::PhysicalSize::from_logical(dpi::LogicalSize::new(2.0, 4.0), 0.5),
|
PhysicalSize::from_logical(LogicalSize::new(2.0, 4.0), 0.5),
|
||||||
dpi::PhysicalSize::new(1, 2)
|
PhysicalSize::new(1, 2)
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
dpi::PhysicalSize::from((2.0, 2.0)),
|
|
||||||
dpi::PhysicalSize::new(2.0, 2.0)
|
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
dpi::PhysicalSize::from([2.0, 3.0]),
|
|
||||||
dpi::PhysicalSize::new(2.0, 3.0)
|
|
||||||
);
|
);
|
||||||
|
assert_eq!(PhysicalSize::from((2.0, 2.0)), PhysicalSize::new(2.0, 2.0));
|
||||||
|
assert_eq!(PhysicalSize::from([2.0, 3.0]), PhysicalSize::new(2.0, 3.0));
|
||||||
|
|
||||||
let x: (f64, f64) = dpi::PhysicalSize::new(1, 2).into();
|
let x: (f64, f64) = PhysicalSize::new(1, 2).into();
|
||||||
assert_eq!(x, (1.0, 2.0));
|
assert_eq!(x, (1.0, 2.0));
|
||||||
let x: [f64; 2] = dpi::PhysicalSize::new(1, 2).into();
|
let x: [f64; 2] = PhysicalSize::new(1, 2).into();
|
||||||
assert_eq!(x, [1.0, 2.0]);
|
assert_eq!(x, [1.0, 2.0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_size() {
|
fn test_size() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::PhysicalSize::new(1, 2)),
|
Size::new(PhysicalSize::new(1, 2)),
|
||||||
dpi::Size::Physical(dpi::PhysicalSize::new(1, 2))
|
Size::Physical(PhysicalSize::new(1, 2))
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::LogicalSize::new(1.0, 2.0)),
|
Size::new(LogicalSize::new(1.0, 2.0)),
|
||||||
dpi::Size::Logical(dpi::LogicalSize::new(1.0, 2.0))
|
Size::Logical(LogicalSize::new(1.0, 2.0))
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::PhysicalSize::new(1, 2)).to_logical::<f64>(1.0),
|
Size::new(PhysicalSize::new(1, 2)).to_logical::<f64>(1.0),
|
||||||
dpi::LogicalSize::new(1.0, 2.0)
|
LogicalSize::new(1.0, 2.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::PhysicalSize::new(1, 2)).to_logical::<f64>(2.0),
|
Size::new(PhysicalSize::new(1, 2)).to_logical::<f64>(2.0),
|
||||||
dpi::LogicalSize::new(0.5, 1.0)
|
LogicalSize::new(0.5, 1.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::LogicalSize::new(1.0, 2.0)).to_logical::<f64>(1.0),
|
Size::new(LogicalSize::new(1.0, 2.0)).to_logical::<f64>(1.0),
|
||||||
dpi::LogicalSize::new(1.0, 2.0)
|
LogicalSize::new(1.0, 2.0)
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::PhysicalSize::new(1, 2)).to_physical::<u32>(1.0),
|
Size::new(PhysicalSize::new(1, 2)).to_physical::<u32>(1.0),
|
||||||
dpi::PhysicalSize::new(1, 2)
|
PhysicalSize::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::PhysicalSize::new(1, 2)).to_physical::<u32>(2.0),
|
Size::new(PhysicalSize::new(1, 2)).to_physical::<u32>(2.0),
|
||||||
dpi::PhysicalSize::new(1, 2)
|
PhysicalSize::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::LogicalSize::new(1.0, 2.0)).to_physical::<u32>(1.0),
|
Size::new(LogicalSize::new(1.0, 2.0)).to_physical::<u32>(1.0),
|
||||||
dpi::PhysicalSize::new(1, 2)
|
PhysicalSize::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Size::new(dpi::LogicalSize::new(1.0, 2.0)).to_physical::<u32>(2.0),
|
Size::new(LogicalSize::new(1.0, 2.0)).to_physical::<u32>(2.0),
|
||||||
dpi::PhysicalSize::new(2, 4)
|
PhysicalSize::new(2, 4)
|
||||||
);
|
);
|
||||||
|
|
||||||
let small = dpi::Size::Physical((1, 2).into());
|
let small = Size::Physical((1, 2).into());
|
||||||
let medium = dpi::Size::Logical((3, 4).into());
|
let medium = Size::Logical((3, 4).into());
|
||||||
let medium_physical = dpi::Size::new(medium.to_physical::<u32>(1.0));
|
let medium_physical = Size::new(medium.to_physical::<u32>(1.0));
|
||||||
let large = dpi::Size::Physical((5, 6).into());
|
let large = Size::Physical((5, 6).into());
|
||||||
assert_eq!(dpi::Size::clamp(medium, small, large, 1.0), medium_physical);
|
assert_eq!(Size::clamp(medium, small, large, 1.0), medium_physical);
|
||||||
assert_eq!(dpi::Size::clamp(small, medium, large, 1.0), medium_physical);
|
assert_eq!(Size::clamp(small, medium, large, 1.0), medium_physical);
|
||||||
assert_eq!(dpi::Size::clamp(large, small, medium, 1.0), medium_physical);
|
assert_eq!(Size::clamp(large, small, medium, 1.0), medium_physical);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_position() {
|
fn test_position() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::PhysicalPosition::new(1, 2)),
|
Position::new(PhysicalPosition::new(1, 2)),
|
||||||
dpi::Position::Physical(dpi::PhysicalPosition::new(1, 2))
|
Position::Physical(PhysicalPosition::new(1, 2))
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::LogicalPosition::new(1.0, 2.0)),
|
Position::new(LogicalPosition::new(1.0, 2.0)),
|
||||||
dpi::Position::Logical(dpi::LogicalPosition::new(1.0, 2.0))
|
Position::Logical(LogicalPosition::new(1.0, 2.0))
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::PhysicalPosition::new(1, 2)).to_logical::<f64>(1.0),
|
Position::new(PhysicalPosition::new(1, 2)).to_logical::<f64>(1.0),
|
||||||
dpi::LogicalPosition::new(1.0, 2.0)
|
LogicalPosition::new(1.0, 2.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::PhysicalPosition::new(1, 2)).to_logical::<f64>(2.0),
|
Position::new(PhysicalPosition::new(1, 2)).to_logical::<f64>(2.0),
|
||||||
dpi::LogicalPosition::new(0.5, 1.0)
|
LogicalPosition::new(0.5, 1.0)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::LogicalPosition::new(1.0, 2.0)).to_logical::<f64>(1.0),
|
Position::new(LogicalPosition::new(1.0, 2.0)).to_logical::<f64>(1.0),
|
||||||
dpi::LogicalPosition::new(1.0, 2.0)
|
LogicalPosition::new(1.0, 2.0)
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::PhysicalPosition::new(1, 2)).to_physical::<u32>(1.0),
|
Position::new(PhysicalPosition::new(1, 2)).to_physical::<u32>(1.0),
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
PhysicalPosition::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::PhysicalPosition::new(1, 2)).to_physical::<u32>(2.0),
|
Position::new(PhysicalPosition::new(1, 2)).to_physical::<u32>(2.0),
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
PhysicalPosition::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::LogicalPosition::new(1.0, 2.0)).to_physical::<u32>(1.0),
|
Position::new(LogicalPosition::new(1.0, 2.0)).to_physical::<u32>(1.0),
|
||||||
dpi::PhysicalPosition::new(1, 2)
|
PhysicalPosition::new(1, 2)
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
dpi::Position::new(dpi::LogicalPosition::new(1.0, 2.0)).to_physical::<u32>(2.0),
|
Position::new(LogicalPosition::new(1.0, 2.0)).to_physical::<u32>(2.0),
|
||||||
dpi::PhysicalPosition::new(2, 4)
|
PhysicalPosition::new(2, 4)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Eat coverage for the Debug impls et al
|
// Eat coverage for the Debug impls et al
|
||||||
#[test]
|
#[test]
|
||||||
fn ensure_attrs_do_not_panic() {
|
fn ensure_attrs_do_not_panic() {
|
||||||
let _ = format!("{:?}", dpi::LogicalPosition::<u32>::default().clone());
|
let _ = format!("{:?}", LogicalPosition::<u32>::default().clone());
|
||||||
HashSet::new().insert(dpi::LogicalPosition::<u32>::default());
|
HashSet::new().insert(LogicalPosition::<u32>::default());
|
||||||
|
|
||||||
let _ = format!("{:?}", dpi::PhysicalPosition::<u32>::default().clone());
|
let _ = format!("{:?}", PhysicalPosition::<u32>::default().clone());
|
||||||
HashSet::new().insert(dpi::PhysicalPosition::<u32>::default());
|
HashSet::new().insert(PhysicalPosition::<u32>::default());
|
||||||
|
|
||||||
let _ = format!("{:?}", dpi::LogicalSize::<u32>::default().clone());
|
let _ = format!("{:?}", LogicalSize::<u32>::default().clone());
|
||||||
HashSet::new().insert(dpi::LogicalSize::<u32>::default());
|
HashSet::new().insert(LogicalSize::<u32>::default());
|
||||||
|
|
||||||
let _ = format!("{:?}", dpi::PhysicalSize::<u32>::default().clone());
|
let _ = format!("{:?}", PhysicalSize::<u32>::default().clone());
|
||||||
HashSet::new().insert(dpi::PhysicalSize::<u32>::default());
|
HashSet::new().insert(PhysicalSize::<u32>::default());
|
||||||
|
|
||||||
let _ = format!("{:?}", dpi::Size::Physical((1, 2).into()).clone());
|
let _ = format!("{:?}", Size::Physical((1, 2).into()).clone());
|
||||||
let _ = format!("{:?}", dpi::Position::Physical((1, 2).into()).clone());
|
let _ = format!("{:?}", Position::Physical((1, 2).into()).clone());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,10 +1,3 @@
|
|||||||
#[cfg(all(
|
|
||||||
feature = "rwh_06",
|
|
||||||
any(x11_platform, macos_platform, windows_platform)
|
|
||||||
))]
|
|
||||||
#[path = "util/fill.rs"]
|
|
||||||
mod fill;
|
|
||||||
|
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
feature = "rwh_06",
|
feature = "rwh_06",
|
||||||
any(x11_platform, macos_platform, windows_platform)
|
any(x11_platform, macos_platform, windows_platform)
|
||||||
@@ -13,58 +6,57 @@ mod fill;
|
|||||||
fn main() -> Result<(), impl std::error::Error> {
|
fn main() -> Result<(), impl std::error::Error> {
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use winit::{
|
use winit::dpi::{LogicalPosition, LogicalSize, Position};
|
||||||
dpi::{LogicalPosition, LogicalSize, Position},
|
use winit::event::{ElementState, Event, KeyEvent, WindowEvent};
|
||||||
event::{ElementState, Event, KeyEvent, WindowEvent},
|
use winit::event_loop::{ActiveEventLoop, EventLoop};
|
||||||
event_loop::{EventLoop, EventLoopWindowTarget},
|
use winit::raw_window_handle::HasRawWindowHandle;
|
||||||
raw_window_handle::HasRawWindowHandle,
|
use winit::window::Window;
|
||||||
window::{Window, WindowId},
|
|
||||||
};
|
|
||||||
|
|
||||||
fn spawn_child_window(
|
#[path = "util/fill.rs"]
|
||||||
parent: &Window,
|
mod fill;
|
||||||
event_loop: &EventLoopWindowTarget,
|
|
||||||
windows: &mut HashMap<WindowId, Window>,
|
fn spawn_child_window(parent: &Window, event_loop: &ActiveEventLoop) -> Window {
|
||||||
) {
|
|
||||||
let parent = parent.raw_window_handle().unwrap();
|
let parent = parent.raw_window_handle().unwrap();
|
||||||
let mut builder = Window::builder()
|
let mut window_attributes = Window::default_attributes()
|
||||||
.with_title("child window")
|
.with_title("child window")
|
||||||
.with_inner_size(LogicalSize::new(200.0f32, 200.0f32))
|
.with_inner_size(LogicalSize::new(200.0f32, 200.0f32))
|
||||||
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
||||||
.with_visible(true);
|
.with_visible(true);
|
||||||
// `with_parent_window` is unsafe. Parent window must be a valid window.
|
// `with_parent_window` is unsafe. Parent window must be a valid window.
|
||||||
builder = unsafe { builder.with_parent_window(Some(parent)) };
|
window_attributes = unsafe { window_attributes.with_parent_window(Some(parent)) };
|
||||||
let child_window = builder.build(event_loop).unwrap();
|
|
||||||
|
|
||||||
let id = child_window.id();
|
event_loop.create_window(window_attributes).unwrap()
|
||||||
windows.insert(id, child_window);
|
|
||||||
println!("child window created with id: {id:?}");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut windows = HashMap::new();
|
let mut windows = HashMap::new();
|
||||||
|
|
||||||
let event_loop: EventLoop<()> = EventLoop::new().unwrap();
|
let event_loop: EventLoop<()> = EventLoop::new().unwrap();
|
||||||
let parent_window = Window::builder()
|
let mut parent_window_id = None;
|
||||||
.with_title("parent window")
|
|
||||||
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
|
||||||
.with_inner_size(LogicalSize::new(640.0f32, 480.0f32))
|
|
||||||
.build(&event_loop)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
println!("parent window: {parent_window:?})");
|
event_loop.run(move |event: Event<()>, event_loop| {
|
||||||
|
match event {
|
||||||
|
Event::Resumed => {
|
||||||
|
let attributes = Window::default_attributes()
|
||||||
|
.with_title("parent window")
|
||||||
|
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
||||||
|
.with_inner_size(LogicalSize::new(640.0f32, 480.0f32));
|
||||||
|
let window = event_loop.create_window(attributes).unwrap();
|
||||||
|
|
||||||
event_loop.run(move |event: Event<()>, elwt| {
|
parent_window_id = Some(window.id());
|
||||||
if let Event::WindowEvent { event, window_id } = event {
|
|
||||||
match event {
|
println!("Parent window id: {parent_window_id:?})");
|
||||||
|
windows.insert(window.id(), window);
|
||||||
|
}
|
||||||
|
Event::WindowEvent { window_id, event } => match event {
|
||||||
WindowEvent::CloseRequested => {
|
WindowEvent::CloseRequested => {
|
||||||
windows.clear();
|
windows.clear();
|
||||||
elwt.exit();
|
event_loop.exit();
|
||||||
}
|
}
|
||||||
WindowEvent::CursorEntered { device_id: _ } => {
|
WindowEvent::CursorEntered { device_id: _ } => {
|
||||||
// On x11, println when the cursor entered in a window even if the child window is created
|
// On x11, println when the cursor entered in a window even if the child window is created
|
||||||
// by some key inputs.
|
// by some key inputs.
|
||||||
// the child windows are always placed at (0, 0) with size (200, 200) in the parent window,
|
// the child windows are always placed at (0, 0) with size (200, 200) in the parent window,
|
||||||
// so we also can see this log when we move the cursor arround (200, 200) in parent window.
|
// so we also can see this log when we move the cursor around (200, 200) in parent window.
|
||||||
println!("cursor entered in the window {window_id:?}");
|
println!("cursor entered in the window {window_id:?}");
|
||||||
}
|
}
|
||||||
WindowEvent::KeyboardInput {
|
WindowEvent::KeyboardInput {
|
||||||
@@ -75,7 +67,11 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
},
|
},
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
spawn_child_window(&parent_window, elwt, &mut windows);
|
let parent_window = windows.get(&parent_window_id.unwrap()).unwrap();
|
||||||
|
let child_window = spawn_child_window(parent_window, event_loop);
|
||||||
|
let child_id = child_window.id();
|
||||||
|
println!("Child window created with id: {child_id:?}");
|
||||||
|
windows.insert(child_id, child_window);
|
||||||
}
|
}
|
||||||
WindowEvent::RedrawRequested => {
|
WindowEvent::RedrawRequested => {
|
||||||
if let Some(window) = windows.get(&window_id) {
|
if let Some(window) = windows.get(&window_id) {
|
||||||
@@ -83,15 +79,16 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
},
|
||||||
|
_ => (),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(all(
|
#[cfg(all(
|
||||||
feature = "rwh_06",
|
feature = "rwh_06",
|
||||||
any(x11_platform, macos_platform, windows_platform)
|
not(any(x11_platform, macos_platform, windows_platform))
|
||||||
)))]
|
))]
|
||||||
fn main() {
|
fn main() {
|
||||||
panic!("This example is supported only on x11, macOS, and Windows, with the `rwh_06` feature enabled.");
|
panic!("This example is supported only on x11, macOS, and Windows, with the `rwh_06` feature enabled.");
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,6 @@ use std::time;
|
|||||||
#[cfg(web_platform)]
|
#[cfg(web_platform)]
|
||||||
use web_time as time;
|
use web_time as time;
|
||||||
|
|
||||||
use simple_logger::SimpleLogger;
|
|
||||||
use winit::{
|
use winit::{
|
||||||
event::{ElementState, Event, KeyEvent, WindowEvent},
|
event::{ElementState, Event, KeyEvent, WindowEvent},
|
||||||
event_loop::{ControlFlow, EventLoop},
|
event_loop::{ControlFlow, EventLoop},
|
||||||
@@ -28,7 +27,7 @@ const WAIT_TIME: time::Duration = time::Duration::from_millis(100);
|
|||||||
const POLL_SLEEP_TIME: time::Duration = time::Duration::from_millis(100);
|
const POLL_SLEEP_TIME: time::Duration = time::Duration::from_millis(100);
|
||||||
|
|
||||||
fn main() -> Result<(), impl std::error::Error> {
|
fn main() -> Result<(), impl std::error::Error> {
|
||||||
SimpleLogger::new().init().unwrap();
|
tracing_subscriber::fmt::init();
|
||||||
|
|
||||||
println!("Press '1' to switch to Wait mode.");
|
println!("Press '1' to switch to Wait mode.");
|
||||||
println!("Press '2' to switch to WaitUntil mode.");
|
println!("Press '2' to switch to WaitUntil mode.");
|
||||||
@@ -37,17 +36,14 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
println!("Press 'Esc' to close the window.");
|
println!("Press 'Esc' to close the window.");
|
||||||
|
|
||||||
let event_loop = EventLoop::new().unwrap();
|
let event_loop = EventLoop::new().unwrap();
|
||||||
let window = Window::builder()
|
|
||||||
.with_title("Press 1, 2, 3 to change control flow mode. Press R to toggle redraw requests.")
|
|
||||||
.build(&event_loop)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
let mut mode = Mode::Wait;
|
let mut mode = Mode::Wait;
|
||||||
let mut request_redraw = false;
|
let mut request_redraw = false;
|
||||||
let mut wait_cancelled = false;
|
let mut wait_cancelled = false;
|
||||||
let mut close_requested = false;
|
let mut close_requested = false;
|
||||||
|
|
||||||
event_loop.run(move |event, elwt| {
|
let mut window = None;
|
||||||
|
event_loop.run(move |event, event_loop| {
|
||||||
use winit::event::StartCause;
|
use winit::event::StartCause;
|
||||||
println!("{event:?}");
|
println!("{event:?}");
|
||||||
match event {
|
match event {
|
||||||
@@ -57,6 +53,12 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Event::Resumed => {
|
||||||
|
let window_attributes = Window::default_attributes().with_title(
|
||||||
|
"Press 1, 2, 3 to change control flow mode. Press R to toggle redraw requests.",
|
||||||
|
);
|
||||||
|
window = Some(event_loop.create_window(window_attributes).unwrap());
|
||||||
|
}
|
||||||
Event::WindowEvent { event, .. } => match event {
|
Event::WindowEvent { event, .. } => match event {
|
||||||
WindowEvent::CloseRequested => {
|
WindowEvent::CloseRequested => {
|
||||||
close_requested = true;
|
close_requested = true;
|
||||||
@@ -70,7 +72,7 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
},
|
},
|
||||||
..
|
..
|
||||||
} => match key.as_ref() {
|
} => match key.as_ref() {
|
||||||
// WARNING: Consider using `key_without_modifers()` if available on your platform.
|
// WARNING: Consider using `key_without_modifiers()` if available on your platform.
|
||||||
// See the `key_binding` example
|
// See the `key_binding` example
|
||||||
Key::Character("1") => {
|
Key::Character("1") => {
|
||||||
mode = Mode::Wait;
|
mode = Mode::Wait;
|
||||||
@@ -94,32 +96,34 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
_ => (),
|
_ => (),
|
||||||
},
|
},
|
||||||
WindowEvent::RedrawRequested => {
|
WindowEvent::RedrawRequested => {
|
||||||
fill::fill_window(&window);
|
let window = window.as_ref().unwrap();
|
||||||
|
window.pre_present_notify();
|
||||||
|
fill::fill_window(window);
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
},
|
},
|
||||||
Event::AboutToWait => {
|
Event::AboutToWait => {
|
||||||
if request_redraw && !wait_cancelled && !close_requested {
|
if request_redraw && !wait_cancelled && !close_requested {
|
||||||
window.request_redraw();
|
window.as_ref().unwrap().request_redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
match mode {
|
match mode {
|
||||||
Mode::Wait => elwt.set_control_flow(ControlFlow::Wait),
|
Mode::Wait => event_loop.set_control_flow(ControlFlow::Wait),
|
||||||
Mode::WaitUntil => {
|
Mode::WaitUntil => {
|
||||||
if !wait_cancelled {
|
if !wait_cancelled {
|
||||||
elwt.set_control_flow(ControlFlow::WaitUntil(
|
event_loop.set_control_flow(ControlFlow::WaitUntil(
|
||||||
time::Instant::now() + WAIT_TIME,
|
time::Instant::now() + WAIT_TIME,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Mode::Poll => {
|
Mode::Poll => {
|
||||||
thread::sleep(POLL_SLEEP_TIME);
|
thread::sleep(POLL_SLEEP_TIME);
|
||||||
elwt.set_control_flow(ControlFlow::Poll);
|
event_loop.set_control_flow(ControlFlow::Poll);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
if close_requested {
|
if close_requested {
|
||||||
elwt.exit();
|
event_loop.exit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
|
Before Width: | Height: | Size: 159 B After Width: | Height: | Size: 159 B |
|
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 129 B |
|
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 229 B |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -11,7 +11,6 @@
|
|||||||
fn main() -> std::process::ExitCode {
|
fn main() -> std::process::ExitCode {
|
||||||
use std::{process::ExitCode, thread::sleep, time::Duration};
|
use std::{process::ExitCode, thread::sleep, time::Duration};
|
||||||
|
|
||||||
use simple_logger::SimpleLogger;
|
|
||||||
use winit::{
|
use winit::{
|
||||||
event::{Event, WindowEvent},
|
event::{Event, WindowEvent},
|
||||||
event_loop::EventLoop,
|
event_loop::EventLoop,
|
||||||
@@ -24,39 +23,41 @@ fn main() -> std::process::ExitCode {
|
|||||||
|
|
||||||
let mut event_loop = EventLoop::new().unwrap();
|
let mut event_loop = EventLoop::new().unwrap();
|
||||||
|
|
||||||
SimpleLogger::new().init().unwrap();
|
tracing_subscriber::fmt::init();
|
||||||
let window = Window::builder()
|
|
||||||
.with_title("A fantastic window!")
|
|
||||||
.build(&event_loop)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
'main: loop {
|
let mut window = None;
|
||||||
|
|
||||||
|
loop {
|
||||||
let timeout = Some(Duration::ZERO);
|
let timeout = Some(Duration::ZERO);
|
||||||
let status = event_loop.pump_events(timeout, |event, elwt| {
|
let status = event_loop.pump_events(timeout, |event, event_loop| {
|
||||||
if let Event::WindowEvent { event, .. } = &event {
|
if let Event::WindowEvent { event, .. } = &event {
|
||||||
// Print only Window events to reduce noise
|
// Print only Window events to reduce noise
|
||||||
println!("{event:?}");
|
println!("{event:?}");
|
||||||
}
|
}
|
||||||
|
|
||||||
match event {
|
match event {
|
||||||
Event::WindowEvent {
|
Event::Resumed => {
|
||||||
event: WindowEvent::CloseRequested,
|
let window_attributes =
|
||||||
window_id,
|
Window::default_attributes().with_title("A fantastic window!");
|
||||||
} if window_id == window.id() => elwt.exit(),
|
window = Some(event_loop.create_window(window_attributes).unwrap());
|
||||||
Event::AboutToWait => {
|
|
||||||
window.request_redraw();
|
|
||||||
}
|
}
|
||||||
Event::WindowEvent {
|
Event::WindowEvent { event, .. } => {
|
||||||
event: WindowEvent::RedrawRequested,
|
let window = window.as_ref().unwrap();
|
||||||
..
|
match event {
|
||||||
} => {
|
WindowEvent::CloseRequested => event_loop.exit(),
|
||||||
fill::fill_window(&window);
|
WindowEvent::RedrawRequested => fill::fill_window(window),
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Event::AboutToWait => {
|
||||||
|
window.as_ref().unwrap().request_redraw();
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if let PumpStatus::Exit(exit_code) = status {
|
if let PumpStatus::Exit(exit_code) = status {
|
||||||
break 'main ExitCode::from(exit_code as u8);
|
break ExitCode::from(exit_code as u8);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sleep for 1/60 second to simulate application work
|
// Sleep for 1/60 second to simulate application work
|
||||||
@@ -5,8 +5,6 @@
|
|||||||
fn main() -> Result<(), impl std::error::Error> {
|
fn main() -> Result<(), impl std::error::Error> {
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use simple_logger::SimpleLogger;
|
|
||||||
|
|
||||||
use winit::{
|
use winit::{
|
||||||
error::EventLoopError,
|
error::EventLoopError,
|
||||||
event::{Event, WindowEvent},
|
event::{Event, WindowEvent},
|
||||||
@@ -24,13 +22,13 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
window: Option<Window>,
|
window: Option<Window>,
|
||||||
}
|
}
|
||||||
|
|
||||||
SimpleLogger::new().init().unwrap();
|
tracing_subscriber::fmt::init();
|
||||||
let mut event_loop = EventLoop::new().unwrap();
|
let mut event_loop = EventLoop::new().unwrap();
|
||||||
|
|
||||||
fn run_app(event_loop: &mut EventLoop<()>, idx: usize) -> Result<(), EventLoopError> {
|
fn run_app(event_loop: &mut EventLoop<()>, idx: usize) -> Result<(), EventLoopError> {
|
||||||
let mut app = App::default();
|
let mut app = App::default();
|
||||||
|
|
||||||
event_loop.run_on_demand(move |event, elwt| {
|
event_loop.run_on_demand(move |event, event_loop| {
|
||||||
println!("Run {idx}: {:?}", event);
|
println!("Run {idx}: {:?}", event);
|
||||||
|
|
||||||
if let Some(window) = &app.window {
|
if let Some(window) = &app.window {
|
||||||
@@ -60,16 +58,15 @@ fn main() -> Result<(), impl std::error::Error> {
|
|||||||
} if id == window_id => {
|
} if id == window_id => {
|
||||||
println!("--------------------------------------------------------- Window {idx} Destroyed");
|
println!("--------------------------------------------------------- Window {idx} Destroyed");
|
||||||
app.window_id = None;
|
app.window_id = None;
|
||||||
elwt.exit();
|
event_loop.exit();
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
} else if let Event::Resumed = event {
|
} else if let Event::Resumed = event {
|
||||||
let window = Window::builder()
|
let window_attributes = Window::default_attributes()
|
||||||
.with_title("Fantastic window number one!")
|
.with_title("Fantastic window number one!")
|
||||||
.with_inner_size(winit::dpi::LogicalSize::new(128.0, 128.0))
|
.with_inner_size(winit::dpi::LogicalSize::new(128.0, 128.0));
|
||||||
.build(elwt)
|
let window = event_loop.create_window(window_attributes).unwrap();
|
||||||
.unwrap();
|
|
||||||
app.window_id = Some(window.id());
|
app.window_id = Some(window.id());
|
||||||
app.window = Some(window);
|
app.window = Some(window);
|
||||||
}
|
}
|
||||||
@@ -28,7 +28,7 @@ mod platform {
|
|||||||
// ManuallyDrop to prevent destructors from running.
|
// ManuallyDrop to prevent destructors from running.
|
||||||
//
|
//
|
||||||
// A static, thread-local map of graphics contexts to open windows.
|
// A static, thread-local map of graphics contexts to open windows.
|
||||||
static GC: ManuallyDrop<RefCell<Option<GraphicsContext>>> = ManuallyDrop::new(RefCell::new(None));
|
static GC: ManuallyDrop<RefCell<Option<GraphicsContext>>> = const { ManuallyDrop::new(RefCell::new(None)) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The graphics context used to draw to a window.
|
/// The graphics context used to draw to a window.
|
||||||
980
examples/window.rs
Normal file
@@ -0,0 +1,980 @@
|
|||||||
|
//! Simple winit application.
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use std::error::Error;
|
||||||
|
use std::fmt;
|
||||||
|
use std::fmt::Debug;
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
use std::num::NonZeroU32;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
use cursor_icon::CursorIcon;
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
use rwh_05::HasRawDisplayHandle;
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
use softbuffer::{Context, Surface};
|
||||||
|
|
||||||
|
use winit::dpi::{LogicalSize, PhysicalPosition, PhysicalSize};
|
||||||
|
use winit::event::{DeviceEvent, DeviceId, Event, Ime, WindowEvent};
|
||||||
|
use winit::event::{MouseButton, MouseScrollDelta};
|
||||||
|
use winit::event_loop::{ActiveEventLoop, EventLoop};
|
||||||
|
use winit::keyboard::{Key, ModifiersState};
|
||||||
|
use winit::window::{
|
||||||
|
Cursor, CursorGrabMode, CustomCursor, CustomCursorSource, Fullscreen, Icon, ResizeDirection,
|
||||||
|
Theme,
|
||||||
|
};
|
||||||
|
use winit::window::{Window, WindowId};
|
||||||
|
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
use winit::platform::macos::{OptionAsAlt, WindowAttributesExtMacOS, WindowExtMacOS};
|
||||||
|
#[cfg(any(x11_platform, wayland_platform))]
|
||||||
|
use winit::platform::startup_notify::{
|
||||||
|
self, EventLoopExtStartupNotify, WindowAttributesExtStartupNotify, WindowExtStartupNotify,
|
||||||
|
};
|
||||||
|
|
||||||
|
/// The amount of points to around the window for drag resize direction calculations.
|
||||||
|
const BORDER_SIZE: f64 = 20.;
|
||||||
|
|
||||||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
|
let event_loop = EventLoop::<UserEvent>::with_user_event().build()?;
|
||||||
|
let _event_loop_proxy = event_loop.create_proxy();
|
||||||
|
|
||||||
|
// Wire the user event from another thread.
|
||||||
|
#[cfg(not(web_platform))]
|
||||||
|
std::thread::spawn(move || {
|
||||||
|
// Wake up the `event_loop` once every second and dispatch a custom event
|
||||||
|
// from a different thread.
|
||||||
|
println!("Starting to send user event every second");
|
||||||
|
loop {
|
||||||
|
let _ = _event_loop_proxy.send_event(UserEvent::WakeUp);
|
||||||
|
std::thread::sleep(std::time::Duration::from_secs(1));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
let mut state = Application::new(&event_loop);
|
||||||
|
|
||||||
|
event_loop.run(move |event, event_loop| match event {
|
||||||
|
Event::NewEvents(_) => (),
|
||||||
|
Event::Resumed => {
|
||||||
|
println!("Resumed the event loop");
|
||||||
|
state.dump_monitors(event_loop);
|
||||||
|
|
||||||
|
// Create initial window.
|
||||||
|
state
|
||||||
|
.create_window(event_loop, None)
|
||||||
|
.expect("failed to create initial window");
|
||||||
|
|
||||||
|
state.print_help();
|
||||||
|
}
|
||||||
|
Event::AboutToWait => {
|
||||||
|
if state.windows.is_empty() {
|
||||||
|
println!("No windows left, exiting...");
|
||||||
|
event_loop.exit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Event::WindowEvent { window_id, event } => {
|
||||||
|
state.handle_window_event(event_loop, window_id, event)
|
||||||
|
}
|
||||||
|
Event::DeviceEvent { device_id, event } => {
|
||||||
|
state.handle_device_event(event_loop, device_id, event)
|
||||||
|
}
|
||||||
|
Event::UserEvent(event) => {
|
||||||
|
println!("User event: {event:?}");
|
||||||
|
}
|
||||||
|
Event::Suspended | Event::LoopExiting | Event::MemoryWarning => (),
|
||||||
|
})?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
enum UserEvent {
|
||||||
|
WakeUp,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Application state and event handling.
|
||||||
|
struct Application {
|
||||||
|
/// Custom cursors assets.
|
||||||
|
custom_cursors: Vec<CustomCursor>,
|
||||||
|
/// Application icon.
|
||||||
|
icon: Icon,
|
||||||
|
windows: HashMap<WindowId, WindowState>,
|
||||||
|
/// Drawing context.
|
||||||
|
///
|
||||||
|
/// With OpenGL it could be EGLDisplay.
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
context: Context,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Application {
|
||||||
|
fn new<T>(event_loop: &EventLoop<T>) -> Self {
|
||||||
|
// SAFETY: the context is dropped inside the loop, since the state we're using
|
||||||
|
// is moved inside the closure.
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
let context = unsafe { Context::from_raw(event_loop.raw_display_handle()).unwrap() };
|
||||||
|
|
||||||
|
// You'll have to choose an icon size at your own discretion. On X11, the desired size varies
|
||||||
|
// by WM, and on Windows, you still have to account for screen scaling. Here we use 32px,
|
||||||
|
// since it seems to work well enough in most cases. Be careful about going too high, or
|
||||||
|
// you'll be bitten by the low-quality downscaling built into the WM.
|
||||||
|
let path = concat!(env!("CARGO_MANIFEST_DIR"), "/examples/data/icon.png");
|
||||||
|
|
||||||
|
let icon = load_icon(Path::new(path));
|
||||||
|
|
||||||
|
println!("Loading cursor assets");
|
||||||
|
let custom_cursors = vec![
|
||||||
|
event_loop.create_custom_cursor(decode_cursor(include_bytes!("data/cross.png"))),
|
||||||
|
event_loop.create_custom_cursor(decode_cursor(include_bytes!("data/cross2.png"))),
|
||||||
|
event_loop.create_custom_cursor(decode_cursor(include_bytes!("data/gradient.png"))),
|
||||||
|
];
|
||||||
|
|
||||||
|
Self {
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
context,
|
||||||
|
custom_cursors,
|
||||||
|
icon,
|
||||||
|
windows: Default::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn create_window(
|
||||||
|
&mut self,
|
||||||
|
event_loop: &ActiveEventLoop,
|
||||||
|
_tab_id: Option<String>,
|
||||||
|
) -> Result<WindowId, Box<dyn Error>> {
|
||||||
|
// TODO read-out activation token.
|
||||||
|
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut window_attributes = Window::default_attributes()
|
||||||
|
.with_title("Winit window")
|
||||||
|
.with_transparent(true)
|
||||||
|
.with_window_icon(Some(self.icon.clone()));
|
||||||
|
|
||||||
|
#[cfg(any(x11_platform, wayland_platform))]
|
||||||
|
if let Some(token) = event_loop.read_token_from_env() {
|
||||||
|
startup_notify::reset_activation_token_env();
|
||||||
|
println!("Using token {:?} to activate a window", token);
|
||||||
|
window_attributes = window_attributes.with_activation_token(token);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
if let Some(tab_id) = _tab_id {
|
||||||
|
window_attributes = window_attributes.with_tabbing_identifier(&tab_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
let window = event_loop.create_window(window_attributes)?;
|
||||||
|
|
||||||
|
#[cfg(ios_platform)]
|
||||||
|
{
|
||||||
|
use winit::platform::ios::WindowExtIOS;
|
||||||
|
window.recognize_doubletap_gesture(true);
|
||||||
|
window.recognize_pinch_gesture(true);
|
||||||
|
window.recognize_rotation_gesture(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
let window_state = WindowState::new(self, window)?;
|
||||||
|
let window_id = window_state.window.id();
|
||||||
|
println!("Created new window with id={window_id:?}");
|
||||||
|
self.windows.insert(window_id, window_state);
|
||||||
|
Ok(window_id)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_action(&mut self, event_loop: &ActiveEventLoop, window_id: WindowId, action: Action) {
|
||||||
|
// let cursor_position = self.cursor_position;
|
||||||
|
let window = self.windows.get_mut(&window_id).unwrap();
|
||||||
|
println!("Executing action: {action:?}");
|
||||||
|
match action {
|
||||||
|
Action::CloseWindow => {
|
||||||
|
let _ = self.windows.remove(&window_id);
|
||||||
|
}
|
||||||
|
Action::CreateNewWindow => {
|
||||||
|
#[cfg(any(x11_platform, wayland_platform))]
|
||||||
|
if let Err(err) = window.window.request_activation_token() {
|
||||||
|
println!("Failed to get activation token: {err}");
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Err(err) = self.create_window(event_loop, None) {
|
||||||
|
eprintln!("Error creating new window: {err}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Action::ToggleResizeIncrements => window.toggle_resize_increments(),
|
||||||
|
Action::ToggleCursorVisibility => window.toggle_cursor_visibility(),
|
||||||
|
Action::ToggleResizable => window.toggle_resizable(),
|
||||||
|
Action::ToggleDecorations => window.toggle_decorations(),
|
||||||
|
Action::ToggleFullscreen => window.toggle_fullscreen(),
|
||||||
|
Action::ToggleMaximize => window.toggle_maximize(),
|
||||||
|
Action::ToggleImeInput => window.toggle_ime(),
|
||||||
|
Action::Minimize => window.minimize(),
|
||||||
|
Action::NextCursor => window.next_cursor(),
|
||||||
|
Action::NextCustomCursor => window.next_custom_cursor(&self.custom_cursors),
|
||||||
|
Action::CycleCursorGrab => window.cycle_cursor_grab(),
|
||||||
|
Action::DragWindow => window.drag_window(),
|
||||||
|
Action::DragResizeWindow => window.drag_resize_window(),
|
||||||
|
Action::ShowWindowMenu => window.show_menu(),
|
||||||
|
Action::PrintHelp => self.print_help(),
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Action::CycleOptionAsAlt => window.cycle_option_as_alt(),
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Action::CreateNewTab => {
|
||||||
|
let tab_id = window.window.tabbing_identifier();
|
||||||
|
if let Err(err) = self.create_window(event_loop, Some(tab_id)) {
|
||||||
|
eprintln!("Error creating new window: {err}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_window_event(
|
||||||
|
&mut self,
|
||||||
|
event_loop: &ActiveEventLoop,
|
||||||
|
window_id: WindowId,
|
||||||
|
event: WindowEvent,
|
||||||
|
) {
|
||||||
|
let window = match self.windows.get_mut(&window_id) {
|
||||||
|
Some(window) => window,
|
||||||
|
None => return,
|
||||||
|
};
|
||||||
|
|
||||||
|
match event {
|
||||||
|
WindowEvent::Resized(size) => {
|
||||||
|
window.resize(size);
|
||||||
|
}
|
||||||
|
WindowEvent::Focused(focused) => {
|
||||||
|
if focused {
|
||||||
|
println!("Window={window_id:?} focused");
|
||||||
|
} else {
|
||||||
|
println!("Window={window_id:?} unfocused");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::ScaleFactorChanged { scale_factor, .. } => {
|
||||||
|
println!("Window={window_id:?} changed scale to {scale_factor}");
|
||||||
|
}
|
||||||
|
WindowEvent::ThemeChanged(theme) => {
|
||||||
|
println!("Theme changed to {theme:?}");
|
||||||
|
window.set_theme(theme);
|
||||||
|
}
|
||||||
|
WindowEvent::RedrawRequested => {
|
||||||
|
if let Err(err) = window.draw() {
|
||||||
|
eprintln!("Error drawing window: {err}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::Occluded(occluded) => {
|
||||||
|
window.set_occluded(occluded);
|
||||||
|
}
|
||||||
|
WindowEvent::CloseRequested => {
|
||||||
|
println!("Closing Window={window_id:?}");
|
||||||
|
self.windows.remove(&window_id);
|
||||||
|
}
|
||||||
|
WindowEvent::ModifiersChanged(modifiers) => {
|
||||||
|
window.modifiers = modifiers.state();
|
||||||
|
println!("Modifiers changed to {:?}", window.modifiers);
|
||||||
|
}
|
||||||
|
WindowEvent::MouseWheel { delta, .. } => match delta {
|
||||||
|
MouseScrollDelta::LineDelta(x, y) => {
|
||||||
|
println!("Mouse wheel Line Delta: ({x},{y})");
|
||||||
|
}
|
||||||
|
MouseScrollDelta::PixelDelta(px) => {
|
||||||
|
println!("Mouse wheel Pixel Delta: ({},{})", px.x, px.y);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
WindowEvent::KeyboardInput {
|
||||||
|
event,
|
||||||
|
is_synthetic: false,
|
||||||
|
..
|
||||||
|
} => {
|
||||||
|
let mods = window.modifiers;
|
||||||
|
|
||||||
|
// Dispatch actions only on press.
|
||||||
|
if event.state.is_pressed() {
|
||||||
|
let action = if let Key::Character(ch) = event.logical_key.as_ref() {
|
||||||
|
Self::process_key_binding(&ch.to_uppercase(), &mods)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(action) = action {
|
||||||
|
self.handle_action(event_loop, window_id, action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::MouseInput { button, state, .. } => {
|
||||||
|
let mods = window.modifiers;
|
||||||
|
if let Some(action) = state
|
||||||
|
.is_pressed()
|
||||||
|
.then(|| Self::process_mouse_binding(button, &mods))
|
||||||
|
.flatten()
|
||||||
|
{
|
||||||
|
self.handle_action(event_loop, window_id, action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::CursorLeft { .. } => {
|
||||||
|
println!("Cursor left Window={window_id:?}");
|
||||||
|
window.cursor_left();
|
||||||
|
}
|
||||||
|
WindowEvent::CursorMoved { position, .. } => {
|
||||||
|
println!("Moved cursor to {position:?}");
|
||||||
|
window.cursor_moved(position);
|
||||||
|
}
|
||||||
|
WindowEvent::ActivationTokenDone { token: _token, .. } => {
|
||||||
|
#[cfg(any(x11_platform, wayland_platform))]
|
||||||
|
{
|
||||||
|
startup_notify::set_activation_token_env(_token);
|
||||||
|
if let Err(err) = self.create_window(event_loop, None) {
|
||||||
|
eprintln!("Error creating new window: {err}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::Ime(event) => match event {
|
||||||
|
Ime::Enabled => println!("IME enabled for Window={window_id:?}"),
|
||||||
|
Ime::Preedit(text, caret_pos) => {
|
||||||
|
println!("Preedit: {}, with caret at {:?}", text, caret_pos);
|
||||||
|
}
|
||||||
|
Ime::Commit(text) => {
|
||||||
|
println!("Committed: {}", text);
|
||||||
|
}
|
||||||
|
Ime::Disabled => println!("IME disabled for Window={window_id:?}"),
|
||||||
|
},
|
||||||
|
WindowEvent::PinchGesture { delta, .. } => {
|
||||||
|
window.zoom += delta;
|
||||||
|
let zoom = window.zoom;
|
||||||
|
if delta > 0.0 {
|
||||||
|
println!("Zoomed in {delta:.5} (now: {zoom:.5})");
|
||||||
|
} else {
|
||||||
|
println!("Zoomed out {delta:.5} (now: {zoom:.5})");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::RotationGesture { delta, .. } => {
|
||||||
|
window.rotated += delta;
|
||||||
|
let rotated = window.rotated;
|
||||||
|
if delta > 0.0 {
|
||||||
|
println!("Rotated counterclockwise {delta:.5} (now: {rotated:.5})");
|
||||||
|
} else {
|
||||||
|
println!("Rotated clockwise {delta:.5} (now: {rotated:.5})");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::DoubleTapGesture { .. } => {
|
||||||
|
println!("Smart zoom");
|
||||||
|
}
|
||||||
|
WindowEvent::TouchpadPressure { .. }
|
||||||
|
| WindowEvent::HoveredFileCancelled
|
||||||
|
| WindowEvent::KeyboardInput { .. }
|
||||||
|
| WindowEvent::CursorEntered { .. }
|
||||||
|
| WindowEvent::AxisMotion { .. }
|
||||||
|
| WindowEvent::DroppedFile(_)
|
||||||
|
| WindowEvent::HoveredFile(_)
|
||||||
|
| WindowEvent::Destroyed
|
||||||
|
| WindowEvent::Touch(_)
|
||||||
|
| WindowEvent::Moved(_) => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_device_event(&mut self, _: &ActiveEventLoop, _: DeviceId, event: DeviceEvent) {
|
||||||
|
println!("Device event: {event:?}");
|
||||||
|
}
|
||||||
|
|
||||||
|
fn dump_monitors(&self, event_loop: &ActiveEventLoop) {
|
||||||
|
println!("Monitors information");
|
||||||
|
let primary_monitor = event_loop.primary_monitor();
|
||||||
|
for monitor in event_loop.available_monitors() {
|
||||||
|
let intro = if primary_monitor.as_ref() == Some(&monitor) {
|
||||||
|
"Primary monitor"
|
||||||
|
} else {
|
||||||
|
"Monitor"
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(name) = monitor.name() {
|
||||||
|
println!("{intro}: {name}");
|
||||||
|
} else {
|
||||||
|
println!("{intro}: [no name]");
|
||||||
|
}
|
||||||
|
|
||||||
|
let PhysicalSize { width, height } = monitor.size();
|
||||||
|
print!(" Current mode: {width}x{height}");
|
||||||
|
if let Some(m_hz) = monitor.refresh_rate_millihertz() {
|
||||||
|
println!(" @ {}.{} Hz", m_hz / 1000, m_hz % 1000);
|
||||||
|
} else {
|
||||||
|
println!();
|
||||||
|
}
|
||||||
|
|
||||||
|
let PhysicalPosition { x, y } = monitor.position();
|
||||||
|
println!(" Position: {x},{y}");
|
||||||
|
|
||||||
|
println!(" Scale factor: {}", monitor.scale_factor());
|
||||||
|
|
||||||
|
println!(" Available modes (width x height x bit-depth):");
|
||||||
|
for mode in monitor.video_modes() {
|
||||||
|
let PhysicalSize { width, height } = mode.size();
|
||||||
|
let bits = mode.bit_depth();
|
||||||
|
let m_hz = mode.refresh_rate_millihertz();
|
||||||
|
println!(
|
||||||
|
" {width}x{height}x{bits} @ {}.{} Hz",
|
||||||
|
m_hz / 1000,
|
||||||
|
m_hz % 1000
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Process the key binding.
|
||||||
|
fn process_key_binding(key: &str, mods: &ModifiersState) -> Option<Action> {
|
||||||
|
KEY_BINDINGS.iter().find_map(|binding| {
|
||||||
|
binding
|
||||||
|
.is_triggered_by(&key, mods)
|
||||||
|
.then_some(binding.action)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Process mouse binding.
|
||||||
|
fn process_mouse_binding(button: MouseButton, mods: &ModifiersState) -> Option<Action> {
|
||||||
|
MOUSE_BINDINGS.iter().find_map(|binding| {
|
||||||
|
binding
|
||||||
|
.is_triggered_by(&button, mods)
|
||||||
|
.then_some(binding.action)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn print_help(&self) {
|
||||||
|
println!("Keyboard bindings:");
|
||||||
|
for binding in KEY_BINDINGS {
|
||||||
|
println!(
|
||||||
|
"{}{:<10} - {} ({})",
|
||||||
|
modifiers_to_string(binding.mods),
|
||||||
|
binding.trigger,
|
||||||
|
binding.action,
|
||||||
|
binding.action.help(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
println!("Mouse bindings:");
|
||||||
|
for binding in MOUSE_BINDINGS {
|
||||||
|
println!(
|
||||||
|
"{}{:<10} - {} ({})",
|
||||||
|
modifiers_to_string(binding.mods),
|
||||||
|
mouse_button_to_string(binding.trigger),
|
||||||
|
binding.action,
|
||||||
|
binding.action.help(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// State of the window.
|
||||||
|
struct WindowState {
|
||||||
|
/// IME input.
|
||||||
|
ime: bool,
|
||||||
|
/// Render surface.
|
||||||
|
///
|
||||||
|
/// NOTE: This surface must be dropped before the `Window`.
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
surface: Surface,
|
||||||
|
/// The actual winit Window.
|
||||||
|
window: Window,
|
||||||
|
/// The window theme we're drawing with.
|
||||||
|
theme: Theme,
|
||||||
|
/// Cursor position over the window.
|
||||||
|
cursor_position: Option<PhysicalPosition<f64>>,
|
||||||
|
/// Window modifiers state.
|
||||||
|
modifiers: ModifiersState,
|
||||||
|
/// Occlusion state of the window.
|
||||||
|
occluded: bool,
|
||||||
|
/// Current cursor grab mode.
|
||||||
|
cursor_grab: CursorGrabMode,
|
||||||
|
/// The amount of zoom into window.
|
||||||
|
zoom: f64,
|
||||||
|
/// The amount of rotation of the window.
|
||||||
|
rotated: f32,
|
||||||
|
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
option_as_alt: OptionAsAlt,
|
||||||
|
|
||||||
|
// Cursor states.
|
||||||
|
named_idx: usize,
|
||||||
|
custom_idx: usize,
|
||||||
|
cursor_hidden: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WindowState {
|
||||||
|
fn new(application: &Application, window: Window) -> Result<Self, Box<dyn Error>> {
|
||||||
|
// SAFETY: the surface is dropped before the `window` which provided it with handle, thus
|
||||||
|
// it doesn't outlive it.
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
let surface = unsafe { Surface::new(&application.context, &window)? };
|
||||||
|
|
||||||
|
let theme = window.theme().unwrap_or(Theme::Dark);
|
||||||
|
println!("Theme: {theme:?}");
|
||||||
|
let named_idx = 0;
|
||||||
|
window.set_cursor(CURSORS[named_idx]);
|
||||||
|
|
||||||
|
// Allow IME out of the box.
|
||||||
|
let ime = true;
|
||||||
|
window.set_ime_allowed(ime);
|
||||||
|
|
||||||
|
let size = window.inner_size();
|
||||||
|
let mut state = Self {
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
option_as_alt: window.option_as_alt(),
|
||||||
|
custom_idx: application.custom_cursors.len() - 1,
|
||||||
|
cursor_grab: CursorGrabMode::None,
|
||||||
|
named_idx,
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
surface,
|
||||||
|
window,
|
||||||
|
theme,
|
||||||
|
ime,
|
||||||
|
cursor_position: Default::default(),
|
||||||
|
cursor_hidden: Default::default(),
|
||||||
|
modifiers: Default::default(),
|
||||||
|
occluded: Default::default(),
|
||||||
|
rotated: Default::default(),
|
||||||
|
zoom: Default::default(),
|
||||||
|
};
|
||||||
|
|
||||||
|
state.resize(size);
|
||||||
|
Ok(state)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn toggle_ime(&mut self) {
|
||||||
|
self.ime = !self.ime;
|
||||||
|
self.window.set_ime_allowed(self.ime);
|
||||||
|
if let Some(position) = self.ime.then_some(self.cursor_position).flatten() {
|
||||||
|
self.window
|
||||||
|
.set_ime_cursor_area(position, PhysicalSize::new(20, 20));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn minimize(&mut self) {
|
||||||
|
self.window.set_minimized(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn cursor_moved(&mut self, position: PhysicalPosition<f64>) {
|
||||||
|
self.cursor_position = Some(position);
|
||||||
|
if self.ime {
|
||||||
|
self.window
|
||||||
|
.set_ime_cursor_area(position, PhysicalSize::new(20, 20));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn cursor_left(&mut self) {
|
||||||
|
self.cursor_position = None;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle maximized.
|
||||||
|
fn toggle_maximize(&self) {
|
||||||
|
let maximized = self.window.is_maximized();
|
||||||
|
self.window.set_maximized(!maximized);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle window decorations.
|
||||||
|
fn toggle_decorations(&self) {
|
||||||
|
let decorated = self.window.is_decorated();
|
||||||
|
self.window.set_decorations(!decorated);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle window resizable state.
|
||||||
|
fn toggle_resizable(&self) {
|
||||||
|
let resizable = self.window.is_resizable();
|
||||||
|
self.window.set_resizable(!resizable);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle cursor visibility
|
||||||
|
fn toggle_cursor_visibility(&mut self) {
|
||||||
|
self.cursor_hidden = !self.cursor_hidden;
|
||||||
|
self.window.set_cursor_visible(!self.cursor_hidden);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle resize increments on a window.
|
||||||
|
fn toggle_resize_increments(&mut self) {
|
||||||
|
let new_increments = match self.window.resize_increments() {
|
||||||
|
Some(_) => None,
|
||||||
|
None => Some(LogicalSize::new(25.0, 25.0)),
|
||||||
|
};
|
||||||
|
println!("Had increments: {}", new_increments.is_none());
|
||||||
|
self.window.set_resize_increments(new_increments);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Toggle fullscreen.
|
||||||
|
fn toggle_fullscreen(&self) {
|
||||||
|
let fullscreen = if self.window.fullscreen().is_some() {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(Fullscreen::Borderless(None))
|
||||||
|
};
|
||||||
|
|
||||||
|
self.window.set_fullscreen(fullscreen);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Cycle through the grab modes ignoring errors.
|
||||||
|
fn cycle_cursor_grab(&mut self) {
|
||||||
|
self.cursor_grab = match self.cursor_grab {
|
||||||
|
CursorGrabMode::None => CursorGrabMode::Confined,
|
||||||
|
CursorGrabMode::Confined => CursorGrabMode::Locked,
|
||||||
|
CursorGrabMode::Locked => CursorGrabMode::None,
|
||||||
|
};
|
||||||
|
println!("Changing cursor grab mode to {:?}", self.cursor_grab);
|
||||||
|
if let Err(err) = self.window.set_cursor_grab(self.cursor_grab) {
|
||||||
|
eprintln!("Error setting cursor grab: {err}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
fn cycle_option_as_alt(&mut self) {
|
||||||
|
self.option_as_alt = match self.option_as_alt {
|
||||||
|
OptionAsAlt::None => OptionAsAlt::OnlyLeft,
|
||||||
|
OptionAsAlt::OnlyLeft => OptionAsAlt::OnlyRight,
|
||||||
|
OptionAsAlt::OnlyRight => OptionAsAlt::Both,
|
||||||
|
OptionAsAlt::Both => OptionAsAlt::None,
|
||||||
|
};
|
||||||
|
println!("Setting option as alt {:?}", self.option_as_alt);
|
||||||
|
self.window.set_option_as_alt(self.option_as_alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Pick the next cursor.
|
||||||
|
fn next_cursor(&mut self) {
|
||||||
|
self.named_idx = (self.named_idx + 1) % CURSORS.len();
|
||||||
|
println!("Setting cursor to \"{:?}\"", CURSORS[self.named_idx]);
|
||||||
|
self.window
|
||||||
|
.set_cursor(Cursor::Icon(CURSORS[self.named_idx]));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Pick the next custom cursor.
|
||||||
|
fn next_custom_cursor(&mut self, custom_cursors: &[CustomCursor]) {
|
||||||
|
self.custom_idx = (self.custom_idx + 1) % custom_cursors.len();
|
||||||
|
let cursor = Cursor::Custom(custom_cursors[self.custom_idx].clone());
|
||||||
|
self.window.set_cursor(cursor);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Resize the window to the new size.
|
||||||
|
fn resize(&mut self, _size: PhysicalSize<u32>) {
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
{
|
||||||
|
let (width, height) =
|
||||||
|
match (NonZeroU32::new(_size.width), NonZeroU32::new(_size.height)) {
|
||||||
|
(Some(width), Some(height)) => (width, height),
|
||||||
|
_ => return,
|
||||||
|
};
|
||||||
|
self.surface
|
||||||
|
.resize(width, height)
|
||||||
|
.expect("failed to resize inner buffer");
|
||||||
|
}
|
||||||
|
self.window.request_redraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Change the theme.
|
||||||
|
fn set_theme(&mut self, theme: Theme) {
|
||||||
|
self.theme = theme;
|
||||||
|
self.window.request_redraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Show window menu.
|
||||||
|
fn show_menu(&self) {
|
||||||
|
if let Some(position) = self.cursor_position {
|
||||||
|
self.window.show_window_menu(position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Drag the window.
|
||||||
|
fn drag_window(&self) {
|
||||||
|
if let Err(err) = self.window.drag_window() {
|
||||||
|
println!("Error starting window drag: {err}");
|
||||||
|
} else {
|
||||||
|
println!("Dragging window Window={:?}", self.window.id());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Drag-resize the window.
|
||||||
|
fn drag_resize_window(&self) {
|
||||||
|
let position = match self.cursor_position {
|
||||||
|
Some(position) => position,
|
||||||
|
None => {
|
||||||
|
println!("Drag-resize requires cursor to be inside the window");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let win_size = self.window.inner_size();
|
||||||
|
let border_size = BORDER_SIZE * self.window.scale_factor();
|
||||||
|
|
||||||
|
let x_direction = if position.x < border_size {
|
||||||
|
ResizeDirection::West
|
||||||
|
} else if position.x > (win_size.width as f64 - border_size) {
|
||||||
|
ResizeDirection::East
|
||||||
|
} else {
|
||||||
|
// Use arbitrary direction instead of None for simplicity.
|
||||||
|
ResizeDirection::SouthEast
|
||||||
|
};
|
||||||
|
|
||||||
|
let y_direction = if position.y < border_size {
|
||||||
|
ResizeDirection::North
|
||||||
|
} else if position.y > (win_size.height as f64 - border_size) {
|
||||||
|
ResizeDirection::South
|
||||||
|
} else {
|
||||||
|
// Use arbitrary direction instead of None for simplicity.
|
||||||
|
ResizeDirection::SouthEast
|
||||||
|
};
|
||||||
|
|
||||||
|
let direction = match (x_direction, y_direction) {
|
||||||
|
(ResizeDirection::West, ResizeDirection::North) => ResizeDirection::NorthWest,
|
||||||
|
(ResizeDirection::West, ResizeDirection::South) => ResizeDirection::SouthWest,
|
||||||
|
(ResizeDirection::West, _) => ResizeDirection::West,
|
||||||
|
(ResizeDirection::East, ResizeDirection::North) => ResizeDirection::NorthEast,
|
||||||
|
(ResizeDirection::East, ResizeDirection::South) => ResizeDirection::SouthEast,
|
||||||
|
(ResizeDirection::East, _) => ResizeDirection::East,
|
||||||
|
(_, ResizeDirection::South) => ResizeDirection::South,
|
||||||
|
(_, ResizeDirection::North) => ResizeDirection::North,
|
||||||
|
_ => return,
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Err(err) = self.window.drag_resize_window(direction) {
|
||||||
|
println!("Error starting window drag-resize: {err}");
|
||||||
|
} else {
|
||||||
|
println!("Drag-resizing window Window={:?}", self.window.id());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Change window occlusion state.
|
||||||
|
fn set_occluded(&mut self, occluded: bool) {
|
||||||
|
self.occluded = occluded;
|
||||||
|
if !occluded {
|
||||||
|
self.window.request_redraw();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Draw the window contents.
|
||||||
|
#[cfg(not(any(android_platform, ios_platform)))]
|
||||||
|
fn draw(&mut self) -> Result<(), Box<dyn Error>> {
|
||||||
|
if self.occluded {
|
||||||
|
println!("Skipping drawing occluded window={:?}", self.window.id());
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
const WHITE: u32 = 0xFFFFFFFF;
|
||||||
|
const DARK_GRAY: u32 = 0xFF181818;
|
||||||
|
|
||||||
|
let color = match self.theme {
|
||||||
|
Theme::Light => WHITE,
|
||||||
|
Theme::Dark => DARK_GRAY,
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut buffer = self.surface.buffer_mut()?;
|
||||||
|
buffer.fill(color);
|
||||||
|
self.window.pre_present_notify();
|
||||||
|
buffer.present()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(any(android_platform, ios_platform))]
|
||||||
|
fn draw(&mut self) -> Result<(), Box<dyn Error>> {
|
||||||
|
println!("Drawing but without rendering...");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Binding<T: Eq> {
|
||||||
|
trigger: T,
|
||||||
|
mods: ModifiersState,
|
||||||
|
action: Action,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: Eq> Binding<T> {
|
||||||
|
const fn new(trigger: T, mods: ModifiersState, action: Action) -> Self {
|
||||||
|
Self {
|
||||||
|
trigger,
|
||||||
|
mods,
|
||||||
|
action,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_triggered_by(&self, trigger: &T, mods: &ModifiersState) -> bool {
|
||||||
|
&self.trigger == trigger && &self.mods == mods
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
enum Action {
|
||||||
|
CloseWindow,
|
||||||
|
ToggleCursorVisibility,
|
||||||
|
CreateNewWindow,
|
||||||
|
ToggleResizeIncrements,
|
||||||
|
ToggleImeInput,
|
||||||
|
ToggleDecorations,
|
||||||
|
ToggleResizable,
|
||||||
|
ToggleFullscreen,
|
||||||
|
ToggleMaximize,
|
||||||
|
Minimize,
|
||||||
|
NextCursor,
|
||||||
|
NextCustomCursor,
|
||||||
|
CycleCursorGrab,
|
||||||
|
PrintHelp,
|
||||||
|
DragWindow,
|
||||||
|
DragResizeWindow,
|
||||||
|
ShowWindowMenu,
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
CycleOptionAsAlt,
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
CreateNewTab,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Action {
|
||||||
|
fn help(&self) -> &'static str {
|
||||||
|
match self {
|
||||||
|
Action::CloseWindow => "Close window",
|
||||||
|
Action::ToggleCursorVisibility => "Hide cursor",
|
||||||
|
Action::CreateNewWindow => "Create new window",
|
||||||
|
Action::ToggleImeInput => "Toggle IME input",
|
||||||
|
Action::ToggleDecorations => "Toggle decorations",
|
||||||
|
Action::ToggleResizable => "Toggle window resizable state",
|
||||||
|
Action::ToggleFullscreen => "Toggle fullscreen",
|
||||||
|
Action::ToggleMaximize => "Maximize",
|
||||||
|
Action::Minimize => "Minimize",
|
||||||
|
Action::ToggleResizeIncrements => "Use resize increments when resizing window",
|
||||||
|
Action::NextCursor => "Advance the cursor to the next value",
|
||||||
|
Action::NextCustomCursor => "Advance custom cursor to the next value",
|
||||||
|
Action::CycleCursorGrab => "Cycle through cursor grab mode",
|
||||||
|
Action::PrintHelp => "Print help",
|
||||||
|
Action::DragWindow => "Start window drag",
|
||||||
|
Action::DragResizeWindow => "Start window drag-resize",
|
||||||
|
Action::ShowWindowMenu => "Show window menu",
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Action::CycleOptionAsAlt => "Cycle option as alt mode",
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Action::CreateNewTab => "Create new tab",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Action {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
Debug::fmt(&self, f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn decode_cursor(bytes: &[u8]) -> CustomCursorSource {
|
||||||
|
let img = image::load_from_memory(bytes).unwrap().to_rgba8();
|
||||||
|
let samples = img.into_flat_samples();
|
||||||
|
let (_, w, h) = samples.extents();
|
||||||
|
let (w, h) = (w as u16, h as u16);
|
||||||
|
CustomCursor::from_rgba(samples.samples, w, h, w / 2, h / 2).unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn load_icon(path: &Path) -> Icon {
|
||||||
|
let (icon_rgba, icon_width, icon_height) = {
|
||||||
|
let image = image::open(path)
|
||||||
|
.expect("Failed to open icon path")
|
||||||
|
.into_rgba8();
|
||||||
|
let (width, height) = image.dimensions();
|
||||||
|
let rgba = image.into_raw();
|
||||||
|
(rgba, width, height)
|
||||||
|
};
|
||||||
|
Icon::from_rgba(icon_rgba, icon_width, icon_height).expect("Failed to open icon")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn modifiers_to_string(mods: ModifiersState) -> String {
|
||||||
|
let mut mods_line = String::new();
|
||||||
|
// Always add + since it's printed as a part of the bindings.
|
||||||
|
for (modifier, desc) in [
|
||||||
|
(ModifiersState::SUPER, "Super+"),
|
||||||
|
(ModifiersState::ALT, "Alt+"),
|
||||||
|
(ModifiersState::CONTROL, "Ctrl+"),
|
||||||
|
(ModifiersState::SHIFT, "Shift+"),
|
||||||
|
] {
|
||||||
|
if !mods.contains(modifier) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
mods_line.push_str(desc);
|
||||||
|
}
|
||||||
|
mods_line
|
||||||
|
}
|
||||||
|
|
||||||
|
fn mouse_button_to_string(button: MouseButton) -> &'static str {
|
||||||
|
match button {
|
||||||
|
MouseButton::Left => "LMB",
|
||||||
|
MouseButton::Right => "RMB",
|
||||||
|
MouseButton::Middle => "MMB",
|
||||||
|
MouseButton::Back => "Back",
|
||||||
|
MouseButton::Forward => "Forward",
|
||||||
|
MouseButton::Other(_) => "",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Cursor list to cycle through.
|
||||||
|
const CURSORS: &[CursorIcon] = &[
|
||||||
|
CursorIcon::Default,
|
||||||
|
CursorIcon::Crosshair,
|
||||||
|
CursorIcon::Pointer,
|
||||||
|
CursorIcon::Move,
|
||||||
|
CursorIcon::Text,
|
||||||
|
CursorIcon::Wait,
|
||||||
|
CursorIcon::Help,
|
||||||
|
CursorIcon::Progress,
|
||||||
|
CursorIcon::NotAllowed,
|
||||||
|
CursorIcon::ContextMenu,
|
||||||
|
CursorIcon::Cell,
|
||||||
|
CursorIcon::VerticalText,
|
||||||
|
CursorIcon::Alias,
|
||||||
|
CursorIcon::Copy,
|
||||||
|
CursorIcon::NoDrop,
|
||||||
|
CursorIcon::Grab,
|
||||||
|
CursorIcon::Grabbing,
|
||||||
|
CursorIcon::AllScroll,
|
||||||
|
CursorIcon::ZoomIn,
|
||||||
|
CursorIcon::ZoomOut,
|
||||||
|
CursorIcon::EResize,
|
||||||
|
CursorIcon::NResize,
|
||||||
|
CursorIcon::NeResize,
|
||||||
|
CursorIcon::NwResize,
|
||||||
|
CursorIcon::SResize,
|
||||||
|
CursorIcon::SeResize,
|
||||||
|
CursorIcon::SwResize,
|
||||||
|
CursorIcon::WResize,
|
||||||
|
CursorIcon::EwResize,
|
||||||
|
CursorIcon::NsResize,
|
||||||
|
CursorIcon::NeswResize,
|
||||||
|
CursorIcon::NwseResize,
|
||||||
|
CursorIcon::ColResize,
|
||||||
|
CursorIcon::RowResize,
|
||||||
|
];
|
||||||
|
|
||||||
|
const KEY_BINDINGS: &[Binding<&'static str>] = &[
|
||||||
|
Binding::new("Q", ModifiersState::CONTROL, Action::CloseWindow),
|
||||||
|
Binding::new("H", ModifiersState::CONTROL, Action::PrintHelp),
|
||||||
|
Binding::new("F", ModifiersState::CONTROL, Action::ToggleFullscreen),
|
||||||
|
Binding::new("D", ModifiersState::CONTROL, Action::ToggleDecorations),
|
||||||
|
Binding::new("I", ModifiersState::CONTROL, Action::ToggleImeInput),
|
||||||
|
Binding::new("L", ModifiersState::CONTROL, Action::CycleCursorGrab),
|
||||||
|
Binding::new("P", ModifiersState::CONTROL, Action::ToggleResizeIncrements),
|
||||||
|
Binding::new("R", ModifiersState::CONTROL, Action::ToggleResizable),
|
||||||
|
// M.
|
||||||
|
Binding::new("M", ModifiersState::CONTROL, Action::ToggleMaximize),
|
||||||
|
Binding::new("M", ModifiersState::ALT, Action::Minimize),
|
||||||
|
// N.
|
||||||
|
Binding::new("N", ModifiersState::CONTROL, Action::CreateNewWindow),
|
||||||
|
// C.
|
||||||
|
Binding::new("C", ModifiersState::CONTROL, Action::NextCursor),
|
||||||
|
Binding::new("C", ModifiersState::ALT, Action::NextCustomCursor),
|
||||||
|
Binding::new("Z", ModifiersState::CONTROL, Action::ToggleCursorVisibility),
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Binding::new("T", ModifiersState::SUPER, Action::CreateNewTab),
|
||||||
|
#[cfg(macos_platform)]
|
||||||
|
Binding::new("O", ModifiersState::CONTROL, Action::CycleOptionAsAlt),
|
||||||
|
];
|
||||||
|
|
||||||
|
const MOUSE_BINDINGS: &[Binding<MouseButton>] = &[
|
||||||
|
Binding::new(
|
||||||
|
MouseButton::Left,
|
||||||
|
ModifiersState::ALT,
|
||||||
|
Action::DragResizeWindow,
|
||||||
|
),
|
||||||
|
Binding::new(
|
||||||
|
MouseButton::Left,
|
||||||
|
ModifiersState::CONTROL,
|
||||||
|
Action::DragWindow,
|
||||||
|
),
|
||||||
|
Binding::new(
|
||||||
|
MouseButton::Right,
|
||||||
|
ModifiersState::CONTROL,
|
||||||
|
Action::ShowWindowMenu,
|
||||||
|
),
|
||||||
|
];
|
||||||
60
examples/x11_embed.rs
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
//! A demonstration of embedding a winit window in an existing X11 application.
|
||||||
|
use std::error::Error;
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
|
use winit::{
|
||||||
|
event::{Event, WindowEvent},
|
||||||
|
event_loop::EventLoop,
|
||||||
|
platform::x11::WindowAttributesExtX11,
|
||||||
|
window::Window,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[path = "util/fill.rs"]
|
||||||
|
mod fill;
|
||||||
|
|
||||||
|
// First argument should be a 32-bit X11 window ID.
|
||||||
|
let parent_window_id = std::env::args()
|
||||||
|
.nth(1)
|
||||||
|
.ok_or("Expected a 32-bit X11 window ID as the first argument.")?
|
||||||
|
.parse::<u32>()?;
|
||||||
|
|
||||||
|
tracing_subscriber::fmt::init();
|
||||||
|
let event_loop = EventLoop::new()?;
|
||||||
|
|
||||||
|
let mut window = None;
|
||||||
|
event_loop.run(move |event, event_loop| match event {
|
||||||
|
Event::Resumed => {
|
||||||
|
let window_attributes = Window::default_attributes()
|
||||||
|
.with_title("An embedded window!")
|
||||||
|
.with_inner_size(winit::dpi::LogicalSize::new(128.0, 128.0))
|
||||||
|
.with_embed_parent_window(parent_window_id);
|
||||||
|
|
||||||
|
window = Some(event_loop.create_window(window_attributes).unwrap());
|
||||||
|
}
|
||||||
|
Event::WindowEvent { event, .. } => {
|
||||||
|
let window = window.as_ref().unwrap();
|
||||||
|
|
||||||
|
match event {
|
||||||
|
WindowEvent::CloseRequested => event_loop.exit(),
|
||||||
|
WindowEvent::RedrawRequested => {
|
||||||
|
window.pre_present_notify();
|
||||||
|
fill::fill_window(window);
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Event::AboutToWait => {
|
||||||
|
window.as_ref().unwrap().request_redraw();
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
})?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(x11_platform))]
|
||||||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
|
println!("This example is only supported on X11 platforms.");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
707
project-words.txt
Normal file
@@ -0,0 +1,707 @@
|
|||||||
|
ABNT
|
||||||
|
ACCEPTFILES
|
||||||
|
ALTERASE
|
||||||
|
APPCOMMAND
|
||||||
|
APPSTARTING
|
||||||
|
APPWINDOW
|
||||||
|
ASYNCWINDOWPOS
|
||||||
|
ATOK
|
||||||
|
AZERTY
|
||||||
|
Abortable
|
||||||
|
Artur
|
||||||
|
Autorotate
|
||||||
|
BACKTAB
|
||||||
|
BADFLAGS
|
||||||
|
BADMODE
|
||||||
|
BADPARAM
|
||||||
|
BASSBOOST
|
||||||
|
BITSPERPEL
|
||||||
|
BKSP
|
||||||
|
BLURBEHIND
|
||||||
|
BOTTOMLEFT
|
||||||
|
BOTTOMRIGHT
|
||||||
|
BRIGHTNESSDOW
|
||||||
|
BRIGHTNESSU
|
||||||
|
BYCOMMAND
|
||||||
|
Backquote
|
||||||
|
Bangou
|
||||||
|
Blackbox
|
||||||
|
CAEAGL
|
||||||
|
CANDIDATEFORM
|
||||||
|
CAPTURECHANGED
|
||||||
|
CFUUID
|
||||||
|
CLIPSIBLINGS
|
||||||
|
CLOEXEC
|
||||||
|
CLOSECD
|
||||||
|
CODEOWNERS
|
||||||
|
COLORSYNC
|
||||||
|
COMPATTR
|
||||||
|
COMPOSITIONFORM
|
||||||
|
COMPSTR
|
||||||
|
CREATESTRUCTW
|
||||||
|
CRSEL
|
||||||
|
CRTC
|
||||||
|
CTYPE
|
||||||
|
CURSORPOS
|
||||||
|
CUSEL
|
||||||
|
CXVIRTUALSCREEN
|
||||||
|
CYCLEWINDOWS
|
||||||
|
CYVIRTUALSCREEN
|
||||||
|
Calculater
|
||||||
|
Codeinput
|
||||||
|
Colormap
|
||||||
|
Compiz
|
||||||
|
Condvar
|
||||||
|
Crtc
|
||||||
|
DEADCHAR
|
||||||
|
DEFAULTSIZE
|
||||||
|
DEFAULTTONEAREST
|
||||||
|
DEFAULTTONULL
|
||||||
|
DEFAULTTOPRIMARY
|
||||||
|
DELETEFILE
|
||||||
|
DEVICEINFO
|
||||||
|
DEVICELALTKEYMASK
|
||||||
|
DEVICELCMDKEYMASK
|
||||||
|
DEVICELCTLKEYMASK
|
||||||
|
DEVICELSHIFTKEYMASK
|
||||||
|
DEVICENAME
|
||||||
|
DEVICERALTKEYMASK
|
||||||
|
DEVICERCMDKEYMASK
|
||||||
|
DEVICERCTLKEYMASK
|
||||||
|
DEVICERSHIFTKEYMASK
|
||||||
|
DEVMODEW
|
||||||
|
DEVNOTIFY
|
||||||
|
DISP
|
||||||
|
DISPLAYFREQUENCY
|
||||||
|
DPAD
|
||||||
|
DPICHANGED
|
||||||
|
DROPEFFECT
|
||||||
|
DVASPECT
|
||||||
|
DWMCOMPOSITIONCHANGED
|
||||||
|
DWMWA
|
||||||
|
Deque
|
||||||
|
Dflt
|
||||||
|
EINTR
|
||||||
|
EINVAL
|
||||||
|
EJECTCD
|
||||||
|
EJECTCLOSECD
|
||||||
|
ENDCALL
|
||||||
|
ENDCOMPOSITION
|
||||||
|
ENLW
|
||||||
|
ENTERSIZEMOVE
|
||||||
|
ERCIM
|
||||||
|
EREOF
|
||||||
|
EWMH
|
||||||
|
EXITSIZEMOVE
|
||||||
|
EXSEL
|
||||||
|
EXSTYLE
|
||||||
|
EXTENDEDKEY
|
||||||
|
Eisu
|
||||||
|
Eisuu
|
||||||
|
Endcall
|
||||||
|
Endianness
|
||||||
|
FASTFORWARD
|
||||||
|
FLASHW
|
||||||
|
FLASHWINFO
|
||||||
|
FORMATETC
|
||||||
|
FORWARDMAIL
|
||||||
|
FRAMECHANGED
|
||||||
|
FVWM
|
||||||
|
GAMEPAD
|
||||||
|
GETHIGHCONTRAST
|
||||||
|
GETMINMAXINFO
|
||||||
|
GIDC
|
||||||
|
GLES
|
||||||
|
GWLP
|
||||||
|
HANGEUL
|
||||||
|
HANJA
|
||||||
|
HCURSOR
|
||||||
|
HDROP
|
||||||
|
HEADSETHOOK
|
||||||
|
HGLOBAL
|
||||||
|
HICON
|
||||||
|
HIGHCONTRASTA
|
||||||
|
HIGHCONTRASTON
|
||||||
|
HIMC
|
||||||
|
HINSTANCE
|
||||||
|
HMODULE
|
||||||
|
HORZ
|
||||||
|
HRAWINPUT
|
||||||
|
HTBOTTOM
|
||||||
|
HTBOTTOMLEFT
|
||||||
|
HTBOTTOMRIGHT
|
||||||
|
HTCAPTION
|
||||||
|
HTCLIENT
|
||||||
|
HTLEFT
|
||||||
|
HTRIGHT
|
||||||
|
HTTOP
|
||||||
|
HTTOPLEFT
|
||||||
|
HTTOPRIGHT
|
||||||
|
HWHEEL
|
||||||
|
Hanja
|
||||||
|
Hankaku
|
||||||
|
Headsethook
|
||||||
|
Henkan
|
||||||
|
Himetric
|
||||||
|
Hotspot
|
||||||
|
IACE
|
||||||
|
IBEAM
|
||||||
|
ICCCM
|
||||||
|
ICONINFO
|
||||||
|
IMEs
|
||||||
|
IMMENABLED
|
||||||
|
INPUTSINK
|
||||||
|
INTERNALPAINT
|
||||||
|
IOYUV
|
||||||
|
Impls
|
||||||
|
Ivars
|
||||||
|
JISHO
|
||||||
|
JUNJA
|
||||||
|
Junja
|
||||||
|
KBDILLUMDOWN
|
||||||
|
KBDILLUMTOGGLE
|
||||||
|
KBDILLUMUP
|
||||||
|
KEYDOWN
|
||||||
|
KEYFIRST
|
||||||
|
KEYLAST
|
||||||
|
KEYMAP
|
||||||
|
KEYUP
|
||||||
|
KILLFOCUS
|
||||||
|
KPJPCOMMA
|
||||||
|
KPLEFTPAREN
|
||||||
|
KPPLUSMINUS
|
||||||
|
KPRIGHTPAREN
|
||||||
|
Kanna
|
||||||
|
Keymap
|
||||||
|
Koho
|
||||||
|
LALT
|
||||||
|
LBUTTON
|
||||||
|
LBUTTONDOWN
|
||||||
|
LBUTTONUP
|
||||||
|
LCONTROL
|
||||||
|
LCTRL
|
||||||
|
LEFTALIGN
|
||||||
|
LOADFROMFILE
|
||||||
|
LOGPIXELSX
|
||||||
|
LOYA
|
||||||
|
LRESULT
|
||||||
|
LSHIFT
|
||||||
|
LSUPER
|
||||||
|
LWIN
|
||||||
|
Lcdfilter
|
||||||
|
Libera
|
||||||
|
MASSHOU
|
||||||
|
MAXIMIZABLE
|
||||||
|
MAXIMIZEBOX
|
||||||
|
MBUTTON
|
||||||
|
MBUTTONDOWN
|
||||||
|
MBUTTONUP
|
||||||
|
MENUCHAR
|
||||||
|
MICMUTE
|
||||||
|
MINIMIZABLE
|
||||||
|
MINIMIZEBOX
|
||||||
|
MINMAXINFO
|
||||||
|
MODECHANGE
|
||||||
|
MONITORINFO
|
||||||
|
MONITORINFOEXW
|
||||||
|
MOUSEHWHEEL
|
||||||
|
MOUSELEAVE
|
||||||
|
MOUSEMOVE
|
||||||
|
MOUSEWHEEL
|
||||||
|
MOVERESIZE
|
||||||
|
MSDOS
|
||||||
|
MSRV
|
||||||
|
Massyo
|
||||||
|
Miniaturizable
|
||||||
|
Mmap
|
||||||
|
Modifiermap
|
||||||
|
Muhenkan
|
||||||
|
Multitouch
|
||||||
|
NCACTIVATE
|
||||||
|
NCCALCSIZE
|
||||||
|
NCDESTROY
|
||||||
|
NCHITTEST
|
||||||
|
NCLBUTTONDOWN
|
||||||
|
NEXTTRACK
|
||||||
|
NOACTIVATE
|
||||||
|
NOMOVE
|
||||||
|
NONAME
|
||||||
|
NONCONVERT
|
||||||
|
NOREMOVE
|
||||||
|
NOREPOSITION
|
||||||
|
NOSIZE
|
||||||
|
NOTCONVERTED
|
||||||
|
NOTOPMOST
|
||||||
|
NOZORDER
|
||||||
|
NTSTATUS
|
||||||
|
NUMLOCK
|
||||||
|
Nesw
|
||||||
|
Nonnull
|
||||||
|
Nunley
|
||||||
|
OSVERSIONINFOW
|
||||||
|
OVERLAPPEDWINDOW
|
||||||
|
Overscan
|
||||||
|
PAUSECD
|
||||||
|
PCSTR
|
||||||
|
PCWSTR
|
||||||
|
PELSHEIGHT
|
||||||
|
PELSWIDTH
|
||||||
|
PGDN
|
||||||
|
PGUP
|
||||||
|
PINP
|
||||||
|
PLAYCD
|
||||||
|
POINTERDOWN
|
||||||
|
POINTERUP
|
||||||
|
POINTERUPDATE
|
||||||
|
POINTL
|
||||||
|
PQRS
|
||||||
|
PREVIOUSTRACK
|
||||||
|
PROCESSKEY
|
||||||
|
Pboard
|
||||||
|
Peekable
|
||||||
|
Pels
|
||||||
|
Pictsymbols
|
||||||
|
Pixmap
|
||||||
|
Premultiply
|
||||||
|
QERTZ
|
||||||
|
QWERTZ
|
||||||
|
RALT
|
||||||
|
RAWINPUT
|
||||||
|
RAWINPUTDEVICE
|
||||||
|
RAWINPUTDEVICELIST
|
||||||
|
RAWINPUTHEADER
|
||||||
|
RAWKEYBOARD
|
||||||
|
RBUTTON
|
||||||
|
RBUTTONDOWN
|
||||||
|
RBUTTONUP
|
||||||
|
RCONTROL
|
||||||
|
RCTRL
|
||||||
|
RDWR
|
||||||
|
RESULTSTR
|
||||||
|
RETURNCMD
|
||||||
|
RFKILL
|
||||||
|
RGBA
|
||||||
|
RIDEV
|
||||||
|
RIDI
|
||||||
|
RMENU
|
||||||
|
ROYA
|
||||||
|
RRRRRGGGGGBBBBB
|
||||||
|
RRRRRRRRGGGGGGGGBBBBBBBB
|
||||||
|
RRRRRRRRRRGGGGGGGGGGBBBBBBBBBB
|
||||||
|
RSHIFT
|
||||||
|
RSUPER
|
||||||
|
RUSTDOCFLAGS
|
||||||
|
RWIN
|
||||||
|
Raii
|
||||||
|
Reentrancy
|
||||||
|
Reparent
|
||||||
|
Romaji
|
||||||
|
SCREENSAVE
|
||||||
|
SCROLLDOWN
|
||||||
|
SCROLLUP
|
||||||
|
SENDFILE
|
||||||
|
SETCONTEXT
|
||||||
|
SETCURSOR
|
||||||
|
SETFOCUS
|
||||||
|
SETICON
|
||||||
|
SETTINGCHANGE
|
||||||
|
SHOULDAPPSUSEDARKMODE
|
||||||
|
SHOWNOACTIVATE
|
||||||
|
SHOWUICOMPOSITIONWINDOW
|
||||||
|
SIGILL
|
||||||
|
SIGSEGV
|
||||||
|
SIZEALL
|
||||||
|
SIZEBOX
|
||||||
|
SIZENESW
|
||||||
|
SIZENS
|
||||||
|
SIZENWSE
|
||||||
|
SIZEWE
|
||||||
|
STARTCOMPOSITION
|
||||||
|
STATDATA
|
||||||
|
STGMEDIUM
|
||||||
|
SWITCHVIDEOMODE
|
||||||
|
SYSCHAR
|
||||||
|
SYSCOMMAND
|
||||||
|
SYSDEADCHAR
|
||||||
|
SYSKEYDOWN
|
||||||
|
SYSKEYUP
|
||||||
|
SYSMENU
|
||||||
|
Smol
|
||||||
|
Sonoma
|
||||||
|
Subcompositor
|
||||||
|
Sublayer
|
||||||
|
Subviews
|
||||||
|
Sysrq
|
||||||
|
THUMBSTICK
|
||||||
|
TIMERNOFG
|
||||||
|
TOOLWINDOW
|
||||||
|
TOPLEFT
|
||||||
|
TOPRIGHT
|
||||||
|
TOUCHEVENTF
|
||||||
|
TOUCHINPUT
|
||||||
|
TOUROKU
|
||||||
|
TRACKMOUSEEVENT
|
||||||
|
TYMED
|
||||||
|
TYPEHID
|
||||||
|
TYPEKEYBOARD
|
||||||
|
TYPEMOUSE
|
||||||
|
Thumbl
|
||||||
|
Thumbr
|
||||||
|
Tomiĉo
|
||||||
|
UNICHAR
|
||||||
|
USEDARKMODECOLORS
|
||||||
|
UXTHEME
|
||||||
|
Unadjust
|
||||||
|
Unadvise
|
||||||
|
Ungrab
|
||||||
|
Unminimizing
|
||||||
|
VKEY
|
||||||
|
VKEYS
|
||||||
|
Viewporter
|
||||||
|
Visualid
|
||||||
|
Vulkan
|
||||||
|
WINDOWCOMPOSITIONATTRIB
|
||||||
|
WINDOWCOMPOSITIONATTRIBDATA
|
||||||
|
WINDOWEDGE
|
||||||
|
WINDOWPLACEMENT
|
||||||
|
WINDOWPOS
|
||||||
|
WINDOWPOSCHANGED
|
||||||
|
WINDOWPOSCHANGING
|
||||||
|
WLAN
|
||||||
|
WNDPROC
|
||||||
|
WSCTRL
|
||||||
|
WXYZ
|
||||||
|
XBUTTONDOWN
|
||||||
|
XBUTTONUP
|
||||||
|
XEMBED
|
||||||
|
XFER
|
||||||
|
XKBCH
|
||||||
|
XKBH
|
||||||
|
XKBXH
|
||||||
|
XMODIFIERS
|
||||||
|
XSETTINGS
|
||||||
|
XVIRTUALSCREEN
|
||||||
|
Xcursor
|
||||||
|
Xdnd
|
||||||
|
Xfer
|
||||||
|
Xids
|
||||||
|
Xorg
|
||||||
|
Xutf
|
||||||
|
YVIRTUALSCREEN
|
||||||
|
Zenkaku
|
||||||
|
aarch
|
||||||
|
abortable
|
||||||
|
adwaita
|
||||||
|
ahash
|
||||||
|
altgr
|
||||||
|
apartmentthreaded
|
||||||
|
argb
|
||||||
|
armv
|
||||||
|
atleast
|
||||||
|
attribs
|
||||||
|
autoreleasepool
|
||||||
|
autoreleases
|
||||||
|
autorotate
|
||||||
|
beachball
|
||||||
|
beforeunload
|
||||||
|
behaviour
|
||||||
|
bfcache
|
||||||
|
bgra
|
||||||
|
bindgen
|
||||||
|
bitflags
|
||||||
|
bitmaprenderer
|
||||||
|
blackbox
|
||||||
|
blurregion
|
||||||
|
borderless
|
||||||
|
busybutclickable
|
||||||
|
bytemuck
|
||||||
|
bytewise
|
||||||
|
calloop
|
||||||
|
callstack
|
||||||
|
cdylib
|
||||||
|
cgfloat
|
||||||
|
clicky
|
||||||
|
clipchildren
|
||||||
|
clonable
|
||||||
|
clsctx
|
||||||
|
clsid
|
||||||
|
codepaths
|
||||||
|
coinit
|
||||||
|
colormap
|
||||||
|
contextmenu
|
||||||
|
crossfont
|
||||||
|
crtc
|
||||||
|
crtcs
|
||||||
|
curr
|
||||||
|
darkmode
|
||||||
|
dbus
|
||||||
|
deminiaturize
|
||||||
|
deviceid
|
||||||
|
dlopen
|
||||||
|
docsrs
|
||||||
|
donotround
|
||||||
|
doubletap
|
||||||
|
downscaling
|
||||||
|
dppx
|
||||||
|
dwmsbt
|
||||||
|
dwmwcp
|
||||||
|
elwt
|
||||||
|
emscripten
|
||||||
|
endianness
|
||||||
|
entrancy
|
||||||
|
entrantly
|
||||||
|
evdev
|
||||||
|
eventloop
|
||||||
|
evlp
|
||||||
|
evtype
|
||||||
|
exclam
|
||||||
|
excludefromcapture
|
||||||
|
fcitx
|
||||||
|
forcetouch
|
||||||
|
fpath
|
||||||
|
fract
|
||||||
|
fsecs
|
||||||
|
fullscreen
|
||||||
|
fullscreened
|
||||||
|
fullsize
|
||||||
|
gamepads
|
||||||
|
getpid
|
||||||
|
gettid
|
||||||
|
glutin
|
||||||
|
gotchyas
|
||||||
|
hdrop
|
||||||
|
henkan
|
||||||
|
hidpi
|
||||||
|
himc
|
||||||
|
himetric
|
||||||
|
hinstance
|
||||||
|
hittest
|
||||||
|
hiword
|
||||||
|
hmenu
|
||||||
|
hmonitor
|
||||||
|
horz
|
||||||
|
hotplug
|
||||||
|
hotspot
|
||||||
|
hotx
|
||||||
|
hredraw
|
||||||
|
hresult
|
||||||
|
htotal
|
||||||
|
hwnd
|
||||||
|
ibus
|
||||||
|
icrate
|
||||||
|
impls
|
||||||
|
initer
|
||||||
|
inputmethod
|
||||||
|
isize
|
||||||
|
ivars
|
||||||
|
kcav
|
||||||
|
kchibisov
|
||||||
|
keybdinput
|
||||||
|
keybinds
|
||||||
|
keyevent
|
||||||
|
keyeventf
|
||||||
|
keymap
|
||||||
|
keypermod
|
||||||
|
keypresses
|
||||||
|
keysym
|
||||||
|
keysyms
|
||||||
|
kunddaliya
|
||||||
|
kwin
|
||||||
|
lcddefault
|
||||||
|
lgid
|
||||||
|
libc
|
||||||
|
libwayland
|
||||||
|
libxkbcommon
|
||||||
|
lindex
|
||||||
|
lmenu
|
||||||
|
longjmp
|
||||||
|
longsolidusoverlay
|
||||||
|
lowline
|
||||||
|
loword
|
||||||
|
lparam
|
||||||
|
lpfn
|
||||||
|
lpsz
|
||||||
|
lshift
|
||||||
|
macbooks
|
||||||
|
madsmtm
|
||||||
|
mainloop
|
||||||
|
maintainership
|
||||||
|
mainwindow
|
||||||
|
mapvk
|
||||||
|
memmap
|
||||||
|
millihertz
|
||||||
|
minwindef
|
||||||
|
mkdid
|
||||||
|
mkwid
|
||||||
|
modifierless
|
||||||
|
modifiermap
|
||||||
|
msiglreith
|
||||||
|
muhenkan
|
||||||
|
multitouch
|
||||||
|
nanos
|
||||||
|
nccreate
|
||||||
|
netwm
|
||||||
|
newtype
|
||||||
|
nodename
|
||||||
|
nonminimal
|
||||||
|
noredirectionbitmap
|
||||||
|
notgull
|
||||||
|
notitle
|
||||||
|
nsec
|
||||||
|
nsscreen
|
||||||
|
nsstring
|
||||||
|
nsview
|
||||||
|
ntdll
|
||||||
|
numpad
|
||||||
|
numpads
|
||||||
|
objc
|
||||||
|
offcenter
|
||||||
|
onpointerrawupdate
|
||||||
|
opengl
|
||||||
|
oppsite
|
||||||
|
orbclient
|
||||||
|
ossi
|
||||||
|
overscan
|
||||||
|
overtyping
|
||||||
|
pagehide
|
||||||
|
pageshow
|
||||||
|
physicalkey
|
||||||
|
pixmap
|
||||||
|
pointercancel
|
||||||
|
pointermove
|
||||||
|
pointerout
|
||||||
|
pointerover
|
||||||
|
pointerrawupdate
|
||||||
|
polonius
|
||||||
|
ppmm
|
||||||
|
preedit
|
||||||
|
premultiply
|
||||||
|
primarylangid
|
||||||
|
pthread
|
||||||
|
qhandle
|
||||||
|
randr
|
||||||
|
reallocs
|
||||||
|
rects
|
||||||
|
reentrancy
|
||||||
|
reparent
|
||||||
|
reparenting
|
||||||
|
replugs
|
||||||
|
repr
|
||||||
|
resizeable
|
||||||
|
retval
|
||||||
|
rgba
|
||||||
|
rgrc
|
||||||
|
rightclick
|
||||||
|
riid
|
||||||
|
roundsmall
|
||||||
|
rshift
|
||||||
|
runloop
|
||||||
|
rustc
|
||||||
|
rustdoc
|
||||||
|
rustix
|
||||||
|
scancode
|
||||||
|
scancodes
|
||||||
|
sctk
|
||||||
|
serde
|
||||||
|
setjmp
|
||||||
|
setlocale
|
||||||
|
shcore
|
||||||
|
smithay
|
||||||
|
smol
|
||||||
|
softbuffer
|
||||||
|
sourceid
|
||||||
|
splitn
|
||||||
|
standardised
|
||||||
|
stdweb
|
||||||
|
struct
|
||||||
|
structfield
|
||||||
|
subcompositor
|
||||||
|
subframework
|
||||||
|
subsec
|
||||||
|
subviews
|
||||||
|
syms
|
||||||
|
syscall
|
||||||
|
systembackdrop
|
||||||
|
sythesize
|
||||||
|
sythesized
|
||||||
|
sythetic
|
||||||
|
tabbedwindow
|
||||||
|
tabindex
|
||||||
|
throghout
|
||||||
|
timespec
|
||||||
|
titlebar
|
||||||
|
touchpad
|
||||||
|
touchstart
|
||||||
|
trackpad
|
||||||
|
transientwindow
|
||||||
|
tymed
|
||||||
|
uapi
|
||||||
|
uiscreen
|
||||||
|
uiscreens
|
||||||
|
ulong
|
||||||
|
unaccel
|
||||||
|
unaccelerated
|
||||||
|
uncoalesced
|
||||||
|
unconfine
|
||||||
|
undropped
|
||||||
|
unfocusing
|
||||||
|
ungrab
|
||||||
|
ungrabs
|
||||||
|
uninit
|
||||||
|
uninitialize
|
||||||
|
unmark
|
||||||
|
unmaximized
|
||||||
|
unminimize
|
||||||
|
unobserve
|
||||||
|
unparameterised
|
||||||
|
unref
|
||||||
|
unresizable
|
||||||
|
usedefault
|
||||||
|
userdata
|
||||||
|
uxtheme
|
||||||
|
viewporter
|
||||||
|
visibilitychange
|
||||||
|
visualid
|
||||||
|
visualtype
|
||||||
|
vkey
|
||||||
|
vredraw
|
||||||
|
vsync
|
||||||
|
vtbl
|
||||||
|
vtotal
|
||||||
|
vulkano
|
||||||
|
wakeup
|
||||||
|
wakeups
|
||||||
|
wantpalm
|
||||||
|
wgpu
|
||||||
|
winapi
|
||||||
|
windef
|
||||||
|
winit
|
||||||
|
winuser
|
||||||
|
wndclassexw
|
||||||
|
wparam
|
||||||
|
wrongcompobj
|
||||||
|
xbutton
|
||||||
|
xconn
|
||||||
|
xconnection
|
||||||
|
xcursor
|
||||||
|
xdisplay
|
||||||
|
xevent
|
||||||
|
xext
|
||||||
|
xfiltered
|
||||||
|
xfixes
|
||||||
|
xhot
|
||||||
|
ximage
|
||||||
|
xkbcommon
|
||||||
|
xkbext
|
||||||
|
xlib
|
||||||
|
xmodifiers
|
||||||
|
xmonad
|
||||||
|
xpresent
|
||||||
|
xrandr
|
||||||
|
xrender
|
||||||
|
xresources
|
||||||
|
xscrnsaver
|
||||||
|
xsettings
|
||||||
|
xwindow
|
||||||
|
yeong
|
||||||
|
yhot
|
||||||
@@ -1,7 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "run-wasm"
|
name = "run-wasm"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
rust-version.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ use std::{error::Error, hash::Hash};
|
|||||||
|
|
||||||
use cursor_icon::CursorIcon;
|
use cursor_icon::CursorIcon;
|
||||||
|
|
||||||
use crate::event_loop::EventLoopWindowTarget;
|
use crate::platform_impl::{PlatformCustomCursor, PlatformCustomCursorSource};
|
||||||
use crate::platform_impl::{self, PlatformCustomCursor, PlatformCustomCursorBuilder};
|
|
||||||
|
|
||||||
/// The maximum width and height for a cursor when using [`CustomCursor::from_rgba`].
|
/// The maximum width and height for a cursor when using [`CustomCursor::from_rgba`].
|
||||||
pub const MAX_CURSOR_SIZE: u16 = 2048;
|
pub const MAX_CURSOR_SIZE: u16 = 2048;
|
||||||
@@ -49,31 +48,28 @@ impl From<CustomCursor> for Cursor {
|
|||||||
/// # Example
|
/// # Example
|
||||||
///
|
///
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// use winit::{
|
/// # use winit::event_loop::ActiveEventLoop;
|
||||||
/// event::{Event, WindowEvent},
|
/// # use winit::window::Window;
|
||||||
/// event_loop::{ControlFlow, EventLoop},
|
/// # fn scope(event_loop: &ActiveEventLoop, window: &Window) {
|
||||||
/// window::{CustomCursor, Window},
|
/// use winit::window::CustomCursor;
|
||||||
/// };
|
|
||||||
///
|
|
||||||
/// let mut event_loop = EventLoop::new().unwrap();
|
|
||||||
///
|
///
|
||||||
/// let w = 10;
|
/// let w = 10;
|
||||||
/// let h = 10;
|
/// let h = 10;
|
||||||
/// let rgba = vec![255; (w * h * 4) as usize];
|
/// let rgba = vec![255; (w * h * 4) as usize];
|
||||||
///
|
///
|
||||||
/// #[cfg(not(target_family = "wasm"))]
|
/// #[cfg(not(target_family = "wasm"))]
|
||||||
/// let builder = CustomCursor::from_rgba(rgba, w, h, w / 2, h / 2).unwrap();
|
/// let source = CustomCursor::from_rgba(rgba, w, h, w / 2, h / 2).unwrap();
|
||||||
///
|
///
|
||||||
/// #[cfg(target_family = "wasm")]
|
/// #[cfg(target_family = "wasm")]
|
||||||
/// let builder = {
|
/// let source = {
|
||||||
/// use winit::platform::web::CustomCursorExtWebSys;
|
/// use winit::platform::web::CustomCursorExtWebSys;
|
||||||
/// CustomCursor::from_url(String::from("http://localhost:3000/cursor.png"), 0, 0)
|
/// CustomCursor::from_url(String::from("http://localhost:3000/cursor.png"), 0, 0)
|
||||||
/// };
|
/// };
|
||||||
///
|
///
|
||||||
/// let custom_cursor = builder.build(&event_loop);
|
/// let custom_cursor = event_loop.create_custom_cursor(source);
|
||||||
///
|
///
|
||||||
/// let window = Window::new(&event_loop).unwrap();
|
|
||||||
/// window.set_cursor(custom_cursor.clone());
|
/// window.set_cursor(custom_cursor.clone());
|
||||||
|
/// # }
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
|
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
|
||||||
pub struct CustomCursor {
|
pub struct CustomCursor {
|
||||||
@@ -91,9 +87,18 @@ impl CustomCursor {
|
|||||||
height: u16,
|
height: u16,
|
||||||
hotspot_x: u16,
|
hotspot_x: u16,
|
||||||
hotspot_y: u16,
|
hotspot_y: u16,
|
||||||
) -> Result<CustomCursorBuilder, BadImage> {
|
) -> Result<CustomCursorSource, BadImage> {
|
||||||
Ok(CustomCursorBuilder {
|
let _span = tracing::debug_span!(
|
||||||
inner: PlatformCustomCursorBuilder::from_rgba(
|
"winit::Cursor::from_rgba",
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
hotspot_x,
|
||||||
|
hotspot_y
|
||||||
|
)
|
||||||
|
.entered();
|
||||||
|
|
||||||
|
Ok(CustomCursorSource {
|
||||||
|
inner: PlatformCustomCursorSource::from_rgba(
|
||||||
rgba.into(),
|
rgba.into(),
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
@@ -104,20 +109,12 @@ impl CustomCursor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Builds a [`CustomCursor`].
|
/// Source for [`CustomCursor`].
|
||||||
///
|
///
|
||||||
/// See [`CustomCursor`] for more details.
|
/// See [`CustomCursor`] for more details.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct CustomCursorBuilder {
|
pub struct CustomCursorSource {
|
||||||
pub(crate) inner: PlatformCustomCursorBuilder,
|
pub(crate) inner: PlatformCustomCursorSource,
|
||||||
}
|
|
||||||
|
|
||||||
impl CustomCursorBuilder {
|
|
||||||
pub fn build(self, window_target: &EventLoopWindowTarget) -> CustomCursor {
|
|
||||||
CustomCursor {
|
|
||||||
inner: PlatformCustomCursor::build(self.inner, &window_target.p),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// An error produced when using [`CustomCursor::from_rgba`] with invalid arguments.
|
/// An error produced when using [`CustomCursor::from_rgba`] with invalid arguments.
|
||||||
@@ -178,12 +175,14 @@ impl fmt::Display for BadImage {
|
|||||||
|
|
||||||
impl Error for BadImage {}
|
impl Error for BadImage {}
|
||||||
|
|
||||||
/// Platforms export this directly as `PlatformCustomCursorBuilder` if they need to only work with images.
|
/// Platforms export this directly as `PlatformCustomCursorSource` if they need to only work with
|
||||||
|
/// images.
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) struct OnlyCursorImageBuilder(pub(crate) CursorImage);
|
pub(crate) struct OnlyCursorImageSource(pub(crate) CursorImage);
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
impl OnlyCursorImageBuilder {
|
impl OnlyCursorImageSource {
|
||||||
pub(crate) fn from_rgba(
|
pub(crate) fn from_rgba(
|
||||||
rgba: Vec<u8>,
|
rgba: Vec<u8>,
|
||||||
width: u16,
|
width: u16,
|
||||||
@@ -213,16 +212,6 @@ impl PartialEq for OnlyCursorImage {
|
|||||||
|
|
||||||
impl Eq for OnlyCursorImage {}
|
impl Eq for OnlyCursorImage {}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
impl OnlyCursorImage {
|
|
||||||
pub(crate) fn build(
|
|
||||||
builder: OnlyCursorImageBuilder,
|
|
||||||
_: &platform_impl::EventLoopWindowTarget,
|
|
||||||
) -> Self {
|
|
||||||
Self(Arc::new(builder.0))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
pub(crate) struct CursorImage {
|
pub(crate) struct CursorImage {
|
||||||
@@ -297,8 +286,4 @@ impl NoCustomCursor {
|
|||||||
CursorImage::from_rgba(rgba, width, height, hotspot_x, hotspot_y)?;
|
CursorImage::from_rgba(rgba, width, height, hotspot_x, hotspot_y)?;
|
||||||
Ok(Self)
|
Ok(Self)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn build(self, _: &platform_impl::EventLoopWindowTarget) -> NoCustomCursor {
|
|
||||||
self
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
use crate::platform_impl;
|
|
||||||
use std::{error, fmt};
|
use std::{error, fmt};
|
||||||
|
|
||||||
#[doc(inline)]
|
use crate::platform_impl;
|
||||||
pub use winit_core::error::NotSupportedError;
|
|
||||||
|
|
||||||
// TODO: Rename
|
// TODO: Rename
|
||||||
/// An error that may be generated when requesting Winit state
|
/// An error that may be generated when requesting Winit state
|
||||||
@@ -16,10 +14,10 @@ pub enum ExternalError {
|
|||||||
Os(OsError),
|
Os(OsError),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<winit_core::event::InnerSizeIgnored> for ExternalError {
|
/// The error type for when the requested operation is not supported by the backend.
|
||||||
fn from(_: winit_core::event::InnerSizeIgnored) -> Self {
|
#[derive(Clone)]
|
||||||
Self::Ignored
|
pub struct NotSupportedError {
|
||||||
}
|
_marker: (),
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The error type for when the OS cannot perform the requested operation.
|
/// The error type for when the OS cannot perform the requested operation.
|
||||||
@@ -49,6 +47,14 @@ impl From<OsError> for EventLoopError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl NotSupportedError {
|
||||||
|
#[inline]
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) fn new() -> NotSupportedError {
|
||||||
|
NotSupportedError { _marker: () }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl OsError {
|
impl OsError {
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
pub(crate) fn new(line: u32, file: &'static str, error: platform_impl::OsError) -> OsError {
|
pub(crate) fn new(line: u32, file: &'static str, error: platform_impl::OsError) -> OsError {
|
||||||
@@ -82,6 +88,18 @@ impl fmt::Display for ExternalError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl fmt::Debug for NotSupportedError {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
||||||
|
f.debug_struct("NotSupportedError").finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for NotSupportedError {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
||||||
|
f.pad("the requested operation is not supported by Winit")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl fmt::Display for EventLoopError {
|
impl fmt::Display for EventLoopError {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
||||||
match self {
|
match self {
|
||||||
@@ -95,6 +113,7 @@ impl fmt::Display for EventLoopError {
|
|||||||
|
|
||||||
impl error::Error for OsError {}
|
impl error::Error for OsError {}
|
||||||
impl error::Error for ExternalError {}
|
impl error::Error for ExternalError {}
|
||||||
|
impl error::Error for NotSupportedError {}
|
||||||
impl error::Error for EventLoopError {}
|
impl error::Error for EventLoopError {}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@@ -106,6 +125,11 @@ mod tests {
|
|||||||
// Eat attributes for testing
|
// Eat attributes for testing
|
||||||
#[test]
|
#[test]
|
||||||
fn ensure_fmt_does_not_panic() {
|
fn ensure_fmt_does_not_panic() {
|
||||||
|
let _ = format!(
|
||||||
|
"{:?}, {}",
|
||||||
|
NotSupportedError::new(),
|
||||||
|
NotSupportedError::new().clone()
|
||||||
|
);
|
||||||
let _ = format!(
|
let _ = format!(
|
||||||
"{:?}, {}",
|
"{:?}, {}",
|
||||||
ExternalError::NotSupported(NotSupportedError::new()),
|
ExternalError::NotSupported(NotSupportedError::new()),
|
||||||
@@ -1,64 +1,64 @@
|
|||||||
//! Incoming notifications from the GUI system.
|
//! The [`Event`] enum and assorted supporting types.
|
||||||
|
//!
|
||||||
use crate::dpi::{PhysicalPosition, PhysicalSize};
|
//! These are sent to the closure given to [`EventLoop::run(...)`], where they get
|
||||||
use crate::event_loop::AsyncRequestSerial;
|
//! processed and used to modify the program state. For more details, see the root-level documentation.
|
||||||
use crate::keyboard::{self, ModifiersKeyState, ModifiersKeys, ModifiersState};
|
//!
|
||||||
use crate::window::{ActivationToken, Theme, WindowId};
|
//! Some of these events represent different "parts" of a traditional event-handling loop. You could
|
||||||
|
//! approximate the basic ordering loop of [`EventLoop::run(...)`] like this:
|
||||||
use std::fmt;
|
//!
|
||||||
|
//! ```rust,ignore
|
||||||
|
//! let mut start_cause = StartCause::Init;
|
||||||
|
//!
|
||||||
|
//! while !elwt.exiting() {
|
||||||
|
//! event_handler(NewEvents(start_cause), elwt);
|
||||||
|
//!
|
||||||
|
//! for e in (window events, user events, device events) {
|
||||||
|
//! event_handler(e, elwt);
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! for w in (redraw windows) {
|
||||||
|
//! event_handler(RedrawRequested(w), elwt);
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! event_handler(AboutToWait, elwt);
|
||||||
|
//! start_cause = wait_if_necessary();
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! event_handler(LoopExiting, elwt);
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! This leaves out timing details like [`ControlFlow::WaitUntil`] but hopefully
|
||||||
|
//! describes what happens in what order.
|
||||||
|
//!
|
||||||
|
//! [`EventLoop::run(...)`]: crate::event_loop::EventLoop::run
|
||||||
|
//! [`ControlFlow::WaitUntil`]: crate::event_loop::ControlFlow::WaitUntil
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::sync::{Mutex, Weak};
|
use std::sync::{Mutex, Weak};
|
||||||
|
|
||||||
#[cfg(not(web_platform))]
|
#[cfg(not(web_platform))]
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
|
|
||||||
|
#[cfg(feature = "serde")]
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
use smol_str::SmolStr;
|
||||||
#[cfg(web_platform)]
|
#[cfg(web_platform)]
|
||||||
use web_time::Instant;
|
use web_time::Instant;
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
use crate::error::ExternalError;
|
||||||
pub use serde::{Deserialize, Serialize};
|
#[cfg(doc)]
|
||||||
|
use crate::window::Window;
|
||||||
use smol_str::SmolStr;
|
use crate::{
|
||||||
|
dpi::{PhysicalPosition, PhysicalSize},
|
||||||
/// Identifier of an input device.
|
event_loop::AsyncRequestSerial,
|
||||||
///
|
keyboard::{self, ModifiersKeyState, ModifiersKeys, ModifiersState},
|
||||||
/// Whenever you receive an event arising from a particular input device, this event contains a `DeviceId` which
|
platform_impl,
|
||||||
/// identifies its origin. Note that devices may be virtual (representing an on-screen cursor and keyboard focus) or
|
window::{ActivationToken, Theme, WindowId},
|
||||||
/// physical. Virtual devices typically aggregate inputs from multiple physical devices.
|
};
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
||||||
pub struct DeviceId(u64);
|
|
||||||
|
|
||||||
impl DeviceId {
|
|
||||||
/// Returns a dummy id, useful for unit testing.
|
|
||||||
///
|
|
||||||
/// # Safety
|
|
||||||
///
|
|
||||||
/// The only guarantee made about the return value of this function is that
|
|
||||||
/// it will always be equal to itself and to future values returned by this function.
|
|
||||||
/// No other guarantees are made. This may be equal to a real `DeviceId`.
|
|
||||||
///
|
|
||||||
/// **Passing this into a winit function will result in undefined behavior.**
|
|
||||||
pub const unsafe fn dummy() -> Self {
|
|
||||||
DeviceId(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<u64> for DeviceId {
|
|
||||||
fn from(value: u64) -> Self {
|
|
||||||
Self(value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<DeviceId> for u64 {
|
|
||||||
fn from(value: DeviceId) -> Self {
|
|
||||||
value.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Describes a generic event.
|
/// Describes a generic event.
|
||||||
///
|
///
|
||||||
/// See the module-level docs for more information on the event loop manages each event.
|
/// See the module-level docs for more information on the event loop manages each event.
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
pub enum Event<T: 'static, KeyExtra> {
|
pub enum Event<T: 'static> {
|
||||||
/// Emitted when new events arrive from the OS to be processed.
|
/// Emitted when new events arrive from the OS to be processed.
|
||||||
///
|
///
|
||||||
/// This event type is useful as a place to put code that should be done before you start
|
/// This event type is useful as a place to put code that should be done before you start
|
||||||
@@ -70,7 +70,7 @@ pub enum Event<T: 'static, KeyExtra> {
|
|||||||
/// Emitted when the OS sends an event to a winit window.
|
/// Emitted when the OS sends an event to a winit window.
|
||||||
WindowEvent {
|
WindowEvent {
|
||||||
window_id: WindowId,
|
window_id: WindowId,
|
||||||
event: WindowEvent<KeyExtra>,
|
event: WindowEvent,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Emitted when the OS sends an event to a device.
|
/// Emitted when the OS sends an event to a device.
|
||||||
@@ -79,7 +79,7 @@ pub enum Event<T: 'static, KeyExtra> {
|
|||||||
event: DeviceEvent,
|
event: DeviceEvent,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Emitted when an event is sent from [`EventLoopProxy::send_event`](https://docs.rs/winit/latest/winit/event_loop/struct.EventLoopProxy.html#method.send_event)
|
/// Emitted when an event is sent from [`EventLoopProxy::send_event`](crate::event_loop::EventLoopProxy::send_event)
|
||||||
UserEvent(T),
|
UserEvent(T),
|
||||||
|
|
||||||
/// Emitted when the application has been suspended.
|
/// Emitted when the application has been suspended.
|
||||||
@@ -255,9 +255,9 @@ pub enum Event<T: 'static, KeyExtra> {
|
|||||||
MemoryWarning,
|
MemoryWarning,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T, Extra> Event<T, Extra> {
|
impl<T> Event<T> {
|
||||||
#[allow(clippy::result_large_err)]
|
#[allow(clippy::result_large_err)]
|
||||||
pub fn map_nonuser_event<U>(self) -> Result<Event<U, Extra>, Event<T, Extra>> {
|
pub fn map_nonuser_event<U>(self) -> Result<Event<U>, Event<T>> {
|
||||||
use self::Event::*;
|
use self::Event::*;
|
||||||
match self {
|
match self {
|
||||||
UserEvent(_) => Err(self),
|
UserEvent(_) => Err(self),
|
||||||
@@ -304,14 +304,12 @@ pub enum StartCause {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Describes an event from a [`Window`].
|
/// Describes an event from a [`Window`].
|
||||||
///
|
|
||||||
/// [`Window`]: https://docs.rs/winit/latest/winit/window/struct.Window.html
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
pub enum WindowEvent<KeyExtra> {
|
pub enum WindowEvent {
|
||||||
/// The activation token was delivered back and now could be used.
|
/// The activation token was delivered back and now could be used.
|
||||||
///
|
///
|
||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
not(any(x11_platform, wayland_platfrom)),
|
not(any(x11_platform, wayland_platform)),
|
||||||
allow(rustdoc::broken_intra_doc_links)
|
allow(rustdoc::broken_intra_doc_links)
|
||||||
)]
|
)]
|
||||||
/// Delivered in response to [`request_activation_token`].
|
/// Delivered in response to [`request_activation_token`].
|
||||||
@@ -369,7 +367,7 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
/// events which are not marked as `is_synthetic`.
|
/// events which are not marked as `is_synthetic`.
|
||||||
KeyboardInput {
|
KeyboardInput {
|
||||||
device_id: DeviceId,
|
device_id: DeviceId,
|
||||||
event: KeyEvent<KeyExtra>,
|
event: KeyEvent,
|
||||||
|
|
||||||
/// If `true`, the event was generated synthetically by winit
|
/// If `true`, the event was generated synthetically by winit
|
||||||
/// in one of the following circumstances:
|
/// in one of the following circumstances:
|
||||||
@@ -393,8 +391,6 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
/// ## Platform-specific
|
/// ## Platform-specific
|
||||||
///
|
///
|
||||||
/// - **iOS / Android / Web / Orbital:** Unsupported.
|
/// - **iOS / Android / Web / Orbital:** Unsupported.
|
||||||
///
|
|
||||||
/// [`Window::set_ime_allowed`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_ime_allowed
|
|
||||||
Ime(Ime),
|
Ime(Ime),
|
||||||
|
|
||||||
/// The cursor has moved on the window.
|
/// The cursor has moved on the window.
|
||||||
@@ -477,7 +473,7 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
/// The event is general enough that its generating gesture is allowed to vary
|
/// The event is general enough that its generating gesture is allowed to vary
|
||||||
/// across platforms. It could also be generated by another device.
|
/// across platforms. It could also be generated by another device.
|
||||||
///
|
///
|
||||||
/// Unfortunatly, neither [Windows](https://support.microsoft.com/en-us/windows/touch-gestures-for-windows-a9d28305-4818-a5df-4e2b-e5590f850741)
|
/// Unfortunately, neither [Windows](https://support.microsoft.com/en-us/windows/touch-gestures-for-windows-a9d28305-4818-a5df-4e2b-e5590f850741)
|
||||||
/// nor [Wayland](https://wayland.freedesktop.org/libinput/doc/latest/gestures.html)
|
/// nor [Wayland](https://wayland.freedesktop.org/libinput/doc/latest/gestures.html)
|
||||||
/// support this gesture or any other gesture with the same effect.
|
/// support this gesture or any other gesture with the same effect.
|
||||||
///
|
///
|
||||||
@@ -540,11 +536,10 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
/// * Changing the display's scale factor (e.g. in Control Panel on Windows).
|
/// * Changing the display's scale factor (e.g. in Control Panel on Windows).
|
||||||
/// * Moving the window to a display with a different scale factor.
|
/// * Moving the window to a display with a different scale factor.
|
||||||
///
|
///
|
||||||
/// After this event callback has been processed, the window will be resized to whatever value
|
/// To update the window size, use the provided [`InnerSizeWriter`] handle. By default, the window is
|
||||||
/// is pointed to by the `new_inner_size` reference. By default, this will contain the size suggested
|
/// resized to the value suggested by the OS, but it can be changed to any value.
|
||||||
/// by the OS, but it can be changed to any value.
|
|
||||||
///
|
///
|
||||||
/// For more information about DPI in general, see the [`dpi`](crate::dpi) module.
|
/// For more information about DPI in general, see the [`dpi`] crate.
|
||||||
ScaleFactorChanged {
|
ScaleFactorChanged {
|
||||||
scale_factor: f64,
|
scale_factor: f64,
|
||||||
/// Handle to update inner size during scale changes.
|
/// Handle to update inner size during scale changes.
|
||||||
@@ -566,7 +561,7 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
/// The window has been occluded (completely hidden from view).
|
/// The window has been occluded (completely hidden from view).
|
||||||
///
|
///
|
||||||
/// This is different to window visibility as it depends on whether the window is closed,
|
/// This is different to window visibility as it depends on whether the window is closed,
|
||||||
/// minimised, set invisible, or fully occluded by another window.
|
/// minimized, set invisible, or fully occluded by another window.
|
||||||
///
|
///
|
||||||
/// ## Platform-specific
|
/// ## Platform-specific
|
||||||
///
|
///
|
||||||
@@ -600,11 +595,33 @@ pub enum WindowEvent<KeyExtra> {
|
|||||||
///
|
///
|
||||||
/// Winit will aggregate duplicate redraw requests into a single event, to
|
/// Winit will aggregate duplicate redraw requests into a single event, to
|
||||||
/// help avoid duplicating rendering work.
|
/// help avoid duplicating rendering work.
|
||||||
///
|
|
||||||
/// [`Window::request_redraw`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.request_redraw
|
|
||||||
RedrawRequested,
|
RedrawRequested,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Identifier of an input device.
|
||||||
|
///
|
||||||
|
/// Whenever you receive an event arising from a particular input device, this event contains a `DeviceId` which
|
||||||
|
/// identifies its origin. Note that devices may be virtual (representing an on-screen cursor and keyboard focus) or
|
||||||
|
/// physical. Virtual devices typically aggregate inputs from multiple physical devices.
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct DeviceId(pub(crate) platform_impl::DeviceId);
|
||||||
|
|
||||||
|
impl DeviceId {
|
||||||
|
/// Returns a dummy id, useful for unit testing.
|
||||||
|
///
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// The only guarantee made about the return value of this function is that
|
||||||
|
/// it will always be equal to itself and to future values returned by this function.
|
||||||
|
/// No other guarantees are made. This may be equal to a real `DeviceId`.
|
||||||
|
///
|
||||||
|
/// **Passing this into a winit function will result in undefined behavior.**
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
#[allow(unused_unsafe)]
|
||||||
|
DeviceId(unsafe { platform_impl::DeviceId::dummy() })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Represents raw hardware events that are not associated with any particular window.
|
/// Represents raw hardware events that are not associated with any particular window.
|
||||||
///
|
///
|
||||||
/// Useful for interactions that diverge significantly from a conventional 2D GUI, such as 3D camera or first-person
|
/// Useful for interactions that diverge significantly from a conventional 2D GUI, such as 3D camera or first-person
|
||||||
@@ -665,7 +682,7 @@ pub struct RawKeyEvent {
|
|||||||
|
|
||||||
/// Describes a keyboard input targeting a window.
|
/// Describes a keyboard input targeting a window.
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
||||||
pub struct KeyEvent<Extra> {
|
pub struct KeyEvent {
|
||||||
/// Represents the position of a key independent of the currently active layout.
|
/// Represents the position of a key independent of the currently active layout.
|
||||||
///
|
///
|
||||||
/// It also uniquely identifies the physical key (i.e. it's mostly synonymous with a scancode).
|
/// It also uniquely identifies the physical key (i.e. it's mostly synonymous with a scancode).
|
||||||
@@ -715,7 +732,7 @@ pub struct KeyEvent<Extra> {
|
|||||||
/// - **Web:** Dead keys might be reported as the real key instead
|
/// - **Web:** Dead keys might be reported as the real key instead
|
||||||
/// of `Dead` depending on the browser/OS.
|
/// of `Dead` depending on the browser/OS.
|
||||||
///
|
///
|
||||||
/// [`key_without_modifiers`]: https://docs.rs/winit/latest/winit/platform/modifier_supplement/trait.KeyEventExtModifierSupplement.html#tymethod.key_without_modifiers
|
/// [`key_without_modifiers`]: crate::platform::modifier_supplement::KeyEventExtModifierSupplement::key_without_modifiers
|
||||||
pub logical_key: keyboard::Key,
|
pub logical_key: keyboard::Key,
|
||||||
|
|
||||||
/// Contains the text produced by this keypress.
|
/// Contains the text produced by this keypress.
|
||||||
@@ -764,6 +781,31 @@ pub struct KeyEvent<Extra> {
|
|||||||
/// On some systems, holding down a key for some period of time causes that key to be repeated
|
/// On some systems, holding down a key for some period of time causes that key to be repeated
|
||||||
/// as though it were being pressed and released repeatedly. This field is `true` if and only if
|
/// as though it were being pressed and released repeatedly. This field is `true` if and only if
|
||||||
/// this event is the result of one of those repeats.
|
/// this event is the result of one of those repeats.
|
||||||
|
///
|
||||||
|
/// # Example
|
||||||
|
///
|
||||||
|
/// In games, you often want to ignore repeated key events - this can be
|
||||||
|
/// done by ignoring events where this property is set.
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// use winit::event::{WindowEvent, KeyEvent, ElementState};
|
||||||
|
/// use winit::keyboard::{KeyCode, PhysicalKey};
|
||||||
|
/// # let window_event = WindowEvent::RedrawRequested; // To make the example compile
|
||||||
|
/// match window_event {
|
||||||
|
/// WindowEvent::KeyboardInput {
|
||||||
|
/// event: KeyEvent {
|
||||||
|
/// physical_key: PhysicalKey::Code(KeyCode::KeyW),
|
||||||
|
/// state: ElementState::Pressed,
|
||||||
|
/// repeat: false,
|
||||||
|
/// ..
|
||||||
|
/// },
|
||||||
|
/// ..
|
||||||
|
/// } => {
|
||||||
|
/// // The physical key `W` was pressed, and it was not a repeat
|
||||||
|
/// }
|
||||||
|
/// _ => {} // Handle other events
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
pub repeat: bool,
|
pub repeat: bool,
|
||||||
|
|
||||||
/// Platform-specific key event information.
|
/// Platform-specific key event information.
|
||||||
@@ -772,7 +814,7 @@ pub struct KeyEvent<Extra> {
|
|||||||
/// modifiers applied.
|
/// modifiers applied.
|
||||||
///
|
///
|
||||||
/// On Android, iOS, Redox and Web, this type is a no-op.
|
/// On Android, iOS, Redox and Web, this type is a no-op.
|
||||||
pub extra: Extra,
|
pub(crate) platform_specific: platform_impl::KeyEventExtra,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Describes keyboard modifiers event.
|
/// Describes keyboard modifiers event.
|
||||||
@@ -787,15 +829,6 @@ pub struct Modifiers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Modifiers {
|
impl Modifiers {
|
||||||
/// Only `winit` should instantiate this!
|
|
||||||
#[doc(hidden)]
|
|
||||||
pub fn new(state: ModifiersState, pressed_mods: ModifiersKeys) -> Self {
|
|
||||||
Self {
|
|
||||||
state,
|
|
||||||
pressed_mods,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The state of the modifiers.
|
/// The state of the modifiers.
|
||||||
pub fn state(&self) -> ModifiersState {
|
pub fn state(&self) -> ModifiersState {
|
||||||
self.state
|
self.state
|
||||||
@@ -895,8 +928,6 @@ impl From<ModifiersState> for Modifiers {
|
|||||||
/// Ime::Preedit("", None) // Synthetic event generated by winit to clear preedit.
|
/// Ime::Preedit("", None) // Synthetic event generated by winit to clear preedit.
|
||||||
/// Ime::Commit("啊不")
|
/// Ime::Commit("啊不")
|
||||||
/// ```
|
/// ```
|
||||||
///
|
|
||||||
/// [`Window::set_ime_cursor_area`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_ime_cursor_area
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
pub enum Ime {
|
pub enum Ime {
|
||||||
@@ -905,8 +936,6 @@ pub enum Ime {
|
|||||||
/// After getting this event you could receive [`Preedit`](Self::Preedit) and
|
/// After getting this event you could receive [`Preedit`](Self::Preedit) and
|
||||||
/// [`Commit`](Self::Commit) events. You should also start performing IME related requests
|
/// [`Commit`](Self::Commit) events. You should also start performing IME related requests
|
||||||
/// like [`Window::set_ime_cursor_area`].
|
/// like [`Window::set_ime_cursor_area`].
|
||||||
///
|
|
||||||
/// [`Window::set_ime_cursor_area`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_ime_cursor_area
|
|
||||||
Enabled,
|
Enabled,
|
||||||
|
|
||||||
/// Notifies when a new composing text should be set at the cursor position.
|
/// Notifies when a new composing text should be set at the cursor position.
|
||||||
@@ -929,8 +958,6 @@ pub enum Ime {
|
|||||||
/// [`Commit`](Self::Commit) events until the next [`Enabled`](Self::Enabled) event. You should
|
/// [`Commit`](Self::Commit) events until the next [`Enabled`](Self::Enabled) event. You should
|
||||||
/// also stop issuing IME related requests like [`Window::set_ime_cursor_area`] and clear pending
|
/// also stop issuing IME related requests like [`Window::set_ime_cursor_area`] and clear pending
|
||||||
/// preedit text.
|
/// preedit text.
|
||||||
///
|
|
||||||
/// [`Window::set_ime_cursor_area`]: https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_ime_cursor_area
|
|
||||||
Disabled,
|
Disabled,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1110,7 +1137,7 @@ pub enum MouseScrollDelta {
|
|||||||
PixelDelta(PhysicalPosition<f64>),
|
PixelDelta(PhysicalPosition<f64>),
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handle to synchroniously change the size of the window from the
|
/// Handle to synchronously change the size of the window from the
|
||||||
/// [`WindowEvent`].
|
/// [`WindowEvent`].
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct InnerSizeWriter {
|
pub struct InnerSizeWriter {
|
||||||
@@ -1119,27 +1146,22 @@ pub struct InnerSizeWriter {
|
|||||||
|
|
||||||
impl InnerSizeWriter {
|
impl InnerSizeWriter {
|
||||||
#[cfg(not(orbital_platform))]
|
#[cfg(not(orbital_platform))]
|
||||||
pub fn new(new_inner_size: Weak<Mutex<PhysicalSize<u32>>>) -> Self {
|
pub(crate) fn new(new_inner_size: Weak<Mutex<PhysicalSize<u32>>>) -> Self {
|
||||||
Self { new_inner_size }
|
Self { new_inner_size }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Try to request inner size which will be set synchroniously on the window.
|
/// Try to request inner size which will be set synchronously on the window.
|
||||||
pub fn request_inner_size(
|
pub fn request_inner_size(
|
||||||
&mut self,
|
&mut self,
|
||||||
new_inner_size: PhysicalSize<u32>,
|
new_inner_size: PhysicalSize<u32>,
|
||||||
) -> Result<(), InnerSizeIgnored> {
|
) -> Result<(), ExternalError> {
|
||||||
if let Some(inner) = self.new_inner_size.upgrade() {
|
if let Some(inner) = self.new_inner_size.upgrade() {
|
||||||
*inner.lock().unwrap() = new_inner_size;
|
*inner.lock().unwrap() = new_inner_size;
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(InnerSizeIgnored { _private: () })
|
Err(ExternalError::Ignored)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the underlying size.
|
|
||||||
pub fn get(&self) -> PhysicalSize<u32> {
|
|
||||||
*self.new_inner_size.upgrade().unwrap().lock().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialEq for InnerSizeWriter {
|
impl PartialEq for InnerSizeWriter {
|
||||||
@@ -1148,25 +1170,6 @@ impl PartialEq for InnerSizeWriter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Could not write the inner size.
|
|
||||||
pub struct InnerSizeIgnored {
|
|
||||||
_private: (),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Debug for InnerSizeIgnored {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
f.debug_struct("InnerSizeIgnored").finish_non_exhaustive()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Display for InnerSizeIgnored {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
f.write_str("tried to write inner size after")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::error::Error for InnerSizeIgnored {}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::event;
|
use crate::event;
|
||||||
@@ -1292,7 +1295,7 @@ mod tests {
|
|||||||
#[allow(clippy::redundant_clone)]
|
#[allow(clippy::redundant_clone)]
|
||||||
#[test]
|
#[test]
|
||||||
fn test_event_clone() {
|
fn test_event_clone() {
|
||||||
foreach_event!(|event: event::Event<(), ()>| {
|
foreach_event!(|event: event::Event<()>| {
|
||||||
let event2 = event.clone();
|
let event2 = event.clone();
|
||||||
assert_eq!(event, event2);
|
assert_eq!(event, event2);
|
||||||
})
|
})
|
||||||
@@ -1300,7 +1303,7 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_map_nonuser_event() {
|
fn test_map_nonuser_event() {
|
||||||
foreach_event!(|event: event::Event<(), ()>| {
|
foreach_event!(|event: event::Event<()>| {
|
||||||
let is_user = matches!(event, event::Event::UserEvent(()));
|
let is_user = matches!(event, event::Event::UserEvent(()));
|
||||||
let event2 = event.map_nonuser_event::<()>();
|
let event2 = event.map_nonuser_event::<()>();
|
||||||
if is_user {
|
if is_user {
|
||||||
@@ -1334,7 +1337,7 @@ mod tests {
|
|||||||
#[allow(clippy::clone_on_copy)]
|
#[allow(clippy::clone_on_copy)]
|
||||||
#[test]
|
#[test]
|
||||||
fn ensure_attrs_do_not_panic() {
|
fn ensure_attrs_do_not_panic() {
|
||||||
foreach_event!(|event: event::Event<(), ()>| {
|
foreach_event!(|event: event::Event<()>| {
|
||||||
let _ = format!("{:?}", event);
|
let _ = format!("{:?}", event);
|
||||||
});
|
});
|
||||||
let _ = event::StartCause::Init.clone();
|
let _ = event::StartCause::Init.clone();
|
||||||
@@ -8,17 +8,19 @@
|
|||||||
//! See the root-level documentation for information on how to create and use an event loop to
|
//! See the root-level documentation for information on how to create and use an event loop to
|
||||||
//! handle events.
|
//! handle events.
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use std::ops::Deref;
|
|
||||||
#[cfg(any(x11_platform, wayland_platform))]
|
#[cfg(any(x11_platform, wayland_platform))]
|
||||||
use std::os::unix::io::{AsFd, AsRawFd, BorrowedFd, RawFd};
|
use std::os::unix::io::{AsFd, AsRawFd, BorrowedFd, RawFd};
|
||||||
use std::sync::atomic::{AtomicBool, Ordering};
|
use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
|
||||||
use std::{error, fmt};
|
use std::{error, fmt};
|
||||||
|
|
||||||
use crate::error::EventLoopError;
|
#[cfg(not(web_platform))]
|
||||||
use crate::{event::Event, monitor::MonitorHandle, platform_impl};
|
use std::time::{Duration, Instant};
|
||||||
|
#[cfg(web_platform)]
|
||||||
|
use web_time::{Duration, Instant};
|
||||||
|
|
||||||
#[doc(inline)]
|
use crate::error::{EventLoopError, OsError};
|
||||||
pub use winit_core::event_loop::{AsyncRequestSerial, ControlFlow};
|
use crate::window::{CustomCursor, CustomCursorSource, Window, WindowAttributes};
|
||||||
|
use crate::{event::Event, monitor::MonitorHandle, platform_impl};
|
||||||
|
|
||||||
/// Provides a way to retrieve events from the system and from the windows that were registered to
|
/// Provides a way to retrieve events from the system and from the windows that were registered to
|
||||||
/// the events loop.
|
/// the events loop.
|
||||||
@@ -43,11 +45,9 @@ pub struct EventLoop<T: 'static> {
|
|||||||
/// Target that associates windows with an [`EventLoop`].
|
/// Target that associates windows with an [`EventLoop`].
|
||||||
///
|
///
|
||||||
/// This type exists to allow you to create new windows while Winit executes
|
/// This type exists to allow you to create new windows while Winit executes
|
||||||
/// your callback. [`EventLoop`] will coerce into this type (`impl<T> Deref for
|
/// your callback.
|
||||||
/// EventLoop<T>`), so functions that take this as a parameter can also take
|
pub struct ActiveEventLoop {
|
||||||
/// `&EventLoop`.
|
pub(crate) p: platform_impl::ActiveEventLoop,
|
||||||
pub struct EventLoopWindowTarget {
|
|
||||||
pub(crate) p: platform_impl::EventLoopWindowTarget,
|
|
||||||
pub(crate) _marker: PhantomData<*mut ()>, // Not Send nor Sync
|
pub(crate) _marker: PhantomData<*mut ()>, // Not Send nor Sync
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@ impl<T> EventLoopBuilder<T> {
|
|||||||
/// ***For cross-platform compatibility, the [`EventLoop`] must be created on the main thread,
|
/// ***For cross-platform compatibility, the [`EventLoop`] must be created on the main thread,
|
||||||
/// and only once per application.***
|
/// and only once per application.***
|
||||||
///
|
///
|
||||||
/// Calling this function will result in display backend initialisation.
|
/// Calling this function will result in display backend initialization.
|
||||||
///
|
///
|
||||||
/// ## Panics
|
/// ## Panics
|
||||||
///
|
///
|
||||||
@@ -109,6 +109,8 @@ impl<T> EventLoopBuilder<T> {
|
|||||||
)]
|
)]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn build(&mut self) -> Result<EventLoop<T>, EventLoopError> {
|
pub fn build(&mut self) -> Result<EventLoop<T>, EventLoopError> {
|
||||||
|
let _span = tracing::debug_span!("winit::EventLoopBuilder::build").entered();
|
||||||
|
|
||||||
if EVENT_LOOP_CREATED.swap(true, Ordering::Relaxed) {
|
if EVENT_LOOP_CREATED.swap(true, Ordering::Relaxed) {
|
||||||
return Err(EventLoopError::RecreationAttempt);
|
return Err(EventLoopError::RecreationAttempt);
|
||||||
}
|
}
|
||||||
@@ -133,9 +135,53 @@ impl<T> fmt::Debug for EventLoop<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for EventLoopWindowTarget {
|
impl fmt::Debug for ActiveEventLoop {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
f.pad("EventLoopWindowTarget { .. }")
|
f.pad("ActiveEventLoop { .. }")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set through [`ActiveEventLoop::set_control_flow()`].
|
||||||
|
///
|
||||||
|
/// Indicates the desired behavior of the event loop after [`Event::AboutToWait`] is emitted.
|
||||||
|
///
|
||||||
|
/// Defaults to [`Wait`].
|
||||||
|
///
|
||||||
|
/// [`Wait`]: Self::Wait
|
||||||
|
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq)]
|
||||||
|
pub enum ControlFlow {
|
||||||
|
/// When the current loop iteration finishes, immediately begin a new iteration regardless of
|
||||||
|
/// whether or not new events are available to process.
|
||||||
|
Poll,
|
||||||
|
|
||||||
|
/// When the current loop iteration finishes, suspend the thread until another event arrives.
|
||||||
|
#[default]
|
||||||
|
Wait,
|
||||||
|
|
||||||
|
/// When the current loop iteration finishes, suspend the thread until either another event
|
||||||
|
/// arrives or the given time is reached.
|
||||||
|
///
|
||||||
|
/// Useful for implementing efficient timers. Applications which want to render at the display's
|
||||||
|
/// native refresh rate should instead use [`Poll`] and the VSync functionality of a graphics API
|
||||||
|
/// to reduce odds of missed frames.
|
||||||
|
///
|
||||||
|
/// [`Poll`]: Self::Poll
|
||||||
|
WaitUntil(Instant),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ControlFlow {
|
||||||
|
/// Creates a [`ControlFlow`] that waits until a timeout has expired.
|
||||||
|
///
|
||||||
|
/// In most cases, this is set to [`WaitUntil`]. However, if the timeout overflows, it is
|
||||||
|
/// instead set to [`Wait`].
|
||||||
|
///
|
||||||
|
/// [`WaitUntil`]: Self::WaitUntil
|
||||||
|
/// [`Wait`]: Self::Wait
|
||||||
|
pub fn wait_duration(timeout: Duration) -> Self {
|
||||||
|
match Instant::now().checked_add(timeout) {
|
||||||
|
Some(instant) => Self::WaitUntil(instant),
|
||||||
|
None => Self::Wait,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,30 +241,94 @@ impl<T> EventLoop<T> {
|
|||||||
///
|
///
|
||||||
/// This function won't be available with `target_feature = "exception-handling"`.
|
/// This function won't be available with `target_feature = "exception-handling"`.
|
||||||
///
|
///
|
||||||
/// [`set_control_flow()`]: EventLoopWindowTarget::set_control_flow()
|
/// [`set_control_flow()`]: ActiveEventLoop::set_control_flow()
|
||||||
/// [`run()`]: Self::run()
|
/// [`run()`]: Self::run()
|
||||||
/// [^1]: `EventLoopExtWebSys::spawn()` is only available on Web.
|
/// [^1]: `EventLoopExtWebSys::spawn()` is only available on Web.
|
||||||
#[inline]
|
#[inline]
|
||||||
#[cfg(not(all(web_platform, target_feature = "exception-handling")))]
|
#[cfg(not(all(web_platform, target_feature = "exception-handling")))]
|
||||||
pub fn run<F>(self, event_handler: F) -> Result<(), EventLoopError>
|
pub fn run<F>(self, event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &EventLoopWindowTarget),
|
F: FnMut(Event<T>, &ActiveEventLoop),
|
||||||
{
|
{
|
||||||
|
let _span = tracing::debug_span!("winit::EventLoop::run").entered();
|
||||||
|
|
||||||
self.event_loop.run(event_handler)
|
self.event_loop.run(event_handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates an [`EventLoopProxy`] that can be used to dispatch user events to the main event loop.
|
/// Creates an [`EventLoopProxy`] that can be used to dispatch user events
|
||||||
|
/// to the main event loop, possibly from another thread.
|
||||||
pub fn create_proxy(&self) -> EventLoopProxy<T> {
|
pub fn create_proxy(&self) -> EventLoopProxy<T> {
|
||||||
EventLoopProxy {
|
EventLoopProxy {
|
||||||
event_loop_proxy: self.event_loop.create_proxy(),
|
event_loop_proxy: self.event_loop.create_proxy(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Gets a persistent reference to the underlying platform display.
|
||||||
|
///
|
||||||
|
/// See the [`OwnedDisplayHandle`] type for more information.
|
||||||
|
pub fn owned_display_handle(&self) -> OwnedDisplayHandle {
|
||||||
|
OwnedDisplayHandle {
|
||||||
|
platform: self.event_loop.window_target().p.owned_display_handle(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Change if or when [`DeviceEvent`]s are captured.
|
||||||
|
///
|
||||||
|
/// See [`ActiveEventLoop::listen_device_events`] for details.
|
||||||
|
///
|
||||||
|
/// [`DeviceEvent`]: crate::event::DeviceEvent
|
||||||
|
pub fn listen_device_events(&self, allowed: DeviceEvents) {
|
||||||
|
let _span = tracing::debug_span!(
|
||||||
|
"winit::EventLoop::listen_device_events",
|
||||||
|
allowed = ?allowed
|
||||||
|
)
|
||||||
|
.entered();
|
||||||
|
|
||||||
|
self.event_loop
|
||||||
|
.window_target()
|
||||||
|
.p
|
||||||
|
.listen_device_events(allowed);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Sets the [`ControlFlow`].
|
||||||
|
pub fn set_control_flow(&self, control_flow: ControlFlow) {
|
||||||
|
self.event_loop
|
||||||
|
.window_target()
|
||||||
|
.p
|
||||||
|
.set_control_flow(control_flow)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a window.
|
||||||
|
///
|
||||||
|
/// Creating window without event loop running often leads to improper window creation;
|
||||||
|
/// use [`ActiveEventLoop::create_window`] instead.
|
||||||
|
#[deprecated = "use `ActiveEventLoop::create_window` instead"]
|
||||||
|
#[inline]
|
||||||
|
pub fn create_window(&self, window_attributes: WindowAttributes) -> Result<Window, OsError> {
|
||||||
|
let _span = tracing::debug_span!(
|
||||||
|
"winit::EventLoop::create_window",
|
||||||
|
window_attributes = ?window_attributes
|
||||||
|
)
|
||||||
|
.entered();
|
||||||
|
|
||||||
|
let window =
|
||||||
|
platform_impl::Window::new(&self.event_loop.window_target().p, window_attributes)?;
|
||||||
|
Ok(Window { window })
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create custom cursor.
|
||||||
|
pub fn create_custom_cursor(&self, custom_cursor: CustomCursorSource) -> CustomCursor {
|
||||||
|
self.event_loop
|
||||||
|
.window_target()
|
||||||
|
.p
|
||||||
|
.create_custom_cursor(custom_cursor)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rwh_06")]
|
#[cfg(feature = "rwh_06")]
|
||||||
impl<T> rwh_06::HasDisplayHandle for EventLoop<T> {
|
impl<T> rwh_06::HasDisplayHandle for EventLoop<T> {
|
||||||
fn display_handle(&self) -> Result<rwh_06::DisplayHandle<'_>, rwh_06::HandleError> {
|
fn display_handle(&self) -> Result<rwh_06::DisplayHandle<'_>, rwh_06::HandleError> {
|
||||||
rwh_06::HasDisplayHandle::display_handle(&**self)
|
rwh_06::HasDisplayHandle::display_handle(self.event_loop.window_target())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -226,7 +336,7 @@ impl<T> rwh_06::HasDisplayHandle for EventLoop<T> {
|
|||||||
unsafe impl<T> rwh_05::HasRawDisplayHandle for EventLoop<T> {
|
unsafe impl<T> rwh_05::HasRawDisplayHandle for EventLoop<T> {
|
||||||
/// Returns a [`rwh_05::RawDisplayHandle`] for the event loop.
|
/// Returns a [`rwh_05::RawDisplayHandle`] for the event loop.
|
||||||
fn raw_display_handle(&self) -> rwh_05::RawDisplayHandle {
|
fn raw_display_handle(&self) -> rwh_05::RawDisplayHandle {
|
||||||
rwh_05::HasRawDisplayHandle::raw_display_handle(&**self)
|
rwh_05::HasRawDisplayHandle::raw_display_handle(self.event_loop.window_target())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -258,17 +368,39 @@ impl<T> AsRawFd for EventLoop<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Deref for EventLoop<T> {
|
impl ActiveEventLoop {
|
||||||
type Target = EventLoopWindowTarget;
|
/// Create the window.
|
||||||
fn deref(&self) -> &EventLoopWindowTarget {
|
///
|
||||||
self.event_loop.window_target()
|
/// Possible causes of error include denied permission, incompatible system, and lack of memory.
|
||||||
}
|
///
|
||||||
}
|
/// ## Platform-specific
|
||||||
|
///
|
||||||
|
/// - **Web:** The window is created but not inserted into the web page automatically. Please
|
||||||
|
/// see the web platform module for more information.
|
||||||
|
#[inline]
|
||||||
|
pub fn create_window(&self, window_attributes: WindowAttributes) -> Result<Window, OsError> {
|
||||||
|
let _span = tracing::debug_span!(
|
||||||
|
"winit::ActiveEventLoop::create_window",
|
||||||
|
window_attributes = ?window_attributes
|
||||||
|
)
|
||||||
|
.entered();
|
||||||
|
|
||||||
|
let window = platform_impl::Window::new(&self.p, window_attributes)?;
|
||||||
|
Ok(Window { window })
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create custom cursor.
|
||||||
|
pub fn create_custom_cursor(&self, custom_cursor: CustomCursorSource) -> CustomCursor {
|
||||||
|
let _span = tracing::debug_span!("winit::ActiveEventLoop::create_custom_cursor",).entered();
|
||||||
|
|
||||||
|
self.p.create_custom_cursor(custom_cursor)
|
||||||
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
|
||||||
/// Returns the list of all the monitors available on the system.
|
/// Returns the list of all the monitors available on the system.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle> {
|
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle> {
|
||||||
|
let _span = tracing::debug_span!("winit::ActiveEventLoop::available_monitors",).entered();
|
||||||
|
|
||||||
#[allow(clippy::useless_conversion)] // false positive on some platforms
|
#[allow(clippy::useless_conversion)] // false positive on some platforms
|
||||||
self.p
|
self.p
|
||||||
.available_monitors()
|
.available_monitors()
|
||||||
@@ -285,6 +417,8 @@ impl EventLoopWindowTarget {
|
|||||||
/// **Wayland / Web:** Always returns `None`.
|
/// **Wayland / Web:** Always returns `None`.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
||||||
|
let _span = tracing::debug_span!("winit::ActiveEventLoop::primary_monitor",).entered();
|
||||||
|
|
||||||
self.p
|
self.p
|
||||||
.primary_monitor()
|
.primary_monitor()
|
||||||
.map(|inner| MonitorHandle { inner })
|
.map(|inner| MonitorHandle { inner })
|
||||||
@@ -302,6 +436,12 @@ impl EventLoopWindowTarget {
|
|||||||
///
|
///
|
||||||
/// [`DeviceEvent`]: crate::event::DeviceEvent
|
/// [`DeviceEvent`]: crate::event::DeviceEvent
|
||||||
pub fn listen_device_events(&self, allowed: DeviceEvents) {
|
pub fn listen_device_events(&self, allowed: DeviceEvents) {
|
||||||
|
let _span = tracing::debug_span!(
|
||||||
|
"winit::ActiveEventLoop::listen_device_events",
|
||||||
|
allowed = ?allowed
|
||||||
|
)
|
||||||
|
.entered();
|
||||||
|
|
||||||
self.p.listen_device_events(allowed);
|
self.p.listen_device_events(allowed);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -319,6 +459,8 @@ impl EventLoopWindowTarget {
|
|||||||
///
|
///
|
||||||
/// See [`LoopExiting`](Event::LoopExiting).
|
/// See [`LoopExiting`](Event::LoopExiting).
|
||||||
pub fn exit(&self) {
|
pub fn exit(&self) {
|
||||||
|
let _span = tracing::debug_span!("winit::ActiveEventLoop::exit",).entered();
|
||||||
|
|
||||||
self.p.exit()
|
self.p.exit()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -340,7 +482,7 @@ impl EventLoopWindowTarget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rwh_06")]
|
#[cfg(feature = "rwh_06")]
|
||||||
impl rwh_06::HasDisplayHandle for EventLoopWindowTarget {
|
impl rwh_06::HasDisplayHandle for ActiveEventLoop {
|
||||||
fn display_handle(&self) -> Result<rwh_06::DisplayHandle<'_>, rwh_06::HandleError> {
|
fn display_handle(&self) -> Result<rwh_06::DisplayHandle<'_>, rwh_06::HandleError> {
|
||||||
let raw = self.p.raw_display_handle_rwh_06()?;
|
let raw = self.p.raw_display_handle_rwh_06()?;
|
||||||
// SAFETY: The display will never be deallocated while the event loop is alive.
|
// SAFETY: The display will never be deallocated while the event loop is alive.
|
||||||
@@ -349,7 +491,7 @@ impl rwh_06::HasDisplayHandle for EventLoopWindowTarget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rwh_05")]
|
#[cfg(feature = "rwh_05")]
|
||||||
unsafe impl rwh_05::HasRawDisplayHandle for EventLoopWindowTarget {
|
unsafe impl rwh_05::HasRawDisplayHandle for ActiveEventLoop {
|
||||||
/// Returns a [`rwh_05::RawDisplayHandle`] for the event loop.
|
/// Returns a [`rwh_05::RawDisplayHandle`] for the event loop.
|
||||||
fn raw_display_handle(&self) -> rwh_05::RawDisplayHandle {
|
fn raw_display_handle(&self) -> rwh_05::RawDisplayHandle {
|
||||||
self.p.raw_display_handle_rwh_05()
|
self.p.raw_display_handle_rwh_05()
|
||||||
@@ -360,7 +502,7 @@ unsafe impl rwh_05::HasRawDisplayHandle for EventLoopWindowTarget {
|
|||||||
///
|
///
|
||||||
/// The purpose of this type is to provide a cheaply clonable handle to the underlying
|
/// The purpose of this type is to provide a cheaply clonable handle to the underlying
|
||||||
/// display handle. This is often used by graphics APIs to connect to the underlying APIs.
|
/// display handle. This is often used by graphics APIs to connect to the underlying APIs.
|
||||||
/// It is difficult to keep a handle to the [`EventLoop`] type or the [`EventLoopWindowTarget`]
|
/// It is difficult to keep a handle to the [`EventLoop`] type or the [`ActiveEventLoop`]
|
||||||
/// type. In contrast, this type involves no lifetimes and can be persisted for as long as
|
/// type. In contrast, this type involves no lifetimes and can be persisted for as long as
|
||||||
/// needed.
|
/// needed.
|
||||||
///
|
///
|
||||||
@@ -424,6 +566,8 @@ impl<T: 'static> EventLoopProxy<T> {
|
|||||||
///
|
///
|
||||||
/// [`UserEvent(event)`]: Event::UserEvent
|
/// [`UserEvent(event)`]: Event::UserEvent
|
||||||
pub fn send_event(&self, event: T) -> Result<(), EventLoopClosed<T>> {
|
pub fn send_event(&self, event: T) -> Result<(), EventLoopClosed<T>> {
|
||||||
|
let _span = tracing::debug_span!("winit::EventLoopProxy::send_event",).entered();
|
||||||
|
|
||||||
self.event_loop_proxy.send_event(event)
|
self.event_loop_proxy.send_event(event)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -460,3 +604,29 @@ pub enum DeviceEvents {
|
|||||||
/// Never capture device events.
|
/// Never capture device events.
|
||||||
Never,
|
Never,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A unique identifier of the winit's async request.
|
||||||
|
///
|
||||||
|
/// This could be used to identify the async request once it's done
|
||||||
|
/// and a specific action must be taken.
|
||||||
|
///
|
||||||
|
/// One of the handling scenarios could be to maintain a working list
|
||||||
|
/// containing [`AsyncRequestSerial`] and some closure associated with it.
|
||||||
|
/// Then once event is arriving the working list is being traversed and a job
|
||||||
|
/// executed and removed from the list.
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub struct AsyncRequestSerial {
|
||||||
|
serial: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AsyncRequestSerial {
|
||||||
|
// TODO(kchibisov): Remove `cfg` when the clipboard will be added.
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) fn get() -> Self {
|
||||||
|
static CURRENT_SERIAL: AtomicUsize = AtomicUsize::new(0);
|
||||||
|
// NOTE: We rely on wrap around here, while the user may just request
|
||||||
|
// in the loop usize::MAX times that's issue is considered on them.
|
||||||
|
let serial = CURRENT_SERIAL.fetch_add(1, Ordering::Relaxed);
|
||||||
|
Self { serial }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -118,6 +118,8 @@ impl Icon {
|
|||||||
/// The length of `rgba` must be divisible by 4, and `width * height` must equal
|
/// The length of `rgba` must be divisible by 4, and `width * height` must equal
|
||||||
/// `rgba.len() / 4`. Otherwise, this will return a `BadIcon` error.
|
/// `rgba.len() / 4`. Otherwise, this will return a `BadIcon` error.
|
||||||
pub fn from_rgba(rgba: Vec<u8>, width: u32, height: u32) -> Result<Self, BadIcon> {
|
pub fn from_rgba(rgba: Vec<u8>, width: u32, height: u32) -> Result<Self, BadIcon> {
|
||||||
|
let _span = tracing::debug_span!("winit::Icon::from_rgba", width, height).entered();
|
||||||
|
|
||||||
Ok(Icon {
|
Ok(Icon {
|
||||||
inner: PlatformIcon::from_rgba(rgba, width, height)?,
|
inner: PlatformIcon::from_rgba(rgba, width, height)?,
|
||||||
})
|
})
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
// the W3C short notice apply to the `Key` and `KeyCode` enums and their variants and the
|
// the W3C short notice apply to the `Key` and `KeyCode` enums and their variants and the
|
||||||
// documentation attached to their variants.
|
// documentation attached to their variants.
|
||||||
|
|
||||||
// --------- BEGGINING OF W3C LICENSE --------------------------------------------------------------
|
// --------- BEGINNING OF W3C LICENSE --------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// License
|
// License
|
||||||
//
|
//
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
//
|
//
|
||||||
// --------- END OF W3C LICENSE --------------------------------------------------------------------
|
// --------- END OF W3C LICENSE --------------------------------------------------------------------
|
||||||
|
|
||||||
// --------- BEGGINING OF W3C SHORT NOTICE ---------------------------------------------------------
|
// --------- BEGINNING OF W3C SHORT NOTICE ---------------------------------------------------------
|
||||||
//
|
//
|
||||||
// winit: https://github.com/rust-windowing/winit
|
// winit: https://github.com/rust-windowing/winit
|
||||||
//
|
//
|
||||||
@@ -744,7 +744,7 @@ pub enum KeyCode {
|
|||||||
/// - The `Super` variant here, is named `Meta` in the aforementioned specification. (There's
|
/// - The `Super` variant here, is named `Meta` in the aforementioned specification. (There's
|
||||||
/// another key which the specification calls `Super`. That does not exist here.)
|
/// another key which the specification calls `Super`. That does not exist here.)
|
||||||
/// - The `Space` variant here, can be identified by the character it generates in the
|
/// - The `Space` variant here, can be identified by the character it generates in the
|
||||||
/// specificaiton.
|
/// specification.
|
||||||
///
|
///
|
||||||
/// [`KeyboardEvent.key`]: https://w3c.github.io/uievents-key/
|
/// [`KeyboardEvent.key`]: https://w3c.github.io/uievents-key/
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
@@ -914,7 +914,7 @@ pub enum NamedKey {
|
|||||||
Standby,
|
Standby,
|
||||||
/// The WakeUp key. (`KEYCODE_WAKEUP`)
|
/// The WakeUp key. (`KEYCODE_WAKEUP`)
|
||||||
WakeUp,
|
WakeUp,
|
||||||
/// Initate the multi-candidate mode.
|
/// Initiate the multi-candidate mode.
|
||||||
AllCandidates,
|
AllCandidates,
|
||||||
Alphanumeric,
|
Alphanumeric,
|
||||||
/// Initiate the Code Input mode to allow characters to be entered by
|
/// Initiate the Code Input mode to allow characters to be entered by
|
||||||
@@ -1229,7 +1229,7 @@ pub enum NamedKey {
|
|||||||
Dimmer,
|
Dimmer,
|
||||||
/// Swap video sources. (`VK_DISPLAY_SWAP`)
|
/// Swap video sources. (`VK_DISPLAY_SWAP`)
|
||||||
DisplaySwap,
|
DisplaySwap,
|
||||||
/// Select Digital Video Rrecorder. (`KEYCODE_DVR`)
|
/// Select Digital Video Recorder. (`KEYCODE_DVR`)
|
||||||
DVR,
|
DVR,
|
||||||
/// Exit the current application. (`VK_EXIT`)
|
/// Exit the current application. (`VK_EXIT`)
|
||||||
Exit,
|
Exit,
|
||||||
@@ -1454,35 +1454,12 @@ pub enum NamedKey {
|
|||||||
F35,
|
F35,
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: the exact modifier key is not used to represent modifiers state in the
|
|
||||||
// first place due to a fact that modifiers state could be changed without any
|
|
||||||
// key being pressed and on some platforms like Wayland/X11 which key resulted
|
|
||||||
// in modifiers change is hidden, also, not that it really matters.
|
|
||||||
//
|
|
||||||
// The reason this API is even exposed is mostly to provide a way for users
|
|
||||||
// to treat modifiers differently based on their position, which is required
|
|
||||||
// on macOS due to their AltGr/Option situation.
|
|
||||||
bitflags! {
|
|
||||||
#[doc(hidden)]
|
|
||||||
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
||||||
pub struct ModifiersKeys: u8 {
|
|
||||||
const LSHIFT = 0b0000_0001;
|
|
||||||
const RSHIFT = 0b0000_0010;
|
|
||||||
const LCONTROL = 0b0000_0100;
|
|
||||||
const RCONTROL = 0b0000_1000;
|
|
||||||
const LALT = 0b0001_0000;
|
|
||||||
const RALT = 0b0010_0000;
|
|
||||||
const LSUPER = 0b0100_0000;
|
|
||||||
const RSUPER = 0b1000_0000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Key represents the meaning of a keypress.
|
/// Key represents the meaning of a keypress.
|
||||||
///
|
///
|
||||||
/// This is a superset of the UI Events Specification's [`KeyboardEvent.key`] with
|
/// This is a superset of the UI Events Specification's [`KeyboardEvent.key`] with
|
||||||
/// additions:
|
/// additions:
|
||||||
/// - All simple variants are wrapped under the `Named` variant
|
/// - All simple variants are wrapped under the `Named` variant
|
||||||
/// - The `Unidentified` variant here, can still identifiy a key through it's `NativeKeyCode`.
|
/// - The `Unidentified` variant here, can still identify a key through it's `NativeKeyCode`.
|
||||||
/// - The `Dead` variant here, can specify the character which is inserted when pressing the
|
/// - The `Dead` variant here, can specify the character which is inserted when pressing the
|
||||||
/// dead-key twice.
|
/// dead-key twice.
|
||||||
///
|
///
|
||||||
@@ -1588,7 +1565,7 @@ impl NamedKey {
|
|||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// use winit_core::keyboard::NamedKey;
|
/// use winit::keyboard::NamedKey;
|
||||||
///
|
///
|
||||||
/// assert_eq!(NamedKey::Enter.to_text(), Some("\r"));
|
/// assert_eq!(NamedKey::Enter.to_text(), Some("\r"));
|
||||||
/// assert_eq!(NamedKey::F20.to_text(), None);
|
/// assert_eq!(NamedKey::F20.to_text(), None);
|
||||||
@@ -1611,7 +1588,7 @@ impl Key {
|
|||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// use winit_core::keyboard::{NamedKey, Key};
|
/// use winit::keyboard::{NamedKey, Key};
|
||||||
///
|
///
|
||||||
/// assert_eq!(Key::Character("a".into()).to_text(), Some("a"));
|
/// assert_eq!(Key::Character("a".into()).to_text(), Some("a"));
|
||||||
/// assert_eq!(Key::Named(NamedKey::Enter).to_text(), Some("\r"));
|
/// assert_eq!(Key::Named(NamedKey::Enter).to_text(), Some("\r"));
|
||||||
@@ -1750,6 +1727,28 @@ pub enum ModifiersKeyState {
|
|||||||
Unknown,
|
Unknown,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NOTE: the exact modifier key is not used to represent modifiers state in the
|
||||||
|
// first place due to a fact that modifiers state could be changed without any
|
||||||
|
// key being pressed and on some platforms like Wayland/X11 which key resulted
|
||||||
|
// in modifiers change is hidden, also, not that it really matters.
|
||||||
|
//
|
||||||
|
// The reason this API is even exposed is mostly to provide a way for users
|
||||||
|
// to treat modifiers differently based on their position, which is required
|
||||||
|
// on macOS due to their AltGr/Option situation.
|
||||||
|
bitflags! {
|
||||||
|
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
|
pub(crate) struct ModifiersKeys: u8 {
|
||||||
|
const LSHIFT = 0b0000_0001;
|
||||||
|
const RSHIFT = 0b0000_0010;
|
||||||
|
const LCONTROL = 0b0000_0100;
|
||||||
|
const RCONTROL = 0b0000_1000;
|
||||||
|
const LALT = 0b0001_0000;
|
||||||
|
const RALT = 0b0010_0000;
|
||||||
|
const LSUPER = 0b0100_0000;
|
||||||
|
const RSUPER = 0b1000_0000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
mod modifiers_serde {
|
mod modifiers_serde {
|
||||||
use super::ModifiersState;
|
use super::ModifiersState;
|
||||||
@@ -2,22 +2,15 @@
|
|||||||
//!
|
//!
|
||||||
//! # Building windows
|
//! # Building windows
|
||||||
//!
|
//!
|
||||||
//! Before you can build a [`Window`], you first need to build an [`EventLoop`]. This is done with the
|
//! Before you can create a [`Window`], you first need to build an [`EventLoop`]. This is done with
|
||||||
//! [`EventLoop::new()`] function.
|
//! the [`EventLoop::new()`] function.
|
||||||
//!
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
//! use winit::event_loop::EventLoop;
|
//! use winit::event_loop::EventLoop;
|
||||||
//! let event_loop = EventLoop::new().unwrap();
|
//! let event_loop = EventLoop::new().unwrap();
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! Once this is done, there are two ways to create a [`Window`]:
|
//! Then you create a [`Window`] with [`create_window`].
|
||||||
//!
|
|
||||||
//! - Calling [`Window::new(&event_loop)`][window_new].
|
|
||||||
//! - Calling [`let builder = Window::builder()`][window_builder_new] then [`builder.build(&event_loop)`][window_builder_build].
|
|
||||||
//!
|
|
||||||
//! The first method is the simplest and will give you default values for everything. The second
|
|
||||||
//! method allows you to customize the way your [`Window`] will look and behave by modifying the
|
|
||||||
//! fields of the [`WindowBuilder`] object before you create the [`Window`].
|
|
||||||
//!
|
//!
|
||||||
//! # Event handling
|
//! # Event handling
|
||||||
//!
|
//!
|
||||||
@@ -67,7 +60,6 @@
|
|||||||
//! };
|
//! };
|
||||||
//!
|
//!
|
||||||
//! let event_loop = EventLoop::new().unwrap();
|
//! let event_loop = EventLoop::new().unwrap();
|
||||||
//! let window = Window::builder().build(&event_loop).unwrap();
|
|
||||||
//!
|
//!
|
||||||
//! // ControlFlow::Poll continuously runs the event loop, even if the OS hasn't
|
//! // ControlFlow::Poll continuously runs the event loop, even if the OS hasn't
|
||||||
//! // dispatched any events. This is ideal for games and similar applications.
|
//! // dispatched any events. This is ideal for games and similar applications.
|
||||||
@@ -78,14 +70,19 @@
|
|||||||
//! // input, and uses significantly less power/CPU time than ControlFlow::Poll.
|
//! // input, and uses significantly less power/CPU time than ControlFlow::Poll.
|
||||||
//! event_loop.set_control_flow(ControlFlow::Wait);
|
//! event_loop.set_control_flow(ControlFlow::Wait);
|
||||||
//!
|
//!
|
||||||
//! event_loop.run(move |event, elwt| {
|
//! let mut window = None;
|
||||||
|
//!
|
||||||
|
//! event_loop.run(move |event, event_loop| {
|
||||||
//! match event {
|
//! match event {
|
||||||
|
//! Event::Resumed => {
|
||||||
|
//! window = Some(event_loop.create_window(Window::default_attributes()).unwrap());
|
||||||
|
//! }
|
||||||
//! Event::WindowEvent {
|
//! Event::WindowEvent {
|
||||||
//! event: WindowEvent::CloseRequested,
|
//! event: WindowEvent::CloseRequested,
|
||||||
//! ..
|
//! ..
|
||||||
//! } => {
|
//! } => {
|
||||||
//! println!("The close button was pressed; stopping");
|
//! println!("The close button was pressed; stopping");
|
||||||
//! elwt.exit();
|
//! event_loop.exit();
|
||||||
//! },
|
//! },
|
||||||
//! Event::AboutToWait => {
|
//! Event::AboutToWait => {
|
||||||
//! // Application update code.
|
//! // Application update code.
|
||||||
@@ -95,7 +92,7 @@
|
|||||||
//! // You only need to call this if you've determined that you need to redraw in
|
//! // You only need to call this if you've determined that you need to redraw in
|
||||||
//! // applications which do not always need to. Applications that redraw continuously
|
//! // applications which do not always need to. Applications that redraw continuously
|
||||||
//! // can render here instead.
|
//! // can render here instead.
|
||||||
//! window.request_redraw();
|
//! window.as_ref().unwrap().request_redraw();
|
||||||
//! },
|
//! },
|
||||||
//! Event::WindowEvent {
|
//! Event::WindowEvent {
|
||||||
//! event: WindowEvent::RedrawRequested,
|
//! event: WindowEvent::RedrawRequested,
|
||||||
@@ -126,19 +123,54 @@
|
|||||||
//! Note that many platforms will display garbage data in the window's client area if the
|
//! Note that many platforms will display garbage data in the window's client area if the
|
||||||
//! application doesn't render anything to the window by the time the desktop compositor is ready to
|
//! application doesn't render anything to the window by the time the desktop compositor is ready to
|
||||||
//! display the window to the user. If you notice this happening, you should create the window with
|
//! display the window to the user. If you notice this happening, you should create the window with
|
||||||
//! [`visible` set to `false`](crate::window::WindowBuilder::with_visible) and explicitly make the
|
//! [`visible` set to `false`](crate::window::WindowAttributes::with_visible) and explicitly make the
|
||||||
//! window visible only once you're ready to render into it.
|
//! window visible only once you're ready to render into it.
|
||||||
//!
|
//!
|
||||||
|
//! # UI scaling
|
||||||
|
//!
|
||||||
|
//! UI scaling is important, go read the docs for the [`dpi`] crate for an
|
||||||
|
//! introduction.
|
||||||
|
//!
|
||||||
|
//! All of Winit's functions return physical types, but can take either logical or physical
|
||||||
|
//! coordinates as input, allowing you to use the most convenient coordinate system for your
|
||||||
|
//! particular application.
|
||||||
|
//!
|
||||||
|
//! Winit will dispatch a [`ScaleFactorChanged`] event whenever a window's scale factor has changed.
|
||||||
|
//! This can happen if the user drags their window from a standard-resolution monitor to a high-DPI
|
||||||
|
//! monitor or if the user changes their DPI settings. This allows you to rescale your application's
|
||||||
|
//! UI elements and adjust how the platform changes the window's size to reflect the new scale
|
||||||
|
//! factor. If a window hasn't received a [`ScaleFactorChanged`] event, its scale factor
|
||||||
|
//! can be found by calling [`window.scale_factor()`].
|
||||||
|
//!
|
||||||
|
//! [`ScaleFactorChanged`]: event::WindowEvent::ScaleFactorChanged
|
||||||
|
//! [`window.scale_factor()`]: window::Window::scale_factor
|
||||||
|
//!
|
||||||
|
//! # Cargo Features
|
||||||
|
//!
|
||||||
|
//! Winit provides the following Cargo features:
|
||||||
|
//!
|
||||||
|
//! * `x11` (enabled by default): On Unix platforms, enables the X11 backend.
|
||||||
|
//! * `wayland` (enabled by default): On Unix platforms, enables the Wayland
|
||||||
|
//! backend.
|
||||||
|
//! * `rwh_04`: Implement `raw-window-handle v0.4` traits.
|
||||||
|
//! * `rwh_05`: Implement `raw-window-handle v0.5` traits.
|
||||||
|
//! * `rwh_06`: Implement `raw-window-handle v0.6` traits.
|
||||||
|
//! * `serde`: Enables serialization/deserialization of certain types with
|
||||||
|
//! [Serde](https://crates.io/crates/serde).
|
||||||
|
//! * `mint`: Enables mint (math interoperability standard types) conversions.
|
||||||
|
//!
|
||||||
|
//! See the [`platform`] module for documentation on platform-specific cargo
|
||||||
|
//! features.
|
||||||
|
//!
|
||||||
//! [`EventLoop`]: event_loop::EventLoop
|
//! [`EventLoop`]: event_loop::EventLoop
|
||||||
//! [`EventLoop::new()`]: event_loop::EventLoop::new
|
//! [`EventLoop::new()`]: event_loop::EventLoop::new
|
||||||
//! [`EventLoop::run()`]: event_loop::EventLoop::run
|
//! [`EventLoop::run()`]: event_loop::EventLoop::run
|
||||||
//! [`exit()`]: event_loop::EventLoopWindowTarget::exit
|
//! [`exit()`]: event_loop::ActiveEventLoop::exit
|
||||||
//! [`Window`]: window::Window
|
//! [`Window`]: window::Window
|
||||||
//! [`WindowId`]: window::WindowId
|
//! [`WindowId`]: window::WindowId
|
||||||
//! [`WindowBuilder`]: window::WindowBuilder
|
//! [`WindowAttributes`]: window::WindowAttributes
|
||||||
//! [window_new]: window::Window::new
|
//! [window_new]: window::Window::new
|
||||||
//! [window_builder_new]: window::Window::builder
|
//! [`create_window`]: event_loop::ActiveEventLoop::create_window
|
||||||
//! [window_builder_build]: window::WindowBuilder::build
|
|
||||||
//! [`Window::id()`]: window::Window::id
|
//! [`Window::id()`]: window::Window::id
|
||||||
//! [`WindowEvent`]: event::WindowEvent
|
//! [`WindowEvent`]: event::WindowEvent
|
||||||
//! [`DeviceEvent`]: event::DeviceEvent
|
//! [`DeviceEvent`]: event::DeviceEvent
|
||||||
@@ -152,7 +184,7 @@
|
|||||||
#![deny(rustdoc::broken_intra_doc_links)]
|
#![deny(rustdoc::broken_intra_doc_links)]
|
||||||
#![deny(clippy::all)]
|
#![deny(clippy::all)]
|
||||||
#![deny(unsafe_op_in_unsafe_fn)]
|
#![deny(unsafe_op_in_unsafe_fn)]
|
||||||
#![cfg_attr(feature = "cargo-clippy", deny(warnings))]
|
#![cfg_attr(clippy, deny(warnings))]
|
||||||
// Doc feature labels can be tested locally by running RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc
|
// Doc feature labels can be tested locally by running RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
docsrs,
|
docsrs,
|
||||||
@@ -164,8 +196,9 @@
|
|||||||
#[cfg(feature = "rwh_06")]
|
#[cfg(feature = "rwh_06")]
|
||||||
pub use rwh_06 as raw_window_handle;
|
pub use rwh_06 as raw_window_handle;
|
||||||
|
|
||||||
|
// Re-export DPI types so that users don't have to put it in Cargo.toml.
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use winit_core::{dpi, keyboard};
|
pub use dpi;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
pub mod error;
|
pub mod error;
|
||||||
@@ -173,8 +206,10 @@ mod cursor;
|
|||||||
pub mod event;
|
pub mod event;
|
||||||
pub mod event_loop;
|
pub mod event_loop;
|
||||||
mod icon;
|
mod icon;
|
||||||
|
pub mod keyboard;
|
||||||
pub mod monitor;
|
pub mod monitor;
|
||||||
mod platform_impl;
|
mod platform_impl;
|
||||||
|
mod utils;
|
||||||
pub mod window;
|
pub mod window;
|
||||||
|
|
||||||
pub mod platform;
|
pub mod platform;
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
//! If you want to get basic information about a monitor, you can use the
|
//! If you want to get basic information about a monitor, you can use the
|
||||||
//! [`MonitorHandle`] type. This is retrieved from one of the following
|
//! [`MonitorHandle`] type. This is retrieved from one of the following
|
||||||
//! methods, which return an iterator of [`MonitorHandle`]:
|
//! methods, which return an iterator of [`MonitorHandle`]:
|
||||||
//! - [`EventLoopWindowTarget::available_monitors`](crate::event_loop::EventLoopWindowTarget::available_monitors).
|
//! - [`ActiveEventLoop::available_monitors`](crate::event_loop::ActiveEventLoop::available_monitors).
|
||||||
//! - [`Window::available_monitors`](crate::window::Window::available_monitors).
|
//! - [`Window::available_monitors`](crate::window::Window::available_monitors).
|
||||||
use crate::{
|
use crate::{
|
||||||
dpi::{PhysicalPosition, PhysicalSize},
|
dpi::{PhysicalPosition, PhysicalSize},
|
||||||
@@ -145,7 +145,7 @@ impl MonitorHandle {
|
|||||||
/// Returns the scale factor of the underlying monitor. To map logical pixels to physical
|
/// Returns the scale factor of the underlying monitor. To map logical pixels to physical
|
||||||
/// pixels and vice versa, use [`Window::scale_factor`].
|
/// pixels and vice versa, use [`Window::scale_factor`].
|
||||||
///
|
///
|
||||||
/// See the [`dpi`](crate::dpi) module for more information.
|
/// See the [`dpi`] module for more information.
|
||||||
///
|
///
|
||||||
/// ## Platform-specific
|
/// ## Platform-specific
|
||||||
///
|
///
|
||||||
170
src/platform/android.rs
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
//! # Android
|
||||||
|
//!
|
||||||
|
//! The Android backend builds on (and exposes types from) the [`ndk`](https://docs.rs/ndk/) crate.
|
||||||
|
//!
|
||||||
|
//! Native Android applications need some form of "glue" crate that is responsible
|
||||||
|
//! for defining the main entry point for your Rust application as well as tracking
|
||||||
|
//! various life-cycle events and synchronizing with the main JVM thread.
|
||||||
|
//!
|
||||||
|
//! Winit uses the [android-activity](https://docs.rs/android-activity/) as a
|
||||||
|
//! glue crate (prior to `0.28` it used
|
||||||
|
//! [ndk-glue](https://github.com/rust-windowing/android-ndk-rs/tree/master/ndk-glue)).
|
||||||
|
//!
|
||||||
|
//! The version of the glue crate that your application depends on _must_ match the
|
||||||
|
//! version that Winit depends on because the glue crate is responsible for your
|
||||||
|
//! application's main entry point. If Cargo resolves multiple versions, they will
|
||||||
|
//! clash.
|
||||||
|
//!
|
||||||
|
//! `winit` glue compatibility table:
|
||||||
|
//!
|
||||||
|
//! | winit | ndk-glue |
|
||||||
|
//! | :---: | :--------------------------: |
|
||||||
|
//! | 0.29 | `android-activity = "0.5"` |
|
||||||
|
//! | 0.28 | `android-activity = "0.4"` |
|
||||||
|
//! | 0.27 | `ndk-glue = "0.7"` |
|
||||||
|
//! | 0.26 | `ndk-glue = "0.5"` |
|
||||||
|
//! | 0.25 | `ndk-glue = "0.3"` |
|
||||||
|
//! | 0.24 | `ndk-glue = "0.2"` |
|
||||||
|
//!
|
||||||
|
//! The recommended way to avoid a conflict with the glue version is to avoid explicitly
|
||||||
|
//! depending on the `android-activity` crate, and instead consume the API that
|
||||||
|
//! is re-exported by Winit under `winit::platform::android::activity::*`
|
||||||
|
//!
|
||||||
|
//! Running on an Android device needs a dynamic system library. Add this to Cargo.toml:
|
||||||
|
//!
|
||||||
|
//! ```toml
|
||||||
|
//! [lib]
|
||||||
|
//! name = "main"
|
||||||
|
//! crate-type = ["cdylib"]
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! All Android applications are based on an `Activity` subclass, and the
|
||||||
|
//! `android-activity` crate is designed to support different choices for this base
|
||||||
|
//! class. Your application _must_ specify the base class it needs via a feature flag:
|
||||||
|
//!
|
||||||
|
//! | Base Class | Feature Flag | Notes |
|
||||||
|
//! | :--------------: | :---------------: | :-----: |
|
||||||
|
//! | `NativeActivity` | `android-native-activity` | Built-in to Android - it is possible to use without compiling any Java or Kotlin code. Java or Kotlin code may be needed to subclass `NativeActivity` to access some platform features. It does not derive from the [`AndroidAppCompat`] base class.|
|
||||||
|
//! | [`GameActivity`] | `android-game-activity` | Derives from [`AndroidAppCompat`], a defacto standard `Activity` base class that helps support a wider range of Android versions. Requires a build system that can compile Java or Kotlin and fetch Android dependencies from a [Maven repository][android_jet] (or link with an embedded [release][android_releases] of [`GameActivity`]) |
|
||||||
|
//!
|
||||||
|
//! [`GameActivity`]: https://developer.android.com/games/agdk/game-activity
|
||||||
|
//! [`GameTextInput`]: https://developer.android.com/games/agdk/add-support-for-text-input
|
||||||
|
//! [`AndroidAppCompat`]: https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity
|
||||||
|
//! [android_jet]: https://developer.android.com/jetpack/androidx/releases/games
|
||||||
|
//! [android_releases]: https://developer.android.com/games/agdk/download#agdk-libraries
|
||||||
|
//! [Gradle]: https://developer.android.com/studio/build
|
||||||
|
//!
|
||||||
|
//! For more details, refer to these `android-activity` [example applications](https://github.com/rust-mobile/android-activity/tree/main/examples).
|
||||||
|
//!
|
||||||
|
//! ## Converting from `ndk-glue` to `android-activity`
|
||||||
|
//!
|
||||||
|
//! If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building with `cargo apk`, then the minimal changes would be:
|
||||||
|
//! 1. Remove `ndk-glue` from your `Cargo.toml`
|
||||||
|
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.29.13", features = [ "android-native-activity" ] }`
|
||||||
|
//! 3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize logging as above).
|
||||||
|
//! 4. Pass a clone of the `AndroidApp` that your application receives to Winit when building your event loop (as shown above).
|
||||||
|
|
||||||
|
use crate::{
|
||||||
|
event_loop::{ActiveEventLoop, EventLoop, EventLoopBuilder},
|
||||||
|
window::{Window, WindowAttributes},
|
||||||
|
};
|
||||||
|
|
||||||
|
use self::activity::{AndroidApp, ConfigurationRef, Rect};
|
||||||
|
|
||||||
|
/// Additional methods on [`EventLoop`] that are specific to Android.
|
||||||
|
pub trait EventLoopExtAndroid {}
|
||||||
|
|
||||||
|
impl<T> EventLoopExtAndroid for EventLoop<T> {}
|
||||||
|
|
||||||
|
/// Additional methods on [`ActiveEventLoop`] that are specific to Android.
|
||||||
|
pub trait ActiveEventLoopExtAndroid {}
|
||||||
|
|
||||||
|
/// Additional methods on [`Window`] that are specific to Android.
|
||||||
|
pub trait WindowExtAndroid {
|
||||||
|
fn content_rect(&self) -> Rect;
|
||||||
|
|
||||||
|
fn config(&self) -> ConfigurationRef;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WindowExtAndroid for Window {
|
||||||
|
fn content_rect(&self) -> Rect {
|
||||||
|
self.window.content_rect()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn config(&self) -> ConfigurationRef {
|
||||||
|
self.window.config()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ActiveEventLoopExtAndroid for ActiveEventLoop {}
|
||||||
|
|
||||||
|
/// Additional methods on [`WindowAttributes`] that are specific to Android.
|
||||||
|
pub trait WindowAttributesExtAndroid {}
|
||||||
|
|
||||||
|
impl WindowAttributesExtAndroid for WindowAttributes {}
|
||||||
|
|
||||||
|
pub trait EventLoopBuilderExtAndroid {
|
||||||
|
/// Associates the `AndroidApp` that was passed to `android_main()` with the event loop
|
||||||
|
///
|
||||||
|
/// This must be called on Android since the `AndroidApp` is not global state.
|
||||||
|
fn with_android_app(&mut self, app: AndroidApp) -> &mut Self;
|
||||||
|
|
||||||
|
/// Calling this will mark the volume keys to be manually handled by the application
|
||||||
|
///
|
||||||
|
/// Default is to let the operating system handle the volume keys
|
||||||
|
fn handle_volume_keys(&mut self) -> &mut Self;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> EventLoopBuilderExtAndroid for EventLoopBuilder<T> {
|
||||||
|
fn with_android_app(&mut self, app: AndroidApp) -> &mut Self {
|
||||||
|
self.platform_specific.android_app = Some(app);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_volume_keys(&mut self) -> &mut Self {
|
||||||
|
self.platform_specific.ignore_volume_keys = false;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Re-export of the `android_activity` API
|
||||||
|
///
|
||||||
|
/// Winit re-exports the `android_activity` API for convenience so that most
|
||||||
|
/// applications can rely on the Winit crate to resolve the required version of
|
||||||
|
/// `android_activity` and avoid any chance of a conflict between Winit and the
|
||||||
|
/// application crate.
|
||||||
|
///
|
||||||
|
/// Unlike most libraries there can only be a single implementation
|
||||||
|
/// of the `android_activity` glue crate linked with an application because
|
||||||
|
/// it is responsible for the application's `android_main()` entry point.
|
||||||
|
///
|
||||||
|
/// Since Winit depends on a specific version of `android_activity` the simplest
|
||||||
|
/// way to avoid creating a conflict is for applications to avoid explicitly
|
||||||
|
/// depending on the `android_activity` crate, and instead consume the API that
|
||||||
|
/// is re-exported by Winit.
|
||||||
|
///
|
||||||
|
/// For compatibility applications should then import the `AndroidApp` type for
|
||||||
|
/// their `android_main(app: AndroidApp)` function like:
|
||||||
|
/// ```rust
|
||||||
|
/// #[cfg(target_os="android")]
|
||||||
|
/// use winit::platform::android::activity::AndroidApp;
|
||||||
|
/// ```
|
||||||
|
pub mod activity {
|
||||||
|
// We enable the `"native-activity"` feature just so that we can build the
|
||||||
|
// docs, but it'll be very confusing for users to see the docs with that
|
||||||
|
// feature enabled, so we avoid inlining it so that they're forced to view
|
||||||
|
// it on the crate's own docs.rs page.
|
||||||
|
#[doc(no_inline)]
|
||||||
|
#[cfg(android_platform)]
|
||||||
|
pub use android_activity::*;
|
||||||
|
|
||||||
|
#[cfg(not(android_platform))]
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub struct Rect;
|
||||||
|
#[cfg(not(android_platform))]
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub struct ConfigurationRef;
|
||||||
|
#[cfg(not(android_platform))]
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub struct AndroidApp;
|
||||||
|
}
|
||||||
@@ -1,9 +1,75 @@
|
|||||||
|
//! # iOS / UIKit
|
||||||
|
//!
|
||||||
|
//! Winit has an OS requirement of iOS 8 or higher, and is regularly tested on
|
||||||
|
//! iOS 9.3.
|
||||||
|
//!
|
||||||
|
//! iOS's main `UIApplicationMain` does some init work that's required by all
|
||||||
|
//! UI-related code (see issue [#1705]). It is best to create your windows
|
||||||
|
//! inside `Event::Resumed`.
|
||||||
|
//!
|
||||||
|
//! [#1705]: https://github.com/rust-windowing/winit/issues/1705
|
||||||
|
//!
|
||||||
|
//! ## Building app
|
||||||
|
//!
|
||||||
|
//! To build ios app you will need rustc built for this targets:
|
||||||
|
//!
|
||||||
|
//! - armv7-apple-ios
|
||||||
|
//! - armv7s-apple-ios
|
||||||
|
//! - i386-apple-ios
|
||||||
|
//! - aarch64-apple-ios
|
||||||
|
//! - x86_64-apple-ios
|
||||||
|
//!
|
||||||
|
//! Then
|
||||||
|
//!
|
||||||
|
//! ```
|
||||||
|
//! cargo build --target=...
|
||||||
|
//! ```
|
||||||
|
//! The simplest way to integrate your app into xcode environment is to build it
|
||||||
|
//! as a static library. Wrap your main function and export it.
|
||||||
|
//!
|
||||||
|
//! ```rust, ignore
|
||||||
|
//! #[no_mangle]
|
||||||
|
//! pub extern fn start_winit_app() {
|
||||||
|
//! start_inner()
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! fn start_inner() {
|
||||||
|
//! ...
|
||||||
|
//! }
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! Compile project and then drag resulting .a into Xcode project. Add winit.h to xcode.
|
||||||
|
//!
|
||||||
|
//! ```ignore
|
||||||
|
//! void start_winit_app();
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! Use start_winit_app inside your xcode's main function.
|
||||||
|
//!
|
||||||
|
//!
|
||||||
|
//! ## App lifecycle and events
|
||||||
|
//!
|
||||||
|
//! iOS environment is very different from other platforms and you must be very
|
||||||
|
//! careful with it's events. Familiarize yourself with
|
||||||
|
//! [app lifecycle](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/).
|
||||||
|
//!
|
||||||
|
//! This is how those event are represented in winit:
|
||||||
|
//!
|
||||||
|
//! - applicationDidBecomeActive is Resumed
|
||||||
|
//! - applicationWillResignActive is Suspended
|
||||||
|
//! - applicationWillTerminate is LoopExiting
|
||||||
|
//!
|
||||||
|
//! Keep in mind that after LoopExiting event is received every attempt to draw with
|
||||||
|
//! opengl will result in segfault.
|
||||||
|
//!
|
||||||
|
//! Also note that app may not receive the LoopExiting event if suspended; it might be SIGKILL'ed.
|
||||||
|
|
||||||
use std::os::raw::c_void;
|
use std::os::raw::c_void;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
event_loop::EventLoop,
|
event_loop::EventLoop,
|
||||||
monitor::{MonitorHandle, VideoModeHandle},
|
monitor::{MonitorHandle, VideoModeHandle},
|
||||||
window::{Window, WindowBuilder},
|
window::{Window, WindowAttributes},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Additional methods on [`EventLoop`] that are specific to iOS.
|
/// Additional methods on [`EventLoop`] that are specific to iOS.
|
||||||
@@ -159,8 +225,8 @@ impl WindowExtIOS for Window {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Additional methods on [`WindowBuilder`] that are specific to iOS.
|
/// Additional methods on [`WindowAttributes`] that are specific to iOS.
|
||||||
pub trait WindowBuilderExtIOS {
|
pub trait WindowAttributesExtIOS {
|
||||||
/// Sets the [`contentScaleFactor`] of the underlying [`UIWindow`] to `scale_factor`.
|
/// Sets the [`contentScaleFactor`] of the underlying [`UIWindow`] to `scale_factor`.
|
||||||
///
|
///
|
||||||
/// The default value is device dependent, and it's recommended GLES or Metal applications set
|
/// The default value is device dependent, and it's recommended GLES or Metal applications set
|
||||||
@@ -214,42 +280,41 @@ pub trait WindowBuilderExtIOS {
|
|||||||
fn with_preferred_status_bar_style(self, status_bar_style: StatusBarStyle) -> Self;
|
fn with_preferred_status_bar_style(self, status_bar_style: StatusBarStyle) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtIOS for WindowBuilder {
|
impl WindowAttributesExtIOS for WindowAttributes {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_scale_factor(mut self, scale_factor: f64) -> Self {
|
fn with_scale_factor(mut self, scale_factor: f64) -> Self {
|
||||||
self.window.platform_specific.scale_factor = Some(scale_factor);
|
self.platform_specific.scale_factor = Some(scale_factor);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_valid_orientations(mut self, valid_orientations: ValidOrientations) -> Self {
|
fn with_valid_orientations(mut self, valid_orientations: ValidOrientations) -> Self {
|
||||||
self.window.platform_specific.valid_orientations = valid_orientations;
|
self.platform_specific.valid_orientations = valid_orientations;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_prefers_home_indicator_hidden(mut self, hidden: bool) -> Self {
|
fn with_prefers_home_indicator_hidden(mut self, hidden: bool) -> Self {
|
||||||
self.window.platform_specific.prefers_home_indicator_hidden = hidden;
|
self.platform_specific.prefers_home_indicator_hidden = hidden;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_preferred_screen_edges_deferring_system_gestures(mut self, edges: ScreenEdge) -> Self {
|
fn with_preferred_screen_edges_deferring_system_gestures(mut self, edges: ScreenEdge) -> Self {
|
||||||
self.window
|
self.platform_specific
|
||||||
.platform_specific
|
|
||||||
.preferred_screen_edges_deferring_system_gestures = edges;
|
.preferred_screen_edges_deferring_system_gestures = edges;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_prefers_status_bar_hidden(mut self, hidden: bool) -> Self {
|
fn with_prefers_status_bar_hidden(mut self, hidden: bool) -> Self {
|
||||||
self.window.platform_specific.prefers_status_bar_hidden = hidden;
|
self.platform_specific.prefers_status_bar_hidden = hidden;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_preferred_status_bar_style(mut self, status_bar_style: StatusBarStyle) -> Self {
|
fn with_preferred_status_bar_style(mut self, status_bar_style: StatusBarStyle) -> Self {
|
||||||
self.window.platform_specific.preferred_status_bar_style = status_bar_style;
|
self.platform_specific.preferred_status_bar_style = status_bar_style;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,28 @@
|
|||||||
|
//! # macOS / AppKit
|
||||||
|
//!
|
||||||
|
//! Winit has an OS requirement of macOS 10.11 or higher (same as Rust
|
||||||
|
//! itself), and is regularly tested on macOS 10.14.
|
||||||
|
//!
|
||||||
|
//! A lot of functionality expects the application to be ready before you
|
||||||
|
//! start doing anything; this includes creating windows, fetching monitors,
|
||||||
|
//! drawing, and so on, see issues [#2238], [#2051] and [#2087].
|
||||||
|
//!
|
||||||
|
//! If you encounter problems, you should try doing your initialization inside
|
||||||
|
//! `Event::Resumed`.
|
||||||
|
//!
|
||||||
|
//! [#2238]: https://github.com/rust-windowing/winit/issues/2238
|
||||||
|
//! [#2051]: https://github.com/rust-windowing/winit/issues/2051
|
||||||
|
//! [#2087]: https://github.com/rust-windowing/winit/issues/2087
|
||||||
|
|
||||||
use std::os::raw::c_void;
|
use std::os::raw::c_void;
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
event_loop::{EventLoopBuilder, EventLoopWindowTarget},
|
event_loop::{ActiveEventLoop, EventLoopBuilder},
|
||||||
monitor::MonitorHandle,
|
monitor::MonitorHandle,
|
||||||
window::{Window, WindowBuilder},
|
window::{Window, WindowAttributes},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Additional methods on [`Window`] that are specific to MacOS.
|
/// Additional methods on [`Window`] that are specific to MacOS.
|
||||||
@@ -174,15 +190,15 @@ pub enum ActivationPolicy {
|
|||||||
Prohibited,
|
Prohibited,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Additional methods on [`WindowBuilder`] that are specific to MacOS.
|
/// Additional methods on [`WindowAttributes`] that are specific to MacOS.
|
||||||
///
|
///
|
||||||
/// **Note:** Properties dealing with the titlebar will be overwritten by the [`WindowBuilder::with_decorations`] method:
|
/// **Note:** Properties dealing with the titlebar will be overwritten by the [`WindowAttributes::with_decorations`] method:
|
||||||
/// - `with_titlebar_transparent`
|
/// - `with_titlebar_transparent`
|
||||||
/// - `with_title_hidden`
|
/// - `with_title_hidden`
|
||||||
/// - `with_titlebar_hidden`
|
/// - `with_titlebar_hidden`
|
||||||
/// - `with_titlebar_buttons_hidden`
|
/// - `with_titlebar_buttons_hidden`
|
||||||
/// - `with_fullsize_content_view`
|
/// - `with_fullsize_content_view`
|
||||||
pub trait WindowBuilderExtMacOS {
|
pub trait WindowAttributesExtMacOS {
|
||||||
/// Enables click-and-drag behavior for the entire window, not just the titlebar.
|
/// Enables click-and-drag behavior for the entire window, not just the titlebar.
|
||||||
fn with_movable_by_window_background(self, movable_by_window_background: bool) -> Self;
|
fn with_movable_by_window_background(self, movable_by_window_background: bool) -> Self;
|
||||||
/// Makes the titlebar transparent and allows the content to appear behind it.
|
/// Makes the titlebar transparent and allows the content to appear behind it.
|
||||||
@@ -209,65 +225,64 @@ pub trait WindowBuilderExtMacOS {
|
|||||||
fn with_option_as_alt(self, option_as_alt: OptionAsAlt) -> Self;
|
fn with_option_as_alt(self, option_as_alt: OptionAsAlt) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtMacOS for WindowBuilder {
|
impl WindowAttributesExtMacOS for WindowAttributes {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_movable_by_window_background(mut self, movable_by_window_background: bool) -> Self {
|
fn with_movable_by_window_background(mut self, movable_by_window_background: bool) -> Self {
|
||||||
self.window.platform_specific.movable_by_window_background = movable_by_window_background;
|
self.platform_specific.movable_by_window_background = movable_by_window_background;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_titlebar_transparent(mut self, titlebar_transparent: bool) -> Self {
|
fn with_titlebar_transparent(mut self, titlebar_transparent: bool) -> Self {
|
||||||
self.window.platform_specific.titlebar_transparent = titlebar_transparent;
|
self.platform_specific.titlebar_transparent = titlebar_transparent;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_titlebar_hidden(mut self, titlebar_hidden: bool) -> Self {
|
fn with_titlebar_hidden(mut self, titlebar_hidden: bool) -> Self {
|
||||||
self.window.platform_specific.titlebar_hidden = titlebar_hidden;
|
self.platform_specific.titlebar_hidden = titlebar_hidden;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_titlebar_buttons_hidden(mut self, titlebar_buttons_hidden: bool) -> Self {
|
fn with_titlebar_buttons_hidden(mut self, titlebar_buttons_hidden: bool) -> Self {
|
||||||
self.window.platform_specific.titlebar_buttons_hidden = titlebar_buttons_hidden;
|
self.platform_specific.titlebar_buttons_hidden = titlebar_buttons_hidden;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_title_hidden(mut self, title_hidden: bool) -> Self {
|
fn with_title_hidden(mut self, title_hidden: bool) -> Self {
|
||||||
self.window.platform_specific.title_hidden = title_hidden;
|
self.platform_specific.title_hidden = title_hidden;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_fullsize_content_view(mut self, fullsize_content_view: bool) -> Self {
|
fn with_fullsize_content_view(mut self, fullsize_content_view: bool) -> Self {
|
||||||
self.window.platform_specific.fullsize_content_view = fullsize_content_view;
|
self.platform_specific.fullsize_content_view = fullsize_content_view;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_disallow_hidpi(mut self, disallow_hidpi: bool) -> Self {
|
fn with_disallow_hidpi(mut self, disallow_hidpi: bool) -> Self {
|
||||||
self.window.platform_specific.disallow_hidpi = disallow_hidpi;
|
self.platform_specific.disallow_hidpi = disallow_hidpi;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_has_shadow(mut self, has_shadow: bool) -> Self {
|
fn with_has_shadow(mut self, has_shadow: bool) -> Self {
|
||||||
self.window.platform_specific.has_shadow = has_shadow;
|
self.platform_specific.has_shadow = has_shadow;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_accepts_first_mouse(mut self, accepts_first_mouse: bool) -> Self {
|
fn with_accepts_first_mouse(mut self, accepts_first_mouse: bool) -> Self {
|
||||||
self.window.platform_specific.accepts_first_mouse = accepts_first_mouse;
|
self.platform_specific.accepts_first_mouse = accepts_first_mouse;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_tabbing_identifier(mut self, tabbing_identifier: &str) -> Self {
|
fn with_tabbing_identifier(mut self, tabbing_identifier: &str) -> Self {
|
||||||
self.window
|
self.platform_specific
|
||||||
.platform_specific
|
|
||||||
.tabbing_identifier
|
.tabbing_identifier
|
||||||
.replace(tabbing_identifier.to_string());
|
.replace(tabbing_identifier.to_string());
|
||||||
self
|
self
|
||||||
@@ -275,7 +290,7 @@ impl WindowBuilderExtMacOS for WindowBuilder {
|
|||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_option_as_alt(mut self, option_as_alt: OptionAsAlt) -> Self {
|
fn with_option_as_alt(mut self, option_as_alt: OptionAsAlt) -> Self {
|
||||||
self.window.platform_specific.option_as_alt = option_as_alt;
|
self.platform_specific.option_as_alt = option_as_alt;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -375,8 +390,8 @@ impl MonitorHandleExtMacOS for MonitorHandle {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Additional methods on [`EventLoopWindowTarget`] that are specific to macOS.
|
/// Additional methods on [`ActiveEventLoop`] that are specific to macOS.
|
||||||
pub trait EventLoopWindowTargetExtMacOS {
|
pub trait ActiveEventLoopExtMacOS {
|
||||||
/// Hide the entire application. In most applications this is typically triggered with Command-H.
|
/// Hide the entire application. In most applications this is typically triggered with Command-H.
|
||||||
fn hide_application(&self);
|
fn hide_application(&self);
|
||||||
/// Hide the other applications. In most applications this is typically triggered with Command+Option-H.
|
/// Hide the other applications. In most applications this is typically triggered with Command+Option-H.
|
||||||
@@ -389,7 +404,7 @@ pub trait EventLoopWindowTargetExtMacOS {
|
|||||||
fn allows_automatic_window_tabbing(&self) -> bool;
|
fn allows_automatic_window_tabbing(&self) -> bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTargetExtMacOS for EventLoopWindowTarget {
|
impl ActiveEventLoopExtMacOS for ActiveEventLoop {
|
||||||
fn hide_application(&self) {
|
fn hide_application(&self) {
|
||||||
self.p.hide_application()
|
self.p.hide_application()
|
||||||
}
|
}
|
||||||
@@ -46,6 +46,7 @@ pub mod pump_events;
|
|||||||
macos_platform,
|
macos_platform,
|
||||||
x11_platform,
|
x11_platform,
|
||||||
wayland_platform,
|
wayland_platform,
|
||||||
|
orbital_platform,
|
||||||
docsrs
|
docsrs
|
||||||
))]
|
))]
|
||||||
pub mod modifier_supplement;
|
pub mod modifier_supplement;
|
||||||
@@ -25,8 +25,7 @@ pub trait KeyEventExtModifierSupplement {
|
|||||||
impl KeyEventExtModifierSupplement for KeyEvent {
|
impl KeyEventExtModifierSupplement for KeyEvent {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn text_with_all_modifiers(&self) -> Option<&str> {
|
fn text_with_all_modifiers(&self) -> Option<&str> {
|
||||||
self.extra
|
self.platform_specific
|
||||||
.extra
|
|
||||||
.text_with_all_modifiers
|
.text_with_all_modifiers
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|s| s.as_str())
|
.map(|s| s.as_str())
|
||||||
@@ -34,6 +33,6 @@ impl KeyEventExtModifierSupplement for KeyEvent {
|
|||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn key_without_modifiers(&self) -> Key {
|
fn key_without_modifiers(&self) -> Key {
|
||||||
self.extra.extra.key_without_modifiers.clone()
|
self.platform_specific.key_without_modifiers.clone()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
6
src/platform/orbital.rs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
//! # Orbital / Redox OS
|
||||||
|
//!
|
||||||
|
//! Redox OS has some functionality not yet present that will be implemented
|
||||||
|
//! when its orbital display server provides it.
|
||||||
|
|
||||||
|
// There are no Orbital specific traits yet.
|
||||||
@@ -2,7 +2,7 @@ use std::time::Duration;
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
event::Event,
|
event::Event,
|
||||||
event_loop::{EventLoop, EventLoopWindowTarget},
|
event_loop::{ActiveEventLoop, EventLoop},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// The return status for `pump_events`
|
/// The return status for `pump_events`
|
||||||
@@ -32,68 +32,6 @@ pub trait EventLoopExtPumpEvents {
|
|||||||
/// Passing a `timeout` of `None` means that it may wait indefinitely for new
|
/// Passing a `timeout` of `None` means that it may wait indefinitely for new
|
||||||
/// events before returning control back to the external loop.
|
/// events before returning control back to the external loop.
|
||||||
///
|
///
|
||||||
/// ## Example
|
|
||||||
///
|
|
||||||
/// ```rust,no_run
|
|
||||||
/// # // Copied from examples/window_pump_events.rs
|
|
||||||
/// # #[cfg(any(
|
|
||||||
/// # windows_platform,
|
|
||||||
/// # macos_platform,
|
|
||||||
/// # x11_platform,
|
|
||||||
/// # wayland_platform,
|
|
||||||
/// # android_platform,
|
|
||||||
/// # ))]
|
|
||||||
/// fn main() -> std::process::ExitCode {
|
|
||||||
/// # use std::{process::ExitCode, thread::sleep, time::Duration};
|
|
||||||
/// #
|
|
||||||
/// # use simple_logger::SimpleLogger;
|
|
||||||
/// # use winit::{
|
|
||||||
/// # event::{Event, WindowEvent},
|
|
||||||
/// # event_loop::EventLoop,
|
|
||||||
/// # platform::pump_events::{EventLoopExtPumpEvents, PumpStatus},
|
|
||||||
/// # window::Window,
|
|
||||||
/// # };
|
|
||||||
/// let mut event_loop = EventLoop::new().unwrap();
|
|
||||||
/// #
|
|
||||||
/// # SimpleLogger::new().init().unwrap();
|
|
||||||
/// let window = Window::builder()
|
|
||||||
/// .with_title("A fantastic window!")
|
|
||||||
/// .build(&event_loop)
|
|
||||||
/// .unwrap();
|
|
||||||
///
|
|
||||||
/// 'main: loop {
|
|
||||||
/// let timeout = Some(Duration::ZERO);
|
|
||||||
/// let status = event_loop.pump_events(timeout, |event, elwt| {
|
|
||||||
/// # if let Event::WindowEvent { event, .. } = &event {
|
|
||||||
/// # // Print only Window events to reduce noise
|
|
||||||
/// # println!("{event:?}");
|
|
||||||
/// # }
|
|
||||||
/// #
|
|
||||||
/// match event {
|
|
||||||
/// Event::WindowEvent {
|
|
||||||
/// event: WindowEvent::CloseRequested,
|
|
||||||
/// window_id,
|
|
||||||
/// } if window_id == window.id() => elwt.exit(),
|
|
||||||
/// Event::AboutToWait => {
|
|
||||||
/// window.request_redraw();
|
|
||||||
/// }
|
|
||||||
/// _ => (),
|
|
||||||
/// }
|
|
||||||
/// });
|
|
||||||
/// if let PumpStatus::Exit(exit_code) = status {
|
|
||||||
/// break 'main ExitCode::from(exit_code as u8);
|
|
||||||
/// }
|
|
||||||
///
|
|
||||||
/// // Sleep for 1/60 second to simulate application work
|
|
||||||
/// //
|
|
||||||
/// // Since `pump_events` doesn't block it will be important to
|
|
||||||
/// // throttle the loop in the app somehow.
|
|
||||||
/// println!("Update()");
|
|
||||||
/// sleep(Duration::from_millis(16));
|
|
||||||
/// }
|
|
||||||
/// }
|
|
||||||
/// ```
|
|
||||||
///
|
|
||||||
/// **Note:** This is not a portable API, and its usage involves a number of
|
/// **Note:** This is not a portable API, and its usage involves a number of
|
||||||
/// caveats and trade offs that should be considered before using this API!
|
/// caveats and trade offs that should be considered before using this API!
|
||||||
///
|
///
|
||||||
@@ -137,12 +75,14 @@ pub trait EventLoopExtPumpEvents {
|
|||||||
/// other lifecycle events occur while the event is buffered.
|
/// other lifecycle events occur while the event is buffered.
|
||||||
///
|
///
|
||||||
/// ## Supported Platforms
|
/// ## Supported Platforms
|
||||||
|
///
|
||||||
/// - Windows
|
/// - Windows
|
||||||
/// - Linux
|
/// - Linux
|
||||||
/// - MacOS
|
/// - MacOS
|
||||||
/// - Android
|
/// - Android
|
||||||
///
|
///
|
||||||
/// ## Unsupported Platforms
|
/// ## Unsupported Platforms
|
||||||
|
///
|
||||||
/// - **Web:** This API is fundamentally incompatible with the event-based way in which
|
/// - **Web:** This API is fundamentally incompatible with the event-based way in which
|
||||||
/// Web browsers work because it's not possible to have a long-running external
|
/// Web browsers work because it's not possible to have a long-running external
|
||||||
/// loop that would block the browser and there is nothing that can be
|
/// loop that would block the browser and there is nothing that can be
|
||||||
@@ -152,6 +92,7 @@ pub trait EventLoopExtPumpEvents {
|
|||||||
/// there's no way to support the same approach to polling as on MacOS.
|
/// there's no way to support the same approach to polling as on MacOS.
|
||||||
///
|
///
|
||||||
/// ## Platform-specific
|
/// ## Platform-specific
|
||||||
|
///
|
||||||
/// - **Windows**: The implementation will use `PeekMessage` when checking for
|
/// - **Windows**: The implementation will use `PeekMessage` when checking for
|
||||||
/// window messages to avoid blocking your external event loop.
|
/// window messages to avoid blocking your external event loop.
|
||||||
///
|
///
|
||||||
@@ -174,7 +115,7 @@ pub trait EventLoopExtPumpEvents {
|
|||||||
/// callback.
|
/// callback.
|
||||||
fn pump_events<F>(&mut self, timeout: Option<Duration>, event_handler: F) -> PumpStatus
|
fn pump_events<F>(&mut self, timeout: Option<Duration>, event_handler: F) -> PumpStatus
|
||||||
where
|
where
|
||||||
F: FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget);
|
F: FnMut(Event<Self::UserEvent>, &ActiveEventLoop);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> EventLoopExtPumpEvents for EventLoop<T> {
|
impl<T> EventLoopExtPumpEvents for EventLoop<T> {
|
||||||
@@ -182,7 +123,7 @@ impl<T> EventLoopExtPumpEvents for EventLoop<T> {
|
|||||||
|
|
||||||
fn pump_events<F>(&mut self, timeout: Option<Duration>, event_handler: F) -> PumpStatus
|
fn pump_events<F>(&mut self, timeout: Option<Duration>, event_handler: F) -> PumpStatus
|
||||||
where
|
where
|
||||||
F: FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget),
|
F: FnMut(Event<Self::UserEvent>, &ActiveEventLoop),
|
||||||
{
|
{
|
||||||
self.event_loop.pump_events(timeout, event_handler)
|
self.event_loop.pump_events(timeout, event_handler)
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
error::EventLoopError,
|
error::EventLoopError,
|
||||||
event::Event,
|
event::Event,
|
||||||
event_loop::{EventLoop, EventLoopWindowTarget},
|
event_loop::{ActiveEventLoop, EventLoop},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(doc)]
|
#[cfg(doc)]
|
||||||
@@ -62,11 +62,11 @@ pub trait EventLoopExtRunOnDemand {
|
|||||||
doc = "[^1]: `spawn()` is only available on `wasm` platforms."
|
doc = "[^1]: `spawn()` is only available on `wasm` platforms."
|
||||||
)]
|
)]
|
||||||
///
|
///
|
||||||
/// [`exit()`]: EventLoopWindowTarget::exit()
|
/// [`exit()`]: ActiveEventLoop::exit()
|
||||||
/// [`set_control_flow()`]: EventLoopWindowTarget::set_control_flow()
|
/// [`set_control_flow()`]: ActiveEventLoop::set_control_flow()
|
||||||
fn run_on_demand<F>(&mut self, event_handler: F) -> Result<(), EventLoopError>
|
fn run_on_demand<F>(&mut self, event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget);
|
F: FnMut(Event<Self::UserEvent>, &ActiveEventLoop);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> EventLoopExtRunOnDemand for EventLoop<T> {
|
impl<T> EventLoopExtRunOnDemand for EventLoop<T> {
|
||||||
@@ -74,14 +74,14 @@ impl<T> EventLoopExtRunOnDemand for EventLoop<T> {
|
|||||||
|
|
||||||
fn run_on_demand<F>(&mut self, event_handler: F) -> Result<(), EventLoopError>
|
fn run_on_demand<F>(&mut self, event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget),
|
F: FnMut(Event<Self::UserEvent>, &ActiveEventLoop),
|
||||||
{
|
{
|
||||||
self.event_loop.window_target().clear_exit();
|
self.event_loop.window_target().clear_exit();
|
||||||
self.event_loop.run_on_demand(event_handler)
|
self.event_loop.run_on_demand(event_handler)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
/// Clear exit status.
|
/// Clear exit status.
|
||||||
pub(crate) fn clear_exit(&self) {
|
pub(crate) fn clear_exit(&self) {
|
||||||
self.p.clear_exit()
|
self.p.clear_exit()
|
||||||
@@ -94,7 +94,7 @@ impl EventLoopWindowTarget {
|
|||||||
///
|
///
|
||||||
/// let mut event_loop = EventLoop::new().unwrap();
|
/// let mut event_loop = EventLoop::new().unwrap();
|
||||||
/// event_loop.run_on_demand(|_, _| {
|
/// event_loop.run_on_demand(|_, _| {
|
||||||
/// // Attempt to run the event loop re-entrantly; this must fail.
|
/// // Attempt to run the event loop in a re-entrant manner; this must fail.
|
||||||
/// event_loop.run_on_demand(|_, _| {});
|
/// event_loop.run_on_demand(|_, _| {});
|
||||||
/// });
|
/// });
|
||||||
/// ```
|
/// ```
|
||||||
@@ -9,7 +9,7 @@ use crate::keyboard::{KeyCode, PhysicalKey};
|
|||||||
pub trait PhysicalKeyExtScancode {
|
pub trait PhysicalKeyExtScancode {
|
||||||
/// The raw value of the platform-specific physical key identifier.
|
/// The raw value of the platform-specific physical key identifier.
|
||||||
///
|
///
|
||||||
/// Returns `Some(key_id)` if the conversion was succesful; returns `None` otherwise.
|
/// Returns `Some(key_id)` if the conversion was successful; returns `None` otherwise.
|
||||||
///
|
///
|
||||||
/// ## Platform-specific
|
/// ## Platform-specific
|
||||||
/// - **Windows:** A 16bit extended scancode
|
/// - **Windows:** A 16bit extended scancode
|
||||||
@@ -29,11 +29,11 @@ pub trait PhysicalKeyExtScancode {
|
|||||||
|
|
||||||
impl PhysicalKeyExtScancode for PhysicalKey {
|
impl PhysicalKeyExtScancode for PhysicalKey {
|
||||||
fn to_scancode(self) -> Option<u32> {
|
fn to_scancode(self) -> Option<u32> {
|
||||||
crate::platform_impl::physicalkey_to_scancode(self)
|
crate::platform_impl::physical_key_to_scancode(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn from_scancode(scancode: u32) -> PhysicalKey {
|
fn from_scancode(scancode: u32) -> PhysicalKey {
|
||||||
crate::platform_impl::scancode_to_physicalkey(scancode)
|
crate::platform_impl::scancode_to_physical_key(scancode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
//!
|
//!
|
||||||
//! The [`ActivationToken`] is essential to ensure that your newly
|
//! The [`ActivationToken`] is essential to ensure that your newly
|
||||||
//! created window will obtain the focus, otherwise the user could
|
//! created window will obtain the focus, otherwise the user could
|
||||||
//! be requered to click on the window.
|
//! be required to click on the window.
|
||||||
//!
|
//!
|
||||||
//! Such token is usually delivered via the environment variable and
|
//! Such token is usually delivered via the environment variable and
|
||||||
//! could be read from it with the [`EventLoopExtStartupNotify::read_token_from_env`].
|
//! could be read from it with the [`EventLoopExtStartupNotify::read_token_from_env`].
|
||||||
@@ -24,8 +24,8 @@
|
|||||||
use std::env;
|
use std::env;
|
||||||
|
|
||||||
use crate::error::NotSupportedError;
|
use crate::error::NotSupportedError;
|
||||||
use crate::event_loop::{AsyncRequestSerial, EventLoopWindowTarget};
|
use crate::event_loop::{ActiveEventLoop, AsyncRequestSerial};
|
||||||
use crate::window::{ActivationToken, Window, WindowBuilder};
|
use crate::window::{ActivationToken, Window, WindowAttributes};
|
||||||
|
|
||||||
/// The variable which is used mostly on X11.
|
/// The variable which is used mostly on X11.
|
||||||
const X11_VAR: &str = "DESKTOP_STARTUP_ID";
|
const X11_VAR: &str = "DESKTOP_STARTUP_ID";
|
||||||
@@ -47,7 +47,7 @@ pub trait WindowExtStartupNotify {
|
|||||||
fn request_activation_token(&self) -> Result<AsyncRequestSerial, NotSupportedError>;
|
fn request_activation_token(&self) -> Result<AsyncRequestSerial, NotSupportedError>;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait WindowBuilderExtStartupNotify {
|
pub trait WindowAttributesExtStartupNotify {
|
||||||
/// Use this [`ActivationToken`] during window creation.
|
/// Use this [`ActivationToken`] during window creation.
|
||||||
///
|
///
|
||||||
/// Not using such a token upon a window could make your window not gaining
|
/// Not using such a token upon a window could make your window not gaining
|
||||||
@@ -55,16 +55,16 @@ pub trait WindowBuilderExtStartupNotify {
|
|||||||
fn with_activation_token(self, token: ActivationToken) -> Self;
|
fn with_activation_token(self, token: ActivationToken) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopExtStartupNotify for EventLoopWindowTarget {
|
impl EventLoopExtStartupNotify for ActiveEventLoop {
|
||||||
fn read_token_from_env(&self) -> Option<ActivationToken> {
|
fn read_token_from_env(&self) -> Option<ActivationToken> {
|
||||||
match self.p {
|
match self.p {
|
||||||
#[cfg(wayland_platform)]
|
#[cfg(wayland_platform)]
|
||||||
crate::platform_impl::EventLoopWindowTarget::Wayland(_) => env::var(WAYLAND_VAR),
|
crate::platform_impl::ActiveEventLoop::Wayland(_) => env::var(WAYLAND_VAR),
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
crate::platform_impl::EventLoopWindowTarget::X(_) => env::var(X11_VAR),
|
crate::platform_impl::ActiveEventLoop::X(_) => env::var(X11_VAR),
|
||||||
}
|
}
|
||||||
.ok()
|
.ok()
|
||||||
.map(ActivationToken::new)
|
.map(ActivationToken::_new)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,9 +74,9 @@ impl WindowExtStartupNotify for Window {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtStartupNotify for WindowBuilder {
|
impl WindowAttributesExtStartupNotify for WindowAttributes {
|
||||||
fn with_activation_token(mut self, token: ActivationToken) -> Self {
|
fn with_activation_token(mut self, token: ActivationToken) -> Self {
|
||||||
self.window.platform_specific.activation_token = Some(token);
|
self.platform_specific.activation_token = Some(token);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -94,6 +94,6 @@ pub fn reset_activation_token_env() {
|
|||||||
///
|
///
|
||||||
/// This could be used before running daemon processes.
|
/// This could be used before running daemon processes.
|
||||||
pub fn set_activation_token_env(token: ActivationToken) {
|
pub fn set_activation_token_env(token: ActivationToken) {
|
||||||
env::set_var(X11_VAR, token.token());
|
env::set_var(X11_VAR, &token._token);
|
||||||
env::set_var(WAYLAND_VAR, token.token());
|
env::set_var(WAYLAND_VAR, token._token);
|
||||||
}
|
}
|
||||||
@@ -1,18 +1,33 @@
|
|||||||
|
//! # Wayland
|
||||||
|
//!
|
||||||
|
//! **Note:** Windows don't appear on Wayland until you draw/present to them.
|
||||||
|
//!
|
||||||
|
//! By default, Winit loads system libraries using `dlopen`. This can be
|
||||||
|
//! disabled by disabling the `"wayland-dlopen"` cargo feature.
|
||||||
|
//!
|
||||||
|
//! ## Client-side decorations
|
||||||
|
//!
|
||||||
|
//! Winit provides client-side decorations by default, but the behaviour can
|
||||||
|
//! be controlled with the following feature flags:
|
||||||
|
//!
|
||||||
|
//! * `wayland-csd-adwaita` (default).
|
||||||
|
//! * `wayland-csd-adwaita-crossfont`.
|
||||||
|
//! * `wayland-csd-adwaita-notitle`.
|
||||||
use crate::{
|
use crate::{
|
||||||
event_loop::{EventLoopBuilder, EventLoopWindowTarget},
|
event_loop::{ActiveEventLoop, EventLoopBuilder},
|
||||||
monitor::MonitorHandle,
|
monitor::MonitorHandle,
|
||||||
window::{Window, WindowBuilder},
|
window::{Window, WindowAttributes},
|
||||||
};
|
};
|
||||||
|
|
||||||
pub use crate::window::Theme;
|
pub use crate::window::Theme;
|
||||||
|
|
||||||
/// Additional methods on [`EventLoopWindowTarget`] that are specific to Wayland.
|
/// Additional methods on [`ActiveEventLoop`] that are specific to Wayland.
|
||||||
pub trait EventLoopWindowTargetExtWayland {
|
pub trait ActiveEventLoopExtWayland {
|
||||||
/// True if the [`EventLoopWindowTarget`] uses Wayland.
|
/// True if the [`ActiveEventLoop`] uses Wayland.
|
||||||
fn is_wayland(&self) -> bool;
|
fn is_wayland(&self) -> bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTargetExtWayland for EventLoopWindowTarget {
|
impl ActiveEventLoopExtWayland for ActiveEventLoop {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn is_wayland(&self) -> bool {
|
fn is_wayland(&self) -> bool {
|
||||||
self.p.is_wayland()
|
self.p.is_wayland()
|
||||||
@@ -50,22 +65,22 @@ pub trait WindowExtWayland {}
|
|||||||
|
|
||||||
impl WindowExtWayland for Window {}
|
impl WindowExtWayland for Window {}
|
||||||
|
|
||||||
/// Additional methods on [`WindowBuilder`] that are specific to Wayland.
|
/// Additional methods on [`WindowAttributes`] that are specific to Wayland.
|
||||||
pub trait WindowBuilderExtWayland {
|
pub trait WindowAttributesExtWayland {
|
||||||
/// Build window with the given name.
|
/// Build window with the given name.
|
||||||
///
|
///
|
||||||
/// The `general` name sets an application ID, which should match the `.desktop`
|
/// The `general` name sets an application ID, which should match the `.desktop`
|
||||||
/// file destributed with your program. The `instance` is a `no-op`.
|
/// file distributed with your program. The `instance` is a `no-op`.
|
||||||
///
|
///
|
||||||
/// For details about application ID conventions, see the
|
/// For details about application ID conventions, see the
|
||||||
/// [Desktop Entry Spec](https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#desktop-file-id)
|
/// [Desktop Entry Spec](https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#desktop-file-id)
|
||||||
fn with_name(self, general: impl Into<String>, instance: impl Into<String>) -> Self;
|
fn with_name(self, general: impl Into<String>, instance: impl Into<String>) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtWayland for WindowBuilder {
|
impl WindowAttributesExtWayland for WindowAttributes {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_name(mut self, general: impl Into<String>, instance: impl Into<String>) -> Self {
|
fn with_name(mut self, general: impl Into<String>, instance: impl Into<String>) -> Self {
|
||||||
self.window.platform_specific.name = Some(crate::platform_impl::ApplicationName::new(
|
self.platform_specific.name = Some(crate::platform_impl::ApplicationName::new(
|
||||||
general.into(),
|
general.into(),
|
||||||
instance.into(),
|
instance.into(),
|
||||||
));
|
));
|
||||||
@@ -1,12 +1,31 @@
|
|||||||
//! The web target does not automatically insert the canvas element object into the web page, to
|
//! # Web
|
||||||
//! allow end users to determine how the page should be laid out. Use the [`WindowExtWebSys`] trait
|
//!
|
||||||
//! to retrieve the canvas from the Window. Alternatively, use the [`WindowBuilderExtWebSys`] trait
|
//! The officially supported browsers are Chrome, Firefox and Safari 13.1+,
|
||||||
//! to provide your own canvas.
|
//! though forks of these should work fine.
|
||||||
|
//!
|
||||||
|
//! Winit supports compiling to the `wasm32-unknown-unknown` target with
|
||||||
|
//! `web-sys`.
|
||||||
|
//!
|
||||||
|
//! On the web platform, a Winit window is backed by a `<canvas>` element. You
|
||||||
|
//! can either [provide Winit with a `<canvas>` element][with_canvas], or
|
||||||
|
//! [let Winit create a `<canvas>` element which you can then retrieve][get]
|
||||||
|
//! and insert it into the DOM yourself.
|
||||||
|
//!
|
||||||
|
//! Currently, there is no example code using Winit on Web, see [#3473]. For
|
||||||
|
//! information on using Rust on WebAssembly, check out the [Rust and
|
||||||
|
//! WebAssembly book].
|
||||||
|
//!
|
||||||
|
//! [with_canvas]: WindowAttributesExtWebSys::with_canvas
|
||||||
|
//! [get]: WindowExtWebSys::canvas
|
||||||
|
//! [#3473]: https://github.com/rust-windowing/winit/issues/3473
|
||||||
|
//! [Rust and WebAssembly book]: https://rustwasm.github.io/book/
|
||||||
|
//!
|
||||||
|
//! ## CSS properties
|
||||||
//!
|
//!
|
||||||
//! It is recommended **not** to apply certain CSS properties to the canvas:
|
//! It is recommended **not** to apply certain CSS properties to the canvas:
|
||||||
//! - [`transform`]
|
//! - [`transform`](https://developer.mozilla.org/en-US/docs/Web/CSS/transform)
|
||||||
//! - [`border`]
|
//! - [`border`](https://developer.mozilla.org/en-US/docs/Web/CSS/border)
|
||||||
//! - [`padding`]
|
//! - [`padding`](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
|
||||||
//!
|
//!
|
||||||
//! The following APIs can't take them into account and will therefore provide inaccurate results:
|
//! The following APIs can't take them into account and will therefore provide inaccurate results:
|
||||||
//! - [`WindowEvent::Resized`] and [`Window::(set_)inner_size()`]
|
//! - [`WindowEvent::Resized`] and [`Window::(set_)inner_size()`]
|
||||||
@@ -16,16 +35,13 @@
|
|||||||
//! - [`Window::set_outer_position()`]
|
//! - [`Window::set_outer_position()`]
|
||||||
//!
|
//!
|
||||||
//! [`WindowEvent::Resized`]: crate::event::WindowEvent::Resized
|
//! [`WindowEvent::Resized`]: crate::event::WindowEvent::Resized
|
||||||
//! [`Window::(set_)inner_size()`]: crate::window::Window::inner_size()
|
//! [`Window::(set_)inner_size()`]: crate::window::Window::inner_size
|
||||||
//! [`WindowEvent::Occluded`]: crate::event::WindowEvent::Occluded
|
//! [`WindowEvent::Occluded`]: crate::event::WindowEvent::Occluded
|
||||||
//! [`WindowEvent::CursorMoved`]: crate::event::WindowEvent::CursorMoved
|
//! [`WindowEvent::CursorMoved`]: crate::event::WindowEvent::CursorMoved
|
||||||
//! [`WindowEvent::CursorEntered`]: crate::event::WindowEvent::CursorEntered
|
//! [`WindowEvent::CursorEntered`]: crate::event::WindowEvent::CursorEntered
|
||||||
//! [`WindowEvent::CursorLeft`]: crate::event::WindowEvent::CursorLeft
|
//! [`WindowEvent::CursorLeft`]: crate::event::WindowEvent::CursorLeft
|
||||||
//! [`WindowEvent::Touch`]: crate::event::WindowEvent::Touch
|
//! [`WindowEvent::Touch`]: crate::event::WindowEvent::Touch
|
||||||
//! [`Window::set_outer_position()`]: crate::window::Window::set_outer_position()
|
//! [`Window::set_outer_position()`]: crate::window::Window::set_outer_position
|
||||||
//! [`transform`]: https://developer.mozilla.org/en-US/docs/Web/CSS/transform
|
|
||||||
//! [`border`]: https://developer.mozilla.org/en-US/docs/Web/CSS/border
|
|
||||||
//! [`padding`]: https://developer.mozilla.org/en-US/docs/Web/CSS/padding
|
|
||||||
|
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
use std::fmt::{self, Display, Formatter};
|
use std::fmt::{self, Display, Formatter};
|
||||||
@@ -37,13 +53,13 @@ use std::time::Duration;
|
|||||||
#[cfg(web_platform)]
|
#[cfg(web_platform)]
|
||||||
use web_sys::HtmlCanvasElement;
|
use web_sys::HtmlCanvasElement;
|
||||||
|
|
||||||
use crate::cursor::CustomCursorBuilder;
|
use crate::cursor::CustomCursorSource;
|
||||||
use crate::event::Event;
|
use crate::event::Event;
|
||||||
use crate::event_loop::{EventLoop, EventLoopWindowTarget};
|
use crate::event_loop::{ActiveEventLoop, EventLoop};
|
||||||
#[cfg(web_platform)]
|
#[cfg(web_platform)]
|
||||||
use crate::platform_impl::CustomCursorFuture as PlatformCustomCursorFuture;
|
use crate::platform_impl::CustomCursorFuture as PlatformCustomCursorFuture;
|
||||||
use crate::platform_impl::{PlatformCustomCursor, PlatformCustomCursorBuilder};
|
use crate::platform_impl::PlatformCustomCursorSource;
|
||||||
use crate::window::{CustomCursor, Window, WindowBuilder};
|
use crate::window::{CustomCursor, Window, WindowAttributes};
|
||||||
|
|
||||||
#[cfg(not(web_platform))]
|
#[cfg(not(web_platform))]
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
@@ -85,9 +101,9 @@ impl WindowExtWebSys for Window {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait WindowBuilderExtWebSys {
|
pub trait WindowAttributesExtWebSys {
|
||||||
/// Pass an [`HtmlCanvasElement`] to be used for this [`Window`]. If [`None`],
|
/// Pass an [`HtmlCanvasElement`] to be used for this [`Window`]. If [`None`],
|
||||||
/// [`WindowBuilder::build()`] will create one.
|
/// [`WindowAttributes::default()`] will create one.
|
||||||
///
|
///
|
||||||
/// In any case, the canvas won't be automatically inserted into the web page.
|
/// In any case, the canvas won't be automatically inserted into the web page.
|
||||||
///
|
///
|
||||||
@@ -119,24 +135,24 @@ pub trait WindowBuilderExtWebSys {
|
|||||||
fn with_append(self, append: bool) -> Self;
|
fn with_append(self, append: bool) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtWebSys for WindowBuilder {
|
impl WindowAttributesExtWebSys for WindowAttributes {
|
||||||
fn with_canvas(mut self, canvas: Option<HtmlCanvasElement>) -> Self {
|
fn with_canvas(mut self, canvas: Option<HtmlCanvasElement>) -> Self {
|
||||||
self.window.platform_specific.set_canvas(canvas);
|
self.platform_specific.set_canvas(canvas);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn with_prevent_default(mut self, prevent_default: bool) -> Self {
|
fn with_prevent_default(mut self, prevent_default: bool) -> Self {
|
||||||
self.window.platform_specific.prevent_default = prevent_default;
|
self.platform_specific.prevent_default = prevent_default;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn with_focusable(mut self, focusable: bool) -> Self {
|
fn with_focusable(mut self, focusable: bool) -> Self {
|
||||||
self.window.platform_specific.focusable = focusable;
|
self.platform_specific.focusable = focusable;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn with_append(mut self, append: bool) -> Self {
|
fn with_append(mut self, append: bool) -> Self {
|
||||||
self.window.platform_specific.append = append;
|
self.platform_specific.append = append;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -172,7 +188,7 @@ pub trait EventLoopExtWebSys {
|
|||||||
/// [^1]: `run()` is _not_ available on WASM when the target supports `exception-handling`.
|
/// [^1]: `run()` is _not_ available on WASM when the target supports `exception-handling`.
|
||||||
fn spawn<F>(self, event_handler: F)
|
fn spawn<F>(self, event_handler: F)
|
||||||
where
|
where
|
||||||
F: 'static + FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget);
|
F: 'static + FnMut(Event<Self::UserEvent>, &ActiveEventLoop);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> EventLoopExtWebSys for EventLoop<T> {
|
impl<T> EventLoopExtWebSys for EventLoop<T> {
|
||||||
@@ -180,13 +196,13 @@ impl<T> EventLoopExtWebSys for EventLoop<T> {
|
|||||||
|
|
||||||
fn spawn<F>(self, event_handler: F)
|
fn spawn<F>(self, event_handler: F)
|
||||||
where
|
where
|
||||||
F: 'static + FnMut(Event<Self::UserEvent>, &EventLoopWindowTarget),
|
F: 'static + FnMut(Event<Self::UserEvent>, &ActiveEventLoop),
|
||||||
{
|
{
|
||||||
self.event_loop.spawn(event_handler)
|
self.event_loop.spawn(event_handler)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait EventLoopWindowTargetExtWebSys {
|
pub trait ActiveEventLoopExtWebSys {
|
||||||
/// Sets the strategy for [`ControlFlow::Poll`].
|
/// Sets the strategy for [`ControlFlow::Poll`].
|
||||||
///
|
///
|
||||||
/// See [`PollStrategy`].
|
/// See [`PollStrategy`].
|
||||||
@@ -200,9 +216,18 @@ pub trait EventLoopWindowTargetExtWebSys {
|
|||||||
///
|
///
|
||||||
/// [`ControlFlow::Poll`]: crate::event_loop::ControlFlow::Poll
|
/// [`ControlFlow::Poll`]: crate::event_loop::ControlFlow::Poll
|
||||||
fn poll_strategy(&self) -> PollStrategy;
|
fn poll_strategy(&self) -> PollStrategy;
|
||||||
|
|
||||||
|
/// Async version of [`ActiveEventLoop::create_custom_cursor()`] which waits until the
|
||||||
|
/// cursor has completely finished loading.
|
||||||
|
fn create_custom_cursor_async(&self, source: CustomCursorSource) -> CustomCursorFuture;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTargetExtWebSys for EventLoopWindowTarget {
|
impl ActiveEventLoopExtWebSys for ActiveEventLoop {
|
||||||
|
#[inline]
|
||||||
|
fn create_custom_cursor_async(&self, source: CustomCursorSource) -> CustomCursorFuture {
|
||||||
|
self.p.create_custom_cursor_async(source)
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn set_poll_strategy(&self, strategy: PollStrategy) {
|
fn set_poll_strategy(&self, strategy: PollStrategy) {
|
||||||
self.p.set_poll_strategy(strategy);
|
self.p.set_poll_strategy(strategy);
|
||||||
@@ -249,14 +274,14 @@ pub trait CustomCursorExtWebSys {
|
|||||||
/// but browser support for image formats is inconsistent. Using [PNG] is recommended.
|
/// but browser support for image formats is inconsistent. Using [PNG] is recommended.
|
||||||
///
|
///
|
||||||
/// [PNG]: https://en.wikipedia.org/wiki/PNG
|
/// [PNG]: https://en.wikipedia.org/wiki/PNG
|
||||||
fn from_url(url: String, hotspot_x: u16, hotspot_y: u16) -> CustomCursorBuilder;
|
fn from_url(url: String, hotspot_x: u16, hotspot_y: u16) -> CustomCursorSource;
|
||||||
|
|
||||||
/// Crates a new animated cursor from multiple [`CustomCursor`]s.
|
/// Crates a new animated cursor from multiple [`CustomCursor`]s.
|
||||||
/// Supplied `cursors` can't be empty or other animations.
|
/// Supplied `cursors` can't be empty or other animations.
|
||||||
fn from_animation(
|
fn from_animation(
|
||||||
duration: Duration,
|
duration: Duration,
|
||||||
cursors: Vec<CustomCursor>,
|
cursors: Vec<CustomCursor>,
|
||||||
) -> Result<CustomCursorBuilder, BadAnimation>;
|
) -> Result<CustomCursorSource, BadAnimation>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl CustomCursorExtWebSys for CustomCursor {
|
impl CustomCursorExtWebSys for CustomCursor {
|
||||||
@@ -264,9 +289,9 @@ impl CustomCursorExtWebSys for CustomCursor {
|
|||||||
self.inner.animation
|
self.inner.animation
|
||||||
}
|
}
|
||||||
|
|
||||||
fn from_url(url: String, hotspot_x: u16, hotspot_y: u16) -> CustomCursorBuilder {
|
fn from_url(url: String, hotspot_x: u16, hotspot_y: u16) -> CustomCursorSource {
|
||||||
CustomCursorBuilder {
|
CustomCursorSource {
|
||||||
inner: PlatformCustomCursorBuilder::Url {
|
inner: PlatformCustomCursorSource::Url {
|
||||||
url,
|
url,
|
||||||
hotspot_x,
|
hotspot_x,
|
||||||
hotspot_y,
|
hotspot_y,
|
||||||
@@ -277,7 +302,7 @@ impl CustomCursorExtWebSys for CustomCursor {
|
|||||||
fn from_animation(
|
fn from_animation(
|
||||||
duration: Duration,
|
duration: Duration,
|
||||||
cursors: Vec<CustomCursor>,
|
cursors: Vec<CustomCursor>,
|
||||||
) -> Result<CustomCursorBuilder, BadAnimation> {
|
) -> Result<CustomCursorSource, BadAnimation> {
|
||||||
if cursors.is_empty() {
|
if cursors.is_empty() {
|
||||||
return Err(BadAnimation::Empty);
|
return Err(BadAnimation::Empty);
|
||||||
}
|
}
|
||||||
@@ -286,8 +311,8 @@ impl CustomCursorExtWebSys for CustomCursor {
|
|||||||
return Err(BadAnimation::Animation);
|
return Err(BadAnimation::Animation);
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(CustomCursorBuilder {
|
Ok(CustomCursorSource {
|
||||||
inner: PlatformCustomCursorBuilder::Animation { duration, cursors },
|
inner: PlatformCustomCursorSource::Animation { duration, cursors },
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -305,33 +330,18 @@ impl fmt::Display for BadAnimation {
|
|||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
match self {
|
match self {
|
||||||
Self::Empty => write!(f, "No cursors supplied"),
|
Self::Empty => write!(f, "No cursors supplied"),
|
||||||
Self::Animation => write!(f, "A supplied cursor is an animtion"),
|
Self::Animation => write!(f, "A supplied cursor is an animation"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Error for BadAnimation {}
|
impl Error for BadAnimation {}
|
||||||
|
|
||||||
pub trait CustomCursorBuilderExtWebSys {
|
|
||||||
/// Async version of [`CustomCursorBuilder::build()`] which waits until the
|
|
||||||
/// cursor has completely finished loading.
|
|
||||||
fn build_async(self, window_target: &EventLoopWindowTarget) -> CustomCursorFuture;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl CustomCursorBuilderExtWebSys for CustomCursorBuilder {
|
|
||||||
fn build_async(self, window_target: &EventLoopWindowTarget) -> CustomCursorFuture {
|
|
||||||
CustomCursorFuture(PlatformCustomCursor::build_async(
|
|
||||||
self.inner,
|
|
||||||
&window_target.p,
|
|
||||||
))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(web_platform))]
|
#[cfg(not(web_platform))]
|
||||||
struct PlatformCustomCursorFuture;
|
struct PlatformCustomCursorFuture;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct CustomCursorFuture(PlatformCustomCursorFuture);
|
pub struct CustomCursorFuture(pub(crate) PlatformCustomCursorFuture);
|
||||||
|
|
||||||
impl Future for CustomCursorFuture {
|
impl Future for CustomCursorFuture {
|
||||||
type Output = Result<CustomCursor, CustomCursorError>;
|
type Output = Result<CustomCursor, CustomCursorError>;
|
||||||
@@ -1,3 +1,7 @@
|
|||||||
|
//! # Windows
|
||||||
|
//!
|
||||||
|
//! The supported OS version is Windows 7 or higher, though Windows 10 is
|
||||||
|
//! tested regularly.
|
||||||
use std::{ffi::c_void, path::Path};
|
use std::{ffi::c_void, path::Path};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
@@ -5,7 +9,7 @@ use crate::{
|
|||||||
event::DeviceId,
|
event::DeviceId,
|
||||||
event_loop::EventLoopBuilder,
|
event_loop::EventLoopBuilder,
|
||||||
monitor::MonitorHandle,
|
monitor::MonitorHandle,
|
||||||
window::{BadIcon, Icon, Window, WindowBuilder},
|
window::{BadIcon, Icon, Window, WindowAttributes},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Window Handle type used by Win32 API
|
/// Window Handle type used by Win32 API
|
||||||
@@ -153,11 +157,11 @@ pub trait EventLoopBuilderExtWindows {
|
|||||||
/// #[cfg(target_os = "windows")]
|
/// #[cfg(target_os = "windows")]
|
||||||
/// builder.with_msg_hook(|msg|{
|
/// builder.with_msg_hook(|msg|{
|
||||||
/// let msg = msg as *const MSG;
|
/// let msg = msg as *const MSG;
|
||||||
/// # let accels: Vec<ACCEL> = Vec::new();
|
/// # let accelerators: Vec<ACCEL> = Vec::new();
|
||||||
/// let translated = unsafe {
|
/// let translated = unsafe {
|
||||||
/// TranslateAcceleratorW(
|
/// TranslateAcceleratorW(
|
||||||
/// (*msg).hwnd,
|
/// (*msg).hwnd,
|
||||||
/// CreateAcceleratorTableW(accels.as_ptr() as _, 1),
|
/// CreateAcceleratorTableW(accelerators.as_ptr() as _, 1),
|
||||||
/// msg,
|
/// msg,
|
||||||
/// ) == 1
|
/// ) == 1
|
||||||
/// };
|
/// };
|
||||||
@@ -198,7 +202,7 @@ pub trait WindowExtWindows {
|
|||||||
///
|
///
|
||||||
/// A window must be enabled before it can be activated.
|
/// A window must be enabled before it can be activated.
|
||||||
/// If an application has create a modal dialog box by disabling its owner window
|
/// If an application has create a modal dialog box by disabling its owner window
|
||||||
/// (as described in [`WindowBuilderExtWindows::with_owner_window`]), the application must enable
|
/// (as described in [`WindowAttributesExtWindows::with_owner_window`]), the application must enable
|
||||||
/// the owner window before destroying the dialog box.
|
/// the owner window before destroying the dialog box.
|
||||||
/// Otherwise, another window will receive the keyboard focus and be activated.
|
/// Otherwise, another window will receive the keyboard focus and be activated.
|
||||||
///
|
///
|
||||||
@@ -296,11 +300,11 @@ impl WindowExtWindows for Window {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Additional methods on `WindowBuilder` that are specific to Windows.
|
/// Additional methods on `WindowAttributes` that are specific to Windows.
|
||||||
#[allow(rustdoc::broken_intra_doc_links)]
|
#[allow(rustdoc::broken_intra_doc_links)]
|
||||||
pub trait WindowBuilderExtWindows {
|
pub trait WindowAttributesExtWindows {
|
||||||
/// Set an owner to the window to be created. Can be used to create a dialog box, for example.
|
/// Set an owner to the window to be created. Can be used to create a dialog box, for example.
|
||||||
/// This only works when [`WindowBuilder::with_parent_window`] isn't called or set to `None`.
|
/// This only works when [`WindowAttributes::with_parent_window`] isn't called or set to `None`.
|
||||||
/// Can be used in combination with [`WindowExtWindows::set_enable(false)`](WindowExtWindows::set_enable)
|
/// Can be used in combination with [`WindowExtWindows::set_enable(false)`](WindowExtWindows::set_enable)
|
||||||
/// on the owner window to create a modal dialog box.
|
/// on the owner window to create a modal dialog box.
|
||||||
///
|
///
|
||||||
@@ -386,88 +390,88 @@ pub trait WindowBuilderExtWindows {
|
|||||||
fn with_corner_preference(self, corners: CornerPreference) -> Self;
|
fn with_corner_preference(self, corners: CornerPreference) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtWindows for WindowBuilder {
|
impl WindowAttributesExtWindows for WindowAttributes {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_owner_window(mut self, parent: HWND) -> Self {
|
fn with_owner_window(mut self, parent: HWND) -> Self {
|
||||||
self.window.platform_specific.owner = Some(parent);
|
self.platform_specific.owner = Some(parent);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_menu(mut self, menu: HMENU) -> Self {
|
fn with_menu(mut self, menu: HMENU) -> Self {
|
||||||
self.window.platform_specific.menu = Some(menu);
|
self.platform_specific.menu = Some(menu);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_taskbar_icon(mut self, taskbar_icon: Option<Icon>) -> Self {
|
fn with_taskbar_icon(mut self, taskbar_icon: Option<Icon>) -> Self {
|
||||||
self.window.platform_specific.taskbar_icon = taskbar_icon;
|
self.platform_specific.taskbar_icon = taskbar_icon;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_no_redirection_bitmap(mut self, flag: bool) -> Self {
|
fn with_no_redirection_bitmap(mut self, flag: bool) -> Self {
|
||||||
self.window.platform_specific.no_redirection_bitmap = flag;
|
self.platform_specific.no_redirection_bitmap = flag;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_drag_and_drop(mut self, flag: bool) -> Self {
|
fn with_drag_and_drop(mut self, flag: bool) -> Self {
|
||||||
self.window.platform_specific.drag_and_drop = flag;
|
self.platform_specific.drag_and_drop = flag;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_skip_taskbar(mut self, skip: bool) -> Self {
|
fn with_skip_taskbar(mut self, skip: bool) -> Self {
|
||||||
self.window.platform_specific.skip_taskbar = skip;
|
self.platform_specific.skip_taskbar = skip;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_class_name<S: Into<String>>(mut self, class_name: S) -> Self {
|
fn with_class_name<S: Into<String>>(mut self, class_name: S) -> Self {
|
||||||
self.window.platform_specific.class_name = class_name.into();
|
self.platform_specific.class_name = class_name.into();
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_undecorated_shadow(mut self, shadow: bool) -> Self {
|
fn with_undecorated_shadow(mut self, shadow: bool) -> Self {
|
||||||
self.window.platform_specific.decoration_shadow = shadow;
|
self.platform_specific.decoration_shadow = shadow;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_system_backdrop(mut self, backdrop_type: BackdropType) -> Self {
|
fn with_system_backdrop(mut self, backdrop_type: BackdropType) -> Self {
|
||||||
self.window.platform_specific.backdrop_type = backdrop_type;
|
self.platform_specific.backdrop_type = backdrop_type;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_clip_children(mut self, flag: bool) -> Self {
|
fn with_clip_children(mut self, flag: bool) -> Self {
|
||||||
self.window.platform_specific.clip_children = flag;
|
self.platform_specific.clip_children = flag;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_border_color(mut self, color: Option<Color>) -> Self {
|
fn with_border_color(mut self, color: Option<Color>) -> Self {
|
||||||
self.window.platform_specific.border_color = Some(color.unwrap_or(Color::NONE));
|
self.platform_specific.border_color = Some(color.unwrap_or(Color::NONE));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_title_background_color(mut self, color: Option<Color>) -> Self {
|
fn with_title_background_color(mut self, color: Option<Color>) -> Self {
|
||||||
self.window.platform_specific.title_background_color = Some(color.unwrap_or(Color::NONE));
|
self.platform_specific.title_background_color = Some(color.unwrap_or(Color::NONE));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_title_text_color(mut self, color: Color) -> Self {
|
fn with_title_text_color(mut self, color: Color) -> Self {
|
||||||
self.window.platform_specific.title_text_color = Some(color);
|
self.platform_specific.title_text_color = Some(color);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_corner_preference(mut self, corners: CornerPreference) -> Self {
|
fn with_corner_preference(mut self, corners: CornerPreference) -> Self {
|
||||||
self.window.platform_specific.corner_preference = Some(corners);
|
self.platform_specific.corner_preference = Some(corners);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -504,7 +508,7 @@ pub trait DeviceIdExtWindows {
|
|||||||
impl DeviceIdExtWindows for DeviceId {
|
impl DeviceIdExtWindows for DeviceId {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn persistent_identifier(&self) -> Option<String> {
|
fn persistent_identifier(&self) -> Option<String> {
|
||||||
crate::platform_impl::persistent_identifier(*self)
|
self.0.persistent_identifier()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1,10 +1,11 @@
|
|||||||
|
//! # X11
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
event_loop::{EventLoopBuilder, EventLoopWindowTarget},
|
event_loop::{ActiveEventLoop, EventLoopBuilder},
|
||||||
monitor::MonitorHandle,
|
monitor::MonitorHandle,
|
||||||
window::{Window, WindowBuilder},
|
window::{Window, WindowAttributes},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::dpi::Size;
|
use crate::dpi::Size;
|
||||||
@@ -15,14 +16,14 @@ use crate::dpi::Size;
|
|||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
pub enum WindowType {
|
pub enum WindowType {
|
||||||
/// A desktop feature. This can include a single window containing desktop icons with the same dimensions as the
|
/// A desktop feature. This can include a single window containing desktop icons with the same dimensions as the
|
||||||
/// screen, allowing the desktop environment to have full control of the desktop, without the need for proxying
|
/// screen, allowing the desktop environment to have full control of the desktop, without the need for proxy-ing
|
||||||
/// root window clicks.
|
/// root window clicks.
|
||||||
Desktop,
|
Desktop,
|
||||||
/// A dock or panel feature. Typically a Window Manager would keep such windows on top of all other windows.
|
/// A dock or panel feature. Typically a Window Manager would keep such windows on top of all other windows.
|
||||||
Dock,
|
Dock,
|
||||||
/// Toolbar windows. "Torn off" from the main application.
|
/// Toolbar windows. "Torn off" from the main application.
|
||||||
Toolbar,
|
Toolbar,
|
||||||
/// Pinnable menu windows. "Torn off" from the main application.
|
/// Pin-able menu windows. "Torn off" from the main application.
|
||||||
Menu,
|
Menu,
|
||||||
/// A small persistent utility window, such as a palette or toolbox.
|
/// A small persistent utility window, such as a palette or toolbox.
|
||||||
Utility,
|
Utility,
|
||||||
@@ -61,7 +62,7 @@ pub enum WindowType {
|
|||||||
pub type XlibErrorHook =
|
pub type XlibErrorHook =
|
||||||
Box<dyn Fn(*mut std::ffi::c_void, *mut std::ffi::c_void) -> bool + Send + Sync>;
|
Box<dyn Fn(*mut std::ffi::c_void, *mut std::ffi::c_void) -> bool + Send + Sync>;
|
||||||
|
|
||||||
/// A unique identifer for an X11 visual.
|
/// A unique identifier for an X11 visual.
|
||||||
pub type XVisualID = u32;
|
pub type XVisualID = u32;
|
||||||
|
|
||||||
/// A unique identifier for an X11 window.
|
/// A unique identifier for an X11 window.
|
||||||
@@ -69,7 +70,7 @@ pub type XWindow = u32;
|
|||||||
|
|
||||||
/// Hook to winit's xlib error handling callback.
|
/// Hook to winit's xlib error handling callback.
|
||||||
///
|
///
|
||||||
/// This method is provided as a safe way to handle the errors comming from X11
|
/// This method is provided as a safe way to handle the errors coming from X11
|
||||||
/// when using xlib in external crates, like glutin for GLX access. Trying to
|
/// when using xlib in external crates, like glutin for GLX access. Trying to
|
||||||
/// handle errors by speculating with `XSetErrorHandler` is [`unsafe`].
|
/// handle errors by speculating with `XSetErrorHandler` is [`unsafe`].
|
||||||
///
|
///
|
||||||
@@ -89,13 +90,13 @@ pub fn register_xlib_error_hook(hook: XlibErrorHook) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Additional methods on [`EventLoopWindowTarget`] that are specific to X11.
|
/// Additional methods on [`ActiveEventLoop`] that are specific to X11.
|
||||||
pub trait EventLoopWindowTargetExtX11 {
|
pub trait ActiveEventLoopExtX11 {
|
||||||
/// True if the [`EventLoopWindowTarget`] uses X11.
|
/// True if the [`ActiveEventLoop`] uses X11.
|
||||||
fn is_x11(&self) -> bool;
|
fn is_x11(&self) -> bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTargetExtX11 for EventLoopWindowTarget {
|
impl ActiveEventLoopExtX11 for ActiveEventLoop {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn is_x11(&self) -> bool {
|
fn is_x11(&self) -> bool {
|
||||||
!self.p.is_wayland()
|
!self.p.is_wayland()
|
||||||
@@ -133,8 +134,8 @@ pub trait WindowExtX11 {}
|
|||||||
|
|
||||||
impl WindowExtX11 for Window {}
|
impl WindowExtX11 for Window {}
|
||||||
|
|
||||||
/// Additional methods on [`WindowBuilder`] that are specific to X11.
|
/// Additional methods on [`WindowAttributes`] that are specific to X11.
|
||||||
pub trait WindowBuilderExtX11 {
|
pub trait WindowAttributesExtX11 {
|
||||||
/// Create this window with a specific X11 visual.
|
/// Create this window with a specific X11 visual.
|
||||||
fn with_x11_visual(self, visual_id: XVisualID) -> Self;
|
fn with_x11_visual(self, visual_id: XVisualID) -> Self;
|
||||||
|
|
||||||
@@ -160,12 +161,12 @@ pub trait WindowBuilderExtX11 {
|
|||||||
/// ```
|
/// ```
|
||||||
/// # use winit::dpi::{LogicalSize, PhysicalSize};
|
/// # use winit::dpi::{LogicalSize, PhysicalSize};
|
||||||
/// # use winit::window::Window;
|
/// # use winit::window::Window;
|
||||||
/// # use winit::platform::x11::WindowBuilderExtX11;
|
/// # use winit::platform::x11::WindowAttributesExtX11;
|
||||||
/// // Specify the size in logical dimensions like this:
|
/// // Specify the size in logical dimensions like this:
|
||||||
/// Window::builder().with_base_size(LogicalSize::new(400.0, 200.0));
|
/// Window::default_attributes().with_base_size(LogicalSize::new(400.0, 200.0));
|
||||||
///
|
///
|
||||||
/// // Or specify the size in physical dimensions like this:
|
/// // Or specify the size in physical dimensions like this:
|
||||||
/// Window::builder().with_base_size(PhysicalSize::new(400, 200));
|
/// Window::default_attributes().with_base_size(PhysicalSize::new(400, 200));
|
||||||
/// ```
|
/// ```
|
||||||
fn with_base_size<S: Into<Size>>(self, base_size: S) -> Self;
|
fn with_base_size<S: Into<Size>>(self, base_size: S) -> Self;
|
||||||
|
|
||||||
@@ -175,34 +176,33 @@ pub trait WindowBuilderExtX11 {
|
|||||||
///
|
///
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// use winit::window::Window;
|
/// use winit::window::Window;
|
||||||
/// use winit::platform::x11::{XWindow, WindowBuilderExtX11};
|
/// use winit::event_loop::ActiveEventLoop;
|
||||||
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
|
/// use winit::platform::x11::{XWindow, WindowAttributesExtX11};
|
||||||
/// let event_loop = winit::event_loop::EventLoop::new().unwrap();
|
/// # fn create_window(event_loop: &ActiveEventLoop) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
/// let parent_window_id = std::env::args().nth(1).unwrap().parse::<XWindow>()?;
|
/// let parent_window_id = std::env::args().nth(1).unwrap().parse::<XWindow>()?;
|
||||||
/// let window = Window::builder()
|
/// let window_attributes = Window::default_attributes().with_embed_parent_window(parent_window_id);
|
||||||
/// .with_embed_parent_window(parent_window_id)
|
/// let window = event_loop.create_window(window_attributes)?;
|
||||||
/// .build(&event_loop)?;
|
|
||||||
/// # Ok(()) }
|
/// # Ok(()) }
|
||||||
/// ```
|
/// ```
|
||||||
fn with_embed_parent_window(self, parent_window_id: XWindow) -> Self;
|
fn with_embed_parent_window(self, parent_window_id: XWindow) -> Self;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowBuilderExtX11 for WindowBuilder {
|
impl WindowAttributesExtX11 for WindowAttributes {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_x11_visual(mut self, visual_id: XVisualID) -> Self {
|
fn with_x11_visual(mut self, visual_id: XVisualID) -> Self {
|
||||||
self.window.platform_specific.x11.visual_id = Some(visual_id);
|
self.platform_specific.x11.visual_id = Some(visual_id);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_x11_screen(mut self, screen_id: i32) -> Self {
|
fn with_x11_screen(mut self, screen_id: i32) -> Self {
|
||||||
self.window.platform_specific.x11.screen_id = Some(screen_id);
|
self.platform_specific.x11.screen_id = Some(screen_id);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_name(mut self, general: impl Into<String>, instance: impl Into<String>) -> Self {
|
fn with_name(mut self, general: impl Into<String>, instance: impl Into<String>) -> Self {
|
||||||
self.window.platform_specific.name = Some(crate::platform_impl::ApplicationName::new(
|
self.platform_specific.name = Some(crate::platform_impl::ApplicationName::new(
|
||||||
general.into(),
|
general.into(),
|
||||||
instance.into(),
|
instance.into(),
|
||||||
));
|
));
|
||||||
@@ -211,25 +211,25 @@ impl WindowBuilderExtX11 for WindowBuilder {
|
|||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_override_redirect(mut self, override_redirect: bool) -> Self {
|
fn with_override_redirect(mut self, override_redirect: bool) -> Self {
|
||||||
self.window.platform_specific.x11.override_redirect = override_redirect;
|
self.platform_specific.x11.override_redirect = override_redirect;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_x11_window_type(mut self, x11_window_types: Vec<WindowType>) -> Self {
|
fn with_x11_window_type(mut self, x11_window_types: Vec<WindowType>) -> Self {
|
||||||
self.window.platform_specific.x11.x11_window_types = x11_window_types;
|
self.platform_specific.x11.x11_window_types = x11_window_types;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_base_size<S: Into<Size>>(mut self, base_size: S) -> Self {
|
fn with_base_size<S: Into<Size>>(mut self, base_size: S) -> Self {
|
||||||
self.window.platform_specific.x11.base_size = Some(base_size.into());
|
self.platform_specific.x11.base_size = Some(base_size.into());
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn with_embed_parent_window(mut self, parent_window_id: XWindow) -> Self {
|
fn with_embed_parent_window(mut self, parent_window_id: XWindow) -> Self {
|
||||||
self.window.platform_specific.x11.embed_window = Some(parent_window_id);
|
self.platform_specific.x11.embed_window = Some(parent_window_id);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -174,7 +174,7 @@ pub fn character_map_and_combine_key(
|
|||||||
let key_map = match app.device_key_character_map(device_id) {
|
let key_map = match app.device_key_character_map(device_id) {
|
||||||
Ok(key_map) => key_map,
|
Ok(key_map) => key_map,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("Failed to look up `KeyCharacterMap` for device {device_id}: {err:?}");
|
tracing::warn!("Failed to look up `KeyCharacterMap` for device {device_id}: {err:?}");
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -188,7 +188,7 @@ pub fn character_map_and_combine_key(
|
|||||||
Ok(Some(key)) => Some(key),
|
Ok(Some(key)) => Some(key),
|
||||||
Ok(None) => None,
|
Ok(None) => None,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("KeyEvent: Failed to combine 'dead key' accent '{accent}' with '{unicode}': {err:?}");
|
tracing::warn!("KeyEvent: Failed to combine 'dead key' accent '{accent}' with '{unicode}': {err:?}");
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -213,7 +213,7 @@ pub fn character_map_and_combine_key(
|
|||||||
None
|
None
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("KeyEvent: Failed to get key map character: {err:?}");
|
tracing::warn!("KeyEvent: Failed to get key map character: {err:?}");
|
||||||
*combining_accent = None;
|
*combining_accent = None;
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@ use std::{
|
|||||||
marker::PhantomData,
|
marker::PhantomData,
|
||||||
sync::{
|
sync::{
|
||||||
atomic::{AtomicBool, Ordering},
|
atomic::{AtomicBool, Ordering},
|
||||||
mpsc, Arc, Mutex, RwLock,
|
mpsc, Arc, Mutex,
|
||||||
},
|
},
|
||||||
time::{Duration, Instant},
|
time::{Duration, Instant},
|
||||||
};
|
};
|
||||||
@@ -16,27 +16,29 @@ use android_activity::input::{InputEvent, KeyAction, Keycode, MotionAction};
|
|||||||
use android_activity::{
|
use android_activity::{
|
||||||
AndroidApp, AndroidAppWaker, ConfigurationRef, InputStatus, MainEvent, Rect,
|
AndroidApp, AndroidAppWaker, ConfigurationRef, InputStatus, MainEvent, Rect,
|
||||||
};
|
};
|
||||||
use log::{debug, trace, warn};
|
use tracing::{debug, trace, warn};
|
||||||
use once_cell::sync::Lazy;
|
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
cursor::Cursor,
|
cursor::Cursor,
|
||||||
dpi::{PhysicalPosition, PhysicalSize, Position, Size},
|
dpi::{PhysicalPosition, PhysicalSize, Position, Size},
|
||||||
error,
|
error,
|
||||||
event::{self, Force, InnerSizeWriter, StartCause},
|
event::{self, Force, InnerSizeWriter, StartCause},
|
||||||
event_loop::{self, ControlFlow, DeviceEvents, EventLoopWindowTarget as RootELW},
|
event_loop::{self, ActiveEventLoop as RootAEL, ControlFlow, DeviceEvents},
|
||||||
platform::pump_events::PumpStatus,
|
platform::pump_events::PumpStatus,
|
||||||
window::{
|
window::{
|
||||||
self, CursorGrabMode, ImePurpose, ResizeDirection, Theme, WindowButtons, WindowId,
|
self, CursorGrabMode, CustomCursor, CustomCursorSource, ImePurpose, ResizeDirection, Theme,
|
||||||
WindowLevel,
|
WindowButtons, WindowLevel,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use crate::{error::EventLoopError, platform_impl::Fullscreen};
|
use crate::{error::EventLoopError, platform_impl::Fullscreen};
|
||||||
|
|
||||||
mod keycodes;
|
mod keycodes;
|
||||||
|
|
||||||
static HAS_FOCUS: Lazy<RwLock<bool>> = Lazy::new(|| RwLock::new(true));
|
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursor;
|
||||||
const WINDOW_ID: u64 = 0;
|
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursorSource;
|
||||||
|
pub(crate) use crate::icon::NoIcon as PlatformIcon;
|
||||||
|
|
||||||
|
static HAS_FOCUS: AtomicBool = AtomicBool::new(true);
|
||||||
|
|
||||||
/// Returns the minimum `Option<Duration>`, taking into account that `None`
|
/// Returns the minimum `Option<Duration>`, taking into account that `None`
|
||||||
/// equates to an infinite timeout, not a zero timeout (so can't just use
|
/// equates to an infinite timeout, not a zero timeout (so can't just use
|
||||||
@@ -143,7 +145,7 @@ pub struct KeyEventExtra {}
|
|||||||
|
|
||||||
pub struct EventLoop<T: 'static> {
|
pub struct EventLoop<T: 'static> {
|
||||||
android_app: AndroidApp,
|
android_app: AndroidApp,
|
||||||
window_target: event_loop::EventLoopWindowTarget,
|
window_target: event_loop::ActiveEventLoop,
|
||||||
redraw_flag: SharedFlag,
|
redraw_flag: SharedFlag,
|
||||||
user_events_sender: mpsc::Sender<T>,
|
user_events_sender: mpsc::Sender<T>,
|
||||||
user_events_receiver: PeekableReceiver<T>, //must wake looper whenever something gets sent
|
user_events_receiver: PeekableReceiver<T>, //must wake looper whenever something gets sent
|
||||||
@@ -181,8 +183,8 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
android_app: android_app.clone(),
|
android_app: android_app.clone(),
|
||||||
window_target: event_loop::EventLoopWindowTarget {
|
window_target: event_loop::ActiveEventLoop {
|
||||||
p: EventLoopWindowTarget {
|
p: ActiveEventLoop {
|
||||||
app: android_app.clone(),
|
app: android_app.clone(),
|
||||||
control_flow: Cell::new(ControlFlow::default()),
|
control_flow: Cell::new(ControlFlow::default()),
|
||||||
exit: Cell::new(false),
|
exit: Cell::new(false),
|
||||||
@@ -207,9 +209,9 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
fn single_iteration<F>(&mut self, main_event: Option<MainEvent<'_>>, callback: &mut F)
|
fn single_iteration<F>(&mut self, main_event: Option<MainEvent<'_>>, callback: &mut F)
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &RootELW),
|
F: FnMut(event::Event<T>, &RootAEL),
|
||||||
{
|
{
|
||||||
trace!("Mainloop iteration");
|
trace!("Main loop iteration");
|
||||||
|
|
||||||
let cause = self.cause;
|
let cause = self.cause;
|
||||||
let mut pending_redraw = self.pending_redraw;
|
let mut pending_redraw = self.pending_redraw;
|
||||||
@@ -233,20 +235,20 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
warn!("TODO: find a way to notify application of content rect change");
|
warn!("TODO: find a way to notify application of content rect change");
|
||||||
}
|
}
|
||||||
MainEvent::GainedFocus => {
|
MainEvent::GainedFocus => {
|
||||||
*HAS_FOCUS.write().unwrap() = true;
|
HAS_FOCUS.store(true, Ordering::Relaxed);
|
||||||
callback(
|
callback(
|
||||||
event::Event::WindowEvent {
|
event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::Focused(true),
|
event: event::WindowEvent::Focused(true),
|
||||||
},
|
},
|
||||||
self.window_target(),
|
self.window_target(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
MainEvent::LostFocus => {
|
MainEvent::LostFocus => {
|
||||||
*HAS_FOCUS.write().unwrap() = false;
|
HAS_FOCUS.store(false, Ordering::Relaxed);
|
||||||
callback(
|
callback(
|
||||||
event::Event::WindowEvent {
|
event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::Focused(false),
|
event: event::WindowEvent::Focused(false),
|
||||||
},
|
},
|
||||||
self.window_target(),
|
self.window_target(),
|
||||||
@@ -261,7 +263,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
MonitorHandle::new(self.android_app.clone()).size(),
|
MonitorHandle::new(self.android_app.clone()).size(),
|
||||||
));
|
));
|
||||||
let event = event::Event::WindowEvent {
|
let event = event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::ScaleFactorChanged {
|
event: event::WindowEvent::ScaleFactorChanged {
|
||||||
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(
|
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(
|
||||||
&new_inner_size,
|
&new_inner_size,
|
||||||
@@ -328,7 +330,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("Failed to get input events iterator: {err:?}");
|
tracing::warn!("Failed to get input events iterator: {err:?}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -349,7 +351,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
PhysicalSize::new(0, 0)
|
PhysicalSize::new(0, 0)
|
||||||
};
|
};
|
||||||
let event = event::Event::WindowEvent {
|
let event = event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::Resized(size),
|
event: event::WindowEvent::Resized(size),
|
||||||
};
|
};
|
||||||
callback(event, self.window_target());
|
callback(event, self.window_target());
|
||||||
@@ -359,7 +361,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
if pending_redraw {
|
if pending_redraw {
|
||||||
pending_redraw = false;
|
pending_redraw = false;
|
||||||
let event = event::Event::WindowEvent {
|
let event = event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::RedrawRequested,
|
event: event::WindowEvent::RedrawRequested,
|
||||||
};
|
};
|
||||||
callback(event, self.window_target());
|
callback(event, self.window_target());
|
||||||
@@ -379,13 +381,13 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
callback: &mut F,
|
callback: &mut F,
|
||||||
) -> InputStatus
|
) -> InputStatus
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &RootELW),
|
F: FnMut(event::Event<T>, &RootAEL),
|
||||||
{
|
{
|
||||||
let mut input_status = InputStatus::Handled;
|
let mut input_status = InputStatus::Handled;
|
||||||
match event {
|
match event {
|
||||||
InputEvent::MotionEvent(motion_event) => {
|
InputEvent::MotionEvent(motion_event) => {
|
||||||
let window_id = WindowId::from(WINDOW_ID);
|
let window_id = window::WindowId(WindowId);
|
||||||
let device_id = event::DeviceId::from(motion_event.device_id() as u64);
|
let device_id = event::DeviceId(DeviceId(motion_event.device_id()));
|
||||||
|
|
||||||
let phase = match motion_event.action() {
|
let phase = match motion_event.action() {
|
||||||
MotionAction::Down | MotionAction::PointerDown => {
|
MotionAction::Down | MotionAction::PointerDown => {
|
||||||
@@ -455,9 +457,9 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let event = event::Event::WindowEvent {
|
let event = event::Event::WindowEvent {
|
||||||
window_id: WindowId::from(WINDOW_ID),
|
window_id: window::WindowId(WindowId),
|
||||||
event: event::WindowEvent::KeyboardInput {
|
event: event::WindowEvent::KeyboardInput {
|
||||||
device_id: event::DeviceId::from(key.device_id() as u64),
|
device_id: event::DeviceId(DeviceId(key.device_id())),
|
||||||
event: event::KeyEvent {
|
event: event::KeyEvent {
|
||||||
state,
|
state,
|
||||||
physical_key: keycodes::to_physical_key(keycode),
|
physical_key: keycodes::to_physical_key(keycode),
|
||||||
@@ -465,9 +467,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
location: keycodes::to_location(keycode),
|
location: keycodes::to_location(keycode),
|
||||||
repeat: key.repeat_count() > 0,
|
repeat: key.repeat_count() > 0,
|
||||||
text: None,
|
text: None,
|
||||||
extra: event::KeyExtra {
|
platform_specific: KeyEventExtra {},
|
||||||
extra: KeyEventExtra {},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
is_synthetic: false,
|
is_synthetic: false,
|
||||||
},
|
},
|
||||||
@@ -486,14 +486,14 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn run<F>(mut self, event_handler: F) -> Result<(), EventLoopError>
|
pub fn run<F>(mut self, event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &event_loop::EventLoopWindowTarget),
|
F: FnMut(event::Event<T>, &event_loop::ActiveEventLoop),
|
||||||
{
|
{
|
||||||
self.run_on_demand(event_handler)
|
self.run_on_demand(event_handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run_on_demand<F>(&mut self, mut event_handler: F) -> Result<(), EventLoopError>
|
pub fn run_on_demand<F>(&mut self, mut event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &event_loop::EventLoopWindowTarget),
|
F: FnMut(event::Event<T>, &event_loop::ActiveEventLoop),
|
||||||
{
|
{
|
||||||
loop {
|
loop {
|
||||||
match self.pump_events(None, &mut event_handler) {
|
match self.pump_events(None, &mut event_handler) {
|
||||||
@@ -512,7 +512,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn pump_events<F>(&mut self, timeout: Option<Duration>, mut callback: F) -> PumpStatus
|
pub fn pump_events<F>(&mut self, timeout: Option<Duration>, mut callback: F) -> PumpStatus
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &RootELW),
|
F: FnMut(event::Event<T>, &RootAEL),
|
||||||
{
|
{
|
||||||
if !self.loop_running {
|
if !self.loop_running {
|
||||||
self.loop_running = true;
|
self.loop_running = true;
|
||||||
@@ -545,7 +545,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
fn poll_events_with_timeout<F>(&mut self, mut timeout: Option<Duration>, mut callback: F)
|
fn poll_events_with_timeout<F>(&mut self, mut timeout: Option<Duration>, mut callback: F)
|
||||||
where
|
where
|
||||||
F: FnMut(event::Event<T>, &RootELW),
|
F: FnMut(event::Event<T>, &RootAEL),
|
||||||
{
|
{
|
||||||
let start = Instant::now();
|
let start = Instant::now();
|
||||||
|
|
||||||
@@ -621,7 +621,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn window_target(&self) -> &event_loop::EventLoopWindowTarget {
|
pub fn window_target(&self) -> &event_loop::ActiveEventLoop {
|
||||||
&self.window_target
|
&self.window_target
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -665,18 +665,25 @@ impl<T> EventLoopProxy<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct EventLoopWindowTarget {
|
pub struct ActiveEventLoop {
|
||||||
app: AndroidApp,
|
app: AndroidApp,
|
||||||
control_flow: Cell<ControlFlow>,
|
control_flow: Cell<ControlFlow>,
|
||||||
exit: Cell<bool>,
|
exit: Cell<bool>,
|
||||||
redraw_requester: RedrawRequester,
|
redraw_requester: RedrawRequester,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
||||||
Some(MonitorHandle::new(self.app.clone()))
|
Some(MonitorHandle::new(self.app.clone()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn create_custom_cursor(&self, source: CustomCursorSource) -> CustomCursor {
|
||||||
|
let _ = source.inner;
|
||||||
|
CustomCursor {
|
||||||
|
inner: PlatformCustomCursor,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
||||||
let mut v = VecDeque::with_capacity(1);
|
let mut v = VecDeque::with_capacity(1);
|
||||||
v.push_back(MonitorHandle::new(self.app.clone()));
|
v.push_back(MonitorHandle::new(self.app.clone()));
|
||||||
@@ -746,8 +753,38 @@ impl OwnedDisplayHandle {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||||
|
pub(crate) struct WindowId;
|
||||||
|
|
||||||
|
impl WindowId {
|
||||||
|
pub const fn dummy() -> Self {
|
||||||
|
WindowId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<WindowId> for u64 {
|
||||||
|
fn from(_: WindowId) -> Self {
|
||||||
|
0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<u64> for WindowId {
|
||||||
|
fn from(_: u64) -> Self {
|
||||||
|
Self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||||
|
pub struct DeviceId(i32);
|
||||||
|
|
||||||
|
impl DeviceId {
|
||||||
|
pub const fn dummy() -> Self {
|
||||||
|
DeviceId(0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
|
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
|
||||||
pub struct PlatformSpecificWindowBuilderAttributes;
|
pub struct PlatformSpecificWindowAttributes;
|
||||||
|
|
||||||
pub(crate) struct Window {
|
pub(crate) struct Window {
|
||||||
app: AndroidApp,
|
app: AndroidApp,
|
||||||
@@ -756,7 +793,7 @@ pub(crate) struct Window {
|
|||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
el: &EventLoopWindowTarget,
|
el: &ActiveEventLoop,
|
||||||
_window_attrs: window::WindowAttributes,
|
_window_attrs: window::WindowAttributes,
|
||||||
) -> Result<Self, error::OsError> {
|
) -> Result<Self, error::OsError> {
|
||||||
// FIXME this ignores requested window attributes
|
// FIXME this ignores requested window attributes
|
||||||
@@ -776,7 +813,7 @@ impl Window {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn id(&self) -> WindowId {
|
pub fn id(&self) -> WindowId {
|
||||||
WindowId::from(WINDOW_ID)
|
WindowId
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
||||||
@@ -977,7 +1014,7 @@ impl Window {
|
|||||||
if let Some(native_window) = self.app.native_window().as_ref() {
|
if let Some(native_window) = self.app.native_window().as_ref() {
|
||||||
native_window.raw_window_handle()
|
native_window.raw_window_handle()
|
||||||
} else {
|
} else {
|
||||||
log::error!("Cannot get the native window, it's null and will always be null before Event::Resumed and after Event::Suspended. Make sure you only call this function between those events.");
|
tracing::error!("Cannot get the native window, it's null and will always be null before Event::Resumed and after Event::Suspended. Make sure you only call this function between those events.");
|
||||||
Err(rwh_06::HandleError::Unavailable)
|
Err(rwh_06::HandleError::Unavailable)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1008,7 +1045,7 @@ impl Window {
|
|||||||
pub fn set_content_protected(&self, _protected: bool) {}
|
pub fn set_content_protected(&self, _protected: bool) {}
|
||||||
|
|
||||||
pub fn has_focus(&self) -> bool {
|
pub fn has_focus(&self) -> bool {
|
||||||
*HAS_FOCUS.read().unwrap()
|
HAS_FOCUS.load(Ordering::Relaxed)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn title(&self) -> String {
|
pub fn title(&self) -> String {
|
||||||
@@ -1028,10 +1065,6 @@ impl Display for OsError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursor;
|
|
||||||
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursorBuilder;
|
|
||||||
pub(crate) use crate::icon::NoIcon as PlatformIcon;
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
||||||
pub struct MonitorHandle {
|
pub struct MonitorHandle {
|
||||||
app: AndroidApp,
|
app: AndroidApp,
|
||||||
103
src/platform_impl/ios/app_delegate.rs
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
use icrate::Foundation::{MainThreadMarker, NSObject, NSObjectProtocol};
|
||||||
|
use objc2::{declare_class, mutability, ClassType, DeclaredClass};
|
||||||
|
|
||||||
|
use super::app_state::{self, EventWrapper};
|
||||||
|
use super::uikit::{UIApplication, UIWindow};
|
||||||
|
use super::window::WinitUIWindow;
|
||||||
|
use crate::{
|
||||||
|
event::{Event, WindowEvent},
|
||||||
|
window::WindowId as RootWindowId,
|
||||||
|
};
|
||||||
|
|
||||||
|
declare_class!(
|
||||||
|
pub struct AppDelegate;
|
||||||
|
|
||||||
|
unsafe impl ClassType for AppDelegate {
|
||||||
|
type Super = NSObject;
|
||||||
|
type Mutability = mutability::InteriorMutable;
|
||||||
|
const NAME: &'static str = "WinitApplicationDelegate";
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeclaredClass for AppDelegate {}
|
||||||
|
|
||||||
|
// UIApplicationDelegate protocol
|
||||||
|
unsafe impl AppDelegate {
|
||||||
|
#[method(application:didFinishLaunchingWithOptions:)]
|
||||||
|
fn did_finish_launching(&self, _application: &UIApplication, _: *mut NSObject) -> bool {
|
||||||
|
app_state::did_finish_launching(MainThreadMarker::new().unwrap());
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationDidBecomeActive:)]
|
||||||
|
fn did_become_active(&self, _application: &UIApplication) {
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::Resumed))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationWillResignActive:)]
|
||||||
|
fn will_resign_active(&self, _application: &UIApplication) {
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::Suspended))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationWillEnterForeground:)]
|
||||||
|
fn will_enter_foreground(&self, application: &UIApplication) {
|
||||||
|
self.send_occluded_event_for_all_windows(application, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationDidEnterBackground:)]
|
||||||
|
fn did_enter_background(&self, application: &UIApplication) {
|
||||||
|
self.send_occluded_event_for_all_windows(application, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationWillTerminate:)]
|
||||||
|
fn will_terminate(&self, application: &UIApplication) {
|
||||||
|
let mut events = Vec::new();
|
||||||
|
for window in application.windows().iter() {
|
||||||
|
if window.is_kind_of::<WinitUIWindow>() {
|
||||||
|
// SAFETY: We just checked that the window is a `winit` window
|
||||||
|
let window = unsafe {
|
||||||
|
let ptr: *const UIWindow = window;
|
||||||
|
let ptr: *const WinitUIWindow = ptr.cast();
|
||||||
|
&*ptr
|
||||||
|
};
|
||||||
|
events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
|
window_id: RootWindowId(window.id()),
|
||||||
|
event: WindowEvent::Destroyed,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_events(mtm, events);
|
||||||
|
app_state::terminated(mtm);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(applicationDidReceiveMemoryWarning:)]
|
||||||
|
fn did_receive_memory_warning(&self, _application: &UIApplication) {
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::MemoryWarning))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
impl AppDelegate {
|
||||||
|
fn send_occluded_event_for_all_windows(&self, application: &UIApplication, occluded: bool) {
|
||||||
|
let mut events = Vec::new();
|
||||||
|
for window in application.windows().iter() {
|
||||||
|
if window.is_kind_of::<WinitUIWindow>() {
|
||||||
|
// SAFETY: We just checked that the window is a `winit` window
|
||||||
|
let window = unsafe {
|
||||||
|
let ptr: *const UIWindow = window;
|
||||||
|
let ptr: *const WinitUIWindow = ptr.cast();
|
||||||
|
&*ptr
|
||||||
|
};
|
||||||
|
events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
|
window_id: RootWindowId(window.id()),
|
||||||
|
event: WindowEvent::Occluded(occluded),
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_events(mtm, events);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,7 +6,7 @@ use std::{
|
|||||||
fmt, mem,
|
fmt, mem,
|
||||||
os::raw::c_void,
|
os::raw::c_void,
|
||||||
ptr,
|
ptr,
|
||||||
sync::{Arc, Mutex},
|
sync::{Arc, Mutex, OnceLock},
|
||||||
time::Instant,
|
time::Instant,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -22,14 +22,14 @@ use icrate::Foundation::{
|
|||||||
use objc2::rc::Id;
|
use objc2::rc::Id;
|
||||||
use objc2::runtime::AnyObject;
|
use objc2::runtime::AnyObject;
|
||||||
use objc2::{msg_send, sel};
|
use objc2::{msg_send, sel};
|
||||||
use once_cell::sync::Lazy;
|
|
||||||
|
|
||||||
use super::uikit::UIView;
|
use super::uikit::UIView;
|
||||||
use super::view::WinitUIWindow;
|
use super::window::WinitUIWindow;
|
||||||
use crate::{
|
use crate::{
|
||||||
dpi::PhysicalSize,
|
dpi::PhysicalSize,
|
||||||
event::{Event, InnerSizeWriter, StartCause, WindowEvent},
|
event::{Event, InnerSizeWriter, StartCause, WindowEvent},
|
||||||
event_loop::{ControlFlow, EventLoopWindowTarget as RootEventLoopWindowTarget},
|
event_loop::{ActiveEventLoop as RootActiveEventLoop, ControlFlow},
|
||||||
|
window::WindowId as RootWindowId,
|
||||||
};
|
};
|
||||||
|
|
||||||
macro_rules! bug {
|
macro_rules! bug {
|
||||||
@@ -49,8 +49,8 @@ pub(crate) struct HandlePendingUserEvents;
|
|||||||
|
|
||||||
pub(crate) struct EventLoopHandler {
|
pub(crate) struct EventLoopHandler {
|
||||||
#[allow(clippy::type_complexity)]
|
#[allow(clippy::type_complexity)]
|
||||||
pub(crate) handler: Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootEventLoopWindowTarget)>,
|
pub(crate) handler: Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootActiveEventLoop)>,
|
||||||
pub(crate) event_loop: RootEventLoopWindowTarget,
|
pub(crate) event_loop: RootActiveEventLoop,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for EventLoopHandler {
|
impl fmt::Debug for EventLoopHandler {
|
||||||
@@ -92,14 +92,16 @@ enum UserCallbackTransitionResult<'a> {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_redraw(event: &Event<HandlePendingUserEvents>) -> bool {
|
impl Event<HandlePendingUserEvents> {
|
||||||
matches!(
|
fn is_redraw(&self) -> bool {
|
||||||
event,
|
matches!(
|
||||||
Event::WindowEvent {
|
self,
|
||||||
event: WindowEvent::RedrawRequested,
|
Event::WindowEvent {
|
||||||
..
|
event: WindowEvent::RedrawRequested,
|
||||||
}
|
..
|
||||||
)
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// this is the state machine for the app lifecycle
|
// this is the state machine for the app lifecycle
|
||||||
@@ -548,7 +550,7 @@ pub fn did_finish_launching(mtm: MainThreadMarker) {
|
|||||||
//
|
//
|
||||||
// relevant iOS log:
|
// relevant iOS log:
|
||||||
// ```
|
// ```
|
||||||
// [ApplicationLifecycle] Windows were created before application initialzation
|
// [ApplicationLifecycle] Windows were created before application initialization
|
||||||
// completed. This may result in incorrect visual appearance.
|
// completed. This may result in incorrect visual appearance.
|
||||||
// ```
|
// ```
|
||||||
let screen = window.screen();
|
let screen = window.screen();
|
||||||
@@ -619,10 +621,10 @@ pub(crate) fn handle_nonuser_events<I: IntoIterator<Item = EventWrapper>>(
|
|||||||
for wrapper in events {
|
for wrapper in events {
|
||||||
match wrapper {
|
match wrapper {
|
||||||
EventWrapper::StaticEvent(event) => {
|
EventWrapper::StaticEvent(event) => {
|
||||||
if !processing_redraws && is_redraw(&event) {
|
if !processing_redraws && event.is_redraw() {
|
||||||
log::info!("processing `RedrawRequested` during the main event loop");
|
tracing::info!("processing `RedrawRequested` during the main event loop");
|
||||||
} else if processing_redraws && !is_redraw(&event) {
|
} else if processing_redraws && !event.is_redraw() {
|
||||||
log::warn!(
|
tracing::warn!(
|
||||||
"processing non `RedrawRequested` event after the main event loop: {:#?}",
|
"processing non `RedrawRequested` event after the main event loop: {:#?}",
|
||||||
event
|
event
|
||||||
);
|
);
|
||||||
@@ -673,10 +675,10 @@ pub(crate) fn handle_nonuser_events<I: IntoIterator<Item = EventWrapper>>(
|
|||||||
for wrapper in queued_events {
|
for wrapper in queued_events {
|
||||||
match wrapper {
|
match wrapper {
|
||||||
EventWrapper::StaticEvent(event) => {
|
EventWrapper::StaticEvent(event) => {
|
||||||
if !processing_redraws && is_redraw(&event) {
|
if !processing_redraws && event.is_redraw() {
|
||||||
log::info!("processing `RedrawRequested` during the main event loop");
|
tracing::info!("processing `RedrawRequested` during the main event loop");
|
||||||
} else if processing_redraws && !is_redraw(&event) {
|
} else if processing_redraws && !event.is_redraw() {
|
||||||
log::warn!(
|
tracing::warn!(
|
||||||
"processing non-`RedrawRequested` event after the main event loop: {:#?}",
|
"processing non-`RedrawRequested` event after the main event loop: {:#?}",
|
||||||
event
|
event
|
||||||
);
|
);
|
||||||
@@ -765,7 +767,7 @@ pub fn handle_main_events_cleared(mtm: MainThreadMarker) {
|
|||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|window| {
|
.map(|window| {
|
||||||
EventWrapper::StaticEvent(Event::WindowEvent {
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::RedrawRequested,
|
event: WindowEvent::RedrawRequested,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@@ -796,7 +798,7 @@ fn handle_hidpi_proxy(handler: &mut EventLoopHandler, event: ScaleFactorChanged)
|
|||||||
} = event;
|
} = event;
|
||||||
let new_inner_size = Arc::new(Mutex::new(suggested_size));
|
let new_inner_size = Arc::new(Mutex::new(suggested_size));
|
||||||
let event = Event::WindowEvent {
|
let event = Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::ScaleFactorChanged {
|
event: WindowEvent::ScaleFactorChanged {
|
||||||
scale_factor,
|
scale_factor,
|
||||||
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(&new_inner_size)),
|
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(&new_inner_size)),
|
||||||
@@ -899,17 +901,17 @@ macro_rules! os_capabilities {
|
|||||||
os_version: NSOperatingSystemVersion,
|
os_version: NSOperatingSystemVersion,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<NSOperatingSystemVersion> for OSCapabilities {
|
impl OSCapabilities {
|
||||||
fn from(os_version: NSOperatingSystemVersion) -> OSCapabilities {
|
fn from_os_version(os_version: NSOperatingSystemVersion) -> Self {
|
||||||
$(let $name = meets_requirements(os_version, $major, $minor);)*
|
$(let $name = meets_requirements(os_version, $major, $minor);)*
|
||||||
OSCapabilities { $($name,)* os_version, }
|
Self { $($name,)* os_version, }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl OSCapabilities {$(
|
impl OSCapabilities {$(
|
||||||
$(#[$attr])*
|
$(#[$attr])*
|
||||||
pub fn $error_name(&self, extra_msg: &str) {
|
pub fn $error_name(&self, extra_msg: &str) {
|
||||||
log::warn!(
|
tracing::warn!(
|
||||||
concat!("`", $objc_call, "` requires iOS {}.{}+. This device is running iOS {}.{}.{}. {}"),
|
concat!("`", $objc_call, "` requires iOS {}.{}+. This device is running iOS {}.{}.{}. {}"),
|
||||||
$major, $minor, self.os_version.majorVersion, self.os_version.minorVersion, self.os_version.patchVersion,
|
$major, $minor, self.os_version.majorVersion, self.os_version.minorVersion, self.os_version.patchVersion,
|
||||||
extra_msg
|
extra_msg
|
||||||
@@ -947,25 +949,29 @@ fn meets_requirements(
|
|||||||
(version.majorVersion, version.minorVersion) >= (required_major, required_minor)
|
(version.majorVersion, version.minorVersion) >= (required_major, required_minor)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn os_capabilities() -> OSCapabilities {
|
fn get_version() -> NSOperatingSystemVersion {
|
||||||
static OS_CAPABILITIES: Lazy<OSCapabilities> = Lazy::new(|| {
|
unsafe {
|
||||||
let version: NSOperatingSystemVersion = unsafe {
|
let process_info = NSProcessInfo::processInfo();
|
||||||
let process_info = NSProcessInfo::processInfo();
|
let atleast_ios_8: bool = msg_send![
|
||||||
let atleast_ios_8: bool = msg_send![
|
&process_info,
|
||||||
&process_info,
|
respondsToSelector: sel!(operatingSystemVersion)
|
||||||
respondsToSelector: sel!(operatingSystemVersion)
|
];
|
||||||
];
|
// winit requires atleast iOS 8 because no one has put the time into supporting earlier os versions.
|
||||||
// winit requires atleast iOS 8 because no one has put the time into supporting earlier os versions.
|
// Older iOS versions are increasingly difficult to test. For example, Xcode 11 does not support
|
||||||
// Older iOS versions are increasingly difficult to test. For example, Xcode 11 does not support
|
// debugging on devices with an iOS version of less than 8. Another example, in order to use an iOS
|
||||||
// debugging on devices with an iOS version of less than 8. Another example, in order to use an iOS
|
// simulator older than iOS 8, you must download an older version of Xcode (<9), and at least Xcode 7
|
||||||
// simulator older than iOS 8, you must download an older version of Xcode (<9), and at least Xcode 7
|
// has been tested to not even run on macOS 10.15 - Xcode 8 might?
|
||||||
// has been tested to not even run on macOS 10.15 - Xcode 8 might?
|
//
|
||||||
//
|
// The minimum required iOS version is likely to grow in the future.
|
||||||
// The minimum required iOS version is likely to grow in the future.
|
assert!(atleast_ios_8, "`winit` requires iOS version 8 or greater");
|
||||||
assert!(atleast_ios_8, "`winit` requires iOS version 8 or greater");
|
process_info.operatingSystemVersion()
|
||||||
process_info.operatingSystemVersion()
|
}
|
||||||
};
|
}
|
||||||
version.into()
|
|
||||||
});
|
pub fn os_capabilities() -> OSCapabilities {
|
||||||
OS_CAPABILITIES.clone()
|
// Cache the version lookup for efficiency
|
||||||
|
static OS_CAPABILITIES: OnceLock<OSCapabilities> = OnceLock::new();
|
||||||
|
OS_CAPABILITIES
|
||||||
|
.get_or_init(|| OSCapabilities::from_os_version(get_version()))
|
||||||
|
.clone()
|
||||||
}
|
}
|
||||||
@@ -20,25 +20,33 @@ use crate::{
|
|||||||
error::EventLoopError,
|
error::EventLoopError,
|
||||||
event::Event,
|
event::Event,
|
||||||
event_loop::{
|
event_loop::{
|
||||||
ControlFlow, DeviceEvents, EventLoopClosed,
|
ActiveEventLoop as RootActiveEventLoop, ControlFlow, DeviceEvents, EventLoopClosed,
|
||||||
EventLoopWindowTarget as RootEventLoopWindowTarget,
|
|
||||||
},
|
},
|
||||||
platform::ios::Idiom,
|
platform::ios::Idiom,
|
||||||
platform_impl::platform::app_state::{EventLoopHandler, HandlePendingUserEvents},
|
platform_impl::platform::app_state::{EventLoopHandler, HandlePendingUserEvents},
|
||||||
|
window::{CustomCursor, CustomCursorSource},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{app_state, monitor, view, MonitorHandle};
|
use super::{app_delegate::AppDelegate, uikit::UIUserInterfaceIdiom};
|
||||||
|
use super::{app_state, monitor, MonitorHandle};
|
||||||
use super::{
|
use super::{
|
||||||
app_state::AppState,
|
app_state::AppState,
|
||||||
uikit::{UIApplication, UIApplicationMain, UIDevice, UIScreen},
|
uikit::{UIApplication, UIApplicationMain, UIDevice, UIScreen},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct EventLoopWindowTarget {
|
pub struct ActiveEventLoop {
|
||||||
pub(super) mtm: MainThreadMarker,
|
pub(super) mtm: MainThreadMarker,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
|
pub fn create_custom_cursor(&self, source: CustomCursorSource) -> CustomCursor {
|
||||||
|
let _ = source.inner;
|
||||||
|
CustomCursor {
|
||||||
|
inner: super::PlatformCustomCursor,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
||||||
monitor::uiscreens(self.mtm)
|
monitor::uiscreens(self.mtm)
|
||||||
}
|
}
|
||||||
@@ -76,8 +84,8 @@ impl EventLoopWindowTarget {
|
|||||||
|
|
||||||
pub(crate) fn exit(&self) {
|
pub(crate) fn exit(&self) {
|
||||||
// https://developer.apple.com/library/archive/qa/qa1561/_index.html
|
// https://developer.apple.com/library/archive/qa/qa1561/_index.html
|
||||||
// it is not possible to quit an iOS app gracefully and programatically
|
// it is not possible to quit an iOS app gracefully and programmatically
|
||||||
log::warn!("`ControlFlow::Exit` ignored on iOS");
|
tracing::warn!("`ControlFlow::Exit` ignored on iOS");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn exiting(&self) -> bool {
|
pub(crate) fn exiting(&self) -> bool {
|
||||||
@@ -109,9 +117,9 @@ impl OwnedDisplayHandle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn map_user_event<T: 'static>(
|
fn map_user_event<T: 'static>(
|
||||||
mut handler: impl FnMut(Event<T>, &RootEventLoopWindowTarget),
|
mut handler: impl FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
receiver: mpsc::Receiver<T>,
|
receiver: mpsc::Receiver<T>,
|
||||||
) -> impl FnMut(Event<HandlePendingUserEvents>, &RootEventLoopWindowTarget) {
|
) -> impl FnMut(Event<HandlePendingUserEvents>, &RootActiveEventLoop) {
|
||||||
move |event, window_target| match event.map_nonuser_event() {
|
move |event, window_target| match event.map_nonuser_event() {
|
||||||
Ok(event) => (handler)(event, window_target),
|
Ok(event) => (handler)(event, window_target),
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
@@ -126,7 +134,7 @@ pub struct EventLoop<T: 'static> {
|
|||||||
mtm: MainThreadMarker,
|
mtm: MainThreadMarker,
|
||||||
sender: Sender<T>,
|
sender: Sender<T>,
|
||||||
receiver: Receiver<T>,
|
receiver: Receiver<T>,
|
||||||
window_target: RootEventLoopWindowTarget,
|
window_target: RootActiveEventLoop,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
@@ -158,8 +166,8 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
mtm,
|
mtm,
|
||||||
sender,
|
sender,
|
||||||
receiver,
|
receiver,
|
||||||
window_target: RootEventLoopWindowTarget {
|
window_target: RootActiveEventLoop {
|
||||||
p: EventLoopWindowTarget { mtm },
|
p: ActiveEventLoop { mtm },
|
||||||
_marker: PhantomData,
|
_marker: PhantomData,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@@ -167,7 +175,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn run<F>(self, handler: F) -> !
|
pub fn run<F>(self, handler: F) -> !
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &RootEventLoopWindowTarget),
|
F: FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
{
|
{
|
||||||
let application = UIApplication::shared(self.mtm);
|
let application = UIApplication::shared(self.mtm);
|
||||||
assert!(
|
assert!(
|
||||||
@@ -181,8 +189,8 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
let handler = unsafe {
|
let handler = unsafe {
|
||||||
std::mem::transmute::<
|
std::mem::transmute::<
|
||||||
Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootEventLoopWindowTarget)>,
|
Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootActiveEventLoop)>,
|
||||||
Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootEventLoopWindowTarget)>,
|
Box<dyn FnMut(Event<HandlePendingUserEvents>, &RootActiveEventLoop)>,
|
||||||
>(Box::new(handler))
|
>(Box::new(handler))
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -194,14 +202,14 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
app_state::will_launch(self.mtm, handler);
|
app_state::will_launch(self.mtm, handler);
|
||||||
|
|
||||||
// Ensure application delegate is initialized
|
// Ensure application delegate is initialized
|
||||||
view::WinitApplicationDelegate::class();
|
let _ = AppDelegate::class();
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
UIApplicationMain(
|
UIApplicationMain(
|
||||||
0,
|
0,
|
||||||
ptr::null(),
|
ptr::null(),
|
||||||
None,
|
None,
|
||||||
Some(&NSString::from_str("WinitApplicationDelegate")),
|
Some(&NSString::from_str(AppDelegate::NAME)),
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
unreachable!()
|
unreachable!()
|
||||||
@@ -211,7 +219,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
EventLoopProxy::new(self.sender.clone())
|
EventLoopProxy::new(self.sender.clone())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn window_target(&self) -> &RootEventLoopWindowTarget {
|
pub fn window_target(&self) -> &RootActiveEventLoop {
|
||||||
&self.window_target
|
&self.window_target
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -219,7 +227,14 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
// EventLoopExtIOS
|
// EventLoopExtIOS
|
||||||
impl<T: 'static> EventLoop<T> {
|
impl<T: 'static> EventLoop<T> {
|
||||||
pub fn idiom(&self) -> Idiom {
|
pub fn idiom(&self) -> Idiom {
|
||||||
UIDevice::current(self.mtm).userInterfaceIdiom().into()
|
match UIDevice::current(self.mtm).userInterfaceIdiom() {
|
||||||
|
UIUserInterfaceIdiom::Unspecified => Idiom::Unspecified,
|
||||||
|
UIUserInterfaceIdiom::Phone => Idiom::Phone,
|
||||||
|
UIUserInterfaceIdiom::Pad => Idiom::Pad,
|
||||||
|
UIUserInterfaceIdiom::TV => Idiom::TV,
|
||||||
|
UIUserInterfaceIdiom::CarPlay => Idiom::CarPlay,
|
||||||
|
_ => Idiom::Unspecified,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -229,6 +244,7 @@ pub struct EventLoopProxy<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsafe impl<T: Send> Send for EventLoopProxy<T> {}
|
unsafe impl<T: Send> Send for EventLoopProxy<T> {}
|
||||||
|
unsafe impl<T: Send> Sync for EventLoopProxy<T> {}
|
||||||
|
|
||||||
impl<T> Clone for EventLoopProxy<T> {
|
impl<T> Clone for EventLoopProxy<T> {
|
||||||
fn clone(&self) -> EventLoopProxy<T> {
|
fn clone(&self) -> EventLoopProxy<T> {
|
||||||
55
src/platform_impl/ios/mod.rs
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
#![cfg(ios_platform)]
|
||||||
|
#![allow(clippy::let_unit_value)]
|
||||||
|
|
||||||
|
mod app_delegate;
|
||||||
|
mod app_state;
|
||||||
|
mod event_loop;
|
||||||
|
mod monitor;
|
||||||
|
mod uikit;
|
||||||
|
mod view;
|
||||||
|
mod view_controller;
|
||||||
|
mod window;
|
||||||
|
|
||||||
|
use std::fmt;
|
||||||
|
|
||||||
|
use crate::event::DeviceId as RootDeviceId;
|
||||||
|
|
||||||
|
pub(crate) use self::{
|
||||||
|
event_loop::{
|
||||||
|
ActiveEventLoop, EventLoop, EventLoopProxy, OwnedDisplayHandle,
|
||||||
|
PlatformSpecificEventLoopAttributes,
|
||||||
|
},
|
||||||
|
monitor::{MonitorHandle, VideoModeHandle},
|
||||||
|
window::{PlatformSpecificWindowAttributes, Window, WindowId},
|
||||||
|
};
|
||||||
|
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursor;
|
||||||
|
pub(crate) use crate::cursor::NoCustomCursor as PlatformCustomCursorSource;
|
||||||
|
pub(crate) use crate::icon::NoIcon as PlatformIcon;
|
||||||
|
pub(crate) use crate::platform_impl::Fullscreen;
|
||||||
|
|
||||||
|
/// There is no way to detect which device that performed a certain event in
|
||||||
|
/// UIKit (i.e. you can't differentiate between different external keyboards,
|
||||||
|
/// or whether it was the main touchscreen, assistive technologies, or some
|
||||||
|
/// other pointer device that caused a touch event).
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct DeviceId;
|
||||||
|
|
||||||
|
impl DeviceId {
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
DeviceId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) const DEVICE_ID: RootDeviceId = RootDeviceId(DeviceId);
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||||
|
pub struct KeyEventExtra {}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum OsError {}
|
||||||
|
|
||||||
|
impl fmt::Display for OsError {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
write!(f, "os error")
|
||||||
|
}
|
||||||
|
}
|
||||||
41
src/platform_impl/ios/uikit/device.rs
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
use icrate::Foundation::{MainThreadMarker, NSInteger, NSObject};
|
||||||
|
use objc2::encode::{Encode, Encoding};
|
||||||
|
use objc2::rc::Id;
|
||||||
|
use objc2::{extern_class, extern_methods, msg_send_id, mutability, ClassType};
|
||||||
|
|
||||||
|
extern_class!(
|
||||||
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
||||||
|
pub(crate) struct UIDevice;
|
||||||
|
|
||||||
|
unsafe impl ClassType for UIDevice {
|
||||||
|
type Super = NSObject;
|
||||||
|
type Mutability = mutability::InteriorMutable;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
extern_methods!(
|
||||||
|
unsafe impl UIDevice {
|
||||||
|
pub fn current(_mtm: MainThreadMarker) -> Id<Self> {
|
||||||
|
unsafe { msg_send_id![Self::class(), currentDevice] }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(userInterfaceIdiom)]
|
||||||
|
pub fn userInterfaceIdiom(&self) -> UIUserInterfaceIdiom;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
#[repr(transparent)]
|
||||||
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||||
|
pub struct UIUserInterfaceIdiom(NSInteger);
|
||||||
|
|
||||||
|
unsafe impl Encode for UIUserInterfaceIdiom {
|
||||||
|
const ENCODING: Encoding = NSInteger::ENCODING;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl UIUserInterfaceIdiom {
|
||||||
|
pub const Unspecified: UIUserInterfaceIdiom = UIUserInterfaceIdiom(-1);
|
||||||
|
pub const Phone: UIUserInterfaceIdiom = UIUserInterfaceIdiom(0);
|
||||||
|
pub const Pad: UIUserInterfaceIdiom = UIUserInterfaceIdiom(1);
|
||||||
|
pub const TV: UIUserInterfaceIdiom = UIUserInterfaceIdiom(2);
|
||||||
|
pub const CarPlay: UIUserInterfaceIdiom = UIUserInterfaceIdiom(3);
|
||||||
|
}
|
||||||
14
src/platform_impl/ios/uikit/geometry.rs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
use icrate::Foundation::NSUInteger;
|
||||||
|
use objc2::encode::{Encode, Encoding};
|
||||||
|
|
||||||
|
#[repr(transparent)]
|
||||||
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||||
|
pub struct UIRectEdge(pub NSUInteger);
|
||||||
|
|
||||||
|
impl UIRectEdge {
|
||||||
|
pub const NONE: Self = Self(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl Encode for UIRectEdge {
|
||||||
|
const ENCODING: Encoding = NSUInteger::ENCODING;
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ mod application;
|
|||||||
mod coordinate_space;
|
mod coordinate_space;
|
||||||
mod device;
|
mod device;
|
||||||
mod event;
|
mod event;
|
||||||
|
mod geometry;
|
||||||
mod gesture_recognizer;
|
mod gesture_recognizer;
|
||||||
mod responder;
|
mod responder;
|
||||||
mod screen;
|
mod screen;
|
||||||
@@ -22,8 +23,9 @@ mod window;
|
|||||||
|
|
||||||
pub(crate) use self::application::UIApplication;
|
pub(crate) use self::application::UIApplication;
|
||||||
pub(crate) use self::coordinate_space::UICoordinateSpace;
|
pub(crate) use self::coordinate_space::UICoordinateSpace;
|
||||||
pub(crate) use self::device::UIDevice;
|
pub(crate) use self::device::{UIDevice, UIUserInterfaceIdiom};
|
||||||
pub(crate) use self::event::UIEvent;
|
pub(crate) use self::event::UIEvent;
|
||||||
|
pub(crate) use self::geometry::UIRectEdge;
|
||||||
pub(crate) use self::gesture_recognizer::{
|
pub(crate) use self::gesture_recognizer::{
|
||||||
UIGestureRecognizer, UIGestureRecognizerState, UIPinchGestureRecognizer,
|
UIGestureRecognizer, UIGestureRecognizerState, UIPinchGestureRecognizer,
|
||||||
UIRotationGestureRecognizer, UITapGestureRecognizer,
|
UIRotationGestureRecognizer, UITapGestureRecognizer,
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
use crate::platform::ios::StatusBarStyle;
|
|
||||||
use icrate::Foundation::NSInteger;
|
use icrate::Foundation::NSInteger;
|
||||||
use objc2::encode::{Encode, Encoding};
|
use objc2::encode::{Encode, Encoding};
|
||||||
|
|
||||||
@@ -12,16 +11,6 @@ pub enum UIStatusBarStyle {
|
|||||||
DarkContent = 3,
|
DarkContent = 3,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<StatusBarStyle> for UIStatusBarStyle {
|
|
||||||
fn from(value: StatusBarStyle) -> Self {
|
|
||||||
match value {
|
|
||||||
StatusBarStyle::Default => Self::Default,
|
|
||||||
StatusBarStyle::LightContent => Self::LightContent,
|
|
||||||
StatusBarStyle::DarkContent => Self::DarkContent,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Encode for UIStatusBarStyle {
|
unsafe impl Encode for UIStatusBarStyle {
|
||||||
const ENCODING: Encoding = NSInteger::ENCODING;
|
const ENCODING: Encoding = NSInteger::ENCODING;
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#![allow(clippy::unnecessary_cast)]
|
#![allow(clippy::unnecessary_cast)]
|
||||||
use std::cell::{Cell, RefCell};
|
use std::cell::RefCell;
|
||||||
|
|
||||||
use icrate::Foundation::{CGFloat, CGRect, MainThreadMarker, NSObject, NSObjectProtocol, NSSet};
|
use icrate::Foundation::{CGFloat, CGRect, MainThreadMarker, NSObject, NSSet};
|
||||||
use objc2::rc::Id;
|
use objc2::rc::Id;
|
||||||
use objc2::runtime::AnyClass;
|
use objc2::runtime::AnyClass;
|
||||||
use objc2::{
|
use objc2::{
|
||||||
@@ -10,20 +10,16 @@ use objc2::{
|
|||||||
|
|
||||||
use super::app_state::{self, EventWrapper};
|
use super::app_state::{self, EventWrapper};
|
||||||
use super::uikit::{
|
use super::uikit::{
|
||||||
UIApplication, UIDevice, UIEvent, UIForceTouchCapability, UIGestureRecognizerState,
|
UIEvent, UIForceTouchCapability, UIGestureRecognizerState, UIPinchGestureRecognizer,
|
||||||
UIInterfaceOrientationMask, UIPinchGestureRecognizer, UIResponder, UIRotationGestureRecognizer,
|
UIResponder, UIRotationGestureRecognizer, UITapGestureRecognizer, UITouch, UITouchPhase,
|
||||||
UIStatusBarStyle, UITapGestureRecognizer, UITouch, UITouchPhase, UITouchType,
|
UITouchType, UITraitCollection, UIView,
|
||||||
UITraitCollection, UIView, UIViewController, UIWindow,
|
|
||||||
};
|
};
|
||||||
|
use super::window::WinitUIWindow;
|
||||||
use crate::{
|
use crate::{
|
||||||
dpi::PhysicalPosition,
|
dpi::PhysicalPosition,
|
||||||
event::{Event, Force, Touch, TouchPhase, WindowEvent},
|
event::{Event, Force, Touch, TouchPhase, WindowEvent},
|
||||||
platform::ios::ValidOrientations,
|
platform_impl::platform::DEVICE_ID,
|
||||||
platform_impl::platform::{
|
window::{WindowAttributes, WindowId as RootWindowId},
|
||||||
ffi::{UIRectEdge, UIUserInterfaceIdiom},
|
|
||||||
Fullscreen, DEVICE_ID,
|
|
||||||
},
|
|
||||||
window::{WindowAttributes, WindowId},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pub struct WinitViewState {
|
pub struct WinitViewState {
|
||||||
@@ -54,7 +50,7 @@ declare_class!(
|
|||||||
app_state::handle_nonuser_event(
|
app_state::handle_nonuser_event(
|
||||||
mtm,
|
mtm,
|
||||||
EventWrapper::StaticEvent(Event::WindowEvent {
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::RedrawRequested,
|
event: WindowEvent::RedrawRequested,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@@ -89,7 +85,7 @@ declare_class!(
|
|||||||
app_state::handle_nonuser_event(
|
app_state::handle_nonuser_event(
|
||||||
mtm,
|
mtm,
|
||||||
EventWrapper::StaticEvent(Event::WindowEvent {
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::Resized(size),
|
event: WindowEvent::Resized(size),
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@@ -128,7 +124,7 @@ declare_class!(
|
|||||||
width: screen_frame.size.width as f64,
|
width: screen_frame.size.width as f64,
|
||||||
height: screen_frame.size.height as f64,
|
height: screen_frame.size.height as f64,
|
||||||
};
|
};
|
||||||
let window_id = window.id();
|
let window_id = RootWindowId(window.id());
|
||||||
app_state::handle_nonuser_events(
|
app_state::handle_nonuser_events(
|
||||||
mtm,
|
mtm,
|
||||||
std::iter::once(EventWrapper::ScaleFactorChanged(
|
std::iter::once(EventWrapper::ScaleFactorChanged(
|
||||||
@@ -182,7 +178,7 @@ declare_class!(
|
|||||||
};
|
};
|
||||||
|
|
||||||
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::PinchGesture {
|
event: WindowEvent::PinchGesture {
|
||||||
device_id: DEVICE_ID,
|
device_id: DEVICE_ID,
|
||||||
delta: recognizer.velocity() as _,
|
delta: recognizer.velocity() as _,
|
||||||
@@ -200,7 +196,7 @@ declare_class!(
|
|||||||
|
|
||||||
if recognizer.state() == UIGestureRecognizerState::Ended {
|
if recognizer.state() == UIGestureRecognizerState::Ended {
|
||||||
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::DoubleTapGesture {
|
event: WindowEvent::DoubleTapGesture {
|
||||||
device_id: DEVICE_ID,
|
device_id: DEVICE_ID,
|
||||||
},
|
},
|
||||||
@@ -228,7 +224,7 @@ declare_class!(
|
|||||||
// Flip the velocity to match macOS.
|
// Flip the velocity to match macOS.
|
||||||
let delta = -recognizer.velocity() as _;
|
let delta = -recognizer.velocity() as _;
|
||||||
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
let gesture_event = EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::RotationGesture {
|
event: WindowEvent::RotationGesture {
|
||||||
device_id: DEVICE_ID,
|
device_id: DEVICE_ID,
|
||||||
delta,
|
delta,
|
||||||
@@ -379,7 +375,7 @@ impl WinitView {
|
|||||||
)
|
)
|
||||||
};
|
};
|
||||||
touch_events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
touch_events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
window_id: window.id(),
|
window_id: RootWindowId(window.id()),
|
||||||
event: WindowEvent::Touch(Touch {
|
event: WindowEvent::Touch(Touch {
|
||||||
device_id: DEVICE_ID,
|
device_id: DEVICE_ID,
|
||||||
id: touch_id,
|
id: touch_id,
|
||||||
@@ -393,339 +389,3 @@ impl WinitView {
|
|||||||
app_state::handle_nonuser_events(mtm, touch_events);
|
app_state::handle_nonuser_events(mtm, touch_events);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct ViewControllerState {
|
|
||||||
prefers_status_bar_hidden: Cell<bool>,
|
|
||||||
preferred_status_bar_style: Cell<UIStatusBarStyle>,
|
|
||||||
prefers_home_indicator_auto_hidden: Cell<bool>,
|
|
||||||
supported_orientations: Cell<UIInterfaceOrientationMask>,
|
|
||||||
preferred_screen_edges_deferring_system_gestures: Cell<UIRectEdge>,
|
|
||||||
}
|
|
||||||
|
|
||||||
declare_class!(
|
|
||||||
pub(crate) struct WinitViewController;
|
|
||||||
|
|
||||||
unsafe impl ClassType for WinitViewController {
|
|
||||||
#[inherits(UIResponder, NSObject)]
|
|
||||||
type Super = UIViewController;
|
|
||||||
type Mutability = mutability::InteriorMutable;
|
|
||||||
const NAME: &'static str = "WinitUIViewController";
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DeclaredClass for WinitViewController {
|
|
||||||
type Ivars = ViewControllerState;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl WinitViewController {
|
|
||||||
#[method(shouldAutorotate)]
|
|
||||||
fn should_autorotate(&self) -> bool {
|
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(prefersStatusBarHidden)]
|
|
||||||
fn prefers_status_bar_hidden(&self) -> bool {
|
|
||||||
self.ivars().prefers_status_bar_hidden.get()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(preferredStatusBarStyle)]
|
|
||||||
fn preferred_status_bar_style(&self) -> UIStatusBarStyle {
|
|
||||||
self.ivars().preferred_status_bar_style.get()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(prefersHomeIndicatorAutoHidden)]
|
|
||||||
fn prefers_home_indicator_auto_hidden(&self) -> bool {
|
|
||||||
self.ivars().prefers_home_indicator_auto_hidden.get()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(supportedInterfaceOrientations)]
|
|
||||||
fn supported_orientations(&self) -> UIInterfaceOrientationMask {
|
|
||||||
self.ivars().supported_orientations.get()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(preferredScreenEdgesDeferringSystemGestures)]
|
|
||||||
fn preferred_screen_edges_deferring_system_gestures(&self) -> UIRectEdge {
|
|
||||||
self.ivars()
|
|
||||||
.preferred_screen_edges_deferring_system_gestures
|
|
||||||
.get()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
impl WinitViewController {
|
|
||||||
pub(crate) fn set_prefers_status_bar_hidden(&self, val: bool) {
|
|
||||||
self.ivars().prefers_status_bar_hidden.set(val);
|
|
||||||
self.setNeedsStatusBarAppearanceUpdate();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn set_preferred_status_bar_style(&self, val: UIStatusBarStyle) {
|
|
||||||
self.ivars().preferred_status_bar_style.set(val);
|
|
||||||
self.setNeedsStatusBarAppearanceUpdate();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn set_prefers_home_indicator_auto_hidden(&self, val: bool) {
|
|
||||||
self.ivars().prefers_home_indicator_auto_hidden.set(val);
|
|
||||||
let os_capabilities = app_state::os_capabilities();
|
|
||||||
if os_capabilities.home_indicator_hidden {
|
|
||||||
self.setNeedsUpdateOfHomeIndicatorAutoHidden();
|
|
||||||
} else {
|
|
||||||
os_capabilities.home_indicator_hidden_err_msg("ignoring")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn set_preferred_screen_edges_deferring_system_gestures(&self, val: UIRectEdge) {
|
|
||||||
self.ivars()
|
|
||||||
.preferred_screen_edges_deferring_system_gestures
|
|
||||||
.set(val);
|
|
||||||
let os_capabilities = app_state::os_capabilities();
|
|
||||||
if os_capabilities.defer_system_gestures {
|
|
||||||
self.setNeedsUpdateOfScreenEdgesDeferringSystemGestures();
|
|
||||||
} else {
|
|
||||||
os_capabilities.defer_system_gestures_err_msg("ignoring")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn set_supported_interface_orientations(
|
|
||||||
&self,
|
|
||||||
mtm: MainThreadMarker,
|
|
||||||
valid_orientations: ValidOrientations,
|
|
||||||
) {
|
|
||||||
let mask = match (
|
|
||||||
valid_orientations,
|
|
||||||
UIDevice::current(mtm).userInterfaceIdiom(),
|
|
||||||
) {
|
|
||||||
(ValidOrientations::LandscapeAndPortrait, UIUserInterfaceIdiom::Phone) => {
|
|
||||||
UIInterfaceOrientationMask::AllButUpsideDown
|
|
||||||
}
|
|
||||||
(ValidOrientations::LandscapeAndPortrait, _) => UIInterfaceOrientationMask::All,
|
|
||||||
(ValidOrientations::Landscape, _) => UIInterfaceOrientationMask::Landscape,
|
|
||||||
(ValidOrientations::Portrait, UIUserInterfaceIdiom::Phone) => {
|
|
||||||
UIInterfaceOrientationMask::Portrait
|
|
||||||
}
|
|
||||||
(ValidOrientations::Portrait, _) => {
|
|
||||||
UIInterfaceOrientationMask::Portrait
|
|
||||||
| UIInterfaceOrientationMask::PortraitUpsideDown
|
|
||||||
}
|
|
||||||
};
|
|
||||||
self.ivars().supported_orientations.set(mask);
|
|
||||||
UIViewController::attemptRotationToDeviceOrientation();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn new(
|
|
||||||
mtm: MainThreadMarker,
|
|
||||||
window_attributes: &WindowAttributes,
|
|
||||||
view: &UIView,
|
|
||||||
) -> Id<Self> {
|
|
||||||
// These are set properly below, we just to set them to something in the meantime.
|
|
||||||
let this = Self::alloc().set_ivars(ViewControllerState {
|
|
||||||
prefers_status_bar_hidden: Cell::new(false),
|
|
||||||
preferred_status_bar_style: Cell::new(UIStatusBarStyle::Default),
|
|
||||||
prefers_home_indicator_auto_hidden: Cell::new(false),
|
|
||||||
supported_orientations: Cell::new(UIInterfaceOrientationMask::All),
|
|
||||||
preferred_screen_edges_deferring_system_gestures: Cell::new(UIRectEdge::NONE),
|
|
||||||
});
|
|
||||||
let this: Id<Self> = unsafe { msg_send_id![super(this), init] };
|
|
||||||
|
|
||||||
this.set_prefers_status_bar_hidden(
|
|
||||||
window_attributes
|
|
||||||
.platform_specific
|
|
||||||
.prefers_status_bar_hidden,
|
|
||||||
);
|
|
||||||
|
|
||||||
this.set_preferred_status_bar_style(
|
|
||||||
window_attributes
|
|
||||||
.platform_specific
|
|
||||||
.preferred_status_bar_style
|
|
||||||
.into(),
|
|
||||||
);
|
|
||||||
|
|
||||||
this.set_supported_interface_orientations(
|
|
||||||
mtm,
|
|
||||||
window_attributes.platform_specific.valid_orientations,
|
|
||||||
);
|
|
||||||
|
|
||||||
this.set_prefers_home_indicator_auto_hidden(
|
|
||||||
window_attributes
|
|
||||||
.platform_specific
|
|
||||||
.prefers_home_indicator_hidden,
|
|
||||||
);
|
|
||||||
|
|
||||||
this.set_preferred_screen_edges_deferring_system_gestures(
|
|
||||||
window_attributes
|
|
||||||
.platform_specific
|
|
||||||
.preferred_screen_edges_deferring_system_gestures
|
|
||||||
.into(),
|
|
||||||
);
|
|
||||||
|
|
||||||
this.setView(Some(view));
|
|
||||||
|
|
||||||
this
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare_class!(
|
|
||||||
#[derive(Debug, PartialEq, Eq, Hash)]
|
|
||||||
pub(crate) struct WinitUIWindow;
|
|
||||||
|
|
||||||
unsafe impl ClassType for WinitUIWindow {
|
|
||||||
#[inherits(UIResponder, NSObject)]
|
|
||||||
type Super = UIWindow;
|
|
||||||
type Mutability = mutability::InteriorMutable;
|
|
||||||
const NAME: &'static str = "WinitUIWindow";
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DeclaredClass for WinitUIWindow {}
|
|
||||||
|
|
||||||
unsafe impl WinitUIWindow {
|
|
||||||
#[method(becomeKeyWindow)]
|
|
||||||
fn become_key_window(&self) {
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_event(
|
|
||||||
mtm,
|
|
||||||
EventWrapper::StaticEvent(Event::WindowEvent {
|
|
||||||
window_id: self.id(),
|
|
||||||
event: WindowEvent::Focused(true),
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
let _: () = unsafe { msg_send![super(self), becomeKeyWindow] };
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(resignKeyWindow)]
|
|
||||||
fn resign_key_window(&self) {
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_event(
|
|
||||||
mtm,
|
|
||||||
EventWrapper::StaticEvent(Event::WindowEvent {
|
|
||||||
window_id: self.id(),
|
|
||||||
event: WindowEvent::Focused(false),
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
let _: () = unsafe { msg_send![super(self), resignKeyWindow] };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
impl WinitUIWindow {
|
|
||||||
pub(crate) fn new(
|
|
||||||
mtm: MainThreadMarker,
|
|
||||||
window_attributes: &WindowAttributes,
|
|
||||||
frame: CGRect,
|
|
||||||
view_controller: &UIViewController,
|
|
||||||
) -> Id<Self> {
|
|
||||||
let this: Id<Self> = unsafe { msg_send_id![Self::alloc(), initWithFrame: frame] };
|
|
||||||
|
|
||||||
this.setRootViewController(Some(view_controller));
|
|
||||||
|
|
||||||
match window_attributes.fullscreen.clone().map(Into::into) {
|
|
||||||
Some(Fullscreen::Exclusive(ref video_mode)) => {
|
|
||||||
let monitor = video_mode.monitor();
|
|
||||||
let screen = monitor.ui_screen(mtm);
|
|
||||||
screen.setCurrentMode(Some(video_mode.screen_mode(mtm)));
|
|
||||||
this.setScreen(screen);
|
|
||||||
}
|
|
||||||
Some(Fullscreen::Borderless(Some(ref monitor))) => {
|
|
||||||
let screen = monitor.ui_screen(mtm);
|
|
||||||
this.setScreen(screen);
|
|
||||||
}
|
|
||||||
_ => (),
|
|
||||||
}
|
|
||||||
|
|
||||||
this
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn id(&self) -> WindowId {
|
|
||||||
(self as *const Self as usize as u64).into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare_class!(
|
|
||||||
pub struct WinitApplicationDelegate;
|
|
||||||
|
|
||||||
unsafe impl ClassType for WinitApplicationDelegate {
|
|
||||||
type Super = NSObject;
|
|
||||||
type Mutability = mutability::InteriorMutable;
|
|
||||||
const NAME: &'static str = "WinitApplicationDelegate";
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DeclaredClass for WinitApplicationDelegate {}
|
|
||||||
|
|
||||||
// UIApplicationDelegate protocol
|
|
||||||
unsafe impl WinitApplicationDelegate {
|
|
||||||
#[method(application:didFinishLaunchingWithOptions:)]
|
|
||||||
fn did_finish_launching(&self, _application: &UIApplication, _: *mut NSObject) -> bool {
|
|
||||||
app_state::did_finish_launching(MainThreadMarker::new().unwrap());
|
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationDidBecomeActive:)]
|
|
||||||
fn did_become_active(&self, _application: &UIApplication) {
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::Resumed))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationWillResignActive:)]
|
|
||||||
fn will_resign_active(&self, _application: &UIApplication) {
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::Suspended))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationWillEnterForeground:)]
|
|
||||||
fn will_enter_foreground(&self, application: &UIApplication) {
|
|
||||||
self.send_occluded_event_for_all_windows(application, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationDidEnterBackground:)]
|
|
||||||
fn did_enter_background(&self, application: &UIApplication) {
|
|
||||||
self.send_occluded_event_for_all_windows(application, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationWillTerminate:)]
|
|
||||||
fn will_terminate(&self, application: &UIApplication) {
|
|
||||||
let mut events = Vec::new();
|
|
||||||
for window in application.windows().iter() {
|
|
||||||
if window.is_kind_of::<WinitUIWindow>() {
|
|
||||||
// SAFETY: We just checked that the window is a `winit` window
|
|
||||||
let window = unsafe {
|
|
||||||
let ptr: *const UIWindow = window;
|
|
||||||
let ptr: *const WinitUIWindow = ptr.cast();
|
|
||||||
&*ptr
|
|
||||||
};
|
|
||||||
events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
|
||||||
window_id: window.id(),
|
|
||||||
event: WindowEvent::Destroyed,
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_events(mtm, events);
|
|
||||||
app_state::terminated(mtm);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[method(applicationDidReceiveMemoryWarning:)]
|
|
||||||
fn did_receive_memory_warning(&self, _application: &UIApplication) {
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_event(mtm, EventWrapper::StaticEvent(Event::MemoryWarning))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
impl WinitApplicationDelegate {
|
|
||||||
fn send_occluded_event_for_all_windows(&self, application: &UIApplication, occluded: bool) {
|
|
||||||
let mut events = Vec::new();
|
|
||||||
for window in application.windows().iter() {
|
|
||||||
if window.is_kind_of::<WinitUIWindow>() {
|
|
||||||
// SAFETY: We just checked that the window is a `winit` window
|
|
||||||
let window = unsafe {
|
|
||||||
let ptr: *const UIWindow = window;
|
|
||||||
let ptr: *const WinitUIWindow = ptr.cast();
|
|
||||||
&*ptr
|
|
||||||
};
|
|
||||||
events.push(EventWrapper::StaticEvent(Event::WindowEvent {
|
|
||||||
window_id: window.id(),
|
|
||||||
event: WindowEvent::Occluded(occluded),
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let mtm = MainThreadMarker::new().unwrap();
|
|
||||||
app_state::handle_nonuser_events(mtm, events);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
192
src/platform_impl/ios/view_controller.rs
Normal file
@@ -0,0 +1,192 @@
|
|||||||
|
use std::cell::Cell;
|
||||||
|
|
||||||
|
use icrate::Foundation::{MainThreadMarker, NSObject};
|
||||||
|
use objc2::rc::Id;
|
||||||
|
use objc2::{declare_class, msg_send_id, mutability, ClassType, DeclaredClass};
|
||||||
|
|
||||||
|
use super::app_state::{self};
|
||||||
|
use super::uikit::{
|
||||||
|
UIDevice, UIInterfaceOrientationMask, UIRectEdge, UIResponder, UIStatusBarStyle,
|
||||||
|
UIUserInterfaceIdiom, UIView, UIViewController,
|
||||||
|
};
|
||||||
|
use crate::platform::ios::{ScreenEdge, StatusBarStyle};
|
||||||
|
use crate::{platform::ios::ValidOrientations, window::WindowAttributes};
|
||||||
|
|
||||||
|
pub struct ViewControllerState {
|
||||||
|
prefers_status_bar_hidden: Cell<bool>,
|
||||||
|
preferred_status_bar_style: Cell<UIStatusBarStyle>,
|
||||||
|
prefers_home_indicator_auto_hidden: Cell<bool>,
|
||||||
|
supported_orientations: Cell<UIInterfaceOrientationMask>,
|
||||||
|
preferred_screen_edges_deferring_system_gestures: Cell<UIRectEdge>,
|
||||||
|
}
|
||||||
|
|
||||||
|
declare_class!(
|
||||||
|
pub(crate) struct WinitViewController;
|
||||||
|
|
||||||
|
unsafe impl ClassType for WinitViewController {
|
||||||
|
#[inherits(UIResponder, NSObject)]
|
||||||
|
type Super = UIViewController;
|
||||||
|
type Mutability = mutability::InteriorMutable;
|
||||||
|
const NAME: &'static str = "WinitUIViewController";
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeclaredClass for WinitViewController {
|
||||||
|
type Ivars = ViewControllerState;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl WinitViewController {
|
||||||
|
#[method(shouldAutorotate)]
|
||||||
|
fn should_autorotate(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(prefersStatusBarHidden)]
|
||||||
|
fn prefers_status_bar_hidden(&self) -> bool {
|
||||||
|
self.ivars().prefers_status_bar_hidden.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(preferredStatusBarStyle)]
|
||||||
|
fn preferred_status_bar_style(&self) -> UIStatusBarStyle {
|
||||||
|
self.ivars().preferred_status_bar_style.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(prefersHomeIndicatorAutoHidden)]
|
||||||
|
fn prefers_home_indicator_auto_hidden(&self) -> bool {
|
||||||
|
self.ivars().prefers_home_indicator_auto_hidden.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(supportedInterfaceOrientations)]
|
||||||
|
fn supported_orientations(&self) -> UIInterfaceOrientationMask {
|
||||||
|
self.ivars().supported_orientations.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(preferredScreenEdgesDeferringSystemGestures)]
|
||||||
|
fn preferred_screen_edges_deferring_system_gestures(&self) -> UIRectEdge {
|
||||||
|
self.ivars()
|
||||||
|
.preferred_screen_edges_deferring_system_gestures
|
||||||
|
.get()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
impl WinitViewController {
|
||||||
|
pub(crate) fn set_prefers_status_bar_hidden(&self, val: bool) {
|
||||||
|
self.ivars().prefers_status_bar_hidden.set(val);
|
||||||
|
self.setNeedsStatusBarAppearanceUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn set_preferred_status_bar_style(&self, val: StatusBarStyle) {
|
||||||
|
let val = match val {
|
||||||
|
StatusBarStyle::Default => UIStatusBarStyle::Default,
|
||||||
|
StatusBarStyle::LightContent => UIStatusBarStyle::LightContent,
|
||||||
|
StatusBarStyle::DarkContent => UIStatusBarStyle::DarkContent,
|
||||||
|
};
|
||||||
|
self.ivars().preferred_status_bar_style.set(val);
|
||||||
|
self.setNeedsStatusBarAppearanceUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn set_prefers_home_indicator_auto_hidden(&self, val: bool) {
|
||||||
|
self.ivars().prefers_home_indicator_auto_hidden.set(val);
|
||||||
|
let os_capabilities = app_state::os_capabilities();
|
||||||
|
if os_capabilities.home_indicator_hidden {
|
||||||
|
self.setNeedsUpdateOfHomeIndicatorAutoHidden();
|
||||||
|
} else {
|
||||||
|
os_capabilities.home_indicator_hidden_err_msg("ignoring")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn set_preferred_screen_edges_deferring_system_gestures(&self, val: ScreenEdge) {
|
||||||
|
let val = {
|
||||||
|
assert_eq!(
|
||||||
|
val.bits() & !ScreenEdge::ALL.bits(),
|
||||||
|
0,
|
||||||
|
"invalid `ScreenEdge`"
|
||||||
|
);
|
||||||
|
UIRectEdge(val.bits().into())
|
||||||
|
};
|
||||||
|
self.ivars()
|
||||||
|
.preferred_screen_edges_deferring_system_gestures
|
||||||
|
.set(val);
|
||||||
|
let os_capabilities = app_state::os_capabilities();
|
||||||
|
if os_capabilities.defer_system_gestures {
|
||||||
|
self.setNeedsUpdateOfScreenEdgesDeferringSystemGestures();
|
||||||
|
} else {
|
||||||
|
os_capabilities.defer_system_gestures_err_msg("ignoring")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn set_supported_interface_orientations(
|
||||||
|
&self,
|
||||||
|
mtm: MainThreadMarker,
|
||||||
|
valid_orientations: ValidOrientations,
|
||||||
|
) {
|
||||||
|
let mask = match (
|
||||||
|
valid_orientations,
|
||||||
|
UIDevice::current(mtm).userInterfaceIdiom(),
|
||||||
|
) {
|
||||||
|
(ValidOrientations::LandscapeAndPortrait, UIUserInterfaceIdiom::Phone) => {
|
||||||
|
UIInterfaceOrientationMask::AllButUpsideDown
|
||||||
|
}
|
||||||
|
(ValidOrientations::LandscapeAndPortrait, _) => UIInterfaceOrientationMask::All,
|
||||||
|
(ValidOrientations::Landscape, _) => UIInterfaceOrientationMask::Landscape,
|
||||||
|
(ValidOrientations::Portrait, UIUserInterfaceIdiom::Phone) => {
|
||||||
|
UIInterfaceOrientationMask::Portrait
|
||||||
|
}
|
||||||
|
(ValidOrientations::Portrait, _) => {
|
||||||
|
UIInterfaceOrientationMask::Portrait
|
||||||
|
| UIInterfaceOrientationMask::PortraitUpsideDown
|
||||||
|
}
|
||||||
|
};
|
||||||
|
self.ivars().supported_orientations.set(mask);
|
||||||
|
UIViewController::attemptRotationToDeviceOrientation();
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn new(
|
||||||
|
mtm: MainThreadMarker,
|
||||||
|
window_attributes: &WindowAttributes,
|
||||||
|
view: &UIView,
|
||||||
|
) -> Id<Self> {
|
||||||
|
// These are set properly below, we just to set them to something in the meantime.
|
||||||
|
let this = Self::alloc().set_ivars(ViewControllerState {
|
||||||
|
prefers_status_bar_hidden: Cell::new(false),
|
||||||
|
preferred_status_bar_style: Cell::new(UIStatusBarStyle::Default),
|
||||||
|
prefers_home_indicator_auto_hidden: Cell::new(false),
|
||||||
|
supported_orientations: Cell::new(UIInterfaceOrientationMask::All),
|
||||||
|
preferred_screen_edges_deferring_system_gestures: Cell::new(UIRectEdge::NONE),
|
||||||
|
});
|
||||||
|
let this: Id<Self> = unsafe { msg_send_id![super(this), init] };
|
||||||
|
|
||||||
|
this.set_prefers_status_bar_hidden(
|
||||||
|
window_attributes
|
||||||
|
.platform_specific
|
||||||
|
.prefers_status_bar_hidden,
|
||||||
|
);
|
||||||
|
|
||||||
|
this.set_preferred_status_bar_style(
|
||||||
|
window_attributes
|
||||||
|
.platform_specific
|
||||||
|
.preferred_status_bar_style,
|
||||||
|
);
|
||||||
|
|
||||||
|
this.set_supported_interface_orientations(
|
||||||
|
mtm,
|
||||||
|
window_attributes.platform_specific.valid_orientations,
|
||||||
|
);
|
||||||
|
|
||||||
|
this.set_prefers_home_indicator_auto_hidden(
|
||||||
|
window_attributes
|
||||||
|
.platform_specific
|
||||||
|
.prefers_home_indicator_hidden,
|
||||||
|
);
|
||||||
|
|
||||||
|
this.set_preferred_screen_edges_deferring_system_gestures(
|
||||||
|
window_attributes
|
||||||
|
.platform_specific
|
||||||
|
.preferred_screen_edges_deferring_system_gestures,
|
||||||
|
);
|
||||||
|
|
||||||
|
this.setView(Some(view));
|
||||||
|
|
||||||
|
this
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,29 +3,106 @@
|
|||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
|
|
||||||
use icrate::Foundation::{CGFloat, CGPoint, CGRect, CGSize, MainThreadBound, MainThreadMarker};
|
use icrate::Foundation::{CGFloat, CGPoint, CGRect, CGSize, MainThreadBound, MainThreadMarker};
|
||||||
use log::{debug, warn};
|
|
||||||
use objc2::rc::Id;
|
use objc2::rc::Id;
|
||||||
use objc2::{class, msg_send};
|
use objc2::runtime::{AnyObject, NSObject};
|
||||||
|
use objc2::{class, declare_class, msg_send, msg_send_id, mutability, ClassType, DeclaredClass};
|
||||||
|
use tracing::{debug, warn};
|
||||||
|
|
||||||
use super::app_state::EventWrapper;
|
use super::app_state::EventWrapper;
|
||||||
use super::uikit::{UIApplication, UIScreen, UIScreenOverscanCompensation};
|
use super::uikit::{
|
||||||
use super::view::{WinitUIWindow, WinitView, WinitViewController};
|
UIApplication, UIResponder, UIScreen, UIScreenOverscanCompensation, UIViewController, UIWindow,
|
||||||
|
};
|
||||||
|
use super::view::WinitView;
|
||||||
|
use super::view_controller::WinitViewController;
|
||||||
use crate::{
|
use crate::{
|
||||||
cursor::Cursor,
|
cursor::Cursor,
|
||||||
dpi::{self, LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size},
|
dpi::{LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size},
|
||||||
error::{ExternalError, NotSupportedError, OsError as RootOsError},
|
error::{ExternalError, NotSupportedError, OsError as RootOsError},
|
||||||
event::{Event, WindowEvent},
|
event::{Event, WindowEvent},
|
||||||
icon::Icon,
|
icon::Icon,
|
||||||
platform::ios::{ScreenEdge, StatusBarStyle, ValidOrientations},
|
platform::ios::{ScreenEdge, StatusBarStyle, ValidOrientations},
|
||||||
platform_impl::platform::{
|
platform_impl::platform::{app_state, monitor, ActiveEventLoop, Fullscreen, MonitorHandle},
|
||||||
app_state, monitor, EventLoopWindowTarget, Fullscreen, MonitorHandle,
|
|
||||||
},
|
|
||||||
window::{
|
window::{
|
||||||
CursorGrabMode, ImePurpose, ResizeDirection, Theme, UserAttentionType, WindowAttributes,
|
CursorGrabMode, ImePurpose, ResizeDirection, Theme, UserAttentionType, WindowAttributes,
|
||||||
WindowButtons, WindowId, WindowLevel,
|
WindowButtons, WindowId as RootWindowId, WindowLevel,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
declare_class!(
|
||||||
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
||||||
|
pub(crate) struct WinitUIWindow;
|
||||||
|
|
||||||
|
unsafe impl ClassType for WinitUIWindow {
|
||||||
|
#[inherits(UIResponder, NSObject)]
|
||||||
|
type Super = UIWindow;
|
||||||
|
type Mutability = mutability::InteriorMutable;
|
||||||
|
const NAME: &'static str = "WinitUIWindow";
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeclaredClass for WinitUIWindow {}
|
||||||
|
|
||||||
|
unsafe impl WinitUIWindow {
|
||||||
|
#[method(becomeKeyWindow)]
|
||||||
|
fn become_key_window(&self) {
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_event(
|
||||||
|
mtm,
|
||||||
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
|
window_id: RootWindowId(self.id()),
|
||||||
|
event: WindowEvent::Focused(true),
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
let _: () = unsafe { msg_send![super(self), becomeKeyWindow] };
|
||||||
|
}
|
||||||
|
|
||||||
|
#[method(resignKeyWindow)]
|
||||||
|
fn resign_key_window(&self) {
|
||||||
|
let mtm = MainThreadMarker::new().unwrap();
|
||||||
|
app_state::handle_nonuser_event(
|
||||||
|
mtm,
|
||||||
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
||||||
|
window_id: RootWindowId(self.id()),
|
||||||
|
event: WindowEvent::Focused(false),
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
let _: () = unsafe { msg_send![super(self), resignKeyWindow] };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
impl WinitUIWindow {
|
||||||
|
pub(crate) fn new(
|
||||||
|
mtm: MainThreadMarker,
|
||||||
|
window_attributes: &WindowAttributes,
|
||||||
|
frame: CGRect,
|
||||||
|
view_controller: &UIViewController,
|
||||||
|
) -> Id<Self> {
|
||||||
|
let this: Id<Self> = unsafe { msg_send_id![Self::alloc(), initWithFrame: frame] };
|
||||||
|
|
||||||
|
this.setRootViewController(Some(view_controller));
|
||||||
|
|
||||||
|
match window_attributes.fullscreen.clone().map(Into::into) {
|
||||||
|
Some(Fullscreen::Exclusive(ref video_mode)) => {
|
||||||
|
let monitor = video_mode.monitor();
|
||||||
|
let screen = monitor.ui_screen(mtm);
|
||||||
|
screen.setCurrentMode(Some(video_mode.screen_mode(mtm)));
|
||||||
|
this.setScreen(screen);
|
||||||
|
}
|
||||||
|
Some(Fullscreen::Borderless(Some(ref monitor))) => {
|
||||||
|
let screen = monitor.ui_screen(mtm);
|
||||||
|
this.setScreen(screen);
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
|
||||||
|
this
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn id(&self) -> WindowId {
|
||||||
|
(self as *const Self as usize as u64).into()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct Inner {
|
pub struct Inner {
|
||||||
window: Id<WinitUIWindow>,
|
window: Id<WinitUIWindow>,
|
||||||
view_controller: Id<WinitViewController>,
|
view_controller: Id<WinitViewController>,
|
||||||
@@ -398,7 +475,7 @@ pub struct Window {
|
|||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
event_loop: &EventLoopWindowTarget,
|
event_loop: &ActiveEventLoop,
|
||||||
window_attributes: WindowAttributes,
|
window_attributes: WindowAttributes,
|
||||||
) -> Result<Window, RootOsError> {
|
) -> Result<Window, RootOsError> {
|
||||||
let mtm = event_loop.mtm;
|
let mtm = event_loop.mtm;
|
||||||
@@ -460,11 +537,11 @@ impl Window {
|
|||||||
let screen = window.screen();
|
let screen = window.screen();
|
||||||
let screen_space = screen.coordinateSpace();
|
let screen_space = screen.coordinateSpace();
|
||||||
let screen_frame = view.convertRect_toCoordinateSpace(bounds, &screen_space);
|
let screen_frame = view.convertRect_toCoordinateSpace(bounds, &screen_space);
|
||||||
let size = crate::dpi::LogicalSize {
|
let size = LogicalSize {
|
||||||
width: screen_frame.size.width as f64,
|
width: screen_frame.size.width as f64,
|
||||||
height: screen_frame.size.height as f64,
|
height: screen_frame.size.height as f64,
|
||||||
};
|
};
|
||||||
let window_id = window.id();
|
let window_id = RootWindowId(window.id());
|
||||||
app_state::handle_nonuser_events(
|
app_state::handle_nonuser_events(
|
||||||
mtm,
|
mtm,
|
||||||
std::iter::once(EventWrapper::ScaleFactorChanged(
|
std::iter::once(EventWrapper::ScaleFactorChanged(
|
||||||
@@ -551,7 +628,7 @@ impl Inner {
|
|||||||
|
|
||||||
pub fn set_preferred_screen_edges_deferring_system_gestures(&self, edges: ScreenEdge) {
|
pub fn set_preferred_screen_edges_deferring_system_gestures(&self, edges: ScreenEdge) {
|
||||||
self.view_controller
|
self.view_controller
|
||||||
.set_preferred_screen_edges_deferring_system_gestures(edges.into());
|
.set_preferred_screen_edges_deferring_system_gestures(edges);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_prefers_status_bar_hidden(&self, hidden: bool) {
|
pub fn set_prefers_status_bar_hidden(&self, hidden: bool) {
|
||||||
@@ -560,7 +637,7 @@ impl Inner {
|
|||||||
|
|
||||||
pub fn set_preferred_status_bar_style(&self, status_bar_style: StatusBarStyle) {
|
pub fn set_preferred_status_bar_style(&self, status_bar_style: StatusBarStyle) {
|
||||||
self.view_controller
|
self.view_controller
|
||||||
.set_preferred_status_bar_style(status_bar_style.into());
|
.set_preferred_status_bar_style(status_bar_style);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn recognize_pinch_gesture(&self, should_recognize: bool) {
|
pub fn recognize_pinch_gesture(&self, should_recognize: bool) {
|
||||||
@@ -638,8 +715,46 @@ impl Inner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct WindowId {
|
||||||
|
window: *mut WinitUIWindow,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WindowId {
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
WindowId {
|
||||||
|
window: std::ptr::null_mut(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<WindowId> for u64 {
|
||||||
|
fn from(window_id: WindowId) -> Self {
|
||||||
|
window_id.window as u64
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<u64> for WindowId {
|
||||||
|
fn from(raw_id: u64) -> Self {
|
||||||
|
Self {
|
||||||
|
window: raw_id as _,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl Send for WindowId {}
|
||||||
|
unsafe impl Sync for WindowId {}
|
||||||
|
|
||||||
|
impl From<&AnyObject> for WindowId {
|
||||||
|
fn from(window: &AnyObject) -> WindowId {
|
||||||
|
WindowId {
|
||||||
|
window: window as *const _ as _,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Default)]
|
#[derive(Clone, Debug, Default)]
|
||||||
pub struct PlatformSpecificWindowBuilderAttributes {
|
pub struct PlatformSpecificWindowAttributes {
|
||||||
pub scale_factor: Option<f64>,
|
pub scale_factor: Option<f64>,
|
||||||
pub valid_orientations: ValidOrientations,
|
pub valid_orientations: ValidOrientations,
|
||||||
pub prefers_home_indicator_hidden: bool,
|
pub prefers_home_indicator_hidden: bool,
|
||||||
1
src/platform_impl/linux/common/mod.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pub mod xkb;
|
||||||
124
src/platform_impl/linux/common/xkb/compose.rs
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
//! XKB compose handling.
|
||||||
|
|
||||||
|
use std::env;
|
||||||
|
use std::ffi::CString;
|
||||||
|
use std::ops::Deref;
|
||||||
|
use std::os::unix::ffi::OsStringExt;
|
||||||
|
use std::ptr::NonNull;
|
||||||
|
|
||||||
|
use super::XkbContext;
|
||||||
|
use super::XKBCH;
|
||||||
|
use smol_str::SmolStr;
|
||||||
|
use xkbcommon_dl::{
|
||||||
|
xkb_compose_compile_flags, xkb_compose_feed_result, xkb_compose_state, xkb_compose_state_flags,
|
||||||
|
xkb_compose_status, xkb_compose_table, xkb_keysym_t,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct XkbComposeTable {
|
||||||
|
table: NonNull<xkb_compose_table>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XkbComposeTable {
|
||||||
|
pub fn new(context: &XkbContext) -> Option<Self> {
|
||||||
|
let locale = env::var_os("LC_ALL")
|
||||||
|
.and_then(|v| if v.is_empty() { None } else { Some(v) })
|
||||||
|
.or_else(|| env::var_os("LC_CTYPE"))
|
||||||
|
.and_then(|v| if v.is_empty() { None } else { Some(v) })
|
||||||
|
.or_else(|| env::var_os("LANG"))
|
||||||
|
.and_then(|v| if v.is_empty() { None } else { Some(v) })
|
||||||
|
.unwrap_or_else(|| "C".into());
|
||||||
|
let locale = CString::new(locale.into_vec()).unwrap();
|
||||||
|
|
||||||
|
let table = unsafe {
|
||||||
|
(XKBCH.xkb_compose_table_new_from_locale)(
|
||||||
|
context.as_ptr(),
|
||||||
|
locale.as_ptr(),
|
||||||
|
xkb_compose_compile_flags::XKB_COMPOSE_COMPILE_NO_FLAGS,
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
let table = NonNull::new(table)?;
|
||||||
|
Some(Self { table })
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create new state with the given compose table.
|
||||||
|
pub fn new_state(&self) -> Option<XkbComposeState> {
|
||||||
|
let state = unsafe {
|
||||||
|
(XKBCH.xkb_compose_state_new)(
|
||||||
|
self.table.as_ptr(),
|
||||||
|
xkb_compose_state_flags::XKB_COMPOSE_STATE_NO_FLAGS,
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
let state = NonNull::new(state)?;
|
||||||
|
Some(XkbComposeState { state })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Deref for XkbComposeTable {
|
||||||
|
type Target = NonNull<xkb_compose_table>;
|
||||||
|
|
||||||
|
fn deref(&self) -> &Self::Target {
|
||||||
|
&self.table
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for XkbComposeTable {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBCH.xkb_compose_table_unref)(self.table.as_ptr());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct XkbComposeState {
|
||||||
|
state: NonNull<xkb_compose_state>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XkbComposeState {
|
||||||
|
pub fn get_string(&mut self, scratch_buffer: &mut Vec<u8>) -> Option<SmolStr> {
|
||||||
|
super::make_string_with(scratch_buffer, |ptr, len| unsafe {
|
||||||
|
(XKBCH.xkb_compose_state_get_utf8)(self.state.as_ptr(), ptr, len)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn feed(&mut self, keysym: xkb_keysym_t) -> ComposeStatus {
|
||||||
|
let feed_result = unsafe { (XKBCH.xkb_compose_state_feed)(self.state.as_ptr(), keysym) };
|
||||||
|
match feed_result {
|
||||||
|
xkb_compose_feed_result::XKB_COMPOSE_FEED_IGNORED => ComposeStatus::Ignored,
|
||||||
|
xkb_compose_feed_result::XKB_COMPOSE_FEED_ACCEPTED => {
|
||||||
|
ComposeStatus::Accepted(self.status())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn reset(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBCH.xkb_compose_state_reset)(self.state.as_ptr());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn status(&mut self) -> xkb_compose_status {
|
||||||
|
unsafe { (XKBCH.xkb_compose_state_get_status)(self.state.as_ptr()) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for XkbComposeState {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBCH.xkb_compose_state_unref)(self.state.as_ptr());
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Copy, Clone, Debug)]
|
||||||
|
pub enum ComposeStatus {
|
||||||
|
Accepted(xkb_compose_status),
|
||||||
|
Ignored,
|
||||||
|
None,
|
||||||
|
}
|
||||||
@@ -1,18 +1,36 @@
|
|||||||
//! Convert XKB keys to Winit keys.
|
//! XKB keymap.
|
||||||
|
|
||||||
|
use std::ffi::c_char;
|
||||||
|
use std::ops::Deref;
|
||||||
|
use std::ptr::{self, NonNull};
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
use x11_dl::xlib_xcb::xcb_connection_t;
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
use {memmap2::MmapOptions, std::os::unix::io::OwnedFd};
|
||||||
|
|
||||||
|
use xkb::XKB_MOD_INVALID;
|
||||||
|
use xkbcommon_dl::{
|
||||||
|
self as xkb, xkb_keycode_t, xkb_keymap, xkb_keymap_compile_flags, xkb_keysym_t,
|
||||||
|
xkb_layout_index_t, xkb_mod_index_t,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::keyboard::{Key, KeyCode, KeyLocation, NamedKey, NativeKey, NativeKeyCode, PhysicalKey};
|
use crate::keyboard::{Key, KeyCode, KeyLocation, NamedKey, NativeKey, NativeKeyCode, PhysicalKey};
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
use crate::platform_impl::common::xkb::XKBXH;
|
||||||
|
use crate::platform_impl::common::xkb::{XkbContext, XKBH};
|
||||||
|
|
||||||
/// Map the raw X11-style keycode to the `KeyCode` enum.
|
/// Map the raw X11-style keycode to the `KeyCode` enum.
|
||||||
///
|
///
|
||||||
/// X11-style keycodes are offset by 8 from the keycodes the Linux kernel uses.
|
/// X11-style keycodes are offset by 8 from the keycodes the Linux kernel uses.
|
||||||
pub fn raw_keycode_to_physicalkey(keycode: u32) -> PhysicalKey {
|
pub fn raw_keycode_to_physicalkey(keycode: u32) -> PhysicalKey {
|
||||||
scancode_to_physicalkey(keycode.saturating_sub(8))
|
scancode_to_physical_key(keycode.saturating_sub(8))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Map the linux scancode to Keycode.
|
/// Map the linux scancode to Keycode.
|
||||||
///
|
///
|
||||||
/// Both X11 and Wayland use keys with `+ 8` offset to linux scancode.
|
/// Both X11 and Wayland use keys with `+ 8` offset to linux scancode.
|
||||||
pub fn scancode_to_physicalkey(scancode: u32) -> PhysicalKey {
|
pub fn scancode_to_physical_key(scancode: u32) -> PhysicalKey {
|
||||||
// The keycode values are taken from linux/include/uapi/linux/input-event-codes.h, as
|
// The keycode values are taken from linux/include/uapi/linux/input-event-codes.h, as
|
||||||
// libxkbcommon's documentation seems to suggest that the keycode values we're interested in
|
// libxkbcommon's documentation seems to suggest that the keycode values we're interested in
|
||||||
// are defined by the Linux kernel. If Winit programs end up being run on other Unix-likes,
|
// are defined by the Linux kernel. If Winit programs end up being run on other Unix-likes,
|
||||||
@@ -269,7 +287,7 @@ pub fn scancode_to_physicalkey(scancode: u32) -> PhysicalKey {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn physicalkey_to_scancode(key: PhysicalKey) -> Option<u32> {
|
pub fn physical_key_to_scancode(key: PhysicalKey) -> Option<u32> {
|
||||||
let code = match key {
|
let code = match key {
|
||||||
PhysicalKey::Code(code) => code,
|
PhysicalKey::Code(code) => code,
|
||||||
PhysicalKey::Unidentified(code) => {
|
PhysicalKey::Unidentified(code) => {
|
||||||
@@ -894,3 +912,140 @@ pub fn keysym_location(keysym: u32) -> KeyLocation {
|
|||||||
_ => KeyLocation::Standard,
|
_ => KeyLocation::Standard,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct XkbKeymap {
|
||||||
|
keymap: NonNull<xkb_keymap>,
|
||||||
|
_mods_indices: ModsIndices,
|
||||||
|
pub _core_keyboard_id: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XkbKeymap {
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
pub fn from_fd(context: &XkbContext, fd: OwnedFd, size: usize) -> Option<Self> {
|
||||||
|
let map = unsafe { MmapOptions::new().len(size).map_copy_read_only(&fd).ok()? };
|
||||||
|
|
||||||
|
let keymap = unsafe {
|
||||||
|
let keymap = (XKBH.xkb_keymap_new_from_string)(
|
||||||
|
(*context).as_ptr(),
|
||||||
|
map.as_ptr() as *const _,
|
||||||
|
xkb::xkb_keymap_format::XKB_KEYMAP_FORMAT_TEXT_V1,
|
||||||
|
xkb_keymap_compile_flags::XKB_KEYMAP_COMPILE_NO_FLAGS,
|
||||||
|
);
|
||||||
|
NonNull::new(keymap)?
|
||||||
|
};
|
||||||
|
|
||||||
|
Some(Self::new_inner(keymap, 0))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn from_x11_keymap(
|
||||||
|
context: &XkbContext,
|
||||||
|
xcb: *mut xcb_connection_t,
|
||||||
|
core_keyboard_id: i32,
|
||||||
|
) -> Option<Self> {
|
||||||
|
let keymap = unsafe {
|
||||||
|
(XKBXH.xkb_x11_keymap_new_from_device)(
|
||||||
|
context.as_ptr(),
|
||||||
|
xcb,
|
||||||
|
core_keyboard_id,
|
||||||
|
xkb_keymap_compile_flags::XKB_KEYMAP_COMPILE_NO_FLAGS,
|
||||||
|
)
|
||||||
|
};
|
||||||
|
let keymap = NonNull::new(keymap)?;
|
||||||
|
Some(Self::new_inner(keymap, core_keyboard_id))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn new_inner(keymap: NonNull<xkb_keymap>, _core_keyboard_id: i32) -> Self {
|
||||||
|
let mods_indices = ModsIndices {
|
||||||
|
shift: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_SHIFT),
|
||||||
|
caps: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_CAPS),
|
||||||
|
ctrl: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_CTRL),
|
||||||
|
alt: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_ALT),
|
||||||
|
num: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_NUM),
|
||||||
|
mod3: mod_index_for_name(keymap, b"Mod3\0"),
|
||||||
|
logo: mod_index_for_name(keymap, xkb::XKB_MOD_NAME_LOGO),
|
||||||
|
mod5: mod_index_for_name(keymap, b"Mod5\0"),
|
||||||
|
};
|
||||||
|
|
||||||
|
Self {
|
||||||
|
keymap,
|
||||||
|
_mods_indices: mods_indices,
|
||||||
|
_core_keyboard_id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn mods_indices(&self) -> ModsIndices {
|
||||||
|
self._mods_indices
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn first_keysym_by_level(
|
||||||
|
&mut self,
|
||||||
|
layout: xkb_layout_index_t,
|
||||||
|
keycode: xkb_keycode_t,
|
||||||
|
) -> xkb_keysym_t {
|
||||||
|
unsafe {
|
||||||
|
let mut keysyms = ptr::null();
|
||||||
|
let count = (XKBH.xkb_keymap_key_get_syms_by_level)(
|
||||||
|
self.keymap.as_ptr(),
|
||||||
|
keycode,
|
||||||
|
layout,
|
||||||
|
// NOTE: The level should be zero to ignore modifiers.
|
||||||
|
0,
|
||||||
|
&mut keysyms,
|
||||||
|
);
|
||||||
|
|
||||||
|
if count == 1 {
|
||||||
|
*keysyms
|
||||||
|
} else {
|
||||||
|
0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check whether the given key repeats.
|
||||||
|
pub fn key_repeats(&mut self, keycode: xkb_keycode_t) -> bool {
|
||||||
|
unsafe { (XKBH.xkb_keymap_key_repeats)(self.keymap.as_ptr(), keycode) == 1 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for XkbKeymap {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_keymap_unref)(self.keymap.as_ptr());
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Deref for XkbKeymap {
|
||||||
|
type Target = NonNull<xkb_keymap>;
|
||||||
|
fn deref(&self) -> &Self::Target {
|
||||||
|
&self.keymap
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Modifier index in the keymap.
|
||||||
|
#[derive(Default, Debug, Clone, Copy)]
|
||||||
|
pub struct ModsIndices {
|
||||||
|
pub shift: Option<xkb_mod_index_t>,
|
||||||
|
pub caps: Option<xkb_mod_index_t>,
|
||||||
|
pub ctrl: Option<xkb_mod_index_t>,
|
||||||
|
pub alt: Option<xkb_mod_index_t>,
|
||||||
|
pub num: Option<xkb_mod_index_t>,
|
||||||
|
pub mod3: Option<xkb_mod_index_t>,
|
||||||
|
pub logo: Option<xkb_mod_index_t>,
|
||||||
|
pub mod5: Option<xkb_mod_index_t>,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn mod_index_for_name(keymap: NonNull<xkb_keymap>, name: &[u8]) -> Option<xkb_mod_index_t> {
|
||||||
|
unsafe {
|
||||||
|
let mod_index =
|
||||||
|
(XKBH.xkb_keymap_mod_get_index)(keymap.as_ptr(), name.as_ptr() as *const c_char);
|
||||||
|
if mod_index == XKB_MOD_INVALID {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(mod_index)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
460
src/platform_impl/linux/common/xkb/mod.rs
Normal file
@@ -0,0 +1,460 @@
|
|||||||
|
use std::ops::Deref;
|
||||||
|
use std::os::raw::c_char;
|
||||||
|
use std::ptr::{self, NonNull};
|
||||||
|
use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
|
|
||||||
|
use crate::utils::Lazy;
|
||||||
|
use smol_str::SmolStr;
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
use std::os::unix::io::OwnedFd;
|
||||||
|
use tracing::warn;
|
||||||
|
use xkbcommon_dl::{
|
||||||
|
self as xkb, xkb_compose_status, xkb_context, xkb_context_flags, xkbcommon_compose_handle,
|
||||||
|
xkbcommon_handle, XkbCommon, XkbCommonCompose,
|
||||||
|
};
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
use {x11_dl::xlib_xcb::xcb_connection_t, xkbcommon_dl::x11::xkbcommon_x11_handle};
|
||||||
|
|
||||||
|
use crate::event::ElementState;
|
||||||
|
use crate::event::KeyEvent;
|
||||||
|
use crate::keyboard::{Key, KeyLocation};
|
||||||
|
use crate::platform_impl::KeyEventExtra;
|
||||||
|
|
||||||
|
mod compose;
|
||||||
|
mod keymap;
|
||||||
|
mod state;
|
||||||
|
|
||||||
|
use compose::{ComposeStatus, XkbComposeState, XkbComposeTable};
|
||||||
|
use keymap::XkbKeymap;
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub use keymap::raw_keycode_to_physicalkey;
|
||||||
|
pub use keymap::{physical_key_to_scancode, scancode_to_physical_key};
|
||||||
|
pub use state::XkbState;
|
||||||
|
|
||||||
|
// TODO: Wire this up without using a static `AtomicBool`.
|
||||||
|
static RESET_DEAD_KEYS: AtomicBool = AtomicBool::new(false);
|
||||||
|
|
||||||
|
static XKBH: Lazy<&'static XkbCommon> = Lazy::new(xkbcommon_handle);
|
||||||
|
static XKBCH: Lazy<&'static XkbCommonCompose> = Lazy::new(xkbcommon_compose_handle);
|
||||||
|
#[cfg(feature = "x11")]
|
||||||
|
static XKBXH: Lazy<&'static xkb::x11::XkbCommonX11> = Lazy::new(xkbcommon_x11_handle);
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn reset_dead_keys() {
|
||||||
|
RESET_DEAD_KEYS.store(true, Ordering::SeqCst);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum Error {
|
||||||
|
/// libxkbcommon is not available
|
||||||
|
XKBNotFound,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct Context {
|
||||||
|
// NOTE: field order matters.
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub core_keyboard_id: i32,
|
||||||
|
state: Option<XkbState>,
|
||||||
|
keymap: Option<XkbKeymap>,
|
||||||
|
compose_state1: Option<XkbComposeState>,
|
||||||
|
compose_state2: Option<XkbComposeState>,
|
||||||
|
_compose_table: Option<XkbComposeTable>,
|
||||||
|
context: XkbContext,
|
||||||
|
scratch_buffer: Vec<u8>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Context {
|
||||||
|
pub fn new() -> Result<Self, Error> {
|
||||||
|
if xkb::xkbcommon_option().is_none() {
|
||||||
|
return Err(Error::XKBNotFound);
|
||||||
|
}
|
||||||
|
|
||||||
|
let context = XkbContext::new()?;
|
||||||
|
let mut compose_table = XkbComposeTable::new(&context);
|
||||||
|
let mut compose_state1 = compose_table.as_ref().and_then(|table| table.new_state());
|
||||||
|
let mut compose_state2 = compose_table.as_ref().and_then(|table| table.new_state());
|
||||||
|
|
||||||
|
// Disable compose if anything compose related failed to initialize.
|
||||||
|
if compose_table.is_none() || compose_state1.is_none() || compose_state2.is_none() {
|
||||||
|
compose_state2 = None;
|
||||||
|
compose_state1 = None;
|
||||||
|
compose_table = None;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Self {
|
||||||
|
state: None,
|
||||||
|
keymap: None,
|
||||||
|
compose_state1,
|
||||||
|
compose_state2,
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
core_keyboard_id: 0,
|
||||||
|
_compose_table: compose_table,
|
||||||
|
context,
|
||||||
|
scratch_buffer: Vec::with_capacity(8),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "x11")]
|
||||||
|
pub fn from_x11_xkb(xcb: *mut xcb_connection_t) -> Result<Self, Error> {
|
||||||
|
let result = unsafe {
|
||||||
|
(XKBXH.xkb_x11_setup_xkb_extension)(
|
||||||
|
xcb,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
xkbcommon_dl::x11::xkb_x11_setup_xkb_extension_flags::XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
|
||||||
|
ptr::null_mut(),
|
||||||
|
ptr::null_mut(),
|
||||||
|
ptr::null_mut(),
|
||||||
|
ptr::null_mut(),
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
if result != 1 {
|
||||||
|
return Err(Error::XKBNotFound);
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut this = Self::new()?;
|
||||||
|
this.core_keyboard_id = unsafe { (XKBXH.xkb_x11_get_core_keyboard_device_id)(xcb) };
|
||||||
|
this.set_keymap_from_x11(xcb);
|
||||||
|
Ok(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn state_mut(&mut self) -> Option<&mut XkbState> {
|
||||||
|
self.state.as_mut()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn keymap_mut(&mut self) -> Option<&mut XkbKeymap> {
|
||||||
|
self.keymap.as_mut()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
pub fn set_keymap_from_fd(&mut self, fd: OwnedFd, size: usize) {
|
||||||
|
let keymap = XkbKeymap::from_fd(&self.context, fd, size);
|
||||||
|
let state = keymap.as_ref().and_then(XkbState::new_wayland);
|
||||||
|
if keymap.is_none() || state.is_none() {
|
||||||
|
warn!("failed to update xkb keymap");
|
||||||
|
}
|
||||||
|
self.state = state;
|
||||||
|
self.keymap = keymap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn set_keymap_from_x11(&mut self, xcb: *mut xcb_connection_t) {
|
||||||
|
let keymap = XkbKeymap::from_x11_keymap(&self.context, xcb, self.core_keyboard_id);
|
||||||
|
let state = keymap
|
||||||
|
.as_ref()
|
||||||
|
.and_then(|keymap| XkbState::new_x11(xcb, keymap));
|
||||||
|
if keymap.is_none() || state.is_none() {
|
||||||
|
warn!("failed to update xkb keymap");
|
||||||
|
}
|
||||||
|
self.state = state;
|
||||||
|
self.keymap = keymap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Key builder context with the user provided xkb state.
|
||||||
|
pub fn key_context(&mut self) -> Option<KeyContext<'_>> {
|
||||||
|
let state = self.state.as_mut()?;
|
||||||
|
let keymap = self.keymap.as_mut()?;
|
||||||
|
let compose_state1 = self.compose_state1.as_mut();
|
||||||
|
let compose_state2 = self.compose_state2.as_mut();
|
||||||
|
let scratch_buffer = &mut self.scratch_buffer;
|
||||||
|
Some(KeyContext {
|
||||||
|
state,
|
||||||
|
keymap,
|
||||||
|
compose_state1,
|
||||||
|
compose_state2,
|
||||||
|
scratch_buffer,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Key builder context with the user provided xkb state.
|
||||||
|
///
|
||||||
|
/// Should be used when the original context must not be altered.
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn key_context_with_state<'a>(
|
||||||
|
&'a mut self,
|
||||||
|
state: &'a mut XkbState,
|
||||||
|
) -> Option<KeyContext<'a>> {
|
||||||
|
let keymap = self.keymap.as_mut()?;
|
||||||
|
let compose_state1 = self.compose_state1.as_mut();
|
||||||
|
let compose_state2 = self.compose_state2.as_mut();
|
||||||
|
let scratch_buffer = &mut self.scratch_buffer;
|
||||||
|
Some(KeyContext {
|
||||||
|
state,
|
||||||
|
keymap,
|
||||||
|
compose_state1,
|
||||||
|
compose_state2,
|
||||||
|
scratch_buffer,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct KeyContext<'a> {
|
||||||
|
pub state: &'a mut XkbState,
|
||||||
|
pub keymap: &'a mut XkbKeymap,
|
||||||
|
compose_state1: Option<&'a mut XkbComposeState>,
|
||||||
|
compose_state2: Option<&'a mut XkbComposeState>,
|
||||||
|
scratch_buffer: &'a mut Vec<u8>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> KeyContext<'a> {
|
||||||
|
pub fn process_key_event(
|
||||||
|
&mut self,
|
||||||
|
keycode: u32,
|
||||||
|
state: ElementState,
|
||||||
|
repeat: bool,
|
||||||
|
) -> KeyEvent {
|
||||||
|
let mut event =
|
||||||
|
KeyEventResults::new(self, keycode, !repeat && state == ElementState::Pressed);
|
||||||
|
let physical_key = keymap::raw_keycode_to_physicalkey(keycode);
|
||||||
|
let (logical_key, location) = event.key();
|
||||||
|
let text = event.text();
|
||||||
|
let (key_without_modifiers, _) = event.key_without_modifiers();
|
||||||
|
let text_with_all_modifiers = event.text_with_all_modifiers();
|
||||||
|
|
||||||
|
let platform_specific = KeyEventExtra {
|
||||||
|
text_with_all_modifiers,
|
||||||
|
key_without_modifiers,
|
||||||
|
};
|
||||||
|
|
||||||
|
KeyEvent {
|
||||||
|
physical_key,
|
||||||
|
logical_key,
|
||||||
|
text,
|
||||||
|
location,
|
||||||
|
state,
|
||||||
|
repeat,
|
||||||
|
platform_specific,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn keysym_to_utf8_raw(&mut self, keysym: u32) -> Option<SmolStr> {
|
||||||
|
self.scratch_buffer.clear();
|
||||||
|
self.scratch_buffer.reserve(8);
|
||||||
|
loop {
|
||||||
|
let bytes_written = unsafe {
|
||||||
|
(XKBH.xkb_keysym_to_utf8)(
|
||||||
|
keysym,
|
||||||
|
self.scratch_buffer.as_mut_ptr().cast(),
|
||||||
|
self.scratch_buffer.capacity(),
|
||||||
|
)
|
||||||
|
};
|
||||||
|
if bytes_written == 0 {
|
||||||
|
return None;
|
||||||
|
} else if bytes_written == -1 {
|
||||||
|
self.scratch_buffer.reserve(8);
|
||||||
|
} else {
|
||||||
|
unsafe {
|
||||||
|
self.scratch_buffer
|
||||||
|
.set_len(bytes_written.try_into().unwrap())
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the null-terminator
|
||||||
|
self.scratch_buffer.pop();
|
||||||
|
byte_slice_to_smol_str(self.scratch_buffer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct KeyEventResults<'a, 'b> {
|
||||||
|
context: &'a mut KeyContext<'b>,
|
||||||
|
keycode: u32,
|
||||||
|
keysym: u32,
|
||||||
|
compose: ComposeStatus,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, 'b> KeyEventResults<'a, 'b> {
|
||||||
|
fn new(context: &'a mut KeyContext<'b>, keycode: u32, compose: bool) -> Self {
|
||||||
|
let keysym = context.state.get_one_sym_raw(keycode);
|
||||||
|
|
||||||
|
let compose = if let Some(state) = context.compose_state1.as_mut().filter(|_| compose) {
|
||||||
|
if RESET_DEAD_KEYS.swap(false, Ordering::SeqCst) {
|
||||||
|
state.reset();
|
||||||
|
context.compose_state2.as_mut().unwrap().reset();
|
||||||
|
}
|
||||||
|
state.feed(keysym)
|
||||||
|
} else {
|
||||||
|
ComposeStatus::None
|
||||||
|
};
|
||||||
|
|
||||||
|
KeyEventResults {
|
||||||
|
context,
|
||||||
|
keycode,
|
||||||
|
keysym,
|
||||||
|
compose,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn key(&mut self) -> (Key, KeyLocation) {
|
||||||
|
let (key, location) = match self.keysym_to_key(self.keysym) {
|
||||||
|
Ok(known) => return known,
|
||||||
|
Err(undefined) => undefined,
|
||||||
|
};
|
||||||
|
|
||||||
|
if let ComposeStatus::Accepted(xkb_compose_status::XKB_COMPOSE_COMPOSING) = self.compose {
|
||||||
|
let compose_state = self.context.compose_state2.as_mut().unwrap();
|
||||||
|
// When pressing a dead key twice, the non-combining variant of that character will
|
||||||
|
// be produced. Since this function only concerns itself with a single keypress, we
|
||||||
|
// simulate this double press here by feeding the keysym to the compose state
|
||||||
|
// twice.
|
||||||
|
|
||||||
|
compose_state.feed(self.keysym);
|
||||||
|
if matches!(compose_state.feed(self.keysym), ComposeStatus::Accepted(_)) {
|
||||||
|
// Extracting only a single `char` here *should* be fine, assuming that no
|
||||||
|
// dead key's non-combining variant ever occupies more than one `char`.
|
||||||
|
let text = compose_state.get_string(self.context.scratch_buffer);
|
||||||
|
let key = Key::Dead(text.and_then(|s| s.chars().next()));
|
||||||
|
(key, location)
|
||||||
|
} else {
|
||||||
|
(key, location)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let key = self
|
||||||
|
.composed_text()
|
||||||
|
.unwrap_or_else(|_| self.context.keysym_to_utf8_raw(self.keysym))
|
||||||
|
.map(Key::Character)
|
||||||
|
.unwrap_or(key);
|
||||||
|
(key, location)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn key_without_modifiers(&mut self) -> (Key, KeyLocation) {
|
||||||
|
// This will become a pointer to an array which libxkbcommon owns, so we don't need to deallocate it.
|
||||||
|
let layout = self.context.state.layout(self.keycode);
|
||||||
|
let keysym = self
|
||||||
|
.context
|
||||||
|
.keymap
|
||||||
|
.first_keysym_by_level(layout, self.keycode);
|
||||||
|
|
||||||
|
match self.keysym_to_key(keysym) {
|
||||||
|
Ok((key, location)) => (key, location),
|
||||||
|
Err((key, location)) => {
|
||||||
|
let key = self
|
||||||
|
.context
|
||||||
|
.keysym_to_utf8_raw(keysym)
|
||||||
|
.map(Key::Character)
|
||||||
|
.unwrap_or(key);
|
||||||
|
(key, location)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn keysym_to_key(&self, keysym: u32) -> Result<(Key, KeyLocation), (Key, KeyLocation)> {
|
||||||
|
let location = keymap::keysym_location(keysym);
|
||||||
|
let key = keymap::keysym_to_key(keysym);
|
||||||
|
if matches!(key, Key::Unidentified(_)) {
|
||||||
|
Err((key, location))
|
||||||
|
} else {
|
||||||
|
Ok((key, location))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn text(&mut self) -> Option<SmolStr> {
|
||||||
|
self.composed_text()
|
||||||
|
.unwrap_or_else(|_| self.context.keysym_to_utf8_raw(self.keysym))
|
||||||
|
}
|
||||||
|
|
||||||
|
// The current behaviour makes it so composing a character overrides attempts to input a
|
||||||
|
// control character with the `Ctrl` key. We can potentially add a configuration option
|
||||||
|
// if someone specifically wants the oppsite behaviour.
|
||||||
|
pub fn text_with_all_modifiers(&mut self) -> Option<SmolStr> {
|
||||||
|
match self.composed_text() {
|
||||||
|
Ok(text) => text,
|
||||||
|
Err(_) => self
|
||||||
|
.context
|
||||||
|
.state
|
||||||
|
.get_utf8_raw(self.keycode, self.context.scratch_buffer),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn composed_text(&mut self) -> Result<Option<SmolStr>, ()> {
|
||||||
|
match self.compose {
|
||||||
|
ComposeStatus::Accepted(xkb_compose_status::XKB_COMPOSE_COMPOSED) => {
|
||||||
|
let state = self.context.compose_state1.as_mut().unwrap();
|
||||||
|
Ok(state.get_string(self.context.scratch_buffer))
|
||||||
|
}
|
||||||
|
_ => Err(()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct XkbContext {
|
||||||
|
context: NonNull<xkb_context>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XkbContext {
|
||||||
|
pub fn new() -> Result<Self, Error> {
|
||||||
|
let context = unsafe { (XKBH.xkb_context_new)(xkb_context_flags::XKB_CONTEXT_NO_FLAGS) };
|
||||||
|
|
||||||
|
let context = match NonNull::new(context) {
|
||||||
|
Some(context) => context,
|
||||||
|
None => return Err(Error::XKBNotFound),
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(Self { context })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for XkbContext {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_context_unref)(self.context.as_ptr());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Deref for XkbContext {
|
||||||
|
type Target = NonNull<xkb_context>;
|
||||||
|
|
||||||
|
fn deref(&self) -> &Self::Target {
|
||||||
|
&self.context
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Shared logic for constructing a string with `xkb_compose_state_get_utf8` and
|
||||||
|
/// `xkb_state_key_get_utf8`.
|
||||||
|
fn make_string_with<F>(scratch_buffer: &mut Vec<u8>, mut f: F) -> Option<SmolStr>
|
||||||
|
where
|
||||||
|
F: FnMut(*mut c_char, usize) -> i32,
|
||||||
|
{
|
||||||
|
let size = f(ptr::null_mut(), 0);
|
||||||
|
if size == 0 {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let size = usize::try_from(size).unwrap();
|
||||||
|
scratch_buffer.clear();
|
||||||
|
// The allocated buffer must include space for the null-terminator.
|
||||||
|
scratch_buffer.reserve(size + 1);
|
||||||
|
unsafe {
|
||||||
|
let written = f(
|
||||||
|
scratch_buffer.as_mut_ptr().cast(),
|
||||||
|
scratch_buffer.capacity(),
|
||||||
|
);
|
||||||
|
if usize::try_from(written).unwrap() != size {
|
||||||
|
// This will likely never happen.
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
scratch_buffer.set_len(size);
|
||||||
|
};
|
||||||
|
|
||||||
|
byte_slice_to_smol_str(scratch_buffer)
|
||||||
|
}
|
||||||
|
|
||||||
|
// NOTE: This is track_caller so we can have more informative line numbers when logging
|
||||||
|
#[track_caller]
|
||||||
|
fn byte_slice_to_smol_str(bytes: &[u8]) -> Option<SmolStr> {
|
||||||
|
std::str::from_utf8(bytes)
|
||||||
|
.map(SmolStr::new)
|
||||||
|
.map_err(|e| {
|
||||||
|
tracing::warn!(
|
||||||
|
"UTF-8 received from libxkbcommon ({:?}) was invalid: {e}",
|
||||||
|
bytes
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.ok()
|
||||||
|
}
|
||||||
189
src/platform_impl/linux/common/xkb/state.rs
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
//! XKB state.
|
||||||
|
|
||||||
|
use std::os::raw::c_char;
|
||||||
|
use std::ptr::NonNull;
|
||||||
|
|
||||||
|
use smol_str::SmolStr;
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
use x11_dl::xlib_xcb::xcb_connection_t;
|
||||||
|
use xkbcommon_dl::{
|
||||||
|
self as xkb, xkb_keycode_t, xkb_keysym_t, xkb_layout_index_t, xkb_state, xkb_state_component,
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::platform_impl::common::xkb::keymap::XkbKeymap;
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
use crate::platform_impl::common::xkb::XKBXH;
|
||||||
|
use crate::platform_impl::common::xkb::{make_string_with, XKBH};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct XkbState {
|
||||||
|
state: NonNull<xkb_state>,
|
||||||
|
modifiers: ModifiersState,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XkbState {
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
pub fn new_wayland(keymap: &XkbKeymap) -> Option<Self> {
|
||||||
|
let state = NonNull::new(unsafe { (XKBH.xkb_state_new)(keymap.as_ptr()) })?;
|
||||||
|
Some(Self::new_inner(state))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn new_x11(xcb: *mut xcb_connection_t, keymap: &XkbKeymap) -> Option<Self> {
|
||||||
|
let state = unsafe {
|
||||||
|
(XKBXH.xkb_x11_state_new_from_device)(keymap.as_ptr(), xcb, keymap._core_keyboard_id)
|
||||||
|
};
|
||||||
|
let state = NonNull::new(state)?;
|
||||||
|
Some(Self::new_inner(state))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn new_inner(state: NonNull<xkb_state>) -> Self {
|
||||||
|
let modifiers = ModifiersState::default();
|
||||||
|
let mut this = Self { state, modifiers };
|
||||||
|
this.reload_modifiers();
|
||||||
|
this
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_one_sym_raw(&mut self, keycode: xkb_keycode_t) -> xkb_keysym_t {
|
||||||
|
unsafe { (XKBH.xkb_state_key_get_one_sym)(self.state.as_ptr(), keycode) }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn layout(&mut self, key: xkb_keycode_t) -> xkb_layout_index_t {
|
||||||
|
unsafe { (XKBH.xkb_state_key_get_layout)(self.state.as_ptr(), key) }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn depressed_modifiers(&mut self) -> xkb::xkb_mod_mask_t {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_state_serialize_mods)(
|
||||||
|
self.state.as_ptr(),
|
||||||
|
xkb_state_component::XKB_STATE_MODS_DEPRESSED,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn latched_modifiers(&mut self) -> xkb::xkb_mod_mask_t {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_state_serialize_mods)(
|
||||||
|
self.state.as_ptr(),
|
||||||
|
xkb_state_component::XKB_STATE_MODS_LATCHED,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
pub fn locked_modifiers(&mut self) -> xkb::xkb_mod_mask_t {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_state_serialize_mods)(
|
||||||
|
self.state.as_ptr(),
|
||||||
|
xkb_state_component::XKB_STATE_MODS_LOCKED,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_utf8_raw(
|
||||||
|
&mut self,
|
||||||
|
keycode: xkb_keycode_t,
|
||||||
|
scratch_buffer: &mut Vec<u8>,
|
||||||
|
) -> Option<SmolStr> {
|
||||||
|
make_string_with(scratch_buffer, |ptr, len| unsafe {
|
||||||
|
(XKBH.xkb_state_key_get_utf8)(self.state.as_ptr(), keycode, ptr, len)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn modifiers(&self) -> ModifiersState {
|
||||||
|
self.modifiers
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn update_modifiers(
|
||||||
|
&mut self,
|
||||||
|
mods_depressed: u32,
|
||||||
|
mods_latched: u32,
|
||||||
|
mods_locked: u32,
|
||||||
|
depressed_group: u32,
|
||||||
|
latched_group: u32,
|
||||||
|
locked_group: u32,
|
||||||
|
) {
|
||||||
|
let mask = unsafe {
|
||||||
|
(XKBH.xkb_state_update_mask)(
|
||||||
|
self.state.as_ptr(),
|
||||||
|
mods_depressed,
|
||||||
|
mods_latched,
|
||||||
|
mods_locked,
|
||||||
|
depressed_group,
|
||||||
|
latched_group,
|
||||||
|
locked_group,
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
if mask.contains(xkb_state_component::XKB_STATE_MODS_EFFECTIVE) {
|
||||||
|
// Effective value of mods have changed, we need to update our state.
|
||||||
|
self.reload_modifiers();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Reload the modifiers.
|
||||||
|
fn reload_modifiers(&mut self) {
|
||||||
|
self.modifiers.ctrl = self.mod_name_is_active(xkb::XKB_MOD_NAME_CTRL);
|
||||||
|
self.modifiers.alt = self.mod_name_is_active(xkb::XKB_MOD_NAME_ALT);
|
||||||
|
self.modifiers.shift = self.mod_name_is_active(xkb::XKB_MOD_NAME_SHIFT);
|
||||||
|
self.modifiers.caps_lock = self.mod_name_is_active(xkb::XKB_MOD_NAME_CAPS);
|
||||||
|
self.modifiers.logo = self.mod_name_is_active(xkb::XKB_MOD_NAME_LOGO);
|
||||||
|
self.modifiers.num_lock = self.mod_name_is_active(xkb::XKB_MOD_NAME_NUM);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check if the modifier is active within xkb.
|
||||||
|
fn mod_name_is_active(&mut self, name: &[u8]) -> bool {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_state_mod_name_is_active)(
|
||||||
|
self.state.as_ptr(),
|
||||||
|
name.as_ptr() as *const c_char,
|
||||||
|
xkb_state_component::XKB_STATE_MODS_EFFECTIVE,
|
||||||
|
) > 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for XkbState {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
(XKBH.xkb_state_unref)(self.state.as_ptr());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Represents the current state of the keyboard modifiers
|
||||||
|
///
|
||||||
|
/// Each field of this struct represents a modifier and is `true` if this modifier is active.
|
||||||
|
///
|
||||||
|
/// For some modifiers, this means that the key is currently pressed, others are toggled
|
||||||
|
/// (like caps lock).
|
||||||
|
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq)]
|
||||||
|
pub struct ModifiersState {
|
||||||
|
/// The "control" key
|
||||||
|
pub ctrl: bool,
|
||||||
|
/// The "alt" key
|
||||||
|
pub alt: bool,
|
||||||
|
/// The "shift" key
|
||||||
|
pub shift: bool,
|
||||||
|
/// The "Caps lock" key
|
||||||
|
pub caps_lock: bool,
|
||||||
|
/// The "logo" key
|
||||||
|
///
|
||||||
|
/// Also known as the "windows" key on most keyboards
|
||||||
|
pub logo: bool,
|
||||||
|
/// The "Num lock" key
|
||||||
|
pub num_lock: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<ModifiersState> for crate::keyboard::ModifiersState {
|
||||||
|
fn from(mods: ModifiersState) -> crate::keyboard::ModifiersState {
|
||||||
|
let mut to_mods = crate::keyboard::ModifiersState::empty();
|
||||||
|
to_mods.set(crate::keyboard::ModifiersState::SHIFT, mods.shift);
|
||||||
|
to_mods.set(crate::keyboard::ModifiersState::CONTROL, mods.ctrl);
|
||||||
|
to_mods.set(crate::keyboard::ModifiersState::ALT, mods.alt);
|
||||||
|
to_mods.set(crate::keyboard::ModifiersState::SUPER, mods.logo);
|
||||||
|
to_mods
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -11,19 +11,19 @@ use std::{collections::VecDeque, env, fmt};
|
|||||||
use std::{ffi::CStr, mem::MaybeUninit, os::raw::*, sync::Mutex};
|
use std::{ffi::CStr, mem::MaybeUninit, os::raw::*, sync::Mutex};
|
||||||
|
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
use once_cell::sync::Lazy;
|
use crate::utils::Lazy;
|
||||||
use smol_str::SmolStr;
|
use smol_str::SmolStr;
|
||||||
|
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
use self::x11::{X11Error, XConnection, XError, XNotSupported};
|
use self::x11::{X11Error, XConnection, XError, XNotSupported};
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
use crate::platform::x11::{WindowType as XWindowType, XlibErrorHook};
|
use crate::platform::x11::{WindowType as XWindowType, XlibErrorHook};
|
||||||
|
use crate::window::{CustomCursor, CustomCursorSource};
|
||||||
use crate::{
|
use crate::{
|
||||||
dpi::{PhysicalPosition, PhysicalSize, Position, Size},
|
dpi::{PhysicalPosition, PhysicalSize, Position, Size},
|
||||||
error::{EventLoopError, ExternalError, NotSupportedError, OsError as RootOsError},
|
error::{EventLoopError, ExternalError, NotSupportedError, OsError as RootOsError},
|
||||||
event_loop::{
|
event_loop::{
|
||||||
AsyncRequestSerial, ControlFlow, DeviceEvents, EventLoopClosed,
|
ActiveEventLoop as RootELW, AsyncRequestSerial, ControlFlow, DeviceEvents, EventLoopClosed,
|
||||||
EventLoopWindowTarget as RootELW,
|
|
||||||
},
|
},
|
||||||
icon::Icon,
|
icon::Icon,
|
||||||
keyboard::Key,
|
keyboard::Key,
|
||||||
@@ -34,8 +34,8 @@ use crate::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
pub(crate) use self::common::keymap::{physicalkey_to_scancode, scancode_to_physicalkey};
|
pub(crate) use self::common::xkb::{physical_key_to_scancode, scancode_to_physical_key};
|
||||||
pub(crate) use crate::cursor::OnlyCursorImageBuilder as PlatformCustomCursorBuilder;
|
pub(crate) use crate::cursor::OnlyCursorImageSource as PlatformCustomCursorSource;
|
||||||
pub(crate) use crate::icon::RgbaIcon as PlatformIcon;
|
pub(crate) use crate::icon::RgbaIcon as PlatformIcon;
|
||||||
pub(crate) use crate::platform_impl::Fullscreen;
|
pub(crate) use crate::platform_impl::Fullscreen;
|
||||||
|
|
||||||
@@ -72,16 +72,16 @@ impl ApplicationName {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct PlatformSpecificWindowBuilderAttributes {
|
pub struct PlatformSpecificWindowAttributes {
|
||||||
pub name: Option<ApplicationName>,
|
pub name: Option<ApplicationName>,
|
||||||
pub activation_token: Option<ActivationToken>,
|
pub activation_token: Option<ActivationToken>,
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
pub x11: X11WindowBuilderAttributes,
|
pub x11: X11WindowAttributes,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
pub struct X11WindowBuilderAttributes {
|
pub struct X11WindowAttributes {
|
||||||
pub visual_id: Option<x11rb::protocol::xproto::Visualid>,
|
pub visual_id: Option<x11rb::protocol::xproto::Visualid>,
|
||||||
pub screen_id: Option<i32>,
|
pub screen_id: Option<i32>,
|
||||||
pub base_size: Option<Size>,
|
pub base_size: Option<Size>,
|
||||||
@@ -92,13 +92,13 @@ pub struct X11WindowBuilderAttributes {
|
|||||||
pub embed_window: Option<x11rb::protocol::xproto::Window>,
|
pub embed_window: Option<x11rb::protocol::xproto::Window>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for PlatformSpecificWindowBuilderAttributes {
|
impl Default for PlatformSpecificWindowAttributes {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
name: None,
|
name: None,
|
||||||
activation_token: None,
|
activation_token: None,
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
x11: X11WindowBuilderAttributes {
|
x11: X11WindowAttributes {
|
||||||
visual_id: None,
|
visual_id: None,
|
||||||
screen_id: None,
|
screen_id: None,
|
||||||
base_size: None,
|
base_size: None,
|
||||||
@@ -142,6 +142,44 @@ pub(crate) enum Window {
|
|||||||
Wayland(wayland::Window),
|
Wayland(wayland::Window),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct WindowId(u64);
|
||||||
|
|
||||||
|
impl From<WindowId> for u64 {
|
||||||
|
fn from(window_id: WindowId) -> Self {
|
||||||
|
window_id.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<u64> for WindowId {
|
||||||
|
fn from(raw_id: u64) -> Self {
|
||||||
|
Self(raw_id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WindowId {
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
Self(0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub enum DeviceId {
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
X(x11::DeviceId),
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
Wayland(wayland::DeviceId),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeviceId {
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
#[cfg(wayland_platform)]
|
||||||
|
return DeviceId::Wayland(unsafe { wayland::DeviceId::dummy() });
|
||||||
|
#[cfg(all(not(wayland_platform), x11_platform))]
|
||||||
|
return DeviceId::X(unsafe { x11::DeviceId::dummy() });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
||||||
pub enum MonitorHandle {
|
pub enum MonitorHandle {
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
@@ -248,16 +286,16 @@ impl VideoModeHandle {
|
|||||||
impl Window {
|
impl Window {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
window_target: &EventLoopWindowTarget,
|
window_target: &ActiveEventLoop,
|
||||||
attribs: WindowAttributes,
|
attribs: WindowAttributes,
|
||||||
) -> Result<Self, RootOsError> {
|
) -> Result<Self, RootOsError> {
|
||||||
match *window_target {
|
match *window_target {
|
||||||
#[cfg(wayland_platform)]
|
#[cfg(wayland_platform)]
|
||||||
EventLoopWindowTarget::Wayland(ref window_target) => {
|
ActiveEventLoop::Wayland(ref window_target) => {
|
||||||
wayland::Window::new(window_target, attribs).map(Window::Wayland)
|
wayland::Window::new(window_target, attribs).map(Window::Wayland)
|
||||||
}
|
}
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
EventLoopWindowTarget::X(ref window_target) => {
|
ActiveEventLoop::X(ref window_target) => {
|
||||||
x11::Window::new(window_target, attribs).map(Window::X)
|
x11::Window::new(window_target, attribs).map(Window::X)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -272,7 +310,7 @@ impl Window {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn id(&self) -> crate::window::WindowId {
|
pub fn id(&self) -> WindowId {
|
||||||
x11_or_wayland!(match self; Window(w) => w.id())
|
x11_or_wayland!(match self; Window(w) => w.id())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -478,7 +516,7 @@ impl Window {
|
|||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn reset_dead_keys(&self) {
|
pub fn reset_dead_keys(&self) {
|
||||||
common::xkb_state::reset_dead_keys()
|
common::xkb::reset_dead_keys()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
@@ -606,26 +644,10 @@ pub(crate) enum PlatformCustomCursor {
|
|||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
X(x11::CustomCursor),
|
X(x11::CustomCursor),
|
||||||
}
|
}
|
||||||
impl PlatformCustomCursor {
|
|
||||||
pub(crate) fn build(
|
|
||||||
builder: PlatformCustomCursorBuilder,
|
|
||||||
p: &EventLoopWindowTarget,
|
|
||||||
) -> PlatformCustomCursor {
|
|
||||||
match p {
|
|
||||||
#[cfg(wayland_platform)]
|
|
||||||
EventLoopWindowTarget::Wayland(_) => {
|
|
||||||
Self::Wayland(wayland::CustomCursor::build(builder, p))
|
|
||||||
}
|
|
||||||
#[cfg(x11_platform)]
|
|
||||||
EventLoopWindowTarget::X(p) => Self::X(x11::CustomCursor::build(builder, p)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Hooks for X11 errors.
|
/// Hooks for X11 errors.
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
pub(crate) static mut XLIB_ERROR_HOOKS: Lazy<Mutex<Vec<XlibErrorHook>>> =
|
pub(crate) static mut XLIB_ERROR_HOOKS: Mutex<Vec<XlibErrorHook>> = Mutex::new(Vec::new());
|
||||||
Lazy::new(|| Mutex::new(Vec::new()));
|
|
||||||
|
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
unsafe extern "C" fn x_error_callback(
|
unsafe extern "C" fn x_error_callback(
|
||||||
@@ -665,7 +687,7 @@ unsafe extern "C" fn x_error_callback(
|
|||||||
|
|
||||||
// Don't log error.
|
// Don't log error.
|
||||||
if !error_handled {
|
if !error_handled {
|
||||||
log::error!("X11 error: {:#?}", error);
|
tracing::error!("X11 error: {:#?}", error);
|
||||||
// XXX only update the error, if it wasn't handled by any of the hooks.
|
// XXX only update the error, if it wasn't handled by any of the hooks.
|
||||||
*xconn.latest_error.lock().unwrap() = Some(error);
|
*xconn.latest_error.lock().unwrap() = Some(error);
|
||||||
}
|
}
|
||||||
@@ -791,7 +813,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
x11_or_wayland!(match self; EventLoop(evlp) => evlp.pump_events(timeout, callback))
|
x11_or_wayland!(match self; EventLoop(evlp) => evlp.pump_events(timeout, callback))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn window_target(&self) -> &crate::event_loop::EventLoopWindowTarget {
|
pub fn window_target(&self) -> &crate::event_loop::ActiveEventLoop {
|
||||||
x11_or_wayland!(match self; EventLoop(evlp) => evlp.window_target())
|
x11_or_wayland!(match self; EventLoop(evlp) => evlp.window_target())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -814,34 +836,38 @@ impl<T: 'static> EventLoopProxy<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum EventLoopWindowTarget {
|
pub enum ActiveEventLoop {
|
||||||
#[cfg(wayland_platform)]
|
#[cfg(wayland_platform)]
|
||||||
Wayland(wayland::EventLoopWindowTarget),
|
Wayland(wayland::ActiveEventLoop),
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
X(x11::EventLoopWindowTarget),
|
X(x11::ActiveEventLoop),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn is_wayland(&self) -> bool {
|
pub fn is_wayland(&self) -> bool {
|
||||||
match *self {
|
match *self {
|
||||||
#[cfg(wayland_platform)]
|
#[cfg(wayland_platform)]
|
||||||
EventLoopWindowTarget::Wayland(_) => true,
|
ActiveEventLoop::Wayland(_) => true,
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn create_custom_cursor(&self, cursor: CustomCursorSource) -> CustomCursor {
|
||||||
|
x11_or_wayland!(match self; ActiveEventLoop(evlp) => evlp.create_custom_cursor(cursor))
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
||||||
match *self {
|
match *self {
|
||||||
#[cfg(wayland_platform)]
|
#[cfg(wayland_platform)]
|
||||||
EventLoopWindowTarget::Wayland(ref evlp) => evlp
|
ActiveEventLoop::Wayland(ref evlp) => evlp
|
||||||
.available_monitors()
|
.available_monitors()
|
||||||
.map(MonitorHandle::Wayland)
|
.map(MonitorHandle::Wayland)
|
||||||
.collect(),
|
.collect(),
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
EventLoopWindowTarget::X(ref evlp) => {
|
ActiveEventLoop::X(ref evlp) => {
|
||||||
evlp.available_monitors().map(MonitorHandle::X).collect()
|
evlp.available_monitors().map(MonitorHandle::X).collect()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -850,7 +876,7 @@ impl EventLoopWindowTarget {
|
|||||||
#[inline]
|
#[inline]
|
||||||
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
||||||
Some(
|
Some(
|
||||||
x11_or_wayland!(match self; EventLoopWindowTarget(evlp) => evlp.primary_monitor()?; as MonitorHandle),
|
x11_or_wayland!(match self; ActiveEventLoop(evlp) => evlp.primary_monitor()?; as MonitorHandle),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -902,10 +928,12 @@ impl EventLoopWindowTarget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn set_exit_code(&self, code: i32) {
|
fn set_exit_code(&self, code: i32) {
|
||||||
x11_or_wayland!(match self; Self(evlp) => evlp.set_exit_code(code))
|
x11_or_wayland!(match self; Self(evlp) => evlp.set_exit_code(code))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn exit_code(&self) -> Option<i32> {
|
fn exit_code(&self) -> Option<i32> {
|
||||||
x11_or_wayland!(match self; Self(evlp) => evlp.exit_code())
|
x11_or_wayland!(match self; Self(evlp) => evlp.exit_code())
|
||||||
}
|
}
|
||||||
@@ -10,21 +10,22 @@ use std::sync::atomic::Ordering;
|
|||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use std::time::{Duration, Instant};
|
use std::time::{Duration, Instant};
|
||||||
|
|
||||||
use sctk::reexports::calloop;
|
|
||||||
use sctk::reexports::calloop::Error as CalloopError;
|
use sctk::reexports::calloop::Error as CalloopError;
|
||||||
use sctk::reexports::calloop_wayland_source::WaylandSource;
|
use sctk::reexports::calloop_wayland_source::WaylandSource;
|
||||||
use sctk::reexports::client::globals;
|
use sctk::reexports::client::globals;
|
||||||
use sctk::reexports::client::{Connection, QueueHandle};
|
use sctk::reexports::client::{Connection, QueueHandle};
|
||||||
|
|
||||||
|
use crate::cursor::OnlyCursorImage;
|
||||||
use crate::dpi::LogicalSize;
|
use crate::dpi::LogicalSize;
|
||||||
use crate::error::{EventLoopError, OsError as RootOsError};
|
use crate::error::{EventLoopError, OsError as RootOsError};
|
||||||
use crate::event::{Event, InnerSizeWriter, StartCause, WindowEvent};
|
use crate::event::{Event, InnerSizeWriter, StartCause, WindowEvent};
|
||||||
use crate::event_loop::{
|
use crate::event_loop::{ActiveEventLoop as RootActiveEventLoop, ControlFlow, DeviceEvents};
|
||||||
ControlFlow, DeviceEvents, EventLoopWindowTarget as RootEventLoopWindowTarget,
|
|
||||||
};
|
|
||||||
use crate::platform::pump_events::PumpStatus;
|
use crate::platform::pump_events::PumpStatus;
|
||||||
use crate::platform_impl::platform::min_timeout;
|
use crate::platform_impl::platform::min_timeout;
|
||||||
use crate::platform_impl::{EventLoopWindowTarget as PlatformEventLoopWindowTarget, OsError};
|
use crate::platform_impl::{
|
||||||
|
ActiveEventLoop as PlatformActiveEventLoop, OsError, PlatformCustomCursor,
|
||||||
|
};
|
||||||
|
use crate::window::{CustomCursor as RootCustomCursor, CustomCursorSource};
|
||||||
|
|
||||||
mod proxy;
|
mod proxy;
|
||||||
pub mod sink;
|
pub mod sink;
|
||||||
@@ -34,7 +35,7 @@ use sink::EventSink;
|
|||||||
|
|
||||||
use super::state::{WindowCompositorUpdate, WinitState};
|
use super::state::{WindowCompositorUpdate, WinitState};
|
||||||
use super::window::state::FrameCallbackState;
|
use super::window::state::FrameCallbackState;
|
||||||
use super::{logical_to_physical_rounded, WaylandError, WindowId};
|
use super::{logical_to_physical_rounded, DeviceId, WaylandError, WindowId};
|
||||||
|
|
||||||
type WaylandDispatcher = calloop::Dispatcher<'static, WaylandSource<WinitState>, WinitState>;
|
type WaylandDispatcher = calloop::Dispatcher<'static, WaylandSource<WinitState>, WinitState>;
|
||||||
|
|
||||||
@@ -63,7 +64,7 @@ pub struct EventLoop<T: 'static> {
|
|||||||
connection: Connection,
|
connection: Connection,
|
||||||
|
|
||||||
/// Event loop window target.
|
/// Event loop window target.
|
||||||
window_target: RootEventLoopWindowTarget,
|
window_target: RootActiveEventLoop,
|
||||||
|
|
||||||
// XXX drop after everything else, just to be safe.
|
// XXX drop after everything else, just to be safe.
|
||||||
/// Calloop's event loop.
|
/// Calloop's event loop.
|
||||||
@@ -159,7 +160,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
.map_err(|error| error.error);
|
.map_err(|error| error.error);
|
||||||
map_err!(result, WaylandError::Calloop)?;
|
map_err!(result, WaylandError::Calloop)?;
|
||||||
|
|
||||||
let window_target = EventLoopWindowTarget {
|
let window_target = ActiveEventLoop {
|
||||||
connection: connection.clone(),
|
connection: connection.clone(),
|
||||||
wayland_dispatcher: wayland_dispatcher.clone(),
|
wayland_dispatcher: wayland_dispatcher.clone(),
|
||||||
event_loop_awakener,
|
event_loop_awakener,
|
||||||
@@ -179,8 +180,8 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
user_events_sender,
|
user_events_sender,
|
||||||
pending_user_events,
|
pending_user_events,
|
||||||
event_loop,
|
event_loop,
|
||||||
window_target: RootEventLoopWindowTarget {
|
window_target: RootActiveEventLoop {
|
||||||
p: PlatformEventLoopWindowTarget::Wayland(window_target),
|
p: PlatformActiveEventLoop::Wayland(window_target),
|
||||||
_marker: PhantomData,
|
_marker: PhantomData,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -190,7 +191,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn run_on_demand<F>(&mut self, mut event_handler: F) -> Result<(), EventLoopError>
|
pub fn run_on_demand<F>(&mut self, mut event_handler: F) -> Result<(), EventLoopError>
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &RootEventLoopWindowTarget),
|
F: FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
{
|
{
|
||||||
let exit = loop {
|
let exit = loop {
|
||||||
match self.pump_events(None, &mut event_handler) {
|
match self.pump_events(None, &mut event_handler) {
|
||||||
@@ -217,7 +218,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn pump_events<F>(&mut self, timeout: Option<Duration>, mut callback: F) -> PumpStatus
|
pub fn pump_events<F>(&mut self, timeout: Option<Duration>, mut callback: F) -> PumpStatus
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &RootEventLoopWindowTarget),
|
F: FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
{
|
{
|
||||||
if !self.loop_running {
|
if !self.loop_running {
|
||||||
self.loop_running = true;
|
self.loop_running = true;
|
||||||
@@ -244,7 +245,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
pub fn poll_events_with_timeout<F>(&mut self, mut timeout: Option<Duration>, mut callback: F)
|
pub fn poll_events_with_timeout<F>(&mut self, mut timeout: Option<Duration>, mut callback: F)
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &RootEventLoopWindowTarget),
|
F: FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
{
|
{
|
||||||
let cause = loop {
|
let cause = loop {
|
||||||
let start = Instant::now();
|
let start = Instant::now();
|
||||||
@@ -320,7 +321,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
fn single_iteration<F>(&mut self, callback: &mut F, cause: StartCause)
|
fn single_iteration<F>(&mut self, callback: &mut F, cause: StartCause)
|
||||||
where
|
where
|
||||||
F: FnMut(Event<T>, &RootEventLoopWindowTarget),
|
F: FnMut(Event<T>, &RootActiveEventLoop),
|
||||||
{
|
{
|
||||||
// NOTE currently just indented to simplify the diff
|
// NOTE currently just indented to simplify the diff
|
||||||
|
|
||||||
@@ -366,7 +367,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
let new_inner_size = Arc::new(Mutex::new(physical_size));
|
let new_inner_size = Arc::new(Mutex::new(physical_size));
|
||||||
callback(
|
callback(
|
||||||
Event::WindowEvent {
|
Event::WindowEvent {
|
||||||
window_id,
|
window_id: crate::window::WindowId(window_id),
|
||||||
event: WindowEvent::ScaleFactorChanged {
|
event: WindowEvent::ScaleFactorChanged {
|
||||||
scale_factor,
|
scale_factor,
|
||||||
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(
|
inner_size_writer: InnerSizeWriter::new(Arc::downgrade(
|
||||||
@@ -420,7 +421,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
callback(
|
callback(
|
||||||
Event::WindowEvent {
|
Event::WindowEvent {
|
||||||
window_id,
|
window_id: crate::window::WindowId(window_id),
|
||||||
event: WindowEvent::Resized(physical_size),
|
event: WindowEvent::Resized(physical_size),
|
||||||
},
|
},
|
||||||
&self.window_target,
|
&self.window_target,
|
||||||
@@ -430,7 +431,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
if compositor_update.close_window {
|
if compositor_update.close_window {
|
||||||
callback(
|
callback(
|
||||||
Event::WindowEvent {
|
Event::WindowEvent {
|
||||||
window_id,
|
window_id: crate::window::WindowId(window_id),
|
||||||
event: WindowEvent::CloseRequested,
|
event: WindowEvent::CloseRequested,
|
||||||
},
|
},
|
||||||
&self.window_target,
|
&self.window_target,
|
||||||
@@ -461,19 +462,19 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
window_ids.extend(state.window_requests.get_mut().keys());
|
window_ids.extend(state.window_requests.get_mut().keys());
|
||||||
});
|
});
|
||||||
|
|
||||||
for window_id in window_ids.drain(..) {
|
for window_id in window_ids.iter() {
|
||||||
let event = self.with_state(|state| {
|
let event = self.with_state(|state| {
|
||||||
let window_requests = state.window_requests.get_mut();
|
let window_requests = state.window_requests.get_mut();
|
||||||
if window_requests.get(&window_id).unwrap().take_closed() {
|
if window_requests.get(window_id).unwrap().take_closed() {
|
||||||
mem::drop(window_requests.remove(&window_id));
|
mem::drop(window_requests.remove(window_id));
|
||||||
mem::drop(state.windows.get_mut().remove(&window_id));
|
mem::drop(state.windows.get_mut().remove(window_id));
|
||||||
return Some(WindowEvent::Destroyed);
|
return Some(WindowEvent::Destroyed);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut window = state
|
let mut window = state
|
||||||
.windows
|
.windows
|
||||||
.get_mut()
|
.get_mut()
|
||||||
.get_mut(&window_id)
|
.get_mut(window_id)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.lock()
|
.lock()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -485,7 +486,7 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
// Reset the frame callbacks state.
|
// Reset the frame callbacks state.
|
||||||
window.frame_callback_reset();
|
window.frame_callback_reset();
|
||||||
let mut redraw_requested = window_requests
|
let mut redraw_requested = window_requests
|
||||||
.get(&window_id)
|
.get(window_id)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.take_redraw_requested();
|
.take_redraw_requested();
|
||||||
|
|
||||||
@@ -496,7 +497,13 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if let Some(event) = event {
|
if let Some(event) = event {
|
||||||
callback(Event::WindowEvent { window_id, event }, &self.window_target);
|
callback(
|
||||||
|
Event::WindowEvent {
|
||||||
|
window_id: crate::window::WindowId(*window_id),
|
||||||
|
event,
|
||||||
|
},
|
||||||
|
&self.window_target,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -508,6 +515,42 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
// This is always the last event we dispatch before poll again
|
// This is always the last event we dispatch before poll again
|
||||||
callback(Event::AboutToWait, &self.window_target);
|
callback(Event::AboutToWait, &self.window_target);
|
||||||
|
|
||||||
|
// Update the window frames and schedule redraws.
|
||||||
|
let mut wake_up = false;
|
||||||
|
for window_id in window_ids.drain(..) {
|
||||||
|
wake_up |= self.with_state(|state| match state.windows.get_mut().get_mut(&window_id) {
|
||||||
|
Some(window) => {
|
||||||
|
let refresh = window.lock().unwrap().refresh_frame();
|
||||||
|
if refresh {
|
||||||
|
state
|
||||||
|
.window_requests
|
||||||
|
.get_mut()
|
||||||
|
.get_mut(&window_id)
|
||||||
|
.unwrap()
|
||||||
|
.redraw_requested
|
||||||
|
.store(true, Ordering::Relaxed);
|
||||||
|
}
|
||||||
|
|
||||||
|
refresh
|
||||||
|
}
|
||||||
|
None => false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wakeup event loop if needed.
|
||||||
|
//
|
||||||
|
// If the user draws from the `AboutToWait` this is likely not required, however
|
||||||
|
// we can't do much about it.
|
||||||
|
if wake_up {
|
||||||
|
match &self.window_target.p {
|
||||||
|
PlatformActiveEventLoop::Wayland(window_target) => {
|
||||||
|
window_target.event_loop_awakener.ping();
|
||||||
|
}
|
||||||
|
#[cfg(x11_platform)]
|
||||||
|
PlatformActiveEventLoop::X(_) => unreachable!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
std::mem::swap(&mut self.compositor_updates, &mut compositor_updates);
|
std::mem::swap(&mut self.compositor_updates, &mut compositor_updates);
|
||||||
std::mem::swap(&mut self.buffer_sink, &mut buffer_sink);
|
std::mem::swap(&mut self.buffer_sink, &mut buffer_sink);
|
||||||
std::mem::swap(&mut self.window_ids, &mut window_ids);
|
std::mem::swap(&mut self.window_ids, &mut window_ids);
|
||||||
@@ -519,13 +562,13 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn window_target(&self) -> &RootEventLoopWindowTarget {
|
pub fn window_target(&self) -> &RootActiveEventLoop {
|
||||||
&self.window_target
|
&self.window_target
|
||||||
}
|
}
|
||||||
|
|
||||||
fn with_state<'a, U: 'a, F: FnOnce(&'a mut WinitState) -> U>(&'a mut self, callback: F) -> U {
|
fn with_state<'a, U: 'a, F: FnOnce(&'a mut WinitState) -> U>(&'a mut self, callback: F) -> U {
|
||||||
let state = match &mut self.window_target.p {
|
let state = match &mut self.window_target.p {
|
||||||
PlatformEventLoopWindowTarget::Wayland(window_target) => window_target.state.get_mut(),
|
PlatformActiveEventLoop::Wayland(window_target) => window_target.state.get_mut(),
|
||||||
#[cfg(x11_platform)]
|
#[cfg(x11_platform)]
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
@@ -535,20 +578,20 @@ impl<T: 'static> EventLoop<T> {
|
|||||||
|
|
||||||
fn loop_dispatch<D: Into<Option<std::time::Duration>>>(&mut self, timeout: D) -> IOResult<()> {
|
fn loop_dispatch<D: Into<Option<std::time::Duration>>>(&mut self, timeout: D) -> IOResult<()> {
|
||||||
let state = match &mut self.window_target.p {
|
let state = match &mut self.window_target.p {
|
||||||
PlatformEventLoopWindowTarget::Wayland(window_target) => window_target.state.get_mut(),
|
PlatformActiveEventLoop::Wayland(window_target) => window_target.state.get_mut(),
|
||||||
#[cfg(feature = "x11")]
|
#[cfg(feature = "x11")]
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
self.event_loop.dispatch(timeout, state).map_err(|error| {
|
self.event_loop.dispatch(timeout, state).map_err(|error| {
|
||||||
log::error!("Error dispatching event loop: {}", error);
|
tracing::error!("Error dispatching event loop: {}", error);
|
||||||
error.into()
|
error.into()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn roundtrip(&mut self) -> Result<usize, RootOsError> {
|
fn roundtrip(&mut self) -> Result<usize, RootOsError> {
|
||||||
let state = match &mut self.window_target.p {
|
let state = match &mut self.window_target.p {
|
||||||
PlatformEventLoopWindowTarget::Wayland(window_target) => window_target.state.get_mut(),
|
PlatformActiveEventLoop::Wayland(window_target) => window_target.state.get_mut(),
|
||||||
#[cfg(feature = "x11")]
|
#[cfg(feature = "x11")]
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
@@ -591,7 +634,7 @@ impl<T> AsRawFd for EventLoop<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct EventLoopWindowTarget {
|
pub struct ActiveEventLoop {
|
||||||
/// The event loop wakeup source.
|
/// The event loop wakeup source.
|
||||||
pub event_loop_awakener: calloop::ping::Ping,
|
pub event_loop_awakener: calloop::ping::Ping,
|
||||||
|
|
||||||
@@ -615,7 +658,7 @@ pub struct EventLoopWindowTarget {
|
|||||||
pub connection: Connection,
|
pub connection: Connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
pub(crate) fn set_control_flow(&self, control_flow: ControlFlow) {
|
pub(crate) fn set_control_flow(&self, control_flow: ControlFlow) {
|
||||||
self.control_flow.set(control_flow)
|
self.control_flow.set(control_flow)
|
||||||
}
|
}
|
||||||
@@ -647,6 +690,12 @@ impl EventLoopWindowTarget {
|
|||||||
#[inline]
|
#[inline]
|
||||||
pub fn listen_device_events(&self, _allowed: DeviceEvents) {}
|
pub fn listen_device_events(&self, _allowed: DeviceEvents) {}
|
||||||
|
|
||||||
|
pub(crate) fn create_custom_cursor(&self, cursor: CustomCursorSource) -> RootCustomCursor {
|
||||||
|
RootCustomCursor {
|
||||||
|
inner: PlatformCustomCursor::Wayland(OnlyCursorImage(Arc::from(cursor.inner.0))),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rwh_05")]
|
#[cfg(feature = "rwh_05")]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn raw_display_handle_rwh_05(&self) -> rwh_05::RawDisplayHandle {
|
pub fn raw_display_handle_rwh_05(&self) -> rwh_05::RawDisplayHandle {
|
||||||
@@ -2,8 +2,11 @@
|
|||||||
|
|
||||||
use std::vec::Drain;
|
use std::vec::Drain;
|
||||||
|
|
||||||
use crate::event::{DeviceEvent, DeviceId, Event, WindowEvent};
|
use crate::event::{DeviceEvent, DeviceId as RootDeviceId, Event, WindowEvent};
|
||||||
use crate::window::WindowId;
|
use crate::platform_impl::platform::DeviceId as PlatformDeviceId;
|
||||||
|
use crate::window::WindowId as RootWindowId;
|
||||||
|
|
||||||
|
use super::{DeviceId, WindowId};
|
||||||
|
|
||||||
/// An event loop's sink to deliver events from the Wayland event callbacks
|
/// An event loop's sink to deliver events from the Wayland event callbacks
|
||||||
/// to the winit's user.
|
/// to the winit's user.
|
||||||
@@ -26,15 +29,19 @@ impl EventSink {
|
|||||||
/// Add new device event to a queue.
|
/// Add new device event to a queue.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn push_device_event(&mut self, event: DeviceEvent, device_id: DeviceId) {
|
pub fn push_device_event(&mut self, event: DeviceEvent, device_id: DeviceId) {
|
||||||
self.window_events
|
self.window_events.push(Event::DeviceEvent {
|
||||||
.push(Event::DeviceEvent { event, device_id });
|
event,
|
||||||
|
device_id: RootDeviceId(PlatformDeviceId::Wayland(device_id)),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add new window event to a queue.
|
/// Add new window event to a queue.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn push_window_event(&mut self, event: WindowEvent, window_id: WindowId) {
|
pub fn push_window_event(&mut self, event: WindowEvent, window_id: WindowId) {
|
||||||
self.window_events
|
self.window_events.push(Event::WindowEvent {
|
||||||
.push(Event::WindowEvent { event, window_id });
|
event,
|
||||||
|
window_id: RootWindowId(window_id),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
@@ -11,13 +11,11 @@ use sctk::reexports::client::{self, ConnectError, DispatchError, Proxy};
|
|||||||
|
|
||||||
pub(super) use crate::cursor::OnlyCursorImage as CustomCursor;
|
pub(super) use crate::cursor::OnlyCursorImage as CustomCursor;
|
||||||
use crate::dpi::{LogicalSize, PhysicalSize};
|
use crate::dpi::{LogicalSize, PhysicalSize};
|
||||||
pub use crate::platform_impl::platform::OsError;
|
pub use crate::platform_impl::platform::{OsError, WindowId};
|
||||||
pub use event_loop::{EventLoop, EventLoopProxy, EventLoopWindowTarget};
|
pub use event_loop::{ActiveEventLoop, EventLoop, EventLoopProxy};
|
||||||
pub use output::{MonitorHandle, VideoModeHandle};
|
pub use output::{MonitorHandle, VideoModeHandle};
|
||||||
pub use window::Window;
|
pub use window::Window;
|
||||||
|
|
||||||
use crate::window::WindowId;
|
|
||||||
|
|
||||||
mod event_loop;
|
mod event_loop;
|
||||||
mod output;
|
mod output;
|
||||||
mod seat;
|
mod seat;
|
||||||
@@ -65,10 +63,20 @@ impl From<WaylandError> for OsError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Dummy device id, since Wayland doesn't have device events.
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct DeviceId;
|
||||||
|
|
||||||
|
impl DeviceId {
|
||||||
|
pub const unsafe fn dummy() -> Self {
|
||||||
|
DeviceId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Get the WindowId out of the surface.
|
/// Get the WindowId out of the surface.
|
||||||
#[inline]
|
#[inline]
|
||||||
fn make_wid(surface: &WlSurface) -> WindowId {
|
fn make_wid(surface: &WlSurface) -> WindowId {
|
||||||
WindowId::from(surface.id().as_ptr() as u64)
|
WindowId(surface.id().as_ptr() as u64)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The default routine does floor, but we need round on Wayland.
|
/// The default routine does floor, but we need round on Wayland.
|
||||||
@@ -6,9 +6,9 @@ use sctk::output::OutputData;
|
|||||||
use crate::dpi::{LogicalPosition, PhysicalPosition, PhysicalSize};
|
use crate::dpi::{LogicalPosition, PhysicalPosition, PhysicalSize};
|
||||||
use crate::platform_impl::platform::VideoModeHandle as PlatformVideoModeHandle;
|
use crate::platform_impl::platform::VideoModeHandle as PlatformVideoModeHandle;
|
||||||
|
|
||||||
use super::event_loop::EventLoopWindowTarget;
|
use super::event_loop::ActiveEventLoop;
|
||||||
|
|
||||||
impl EventLoopWindowTarget {
|
impl ActiveEventLoop {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle> {
|
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle> {
|
||||||
self.state
|
self.state
|
||||||
@@ -5,7 +5,7 @@ use std::time::Duration;
|
|||||||
|
|
||||||
use calloop::timer::{TimeoutAction, Timer};
|
use calloop::timer::{TimeoutAction, Timer};
|
||||||
use calloop::{LoopHandle, RegistrationToken};
|
use calloop::{LoopHandle, RegistrationToken};
|
||||||
use log::warn;
|
use tracing::warn;
|
||||||
|
|
||||||
use sctk::reexports::client::protocol::wl_keyboard::WlKeyboard;
|
use sctk::reexports::client::protocol::wl_keyboard::WlKeyboard;
|
||||||
use sctk::reexports::client::protocol::wl_keyboard::{
|
use sctk::reexports::client::protocol::wl_keyboard::{
|
||||||
@@ -17,11 +17,11 @@ use sctk::reexports::client::{Connection, Dispatch, Proxy, QueueHandle, WEnum};
|
|||||||
use crate::event::{ElementState, WindowEvent};
|
use crate::event::{ElementState, WindowEvent};
|
||||||
use crate::keyboard::ModifiersState;
|
use crate::keyboard::ModifiersState;
|
||||||
|
|
||||||
use crate::platform_impl::common::xkb_state::KbdState;
|
use crate::platform_impl::common::xkb::Context;
|
||||||
use crate::platform_impl::wayland::event_loop::sink::EventSink;
|
use crate::platform_impl::wayland::event_loop::sink::EventSink;
|
||||||
use crate::platform_impl::wayland::seat::WinitSeatState;
|
use crate::platform_impl::wayland::seat::WinitSeatState;
|
||||||
use crate::platform_impl::wayland::state::WinitState;
|
use crate::platform_impl::wayland::state::WinitState;
|
||||||
use crate::platform_impl::wayland::{self, WindowId};
|
use crate::platform_impl::wayland::{self, DeviceId, WindowId};
|
||||||
|
|
||||||
impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
||||||
fn event(
|
fn event(
|
||||||
@@ -43,14 +43,10 @@ impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
|||||||
WlKeymapFormat::NoKeymap => {
|
WlKeymapFormat::NoKeymap => {
|
||||||
warn!("non-xkb compatible keymap")
|
warn!("non-xkb compatible keymap")
|
||||||
}
|
}
|
||||||
WlKeymapFormat::XkbV1 => unsafe {
|
WlKeymapFormat::XkbV1 => {
|
||||||
seat_state
|
let context = &mut seat_state.keyboard_state.as_mut().unwrap().xkb_context;
|
||||||
.keyboard_state
|
context.set_keymap_from_fd(fd, size as usize);
|
||||||
.as_mut()
|
}
|
||||||
.unwrap()
|
|
||||||
.xkb_state
|
|
||||||
.init_with_fd(fd, size as usize);
|
|
||||||
},
|
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
},
|
},
|
||||||
WEnum::Unknown(value) => {
|
WEnum::Unknown(value) => {
|
||||||
@@ -98,7 +94,7 @@ impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
|||||||
WlKeyboardEvent::Leave { surface, .. } => {
|
WlKeyboardEvent::Leave { surface, .. } => {
|
||||||
let window_id = wayland::make_wid(&surface);
|
let window_id = wayland::make_wid(&surface);
|
||||||
|
|
||||||
// NOTE: we should drop the repeat regardless whethere it was for the present
|
// NOTE: we should drop the repeat regardless whether it was for the present
|
||||||
// window of for the window which just went gone.
|
// window of for the window which just went gone.
|
||||||
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
||||||
keyboard_state.current_repeat = None;
|
keyboard_state.current_repeat = None;
|
||||||
@@ -155,7 +151,12 @@ impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
|||||||
RepeatInfo::Disable => return,
|
RepeatInfo::Disable => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
if !keyboard_state.xkb_state.key_repeats(key) {
|
if !keyboard_state
|
||||||
|
.xkb_context
|
||||||
|
.keymap_mut()
|
||||||
|
.unwrap()
|
||||||
|
.key_repeats(key)
|
||||||
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -221,7 +222,11 @@ impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
|||||||
|
|
||||||
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
||||||
if keyboard_state.repeat_info != RepeatInfo::Disable
|
if keyboard_state.repeat_info != RepeatInfo::Disable
|
||||||
&& keyboard_state.xkb_state.key_repeats(key)
|
&& keyboard_state
|
||||||
|
.xkb_context
|
||||||
|
.keymap_mut()
|
||||||
|
.unwrap()
|
||||||
|
.key_repeats(key)
|
||||||
&& Some(key) == keyboard_state.current_repeat
|
&& Some(key) == keyboard_state.current_repeat
|
||||||
{
|
{
|
||||||
keyboard_state.current_repeat = None;
|
keyboard_state.current_repeat = None;
|
||||||
@@ -237,9 +242,14 @@ impl Dispatch<WlKeyboard, KeyboardData, WinitState> for WinitState {
|
|||||||
group,
|
group,
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
let xkb_state = &mut seat_state.keyboard_state.as_mut().unwrap().xkb_state;
|
let xkb_context = &mut seat_state.keyboard_state.as_mut().unwrap().xkb_context;
|
||||||
|
let xkb_state = match xkb_context.state_mut() {
|
||||||
|
Some(state) => state,
|
||||||
|
None => return,
|
||||||
|
};
|
||||||
|
|
||||||
xkb_state.update_modifiers(mods_depressed, mods_latched, mods_locked, 0, 0, group);
|
xkb_state.update_modifiers(mods_depressed, mods_latched, mods_locked, 0, 0, group);
|
||||||
seat_state.modifiers = xkb_state.mods_state().into();
|
seat_state.modifiers = xkb_state.modifiers().into();
|
||||||
|
|
||||||
// HACK: part of the workaround from `WlKeyboardEvent::Enter`.
|
// HACK: part of the workaround from `WlKeyboardEvent::Enter`.
|
||||||
let window_id = match *data.window_id.lock().unwrap() {
|
let window_id = match *data.window_id.lock().unwrap() {
|
||||||
@@ -285,7 +295,7 @@ pub struct KeyboardState {
|
|||||||
pub loop_handle: LoopHandle<'static, WinitState>,
|
pub loop_handle: LoopHandle<'static, WinitState>,
|
||||||
|
|
||||||
/// The state of the keyboard.
|
/// The state of the keyboard.
|
||||||
pub xkb_state: KbdState,
|
pub xkb_context: Context,
|
||||||
|
|
||||||
/// The information about the repeat rate obtained from the compositor.
|
/// The information about the repeat rate obtained from the compositor.
|
||||||
pub repeat_info: RepeatInfo,
|
pub repeat_info: RepeatInfo,
|
||||||
@@ -302,7 +312,7 @@ impl KeyboardState {
|
|||||||
Self {
|
Self {
|
||||||
keyboard,
|
keyboard,
|
||||||
loop_handle,
|
loop_handle,
|
||||||
xkb_state: KbdState::new().unwrap(),
|
xkb_context: Context::new().unwrap(),
|
||||||
repeat_info: RepeatInfo::default(),
|
repeat_info: RepeatInfo::default(),
|
||||||
repeat_token: None,
|
repeat_token: None,
|
||||||
current_repeat: None,
|
current_repeat: None,
|
||||||
@@ -384,17 +394,14 @@ fn key_input(
|
|||||||
|
|
||||||
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
let keyboard_state = seat_state.keyboard_state.as_mut().unwrap();
|
||||||
|
|
||||||
let device_id = crate::event::DeviceId::from(0);
|
let device_id = crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(DeviceId));
|
||||||
let event = keyboard_state
|
if let Some(mut key_context) = keyboard_state.xkb_context.key_context() {
|
||||||
.xkb_state
|
let event = key_context.process_key_event(keycode, state, repeat);
|
||||||
.process_key_event(keycode, state, repeat);
|
let event = WindowEvent::KeyboardInput {
|
||||||
|
|
||||||
event_sink.push_window_event(
|
|
||||||
WindowEvent::KeyboardInput {
|
|
||||||
device_id,
|
device_id,
|
||||||
event,
|
event,
|
||||||
is_synthetic: false,
|
is_synthetic: false,
|
||||||
},
|
};
|
||||||
window_id,
|
event_sink.push_window_event(event, window_id);
|
||||||
);
|
}
|
||||||
}
|
}
|
||||||
@@ -54,7 +54,7 @@ pub struct WinitSeatState {
|
|||||||
/// The current modifiers state on the seat.
|
/// The current modifiers state on the seat.
|
||||||
modifiers: ModifiersState,
|
modifiers: ModifiersState,
|
||||||
|
|
||||||
/// Wether we have pending modifiers.
|
/// Whether we have pending modifiers.
|
||||||
modifiers_pending: bool,
|
modifiers_pending: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -22,13 +22,12 @@ use sctk::globals::GlobalData;
|
|||||||
use sctk::seat::pointer::{PointerData, PointerDataExt};
|
use sctk::seat::pointer::{PointerData, PointerDataExt};
|
||||||
use sctk::seat::pointer::{PointerEvent, PointerEventKind, PointerHandler};
|
use sctk::seat::pointer::{PointerEvent, PointerEventKind, PointerHandler};
|
||||||
use sctk::seat::SeatState;
|
use sctk::seat::SeatState;
|
||||||
use winit_core::event::DeviceId;
|
|
||||||
|
|
||||||
use crate::dpi::{LogicalPosition, PhysicalPosition};
|
use crate::dpi::{LogicalPosition, PhysicalPosition};
|
||||||
use crate::event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, WindowEvent};
|
use crate::event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, WindowEvent};
|
||||||
|
|
||||||
use crate::platform_impl::wayland::state::WinitState;
|
use crate::platform_impl::wayland::state::WinitState;
|
||||||
use crate::platform_impl::wayland::{self, WindowId};
|
use crate::platform_impl::wayland::{self, DeviceId, WindowId};
|
||||||
|
|
||||||
pub mod relative_pointer;
|
pub mod relative_pointer;
|
||||||
|
|
||||||
@@ -43,7 +42,7 @@ impl PointerHandler for WinitState {
|
|||||||
let seat = pointer.winit_data().seat();
|
let seat = pointer.winit_data().seat();
|
||||||
let seat_state = self.seats.get(&seat.id()).unwrap();
|
let seat_state = self.seats.get(&seat.id()).unwrap();
|
||||||
|
|
||||||
let device_id = DeviceId::from(0);
|
let device_id = crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(DeviceId));
|
||||||
|
|
||||||
for event in events {
|
for event in events {
|
||||||
let surface = &event.surface;
|
let surface = &event.surface;
|
||||||
@@ -197,7 +196,7 @@ impl PointerHandler for WinitState {
|
|||||||
TouchPhase::Ended
|
TouchPhase::Ended
|
||||||
} else {
|
} else {
|
||||||
match pointer_data.phase {
|
match pointer_data.phase {
|
||||||
// Descrete scroll only results in moved events.
|
// Discrete scroll only results in moved events.
|
||||||
_ if has_discrete_scroll => TouchPhase::Moved,
|
_ if has_discrete_scroll => TouchPhase::Moved,
|
||||||
TouchPhase::Started | TouchPhase::Moved => TouchPhase::Moved,
|
TouchPhase::Started | TouchPhase::Moved => TouchPhase::Moved,
|
||||||
_ => TouchPhase::Started,
|
_ => TouchPhase::Started,
|
||||||
@@ -208,7 +207,7 @@ impl PointerHandler for WinitState {
|
|||||||
pointer_data.phase = phase;
|
pointer_data.phase = phase;
|
||||||
|
|
||||||
// Mice events have both pixel and discrete delta's at the same time. So prefer
|
// Mice events have both pixel and discrete delta's at the same time. So prefer
|
||||||
// the descrite values if they are present.
|
// the discrete values if they are present.
|
||||||
let delta = if has_discrete_scroll {
|
let delta = if has_discrete_scroll {
|
||||||
// XXX Wayland sign convention is the inverse of winit.
|
// XXX Wayland sign convention is the inverse of winit.
|
||||||
MouseScrollDelta::LineDelta(
|
MouseScrollDelta::LineDelta(
|
||||||
@@ -60,19 +60,34 @@ impl Dispatch<ZwpRelativePointerV1, GlobalData, WinitState> for RelativePointerS
|
|||||||
_conn: &Connection,
|
_conn: &Connection,
|
||||||
_qhandle: &QueueHandle<WinitState>,
|
_qhandle: &QueueHandle<WinitState>,
|
||||||
) {
|
) {
|
||||||
if let zwp_relative_pointer_v1::Event::RelativeMotion {
|
let (dx_unaccel, dy_unaccel) = match event {
|
||||||
dx_unaccel,
|
zwp_relative_pointer_v1::Event::RelativeMotion {
|
||||||
dy_unaccel,
|
dx_unaccel,
|
||||||
..
|
dy_unaccel,
|
||||||
} = event
|
..
|
||||||
{
|
} => (dx_unaccel, dy_unaccel),
|
||||||
state.events_sink.push_device_event(
|
_ => return,
|
||||||
DeviceEvent::MouseMotion {
|
};
|
||||||
delta: (dx_unaccel, dy_unaccel),
|
state.events_sink.push_device_event(
|
||||||
},
|
DeviceEvent::Motion {
|
||||||
crate::event::DeviceId::from(0),
|
axis: 0,
|
||||||
);
|
value: dx_unaccel,
|
||||||
}
|
},
|
||||||
|
super::DeviceId,
|
||||||
|
);
|
||||||
|
state.events_sink.push_device_event(
|
||||||
|
DeviceEvent::Motion {
|
||||||
|
axis: 1,
|
||||||
|
value: dy_unaccel,
|
||||||
|
},
|
||||||
|
super::DeviceId,
|
||||||
|
);
|
||||||
|
state.events_sink.push_device_event(
|
||||||
|
DeviceEvent::MouseMotion {
|
||||||
|
delta: (dx_unaccel, dy_unaccel),
|
||||||
|
},
|
||||||
|
super::DeviceId,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ impl Dispatch<ZwpTextInputV3, TextInputData, WinitState> for TextInputState {
|
|||||||
let window_id = wayland::make_wid(&surface);
|
let window_id = wayland::make_wid(&surface);
|
||||||
|
|
||||||
// XXX this check is essential, because `leave` could have a
|
// XXX this check is essential, because `leave` could have a
|
||||||
// refence to nil surface...
|
// reference to nil surface...
|
||||||
let mut window = match windows.get(&window_id) {
|
let mut window = match windows.get(&window_id) {
|
||||||
Some(window) => window.lock().unwrap(),
|
Some(window) => window.lock().unwrap(),
|
||||||
None => return,
|
None => return,
|
||||||
@@ -178,7 +178,6 @@ impl ZwpTextInputV3Ext for ZwpTextInputV3 {
|
|||||||
ImePurpose::Normal => (ContentHint::None, ContentPurpose::Normal),
|
ImePurpose::Normal => (ContentHint::None, ContentPurpose::Normal),
|
||||||
ImePurpose::Password => (ContentHint::SensitiveData, ContentPurpose::Password),
|
ImePurpose::Password => (ContentHint::SensitiveData, ContentPurpose::Password),
|
||||||
ImePurpose::Terminal => (ContentHint::None, ContentPurpose::Terminal),
|
ImePurpose::Terminal => (ContentHint::None, ContentPurpose::Terminal),
|
||||||
_ => unreachable!(),
|
|
||||||
};
|
};
|
||||||
self.set_content_type(hint, purpose);
|
self.set_content_type(hint, purpose);
|
||||||
}
|
}
|
||||||
@@ -6,13 +6,12 @@ use sctk::reexports::client::protocol::wl_touch::WlTouch;
|
|||||||
use sctk::reexports::client::{Connection, Proxy, QueueHandle};
|
use sctk::reexports::client::{Connection, Proxy, QueueHandle};
|
||||||
|
|
||||||
use sctk::seat::touch::{TouchData, TouchHandler};
|
use sctk::seat::touch::{TouchData, TouchHandler};
|
||||||
use winit_core::event::DeviceId;
|
|
||||||
|
|
||||||
use crate::dpi::LogicalPosition;
|
use crate::dpi::LogicalPosition;
|
||||||
use crate::event::{Touch, TouchPhase, WindowEvent};
|
use crate::event::{Touch, TouchPhase, WindowEvent};
|
||||||
|
|
||||||
use crate::platform_impl::wayland;
|
|
||||||
use crate::platform_impl::wayland::state::WinitState;
|
use crate::platform_impl::wayland::state::WinitState;
|
||||||
|
use crate::platform_impl::wayland::{self, DeviceId};
|
||||||
|
|
||||||
impl TouchHandler for WinitState {
|
impl TouchHandler for WinitState {
|
||||||
fn down(
|
fn down(
|
||||||
@@ -43,7 +42,9 @@ impl TouchHandler for WinitState {
|
|||||||
|
|
||||||
self.events_sink.push_window_event(
|
self.events_sink.push_window_event(
|
||||||
WindowEvent::Touch(Touch {
|
WindowEvent::Touch(Touch {
|
||||||
device_id: DeviceId::from(0),
|
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
||||||
|
DeviceId,
|
||||||
|
)),
|
||||||
phase: TouchPhase::Started,
|
phase: TouchPhase::Started,
|
||||||
location: location.to_physical(scale_factor),
|
location: location.to_physical(scale_factor),
|
||||||
force: None,
|
force: None,
|
||||||
@@ -78,7 +79,9 @@ impl TouchHandler for WinitState {
|
|||||||
|
|
||||||
self.events_sink.push_window_event(
|
self.events_sink.push_window_event(
|
||||||
WindowEvent::Touch(Touch {
|
WindowEvent::Touch(Touch {
|
||||||
device_id: DeviceId::from(0),
|
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
||||||
|
DeviceId,
|
||||||
|
)),
|
||||||
phase: TouchPhase::Ended,
|
phase: TouchPhase::Ended,
|
||||||
location: touch_point.location.to_physical(scale_factor),
|
location: touch_point.location.to_physical(scale_factor),
|
||||||
force: None,
|
force: None,
|
||||||
@@ -115,7 +118,9 @@ impl TouchHandler for WinitState {
|
|||||||
|
|
||||||
self.events_sink.push_window_event(
|
self.events_sink.push_window_event(
|
||||||
WindowEvent::Touch(Touch {
|
WindowEvent::Touch(Touch {
|
||||||
device_id: DeviceId::from(0),
|
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
||||||
|
DeviceId,
|
||||||
|
)),
|
||||||
phase: TouchPhase::Moved,
|
phase: TouchPhase::Moved,
|
||||||
location: touch_point.location.to_physical(scale_factor),
|
location: touch_point.location.to_physical(scale_factor),
|
||||||
force: None,
|
force: None,
|
||||||
@@ -139,7 +144,9 @@ impl TouchHandler for WinitState {
|
|||||||
|
|
||||||
self.events_sink.push_window_event(
|
self.events_sink.push_window_event(
|
||||||
WindowEvent::Touch(Touch {
|
WindowEvent::Touch(Touch {
|
||||||
device_id: DeviceId::from(0),
|
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
||||||
|
DeviceId,
|
||||||
|
)),
|
||||||
phase: TouchPhase::Cancelled,
|
phase: TouchPhase::Cancelled,
|
||||||
location,
|
location,
|
||||||
force: None,
|
force: None,
|
||||||
@@ -60,7 +60,7 @@ pub struct WinitState {
|
|||||||
/// The pool where custom cursors are allocated.
|
/// The pool where custom cursors are allocated.
|
||||||
pub custom_cursor_pool: Arc<Mutex<SlotPool>>,
|
pub custom_cursor_pool: Arc<Mutex<SlotPool>>,
|
||||||
|
|
||||||
/// The XDG shell that is used for widnows.
|
/// The XDG shell that is used for windows.
|
||||||
pub xdg_shell: XdgShell,
|
pub xdg_shell: XdgShell,
|
||||||
|
|
||||||
/// The currently present windows.
|
/// The currently present windows.
|
||||||
@@ -72,7 +72,7 @@ pub struct WinitState {
|
|||||||
/// The events that were generated directly from the window.
|
/// The events that were generated directly from the window.
|
||||||
pub window_events_sink: Arc<Mutex<EventSink>>,
|
pub window_events_sink: Arc<Mutex<EventSink>>,
|
||||||
|
|
||||||
/// The update for the `windows` comming from the compositor.
|
/// The update for the `windows` coming from the compositor.
|
||||||
pub window_compositor_updates: Vec<WindowCompositorUpdate>,
|
pub window_compositor_updates: Vec<WindowCompositorUpdate>,
|
||||||
|
|
||||||
/// Currently handled seats.
|
/// Currently handled seats.
|
||||||
@@ -133,7 +133,7 @@ impl WinitState {
|
|||||||
) {
|
) {
|
||||||
Ok(c) => Some(c),
|
Ok(c) => Some(c),
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::warn!("Subcompositor protocol not available, ignoring CSD: {e:?}");
|
tracing::warn!("Subcompositor protocol not available, ignoring CSD: {e:?}");
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -395,7 +395,7 @@ impl ProvidesRegistryState for WinitState {
|
|||||||
sctk::registry_handlers![OutputState, SeatState];
|
sctk::registry_handlers![OutputState, SeatState];
|
||||||
}
|
}
|
||||||
|
|
||||||
// The window update comming from the compositor.
|
// The window update coming from the compositor.
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub struct WindowCompositorUpdate {
|
pub struct WindowCompositorUpdate {
|
||||||
/// The id of the window this updates belongs to.
|
/// The id of the window this updates belongs to.
|
||||||
@@ -18,7 +18,8 @@ use sctk::globals::GlobalData;
|
|||||||
|
|
||||||
use crate::event_loop::AsyncRequestSerial;
|
use crate::event_loop::AsyncRequestSerial;
|
||||||
use crate::platform_impl::wayland::state::WinitState;
|
use crate::platform_impl::wayland::state::WinitState;
|
||||||
use crate::window::{ActivationToken, WindowId};
|
use crate::platform_impl::WindowId;
|
||||||
|
use crate::window::ActivationToken;
|
||||||
|
|
||||||
pub struct XdgActivationState {
|
pub struct XdgActivationState {
|
||||||
xdg_activation: XdgActivationV1,
|
xdg_activation: XdgActivationV1,
|
||||||
@@ -82,7 +83,7 @@ impl Dispatch<XdgActivationTokenV1, XdgActivationTokenData, WinitState> for XdgA
|
|||||||
state.events_sink.push_window_event(
|
state.events_sink.push_window_event(
|
||||||
crate::event::WindowEvent::ActivationTokenDone {
|
crate::event::WindowEvent::ActivationTokenDone {
|
||||||
serial: *serial,
|
serial: *serial,
|
||||||
token: ActivationToken::new(token),
|
token: ActivationToken::_new(token),
|
||||||
},
|
},
|
||||||
*window_id,
|
*window_id,
|
||||||
);
|
);
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
use std::sync::atomic::{AtomicBool, Ordering};
|
use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
use sctk::reexports::calloop;
|
|
||||||
use sctk::reexports::client::protocol::wl_display::WlDisplay;
|
use sctk::reexports::client::protocol::wl_display::WlDisplay;
|
||||||
use sctk::reexports::client::protocol::wl_surface::WlSurface;
|
use sctk::reexports::client::protocol::wl_surface::WlSurface;
|
||||||
use sctk::reexports::client::Proxy;
|
use sctk::reexports::client::Proxy;
|
||||||
@@ -15,7 +14,7 @@ use sctk::shell::xdg::window::Window as SctkWindow;
|
|||||||
use sctk::shell::xdg::window::WindowDecorations;
|
use sctk::shell::xdg::window::WindowDecorations;
|
||||||
use sctk::shell::WaylandSurface;
|
use sctk::shell::WaylandSurface;
|
||||||
|
|
||||||
use log::warn;
|
use tracing::warn;
|
||||||
|
|
||||||
use crate::dpi::{LogicalSize, PhysicalPosition, PhysicalSize, Position, Size};
|
use crate::dpi::{LogicalSize, PhysicalPosition, PhysicalSize, Position, Size};
|
||||||
use crate::error::{ExternalError, NotSupportedError, OsError as RootOsError};
|
use crate::error::{ExternalError, NotSupportedError, OsError as RootOsError};
|
||||||
@@ -33,7 +32,7 @@ use super::event_loop::sink::EventSink;
|
|||||||
use super::output::MonitorHandle;
|
use super::output::MonitorHandle;
|
||||||
use super::state::WinitState;
|
use super::state::WinitState;
|
||||||
use super::types::xdg_activation::XdgActivationTokenData;
|
use super::types::xdg_activation::XdgActivationTokenData;
|
||||||
use super::{EventLoopWindowTarget, WaylandError, WindowId};
|
use super::{ActiveEventLoop, WaylandError, WindowId};
|
||||||
|
|
||||||
pub(crate) mod state;
|
pub(crate) mod state;
|
||||||
|
|
||||||
@@ -81,7 +80,7 @@ pub struct Window {
|
|||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
event_loop_window_target: &EventLoopWindowTarget,
|
event_loop_window_target: &ActiveEventLoop,
|
||||||
attributes: WindowAttributes,
|
attributes: WindowAttributes,
|
||||||
) -> Result<Self, RootOsError> {
|
) -> Result<Self, RootOsError> {
|
||||||
let queue_handle = event_loop_window_target.queue_handle.clone();
|
let queue_handle = event_loop_window_target.queue_handle.clone();
|
||||||
@@ -177,7 +176,7 @@ impl Window {
|
|||||||
xdg_activation.as_ref(),
|
xdg_activation.as_ref(),
|
||||||
attributes.platform_specific.activation_token,
|
attributes.platform_specific.activation_token,
|
||||||
) {
|
) {
|
||||||
xdg_activation.activate(token.into_token(), &surface);
|
xdg_activation.activate(token._token, &surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX Do initial commit.
|
// XXX Do initial commit.
|
||||||
@@ -758,3 +757,23 @@ impl WindowRequests {
|
|||||||
self.redraw_requested.swap(false, Ordering::Relaxed)
|
self.redraw_requested.swap(false, Ordering::Relaxed)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl TryFrom<&str> for Theme {
|
||||||
|
type Error = ();
|
||||||
|
|
||||||
|
/// ```
|
||||||
|
/// use winit::window::Theme;
|
||||||
|
///
|
||||||
|
/// assert_eq!("dark".try_into(), Ok(Theme::Dark));
|
||||||
|
/// assert_eq!("lIghT".try_into(), Ok(Theme::Light));
|
||||||
|
/// ```
|
||||||
|
fn try_from(theme: &str) -> Result<Self, Self::Error> {
|
||||||
|
if theme.eq_ignore_ascii_case("dark") {
|
||||||
|
Ok(Self::Dark)
|
||||||
|
} else if theme.eq_ignore_ascii_case("light") {
|
||||||
|
Ok(Self::Light)
|
||||||
|
} else {
|
||||||
|
Err(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ use std::sync::{Arc, Mutex, Weak};
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use ahash::HashSet;
|
use ahash::HashSet;
|
||||||
use log::{info, warn};
|
use tracing::{info, warn};
|
||||||
|
|
||||||
use sctk::reexports::client::backend::ObjectId;
|
use sctk::reexports::client::backend::ObjectId;
|
||||||
use sctk::reexports::client::protocol::wl_seat::WlSeat;
|
use sctk::reexports::client::protocol::wl_seat::WlSeat;
|
||||||
@@ -36,8 +36,8 @@ use crate::error::{ExternalError, NotSupportedError};
|
|||||||
use crate::platform_impl::wayland::logical_to_physical_rounded;
|
use crate::platform_impl::wayland::logical_to_physical_rounded;
|
||||||
use crate::platform_impl::wayland::types::cursor::{CustomCursor, SelectedCursor};
|
use crate::platform_impl::wayland::types::cursor::{CustomCursor, SelectedCursor};
|
||||||
use crate::platform_impl::wayland::types::kwin_blur::KWinBlurManager;
|
use crate::platform_impl::wayland::types::kwin_blur::KWinBlurManager;
|
||||||
use crate::platform_impl::PlatformCustomCursor;
|
use crate::platform_impl::{PlatformCustomCursor, WindowId};
|
||||||
use crate::window::{CursorGrabMode, CursorIcon, ImePurpose, ResizeDirection, Theme, WindowId};
|
use crate::window::{CursorGrabMode, CursorIcon, ImePurpose, ResizeDirection, Theme};
|
||||||
|
|
||||||
use crate::platform_impl::wayland::seat::{
|
use crate::platform_impl::wayland::seat::{
|
||||||
PointerConstraintsState, WinitPointerData, WinitPointerDataExt, ZwpTextInputV3Ext,
|
PointerConstraintsState, WinitPointerData, WinitPointerDataExt, ZwpTextInputV3Ext,
|
||||||
@@ -74,7 +74,7 @@ pub struct WindowState {
|
|||||||
|
|
||||||
selected_cursor: SelectedCursor,
|
selected_cursor: SelectedCursor,
|
||||||
|
|
||||||
/// Wether the cursor is visible.
|
/// Whether the cursor is visible.
|
||||||
pub cursor_visible: bool,
|
pub cursor_visible: bool,
|
||||||
|
|
||||||
/// Pointer constraints to lock/confine pointer.
|
/// Pointer constraints to lock/confine pointer.
|
||||||
@@ -83,7 +83,7 @@ pub struct WindowState {
|
|||||||
/// Queue handle.
|
/// Queue handle.
|
||||||
pub queue_handle: QueueHandle<WinitState>,
|
pub queue_handle: QueueHandle<WinitState>,
|
||||||
|
|
||||||
/// Theme varaint.
|
/// Theme variant.
|
||||||
theme: Option<Theme>,
|
theme: Option<Theme>,
|
||||||
|
|
||||||
/// The current window title.
|
/// The current window title.
|
||||||
@@ -218,7 +218,7 @@ impl WindowState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Apply closure on the given pointer.
|
/// Apply closure on the given pointer.
|
||||||
fn apply_on_poiner<F: Fn(&ThemedPointer<WinitPointerData>, &WinitPointerData)>(
|
fn apply_on_pointer<F: Fn(&ThemedPointer<WinitPointerData>, &WinitPointerData)>(
|
||||||
&self,
|
&self,
|
||||||
callback: F,
|
callback: F,
|
||||||
) {
|
) {
|
||||||
@@ -402,10 +402,10 @@ impl WindowState {
|
|||||||
let xdg_toplevel = self.window.xdg_toplevel();
|
let xdg_toplevel = self.window.xdg_toplevel();
|
||||||
|
|
||||||
// TODO(kchibisov) handle touch serials.
|
// TODO(kchibisov) handle touch serials.
|
||||||
self.apply_on_poiner(|_, data| {
|
self.apply_on_pointer(|_, data| {
|
||||||
let serial = data.latest_button_serial();
|
let serial = data.latest_button_serial();
|
||||||
let seat = data.seat();
|
let seat = data.seat();
|
||||||
xdg_toplevel.resize(seat, serial, cvt_resize_direction(direction));
|
xdg_toplevel.resize(seat, serial, direction.into());
|
||||||
});
|
});
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -415,7 +415,7 @@ impl WindowState {
|
|||||||
pub fn drag_window(&self) -> Result<(), ExternalError> {
|
pub fn drag_window(&self) -> Result<(), ExternalError> {
|
||||||
let xdg_toplevel = self.window.xdg_toplevel();
|
let xdg_toplevel = self.window.xdg_toplevel();
|
||||||
// TODO(kchibisov) handle touch serials.
|
// TODO(kchibisov) handle touch serials.
|
||||||
self.apply_on_poiner(|_, data| {
|
self.apply_on_pointer(|_, data| {
|
||||||
let serial = data.latest_button_serial();
|
let serial = data.latest_button_serial();
|
||||||
let seat = data.seat();
|
let seat = data.seat();
|
||||||
xdg_toplevel._move(seat, serial);
|
xdg_toplevel._move(seat, serial);
|
||||||
@@ -710,7 +710,7 @@ impl WindowState {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.apply_on_poiner(|pointer, _| {
|
self.apply_on_pointer(|pointer, _| {
|
||||||
if pointer.set_cursor(&self.connection, cursor_icon).is_err() {
|
if pointer.set_cursor(&self.connection, cursor_icon).is_err() {
|
||||||
warn!("Failed to set cursor to {:?}", cursor_icon);
|
warn!("Failed to set cursor to {:?}", cursor_icon);
|
||||||
}
|
}
|
||||||
@@ -727,7 +727,7 @@ impl WindowState {
|
|||||||
RootCustomCursor {
|
RootCustomCursor {
|
||||||
inner: PlatformCustomCursor::X(_),
|
inner: PlatformCustomCursor::X(_),
|
||||||
} => {
|
} => {
|
||||||
log::error!("passed a X11 cursor to Wayland backend");
|
tracing::error!("passed a X11 cursor to Wayland backend");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -745,7 +745,7 @@ impl WindowState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn apply_custom_cursor(&self, cursor: &CustomCursor) {
|
fn apply_custom_cursor(&self, cursor: &CustomCursor) {
|
||||||
self.apply_on_poiner(|pointer, _| {
|
self.apply_on_pointer(|pointer, _| {
|
||||||
let surface = pointer.surface();
|
let surface = pointer.surface();
|
||||||
|
|
||||||
let scale = surface
|
let scale = surface
|
||||||
@@ -850,21 +850,21 @@ impl WindowState {
|
|||||||
|
|
||||||
match old_mode {
|
match old_mode {
|
||||||
CursorGrabMode::None => (),
|
CursorGrabMode::None => (),
|
||||||
CursorGrabMode::Confined => self.apply_on_poiner(|_, data| {
|
CursorGrabMode::Confined => self.apply_on_pointer(|_, data| {
|
||||||
data.unconfine_pointer();
|
data.unconfine_pointer();
|
||||||
}),
|
}),
|
||||||
CursorGrabMode::Locked => {
|
CursorGrabMode::Locked => {
|
||||||
self.apply_on_poiner(|_, data| data.unlock_pointer());
|
self.apply_on_pointer(|_, data| data.unlock_pointer());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let surface = self.window.wl_surface();
|
let surface = self.window.wl_surface();
|
||||||
match mode {
|
match mode {
|
||||||
CursorGrabMode::Locked => self.apply_on_poiner(|pointer, data| {
|
CursorGrabMode::Locked => self.apply_on_pointer(|pointer, data| {
|
||||||
let pointer = pointer.pointer();
|
let pointer = pointer.pointer();
|
||||||
data.lock_pointer(pointer_constraints, surface, pointer, &self.queue_handle)
|
data.lock_pointer(pointer_constraints, surface, pointer, &self.queue_handle)
|
||||||
}),
|
}),
|
||||||
CursorGrabMode::Confined => self.apply_on_poiner(|pointer, data| {
|
CursorGrabMode::Confined => self.apply_on_pointer(|pointer, data| {
|
||||||
let pointer = pointer.pointer();
|
let pointer = pointer.pointer();
|
||||||
data.confine_pointer(pointer_constraints, surface, pointer, &self.queue_handle)
|
data.confine_pointer(pointer_constraints, surface, pointer, &self.queue_handle)
|
||||||
}),
|
}),
|
||||||
@@ -878,7 +878,7 @@ impl WindowState {
|
|||||||
|
|
||||||
pub fn show_window_menu(&self, position: LogicalPosition<u32>) {
|
pub fn show_window_menu(&self, position: LogicalPosition<u32>) {
|
||||||
// TODO(kchibisov) handle touch serials.
|
// TODO(kchibisov) handle touch serials.
|
||||||
self.apply_on_poiner(|_, data| {
|
self.apply_on_pointer(|_, data| {
|
||||||
let serial = data.latest_button_serial();
|
let serial = data.latest_button_serial();
|
||||||
let seat = data.seat();
|
let seat = data.seat();
|
||||||
self.window.show_window_menu(seat, serial, position.into());
|
self.window.show_window_menu(seat, serial, position.into());
|
||||||
@@ -891,7 +891,7 @@ impl WindowState {
|
|||||||
return Err(ExternalError::NotSupported(NotSupportedError::new()));
|
return Err(ExternalError::NotSupported(NotSupportedError::new()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Positon can be set only for locked cursor.
|
// Position can be set only for locked cursor.
|
||||||
if self.cursor_grab_mode.current_grab_mode != CursorGrabMode::Locked {
|
if self.cursor_grab_mode.current_grab_mode != CursorGrabMode::Locked {
|
||||||
return Err(ExternalError::Os(os_error!(
|
return Err(ExternalError::Os(os_error!(
|
||||||
crate::platform_impl::OsError::Misc(
|
crate::platform_impl::OsError::Misc(
|
||||||
@@ -900,7 +900,7 @@ impl WindowState {
|
|||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
self.apply_on_poiner(|_, data| {
|
self.apply_on_pointer(|_, data| {
|
||||||
data.set_locked_cursor_position(position.x, position.y);
|
data.set_locked_cursor_position(position.x, position.y);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -1055,7 +1055,7 @@ impl WindowState {
|
|||||||
|
|
||||||
/// Set the window title to a new value.
|
/// Set the window title to a new value.
|
||||||
///
|
///
|
||||||
/// This will autmatically truncate the title to something meaningfull.
|
/// This will automatically truncate the title to something meaningful.
|
||||||
pub fn set_title(&mut self, mut title: String) {
|
pub fn set_title(&mut self, mut title: String) {
|
||||||
// Truncate the title to at most 1024 bytes, so that it does not blow up the protocol
|
// Truncate the title to at most 1024 bytes, so that it does not blow up the protocol
|
||||||
// messages
|
// messages
|
||||||
@@ -1147,7 +1147,7 @@ impl GrabState {
|
|||||||
/// The state of the frame callback.
|
/// The state of the frame callback.
|
||||||
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
pub enum FrameCallbackState {
|
pub enum FrameCallbackState {
|
||||||
/// No frame callback was requsted.
|
/// No frame callback was requested.
|
||||||
#[default]
|
#[default]
|
||||||
None,
|
None,
|
||||||
/// The frame callback was requested, but not yet arrived, the redraw events are throttled.
|
/// The frame callback was requested, but not yet arrived, the redraw events are throttled.
|
||||||
@@ -1156,16 +1156,18 @@ pub enum FrameCallbackState {
|
|||||||
Received,
|
Received,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn cvt_resize_direction(value: ResizeDirection) -> XdgResizeEdge {
|
impl From<ResizeDirection> for XdgResizeEdge {
|
||||||
match value {
|
fn from(value: ResizeDirection) -> Self {
|
||||||
ResizeDirection::North => XdgResizeEdge::Top,
|
match value {
|
||||||
ResizeDirection::West => XdgResizeEdge::Left,
|
ResizeDirection::North => XdgResizeEdge::Top,
|
||||||
ResizeDirection::NorthWest => XdgResizeEdge::TopLeft,
|
ResizeDirection::West => XdgResizeEdge::Left,
|
||||||
ResizeDirection::NorthEast => XdgResizeEdge::TopRight,
|
ResizeDirection::NorthWest => XdgResizeEdge::TopLeft,
|
||||||
ResizeDirection::East => XdgResizeEdge::Right,
|
ResizeDirection::NorthEast => XdgResizeEdge::TopRight,
|
||||||
ResizeDirection::SouthWest => XdgResizeEdge::BottomLeft,
|
ResizeDirection::East => XdgResizeEdge::Right,
|
||||||
ResizeDirection::SouthEast => XdgResizeEdge::BottomRight,
|
ResizeDirection::SouthWest => XdgResizeEdge::BottomLeft,
|
||||||
ResizeDirection::South => XdgResizeEdge::Bottom,
|
ResizeDirection::SouthEast => XdgResizeEdge::BottomRight,
|
||||||
|
ResizeDirection::South => XdgResizeEdge::Bottom,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||