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/elements/basic/button.go

199 lines
4.6 KiB
Go
Raw Normal View History

2023-01-09 06:03:19 +00:00
package basic
import "image"
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/theme"
import "git.tebibyte.media/sashakoshka/tomo/artist"
2023-01-10 02:25:11 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements/core"
2023-01-09 06:03:19 +00:00
2023-01-13 18:51:22 +00:00
// Button is a clickable button.
2023-01-09 06:03:19 +00:00
type Button struct {
2023-01-10 02:25:11 +00:00
*core.Core
core core.CoreControl
2023-01-09 20:14:36 +00:00
pressed bool
enabled bool
2023-01-16 05:31:04 +00:00
selected bool
2023-01-09 06:03:19 +00:00
onClick func ()
text string
drawer artist.TextDrawer
}
2023-01-13 18:51:22 +00:00
// NewButton creates a new button with the specified label text.
2023-01-09 06:03:19 +00:00
func NewButton (text string) (element *Button) {
element = &Button { enabled: true }
2023-01-10 02:25:11 +00:00
element.Core, element.core = core.NewCore(element)
2023-01-09 06:03:19 +00:00
element.drawer.SetFace(theme.FontFaceRegular())
element.SetText(text)
return
}
2023-01-16 05:31:04 +00:00
func (element *Button) Resize (width, height int) {
element.core.AllocateCanvas(width, height)
element.draw()
}
func (element *Button) HandleMouseDown (x, y int, button tomo.Button) {
if !element.enabled { return }
2023-01-16 05:31:04 +00:00
element.Select()
if button != tomo.ButtonLeft { return }
element.pressed = true
if element.core.HasImage() {
element.draw()
element.core.PushAll()
}
}
func (element *Button) HandleMouseUp (x, y int, button tomo.Button) {
if button != tomo.ButtonLeft { return }
element.pressed = false
if element.core.HasImage() {
2023-01-09 06:03:19 +00:00
element.draw()
2023-01-16 05:31:04 +00:00
element.core.PushAll()
}
2023-01-09 06:03:19 +00:00
2023-01-16 05:31:04 +00:00
within := image.Point { x, y }.
In(element.Bounds())
2023-01-09 06:03:19 +00:00
if !element.enabled { return }
2023-01-16 05:31:04 +00:00
if within && element.onClick != nil {
element.onClick()
}
}
func (element *Button) HandleMouseMove (x, y int) { }
func (element *Button) HandleScroll (x, y int, deltaX, deltaY float64) { }
func (element *Button) HandleKeyDown (
key tomo.Key,
modifiers tomo.Modifiers,
repeated bool,
) {
if !element.enabled { return }
2023-01-16 05:31:04 +00:00
if key == tomo.KeyEnter {
2023-01-09 06:03:19 +00:00
element.pressed = true
if element.core.HasImage() {
element.draw()
element.core.PushAll()
}
2023-01-16 05:31:04 +00:00
}
}
2023-01-09 06:03:19 +00:00
2023-01-16 05:31:04 +00:00
func (element *Button) HandleKeyUp(key tomo.Key, modifiers tomo.Modifiers) {
if key == tomo.KeyEnter && element.pressed {
2023-01-09 06:03:19 +00:00
element.pressed = false
if element.core.HasImage() {
element.draw()
element.core.PushAll()
}
if !element.enabled { return }
2023-01-16 05:31:04 +00:00
if element.onClick != nil {
2023-01-09 06:03:19 +00:00
element.onClick()
}
2023-01-16 05:31:04 +00:00
}
}
2023-01-09 20:14:36 +00:00
2023-01-16 05:31:04 +00:00
func (element *Button) Selected () (selected bool) {
return element.selected
}
2023-01-16 05:31:04 +00:00
func (element *Button) Select () {
if !element.enabled { return }
2023-01-16 05:31:04 +00:00
element.core.RequestSelection()
}
2023-01-09 20:14:36 +00:00
2023-01-16 05:31:04 +00:00
func (element *Button) HandleSelection (
direction tomo.SelectionDirection,
) (
accepted bool,
) {
direction = direction.Canon()
2023-01-16 17:21:47 +00:00
if !element.enabled { return false }
if element.selected && direction != tomo.SelectionDirectionNeutral {
2023-01-16 05:31:04 +00:00
return false
}
2023-01-16 17:21:47 +00:00
element.selected = true
if element.core.HasImage() {
element.draw()
element.core.PushAll()
}
return true
2023-01-16 05:31:04 +00:00
}
func (element *Button) HandleDeselection () {
element.selected = false
if element.core.HasImage() {
element.draw()
element.core.PushAll()
2023-01-09 06:03:19 +00:00
}
}
2023-01-13 18:51:22 +00:00
// OnClick sets the function to be called when the button is clicked.
2023-01-09 20:14:36 +00:00
func (element *Button) OnClick (callback func ()) {
element.onClick = callback
}
2023-01-13 18:51:22 +00:00
// SetEnabled sets whether this button can be clicked or not.
2023-01-09 06:03:19 +00:00
func (element *Button) SetEnabled (enabled bool) {
if element.enabled == enabled { return }
element.enabled = enabled
if element.core.HasImage () {
element.draw()
element.core.PushAll()
}
}
2023-01-13 18:51:22 +00:00
// SetText sets the button's label text.
2023-01-09 06:03:19 +00:00
func (element *Button) SetText (text string) {
if element.text == text { return }
element.text = text
element.drawer.SetText([]rune(text))
2023-01-09 06:03:19 +00:00
textBounds := element.drawer.LayoutBounds()
element.core.SetMinimumSize (
theme.Padding() * 2 + textBounds.Dx(),
theme.Padding() * 2 + textBounds.Dy())
if element.core.HasImage () {
element.draw()
element.core.PushAll()
}
}
func (element *Button) draw () {
bounds := element.core.Bounds()
artist.FillRectangle (
2023-01-09 06:03:19 +00:00
element.core,
theme.ButtonPattern (
2023-01-09 20:14:36 +00:00
element.enabled,
element.Selected(),
element.pressed),
2023-01-09 06:03:19 +00:00
bounds)
innerBounds := bounds
innerBounds.Min.X += theme.Padding()
innerBounds.Min.Y += theme.Padding()
innerBounds.Max.X -= theme.Padding()
innerBounds.Max.Y -= theme.Padding()
textBounds := element.drawer.LayoutBounds()
offset := image.Point {
X: theme.Padding() + (innerBounds.Dx() - textBounds.Dx()) / 2,
Y: theme.Padding() + (innerBounds.Dy() - textBounds.Dy()) / 2,
}
// account for the fact that the bounding rectangle will be shifted over
// due to the bounds origin being at the baseline of the first line
offset.Y -= textBounds.Min.Y
offset.X -= textBounds.Min.X
if element.pressed {
offset = offset.Add(theme.SinkOffsetVector())
}
foreground := theme.ForegroundPattern(element.enabled)
2023-01-09 06:03:19 +00:00
element.drawer.Draw(element.core, foreground, offset)
}