mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
19 lines
455 B
Go
19 lines
455 B
Go
package desktop
|
|
|
|
import (
|
|
"m1k1o/neko/internal/desktop/xevent"
|
|
"m1k1o/neko/internal/types"
|
|
)
|
|
|
|
func (manager *DesktopManagerCtx) GetCursorChangedChannel() chan uint64 {
|
|
return xevent.CursorChangedChannel
|
|
}
|
|
|
|
func (manager *DesktopManagerCtx) GetClipboardUpdatedChannel() chan struct{} {
|
|
return xevent.ClipboardUpdatedChannel
|
|
}
|
|
|
|
func (manager *DesktopManagerCtx) GetEventErrorChannel() chan types.DesktopErrorMessage {
|
|
return xevent.EventErrorChannel
|
|
}
|