summaryrefslogtreecommitdiff
path: root/events/input.go
diff options
context:
space:
mode:
Diffstat (limited to 'events/input.go')
-rw-r--r--events/input.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/events/input.go b/events/input.go
new file mode 100644
index 0000000..8fc1591
--- /dev/null
+++ b/events/input.go
@@ -0,0 +1,13 @@
+package events
+
+type MouseMotionHandler interface {
+ ProcessMouseMotion(ev MouseMotion)
+}
+
+type MousePressHandler interface {
+ ProcessMousePress(ev MousePress)
+}
+
+type WindowChangeHandler interface {
+ ProcessWindowChange(ev WindowChange)
+}