summaryrefslogtreecommitdiff
path: root/events/input.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-08-13 15:25:59 +0200
committerewy <ewy0@protonmail.com>2026-08-13 15:25:59 +0200
commitbc3f852ea670e206fa3facc736a230f6b9d23920 (patch)
tree198bdb2107108fe0cbe83836c8d14688128ba80c /events/input.go
parent60f58e548ef745ec072482954ac37c35d88280d4 (diff)
clamp mous
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)
+}