-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(platforms/winit): New winit adapter (#121)
- Loading branch information
1 parent
386ca0a
commit fdc274e
Showing
11 changed files
with
381 additions
and
177 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[package] | ||
name = "accesskit_winit" | ||
version = "0.0.0" | ||
authors = ["Matt Campbell <[email protected]>"] | ||
license = "Apache-2.0" | ||
description = "AccessKit UI accessibility infrastructure: winit adapter" | ||
categories = ["gui"] | ||
keywords = ["gui", "ui", "accessibility", "winit"] | ||
repository = "https://github.com/AccessKit/accesskit" | ||
readme = "README.md" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
accesskit = { version = "0.3.0", path = "../../common" } | ||
parking_lot = "0.11.2" | ||
winit = "0.26.1" | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies] | ||
accesskit_windows = { version = "0.3.0", path = "../windows" } | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies.windows] | ||
version = "0.37.0" | ||
features = [ | ||
"Win32_Foundation", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# AccessKit winit adapter | ||
|
||
This is the winit adapter for [AccessKit](https://accesskit.dev/). It exposes an AccessKit accessibility tree through the platform-native accessibility API on any platform supported by AccessKit. On platforms not supported by AccessKit, this adapter does nothing, but still compiles. |
Oops, something went wrong.