16 个版本 (8 个破坏性更新)

0.9.0 2024年1月19日
0.8.3 2023年7月7日
0.8.2 2023年1月31日
0.7.1 2021年12月11日
0.2.0 2017年6月7日

#60 in GUI

Download history 4932/week @ 2024-04-11 5873/week @ 2024-04-18 5283/week @ 2024-04-25 7165/week @ 2024-05-02 7651/week @ 2024-05-09 7400/week @ 2024-05-16 6694/week @ 2024-05-23 6394/week @ 2024-05-30 14469/week @ 2024-06-06 24210/week @ 2024-06-13 21370/week @ 2024-06-20 21984/week @ 2024-06-27 13447/week @ 2024-07-04 14531/week @ 2024-07-11 14121/week @ 2024-07-18 12066/week @ 2024-07-25

57,365 每月下载量
用于 33 个 Crates (13 个直接使用)

MIT 许可

1.5MB
14K 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);
        }
    }
}

依赖项