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/label.go

168 lines
4.2 KiB
Go
Raw Normal View History

2023-02-02 06:48:16 +00:00
package basicElements
2023-01-09 06:03:19 +00:00
import "git.tebibyte.media/sashakoshka/tomo/theme"
2023-02-08 05:22:40 +00:00
import "git.tebibyte.media/sashakoshka/tomo/config"
2023-02-15 23:45:58 +00:00
import "git.tebibyte.media/sashakoshka/tomo/textdraw"
2023-01-10 02:25:11 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements/core"
2023-01-09 06:03:19 +00:00
// Label is a simple text box.
2023-01-09 06:03:19 +00:00
type Label struct {
2023-01-10 02:25:11 +00:00
*core.Core
core core.CoreControl
wrap bool
2023-01-09 06:03:19 +00:00
text string
2023-02-15 23:45:58 +00:00
drawer textdraw.Drawer
2023-02-08 19:36:14 +00:00
config config.Wrapped
theme theme.Wrapped
2023-02-08 05:22:40 +00:00
onFlexibleHeightChange func ()
2023-01-09 06:03:19 +00:00
}
// NewLabel creates a new label. If wrap is set to true, the text inside will be
// wrapped.
func NewLabel (text string, wrap bool) (element *Label) {
2023-02-08 19:36:14 +00:00
element = &Label { }
element.theme.Case = theme.C("basic", "label")
2023-02-08 05:22:40 +00:00
element.Core, element.core = core.NewCore(element.handleResize)
element.SetWrap(wrap)
2023-01-09 06:03:19 +00:00
element.SetText(text)
return
}
2023-02-07 16:27:59 +00:00
func (element *Label) redo () {
2023-02-08 05:22:40 +00:00
face := element.theme.FontFace (
2023-02-07 16:27:59 +00:00
theme.FontStyleRegular,
2023-02-08 19:36:14 +00:00
theme.FontSizeNormal)
2023-02-07 16:27:59 +00:00
element.drawer.SetFace(face)
element.updateMinimumSize()
bounds := element.Bounds()
if element.wrap {
element.drawer.SetMaxWidth(bounds.Dx())
element.drawer.SetMaxHeight(bounds.Dy())
}
element.draw()
element.core.DamageAll()
}
2023-01-31 19:54:43 +00:00
func (element *Label) handleResize () {
bounds := element.Bounds()
if element.wrap {
2023-01-31 19:54:43 +00:00
element.drawer.SetMaxWidth(bounds.Dx())
element.drawer.SetMaxHeight(bounds.Dy())
2023-01-09 06:03:19 +00:00
}
element.draw()
2023-01-09 06:03:19 +00:00
return
}
// FlexibleHeightFor returns the reccomended height for this element based on
// the given width in order to allow the text to wrap properly.
func (element *Label) FlexibleHeightFor (width int) (height int) {
if element.wrap {
return element.drawer.ReccomendedHeightFor(width)
} else {
_, height = element.MinimumSize()
return
}
}
// OnFlexibleHeightChange sets a function to be called when the parameters
// affecting this element's flexible height are changed.
func (element *Label) OnFlexibleHeightChange (callback func ()) {
element.onFlexibleHeightChange = callback
}
// SetText sets the label's text.
2023-01-09 06:03:19 +00:00
func (element *Label) SetText (text string) {
if element.text == text { return }
element.text = text
element.drawer.SetText([]rune(text))
element.updateMinimumSize()
2023-01-09 06:03:19 +00:00
if element.core.HasImage () {
element.draw()
element.core.DamageAll()
2023-01-09 06:03:19 +00:00
}
}
// SetWrap sets wether or not the label's text wraps. If the text is set to
// wrap, the element will have a minimum size of a single character and
// automatically wrap its text. If the text is set to not wrap, the element will
// have a minimum size that fits its text.
func (element *Label) SetWrap (wrap bool) {
if wrap == element.wrap { return }
if !wrap {
element.drawer.SetMaxWidth(0)
element.drawer.SetMaxHeight(0)
}
element.wrap = wrap
element.updateMinimumSize()
if element.core.HasImage () {
element.draw()
element.core.DamageAll()
}
}
2023-02-08 05:22:40 +00:00
// SetTheme sets the element's theme.
func (element *Label) SetTheme (new theme.Theme) {
2023-02-08 19:36:14 +00:00
if new == element.theme.Theme { return }
element.theme.Theme = new
2023-02-08 05:22:40 +00:00
element.drawer.SetFace (element.theme.FontFace (
theme.FontStyleRegular,
2023-02-08 19:36:14 +00:00
theme.FontSizeNormal))
2023-02-08 05:22:40 +00:00
element.updateMinimumSize()
if element.core.HasImage () {
element.draw()
element.core.DamageAll()
}
}
// SetConfig sets the element's configuration.
func (element *Label) SetConfig (new config.Config) {
2023-02-08 19:36:14 +00:00
if new == element.config.Config { return }
element.config.Config = new
2023-02-08 05:22:40 +00:00
element.updateMinimumSize()
if element.core.HasImage () {
element.draw()
element.core.DamageAll()
}
}
func (element *Label) updateMinimumSize () {
if element.wrap {
em := element.drawer.Em().Round()
2023-02-27 03:20:17 +00:00
if em < 1 {
em = element.theme.Padding(theme.PatternBackground)[0]
}
element.core.SetMinimumSize (
em, element.drawer.LineHeight().Round())
if element.onFlexibleHeightChange != nil {
element.onFlexibleHeightChange()
}
} else {
bounds := element.drawer.LayoutBounds()
element.core.SetMinimumSize(bounds.Dx(), bounds.Dy())
}
}
2023-01-09 06:03:19 +00:00
func (element *Label) draw () {
bounds := element.Bounds()
2023-01-09 06:03:19 +00:00
2023-02-08 05:22:40 +00:00
pattern := element.theme.Pattern (
2023-02-07 16:27:59 +00:00
theme.PatternBackground,
2023-02-27 03:20:17 +00:00
theme.State { })
pattern.Draw(element.core, bounds)
2023-01-09 06:03:19 +00:00
textBounds := element.drawer.LayoutBounds()
2023-02-27 03:20:17 +00:00
foreground := element.theme.Color (
theme.ColorForeground,
theme.State { })
2023-02-13 06:49:33 +00:00
element.drawer.Draw(element.core, foreground, bounds.Min.Sub(textBounds.Min))
2023-01-09 06:03:19 +00:00
}