#keyboard #winapi #keyboard-events #listen #global #press #keyboard-listener

keyboard_listener_windows

You can use this library to listen your keyboard press and release ON windows

4 releases

0.2.0 Mar 11, 2024
0.1.2 Feb 28, 2024
0.1.1 Feb 27, 2024
0.1.0 Feb 27, 2024

#58 in Windows APIs

Download history 370/week @ 2024-02-26 6/week @ 2024-03-04 826/week @ 2024-03-11 30/week @ 2024-03-18 66/week @ 2024-04-01

923 downloads per month

MIT license

11KB
250 lines

keyboard_listener_windows

Simple library to listen globally to keyboard ONLY on Windows.

This library is subset of caret rdev.
You should use crate rdev if you don't just need to listen on Windows.

Install

$ cargo add keyboard_listener_windows

Listening to global events

Example:

use std::time::Duration;
use keyboard_listener_windows::{start_listen, stop_listen, Event};

fn main() {
    start_listen(callback);
    println!("start listen");

    // you can stop listen any time
    std::thread::spawn(||{
        std::thread::sleep(Duration::new(5,0));
        stop_listen();
        println!("stop listen")
    }).join().unwrap();
}

fn callback(event: Event) {
    println!("Keyboard event: {:?}", event);
}

Sample output:

start listen
Keyboard event: Event { timestamp: 1709032907009, is_key_down: true, key: "KeyA" }
Keyboard event: Event { timestamp: 1709032907036, is_key_down: true, key: "KeyS" }
Keyboard event: Event { timestamp: 1709032907140, is_key_down: true, key: "KeyD" }
Keyboard event: Event { timestamp: 1709032907216, is_key_down: false, key: "KeyA" }
Keyboard event: Event { timestamp: 1709032907373, is_key_down: false, key: "KeyS" }
Keyboard event: Event { timestamp: 1709032907456, is_key_down: false, key: "KeyD" }
stop listen

You can clone this repository then run this example using cargo:

$ cd example/listen && cargo run

OK, that's all, if you need more feature, please use crate rdev.

Dependencies

~240KB