#input #bindings #wayland

sys input-sys

由 Bindgen 生成的 unsafe libinput 包装器

9 个稳定版本

1.18.0 2024 年 1 月 19 日
1.17.0 2023 年 1 月 18 日
1.16.1 2021 年 12 月 11 日
1.16.0 2021 年 9 月 30 日
1.7.1 2017 年 6 月 7 日

操作系统 中排名 #267

Download history 5775/week @ 2024-03-14 6121/week @ 2024-03-21 5758/week @ 2024-03-28 5095/week @ 2024-04-04 5002/week @ 2024-04-11 5962/week @ 2024-04-18 5324/week @ 2024-04-25 7220/week @ 2024-05-02 7680/week @ 2024-05-09 7443/week @ 2024-05-16 6758/week @ 2024-05-23 6474/week @ 2024-05-30 14524/week @ 2024-06-06 24245/week @ 2024-06-13 21427/week @ 2024-06-20 18944/week @ 2024-06-27

每月下载量 80,201
31 个 crate 中使用(通过 input

MIT 许可证 MIT

1MB
11K SLoC

Rust libinput 绑定

Build Status Crates.io License Docs

libinputRust 的绑定

这些绑定紧密遵循 libinput 的概念和原始 API。请参阅 libinput 文档 了解总体结构和概念。

注意:由于 libinput 中的错误,这些绑定与 libinput 1.19.0 不兼容。请使用修复后的 1.19.1 版本。

用法

添加到您的 Cargo.toml

input = "0.8"

安装 libinput 开发依赖

Ubuntu

apt-get install libinput-dev

Fedora

dnf install libinput-devel

配置和运行事件循环

use input::{Libinput, LibinputInterface};
use libc::{O_RDONLY, O_RDWR, O_WRONLY};
use std::fs::{File, OpenOptions};
use std::os::unix::{fs::OpenOptionsExt, io::OwnedFd};
use std::path::Path;

struct Interface;

impl LibinputInterface for Interface {
    fn open_restricted(&mut self, path: &Path, flags: i32) -> Result<OwnedFd, i32> {
        OpenOptions::new()
            .custom_flags(flags)
            .read((flags & O_RDONLY != 0) | (flags & O_RDWR != 0))
            .write((flags & O_WRONLY != 0) | (flags & O_RDWR != 0))
            .open(path)
            .map(|file| file.into())
            .map_err(|err| err.raw_os_error().unwrap())
    }
    fn close_restricted(&mut self, fd: OwnedFd) {
        drop(File::from(fd));
    }
}

fn main() {
    let mut input = Libinput::new_with_udev(Interface);
    input.udev_assign_seat("seat0").unwrap();
    loop {
        input.dispatch().unwrap();
        for event in &mut input {
            println!("Got event: {:?}", event);
        }
    }
}

无运行时依赖