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
每月下载量 80,201 次
在 31 个 crate 中使用(通过 input)
1MB
11K SLoC
Rust libinput 绑定
这些绑定紧密遵循 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);
}
}
}