espanso/src/keyboard/linux.rs

31 lines
735 B
Rust
Raw Normal View History

use std::sync::mpsc;
2019-09-07 14:13:13 +00:00
use std::os::raw::{c_void};
use std::ffi::CString;
2019-09-07 11:35:45 +00:00
use crate::bridge::linux::*;
2019-09-13 13:03:03 +00:00
pub struct LinuxKeyboardManager {
}
2019-09-13 13:03:03 +00:00
impl super::KeyboardManager for LinuxKeyboardManager {
fn send_string(&self, s: &str) {
let res = CString::new(s);
match res {
Ok(cstr) => unsafe { send_string(cstr.as_ptr()); }
Err(e) => panic!(e.to_string())
}
}
2019-09-06 20:19:28 +00:00
fn send_enter(&self) {
// On linux this is not needed, so NOOP
}
fn trigger_paste(&self) {
unsafe { trigger_paste(); }
// TODO: detect when in terminal and use trigger_terminal_paste() instead
}
fn delete_string(&self, count: i32) {
unsafe {delete_string(count)}
}
}