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
57,365 每月下载量
用于 33 个 Crates (13 个直接使用)
1.5MB
14K 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);
}
}
}