#wayland #keymap #libxkbcommon #xkbcommon #xkb

xkbcommon-rs

a port of libxkbcommon in safe Rust

1 unstable release

0.1.0 Jun 7, 2024

#586 in GUI

Download history 133/week @ 2024-06-03 7/week @ 2024-06-10

140 downloads per month

Custom license

1MB
18K SLoC

xkbcommon-rs

A port of libxkbcommon in safe Rust.

In Cargo.toml:

xkbcommon-rs = "0.1.0"

Use in Wayland client application

The Keymap and State provided by this crate can be used to represent keyboard state in a Wayland client. For example, xkbcommon-rs can be used in combination with Smithay's wayland-client crate.

Setting up the keymap and the state

use xkbcommon_rs::*;

let keymap = Keymap::new_from_string(
    Context::new(0).unwrap(),
    string, /* Read from the OwnedFd provided by the Wayland compositor */
    KeymapFormat::TextV1,
    0).unwrap();

let mut state = State::new(keymap);

Getting keyboard symbols and updating the state

// Get syms before updating state
let sym = state.key_get_one_sym(keycode)?;

// Update state with the parameters provided by the wl_keyboard::Event::Modifiers{..} event
state.update_mask(
    mods_depressed, mods_latched, mods_locked,
    0, 0, group as usize);

For more information on using State::update_mask() in a Wayland client, see https://wayland-book.com/seat/keyboard.html.

Info

This crate is intended for use in a Wayland client. Compositor-side functionality is also provided.

Corresponds to libxkbcommon version 1.7.0.

Dependencies

~8–11MB
~176K SLoC