package lifecycler
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.
Index ¶
Types ¶
type Sender ¶
type Sender interface {
Send(event interface{})
}
Sender is who to send the lifecycle event to.
type State ¶
type State struct {
// contains filtered or unexported fields
}
State is a window's lifecycle state.
func (*State) SendEvent ¶
func (*State) SetDead ¶
func (*State) SetFocused ¶
func (*State) SetVisible ¶
Source Files ¶
lifecycler.go
- Version
- v0.0.0-20250218142911-aa4b98e5adaa (latest)
- Published
- Feb 18, 2025
- Platform
- linux/amd64
- Imports
- 2 packages
- Last checked
- 1 month ago –
Tools for package owners.