import "golang.org/x/exp/shiny/driver/internal/lifecycler"
Package lifecycler tracks a window's lifecycle state.
It eliminates sending redundant lifecycle events, ones where the From and To stages are equal. For example, moving a window from one part of the screen to another should not send multiple events from StageVisible to StageVisible, even though the underlying window system's message might only hold the new position, and not whether the window was previously visible.
type Sender interface {
Send(event interface{})
}
Sender is who to send the lifecycle event to.
type State struct {
// contains filtered or unexported fields
}
State is a window's lifecycle state.
Package lifecycler imports 2 packages (graph) and is imported by 3 packages. Updated 2020-12-30. Refresh now. Tools for package owners.