mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-07 20:09:59 +03:00
* Support event consumer on KDE! (portal backend) Support for KDE event emulation using the remote-desktop xdg-desktop-portal * fix scrolling (TODO: smooth / kinetic scrolling) * windows: fix compilation errors * Update README.md
19 lines
414 B
Rust
19 lines
414 B
Rust
use crate::consumer::SyncConsumer;
|
|
|
|
pub struct LibeiConsumer {}
|
|
|
|
impl LibeiConsumer {
|
|
pub fn new() -> Self { Self { } }
|
|
}
|
|
|
|
impl SyncConsumer for LibeiConsumer {
|
|
fn consume(&mut self, _: crate::event::Event, _: crate::client::ClientHandle) {
|
|
log::error!("libei backend not yet implemented!");
|
|
todo!()
|
|
}
|
|
|
|
fn notify(&mut self, _: crate::client::ClientEvent) {
|
|
todo!()
|
|
}
|
|
}
|