mirror of
https://github.com/m1k1o/neko.git
synced 2025-05-03 04:15:53 +02:00
17 lines
470 B
Go
17 lines
470 B
Go
package desktop
|
|
|
|
import (
|
|
"demodesk/neko/internal/desktop/xevent"
|
|
)
|
|
|
|
func (manager *DesktopManagerCtx) OnCursorChanged(listener func(serial uint64)) {
|
|
xevent.OnCursorChanged(listener)
|
|
}
|
|
|
|
func (manager *DesktopManagerCtx) OnClipboardUpdated(listener func()) {
|
|
xevent.OnClipboardUpdated(listener)
|
|
}
|
|
|
|
func (manager *DesktopManagerCtx) OnEventError(listener func(error_code uint8, message string, request_code uint8, minor_code uint8)) {
|
|
xevent.OnEventError(listener)
|
|
}
|