Input emulation and global hooks for keyboard and mouse.
```rust use hookmap_core::*;
struct Handler { event: ButtonEvent, }
impl Handler { fn new(event: ButtonEvent) -> Self { Self { event } } }
impl EventCallback for Handler { fn call(&mut self) { match self.event.target { Button::RightArrow => println!("Left"), Button::UpArrow => println!("Up"), Button::LeftArrow => println!("Left"), Button::DownArrow => println!("Down"), _ => println!("Other"), };
match self.event.action {
ButtonAction::Press => println!("Pressed"),
ButtonAction::Release => println!("Released"),
}
}
fn get_event_block(&self) -> EventBlock {
if Button::Shift.is_pressed() {
EventBlock::Block
} else {
EventBlock::Unblock
}
}
}
fn main() { INPUTHANDLER .button .registerhandler(|e| Box::new(Handler::new(e)));
INPUT_HANDLER.handle_input();
} ```