andlabs-ui/redo/controls.go

31 lines
716 B
Go
Raw Normal View History

2014-07-07 08:43:01 -05:00
// 7 july 2014
package ui
// Control represents a control.
// All Controls have event handlers that take a single argument (the Doer active during the event) and return nothing.
type Control interface {
unparent()
parent(*window)
2014-07-07 08:43:01 -05:00
// TODO enable/disable (public)
// TODO show/hide (public)
controlSizing
2014-07-07 08:43:01 -05:00
}
// Button is a clickable button that performs some task.
type Button interface {
Control
// OnClicked sets the event handler for when the Button is clicked.
OnClicked(func())
2014-07-07 08:43:01 -05:00
// Text and SetText get and set the Button's label text.
Text() string
SetText(text string)
2014-07-07 08:43:01 -05:00
}
// NewButton creates a new Button with the given label text.
func NewButton(text string) *button {
2014-07-07 08:43:01 -05:00
return newButton(text)
}