-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathExample.java
72 lines (65 loc) · 2.11 KB
/
Example.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package org.simplenativehooks;
import java.io.IOException;
import java.net.URISyntaxException;
import org.simplenativehooks.events.NativeKeyEvent;
import org.simplenativehooks.events.NativeMouseEvent;
import org.simplenativehooks.staticResources.BootStrapResources;
import org.simplenativehooks.utilities.Function;
public class Example {
public static void main(String[] args) throws InterruptedException {
/* Extracting resources */
try {
BootStrapResources.extractResources();
} catch (IOException | URISyntaxException e) {
System.out.println("Cannot extract bootstrap resources.");
e.printStackTrace();
System.exit(2);
}
/* Initializing global hooks */
NativeHookInitializer.of().start();
/* Set up callbacks */
NativeKeyHook key = NativeKeyHook.of();
key.setKeyPressed(new Function<NativeKeyEvent, Boolean>() {
@Override
public Boolean apply(NativeKeyEvent d) {
System.out.println("Key pressed: " + d.getKey());
return true;
}
});
key.setKeyReleased(new Function<NativeKeyEvent, Boolean>() {
@Override
public Boolean apply(NativeKeyEvent d) {
System.out.println("Key released: " + d.getKey());
return true;
}
});
key.startListening();
NativeMouseHook mouse = NativeMouseHook.of();
mouse.setMousePressed(new Function<NativeMouseEvent, Boolean>() {
@Override
public Boolean apply(NativeMouseEvent d) {
System.out.println("Mouse pressed button " + d.getButton() + " at " + d.getX() + ", " + d.getY());
return true;
}
});
mouse.setMouseReleased(new Function<NativeMouseEvent, Boolean>() {
@Override
public Boolean apply(NativeMouseEvent d) {
System.out.println("Mouse released button " + d.getButton() + " at " + d.getX() + ", " + d.getY());
return true;
}
});
mouse.setMouseMoved(new Function<NativeMouseEvent, Boolean>() {
@Override
public Boolean apply(NativeMouseEvent d) {
System.out.println("Mouse moved to " + d.getX() + ", " + d.getY());
return true;
}
});
mouse.startListening();
/* Wait for testing before shutting down. */
Thread.sleep(5000);
/* Clean up */
NativeHookInitializer.of().stop();
}
}