Files
lan-mouse/src/backend/consumer/libei.rs
Ferdinand Schober be0fe9f2d9 Support event consumer on KDE! (portal backend) (#31)
* 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
2023-10-13 13:57:33 +02:00

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!()
}
}