This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/backends/x/selectionclaim.go
2023-03-29 23:24:42 -04:00

25 lines
386 B
Go

package x
import "git.tebibyte.media/sashakoshka/tomo/data"
type selectionClaim struct {
data data.Data
scheduledDelete bool
}
func (window *window) newSelectionClaim (data data.Data) *selectionClaim {
return &selectionClaim{
data: data,
}
}
func (claim *selectionClaim) idle () bool {
// TODO
}
func (claim *selectionClaim) handleSelectionRequest (
// TODO
) {
// TODO
}