1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-26 15:52:29 +03:00
wezterm/window/Cargo.toml

97 lines
2.5 KiB
TOML
Raw Normal View History

2019-08-08 05:19:04 +03:00
[package]
name = "window"
version = "0.1.0"
authors = ["Wez Furlong"]
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "Cross platform window setup and render"
license = "MIT"
build = "build.rs"
2019-11-30 05:05:09 +03:00
[dev-dependencies]
k9 = "0.12.0"
2019-11-30 05:05:09 +03:00
[build-dependencies]
2020-12-29 23:13:23 +03:00
gl_generator = "0.14"
2019-08-08 05:19:04 +03:00
[features]
wayland = ["wayland-client", "smithay-client-toolkit", "wayland-egl", "wayland-protocols"]
2019-08-08 05:19:04 +03:00
[dependencies]
async-channel = "1.6"
async-io = "1.1"
2020-12-29 20:21:50 +03:00
async-task = "4.0"
async-trait = "0.1"
2019-12-15 08:43:05 +03:00
anyhow = "1.0"
bytes = "1.0"
config = { path = "../config" }
downcast-rs = "1.0"
2019-12-15 08:43:05 +03:00
thiserror = "1.0"
2021-08-16 04:21:17 +03:00
bitflags = "1.3"
2020-12-10 21:03:16 +03:00
euclid = "0.22"
guillotiere = "0.6"
lazy_static = "1.4"
libloading = "0.8"
line_drawing = "0.8"
log = "0.4"
metrics = "0.22"
2019-08-08 05:19:04 +03:00
promise = { path = "../promise" }
raw-window-handle = "0.5"
2020-12-29 20:21:50 +03:00
resize = "0.5"
wezterm: add raw_code concept to input layer This commit is a bit noisy because it also meant flipping the key map code from using the termwiz input types to the window input types, which I thought I'd done some time ago, but clearly didn't. This commit allows defining key assignments in terms of the underlying operating system raw codes, if provided by the relevant layer in the window crate (currently, only X11/Wayland). The raw codes are inherently OS/Machine/Hardware dependent; they are the rawest value that we have available and there is no meaningful understanding that we can perform in code to understand what that key is. One useful property of the raw code is that, because it hasn't gone through any OS level keymapping processing, its value reflects its physical position on the keyboard, allowing you to map keys by position rather than by value. That's useful if you use software to implement eg: DVORAK or COLEMAK but want your muscle memory to kick in for some of your key bindings. New config option: `debug_key_events = true` will cause wezterm to log an "error" to stderr each time you press a key and show the details in the key event: ``` 2020-12-06T21:23:10.313Z ERROR wezterm_gui::gui::termwindow > key_event KeyEvent { key: Char('@'), modifiers: SHIFT | CTRL, raw_key: None, raw_modifiers: SHIFT | CTRL, raw_code: Some(11), repeat_count: 1, key_is_down: true } ``` This is useful if you want to figure out the `raw_code` for a key in your setup. In your config, you can use this information to setup new key bindings. The motivating example for me is that because `raw_key` (the unmodified equivalent of `key`) is `None`, the built-in `CTRL-SHIFT-1` key assignment doesn't function for me on Linux, but I can now "fix" this in my local configuration, taking care to make it linux specific: ```lua local wezterm = require 'wezterm'; local keys = {} if wezterm.target_triple == "x86_64-unknown-linux-gnu" then local tab_no = 0 -- raw codes 10 through 19 correspond to the number key 1-9 positions -- on my keyboard on my linux system. They may be different on -- your system! for i = 10, 20 do table.insert(keys, { key="raw:"..tostring(i), mods="CTRL|SHIFT", action=wezterm.action{ActivateTab=tab_no}, }) tab_no = tab_no + 1 end end return { keys = keys, } ``` Notice that the key assignment accepts encoding a raw key code using a value like `key="raw:11"` to indicate that you want a `raw_code` of `11` to match your key assignment. The `raw_modifiers` portion of the `KeyEvent` is used together with the `raw_code` when deciding the key assignment. cc: @bew
2020-12-07 00:23:37 +03:00
serde = {version="1.0", features = ["rc", "derive"]}
2023-07-10 04:28:48 +03:00
tiny-skia = "0.11"
2024-02-07 02:52:02 +03:00
glium = { version = "0.34", default-features = false }
url = "2"
wezterm-bidi = { path = "../bidi" }
wezterm-color-types = { path = "../color-types" }
wezterm-font = { path = "../wezterm-font" }
wezterm-input-types = { path = "../wezterm-input-types" }
2019-08-08 05:19:04 +03:00
[target."cfg(windows)".dependencies]
clipboard-win = "2.2"
shared_library = "0.1"
2019-08-08 05:19:04 +03:00
winapi = { version = "0.3", features = [
2019-08-08 08:10:30 +03:00
"dwmapi",
2019-08-08 05:19:04 +03:00
"handleapi",
"imm",
2019-08-08 19:13:22 +03:00
"libloaderapi",
"shellscalingapi",
2019-08-08 05:19:04 +03:00
"synchapi",
"sysinfoapi",
2019-08-08 19:13:22 +03:00
"winerror",
"winuser",
2019-08-08 05:19:04 +03:00
]}
windows = { version="0.33.0", features = [
"UI_ViewManagement",
"Win32_Devices_Display",
]}
winreg = "0.10"
2019-08-08 05:19:04 +03:00
2019-08-09 03:44:57 +03:00
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
dirs-next = "2.0"
filedescriptor = { version="0.8", path = "../filedescriptor" }
2024-01-04 04:22:07 +03:00
futures-util = "0.3"
futures-lite = "1.12"
2024-01-24 03:04:26 +03:00
x11 = {version ="2.21", features = ["xlib_xcb", "xlib"]}
2024-01-24 03:12:16 +03:00
xcb = {version="1.3", features=["render", "randr", "dri2", "xkb", "xlib_xcb", "present", "as-raw-xcb-connection"]}
2024-01-24 03:02:32 +03:00
xkbcommon = { version = "0.7.0", features = ["x11", "wayland"] }
2022-05-05 05:19:14 +03:00
mio = {version="0.8", features=["os-ext"]}
2019-08-09 21:15:09 +03:00
libc = "0.2"
xcb-imdkit = { version="0.3", git="https://github.com/wez/xcb-imdkit-rs.git", rev="358e226573461fe540efb920e2aad740e3c6fab1"}
2024-01-24 03:14:47 +03:00
zbus = "3.14"
zvariant = "3.15"
2024-01-04 04:22:07 +03:00
smithay-client-toolkit = {version = "0.18", default-features=false, optional=true}
wayland-protocols = {version="0.31", optional=true}
wayland-client = {version="0.31", optional=true}
wayland-egl = {version="0.32", optional=true}
2019-08-09 06:53:16 +03:00
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.25"
2019-08-09 06:53:16 +03:00
objc = "0.2"
core-foundation = "0.7"
core-graphics = "0.19"
2020-12-29 23:13:23 +03:00
cgl = "0.3"
2023-01-11 04:58:35 +03:00
plist = "1.3"
shlex = "1.1"