335 lines
8.6 KiB
Go
335 lines
8.6 KiB
Go
package basicElements
|
|
|
|
import "image"
|
|
import "git.tebibyte.media/sashakoshka/tomo/input"
|
|
import "git.tebibyte.media/sashakoshka/tomo/theme"
|
|
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
|
import "git.tebibyte.media/sashakoshka/tomo/textmanip"
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements/core"
|
|
|
|
var textBoxCase = theme.C("basic", "textBox")
|
|
|
|
// TextBox is a single-line text input.
|
|
type TextBox struct {
|
|
*core.Core
|
|
*core.FocusableCore
|
|
core core.CoreControl
|
|
focusableControl core.FocusableCoreControl
|
|
|
|
cursor int
|
|
scroll int
|
|
placeholder string
|
|
text []rune
|
|
|
|
placeholderDrawer artist.TextDrawer
|
|
valueDrawer artist.TextDrawer
|
|
|
|
onKeyDown func (key input.Key, modifiers input.Modifiers) (handled bool)
|
|
onChange func ()
|
|
onScrollBoundsChange func ()
|
|
}
|
|
|
|
// NewTextBox creates a new text box with the specified placeholder text, and
|
|
// a value. When the value is empty, the placeholder will be displayed in gray
|
|
// text.
|
|
func NewTextBox (placeholder, value string) (element *TextBox) {
|
|
element = &TextBox { }
|
|
element.Core, element.core = core.NewCore(element.handleResize)
|
|
element.FocusableCore,
|
|
element.focusableControl = core.NewFocusableCore (func () {
|
|
if element.core.HasImage () {
|
|
element.draw()
|
|
element.core.DamageAll()
|
|
}
|
|
})
|
|
element.placeholderDrawer.SetFace(theme.FontFaceRegular())
|
|
element.valueDrawer.SetFace(theme.FontFaceRegular())
|
|
element.placeholder = placeholder
|
|
element.placeholderDrawer.SetText([]rune(placeholder))
|
|
element.updateMinimumSize()
|
|
element.SetValue(value)
|
|
return
|
|
}
|
|
|
|
func (element *TextBox) handleResize () {
|
|
element.scrollToCursor()
|
|
element.draw()
|
|
if element.onScrollBoundsChange != nil {
|
|
element.onScrollBoundsChange()
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) HandleMouseDown (x, y int, button input.Button) {
|
|
if !element.Enabled() { return }
|
|
if !element.Focused() { element.Focus() }
|
|
}
|
|
|
|
func (element *TextBox) HandleMouseUp (x, y int, button input.Button) { }
|
|
func (element *TextBox) HandleMouseMove (x, y int) { }
|
|
func (element *TextBox) HandleMouseScroll (x, y int, deltaX, deltaY float64) { }
|
|
|
|
func (element *TextBox) HandleKeyDown(key input.Key, modifiers input.Modifiers) {
|
|
if element.onKeyDown != nil && element.onKeyDown(key, modifiers) {
|
|
return
|
|
}
|
|
|
|
scrollMemory := element.scroll
|
|
altered := true
|
|
textChanged := false
|
|
switch {
|
|
case key == input.KeyBackspace:
|
|
if len(element.text) < 1 { break }
|
|
element.text, element.cursor = textmanip.Backspace (
|
|
element.text,
|
|
element.cursor,
|
|
modifiers.Control)
|
|
textChanged = true
|
|
|
|
case key == input.KeyDelete:
|
|
if len(element.text) < 1 { break }
|
|
element.text, element.cursor = textmanip.Delete (
|
|
element.text,
|
|
element.cursor,
|
|
modifiers.Control)
|
|
textChanged = true
|
|
|
|
case key == input.KeyLeft:
|
|
element.cursor = textmanip.MoveLeft (
|
|
element.text,
|
|
element.cursor,
|
|
modifiers.Control)
|
|
|
|
case key == input.KeyRight:
|
|
element.cursor = textmanip.MoveRight (
|
|
element.text,
|
|
element.cursor,
|
|
modifiers.Control)
|
|
|
|
case key.Printable():
|
|
element.text, element.cursor = textmanip.Type (
|
|
element.text,
|
|
element.cursor,
|
|
rune(key))
|
|
textChanged = true
|
|
|
|
default:
|
|
altered = false
|
|
}
|
|
|
|
if textChanged {
|
|
element.runOnChange()
|
|
element.valueDrawer.SetText(element.text)
|
|
}
|
|
|
|
if altered {
|
|
element.scrollToCursor()
|
|
}
|
|
|
|
if (textChanged || scrollMemory != element.scroll) &&
|
|
element.onScrollBoundsChange != nil {
|
|
element.onScrollBoundsChange()
|
|
}
|
|
|
|
if altered && element.core.HasImage () {
|
|
element.draw()
|
|
element.core.DamageAll()
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) HandleKeyUp(key input.Key, modifiers input.Modifiers) { }
|
|
|
|
func (element *TextBox) SetPlaceholder (placeholder string) {
|
|
if element.placeholder == placeholder { return }
|
|
|
|
element.placeholder = placeholder
|
|
element.placeholderDrawer.SetText([]rune(placeholder))
|
|
|
|
element.updateMinimumSize()
|
|
if element.core.HasImage () {
|
|
element.draw()
|
|
element.core.DamageAll()
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) SetValue (text string) {
|
|
// if element.text == text { return }
|
|
|
|
element.text = []rune(text)
|
|
element.runOnChange()
|
|
element.valueDrawer.SetText(element.text)
|
|
if element.cursor > element.valueDrawer.Length() {
|
|
element.cursor = element.valueDrawer.Length()
|
|
}
|
|
element.scrollToCursor()
|
|
|
|
if element.core.HasImage () {
|
|
element.draw()
|
|
element.core.DamageAll()
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) Value () (value string) {
|
|
return string(element.text)
|
|
}
|
|
|
|
func (element *TextBox) Filled () (filled bool) {
|
|
return len(element.text) > 0
|
|
}
|
|
|
|
func (element *TextBox) OnKeyDown (
|
|
callback func (key input.Key, modifiers input.Modifiers) (handled bool),
|
|
) {
|
|
element.onKeyDown = callback
|
|
}
|
|
|
|
func (element *TextBox) OnChange (callback func ()) {
|
|
element.onChange = callback
|
|
}
|
|
|
|
// ScrollContentBounds returns the full content size of the element.
|
|
func (element *TextBox) ScrollContentBounds () (bounds image.Rectangle) {
|
|
bounds = element.valueDrawer.LayoutBounds()
|
|
return bounds.Sub(bounds.Min)
|
|
}
|
|
|
|
// ScrollViewportBounds returns the size and position of the element's viewport
|
|
// relative to ScrollBounds.
|
|
func (element *TextBox) ScrollViewportBounds () (bounds image.Rectangle) {
|
|
return image.Rect (
|
|
element.scroll,
|
|
0,
|
|
element.scroll + element.scrollViewportWidth(),
|
|
0)
|
|
}
|
|
|
|
func (element *TextBox) scrollViewportWidth () (width int) {
|
|
return element.Bounds().Inset(theme.Padding()).Dx()
|
|
}
|
|
|
|
// ScrollTo scrolls the viewport to the specified point relative to
|
|
// ScrollBounds.
|
|
func (element *TextBox) ScrollTo (position image.Point) {
|
|
// constrain to minimum
|
|
element.scroll = position.X
|
|
if element.scroll < 0 { element.scroll = 0 }
|
|
|
|
// constrain to maximum
|
|
contentBounds := element.ScrollContentBounds()
|
|
maxPosition := contentBounds.Max.X - element.scrollViewportWidth()
|
|
if element.scroll > maxPosition { element.scroll = maxPosition }
|
|
|
|
if element.core.HasImage () {
|
|
element.draw()
|
|
element.core.DamageAll()
|
|
}
|
|
if element.onScrollBoundsChange != nil {
|
|
element.onScrollBoundsChange()
|
|
}
|
|
}
|
|
|
|
// ScrollAxes returns the supported axes for scrolling.
|
|
func (element *TextBox) ScrollAxes () (horizontal, vertical bool) {
|
|
return true, false
|
|
}
|
|
|
|
func (element *TextBox) OnScrollBoundsChange (callback func ()) {
|
|
element.onScrollBoundsChange = callback
|
|
}
|
|
|
|
func (element *TextBox) updateMinimumSize () {
|
|
textBounds := element.placeholderDrawer.LayoutBounds()
|
|
_, inset := theme.InputPattern(theme.PatternState {
|
|
Case: textBoxCase,
|
|
})
|
|
element.core.SetMinimumSize (
|
|
textBounds.Dx() +
|
|
theme.Padding() * 2 + inset[3] + inset[1],
|
|
element.placeholderDrawer.LineHeight().Round() +
|
|
theme.Padding() * 2 + inset[0] + inset[2])
|
|
}
|
|
|
|
func (element *TextBox) runOnChange () {
|
|
if element.onChange != nil {
|
|
element.onChange()
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) scrollToCursor () {
|
|
if !element.core.HasImage() { return }
|
|
|
|
bounds := element.Bounds().Inset(theme.Padding())
|
|
bounds = bounds.Sub(bounds.Min)
|
|
bounds.Max.X -= element.valueDrawer.Em().Round()
|
|
cursorPosition := element.valueDrawer.PositionOf(element.cursor)
|
|
cursorPosition.X -= element.scroll
|
|
maxX := bounds.Max.X
|
|
minX := maxX
|
|
if cursorPosition.X > maxX {
|
|
element.scroll += cursorPosition.X - maxX
|
|
} else if cursorPosition.X < minX {
|
|
element.scroll -= minX - cursorPosition.X
|
|
if element.scroll < 0 { element.scroll = 0 }
|
|
}
|
|
}
|
|
|
|
func (element *TextBox) draw () {
|
|
bounds := element.Bounds()
|
|
|
|
// FIXME: take index into account
|
|
pattern, inset := theme.InputPattern(theme.PatternState {
|
|
Case: textBoxCase,
|
|
Disabled: !element.Enabled(),
|
|
Focused: element.Focused(),
|
|
})
|
|
artist.FillRectangle(element, pattern, bounds)
|
|
|
|
if len(element.text) == 0 && !element.Focused() {
|
|
// draw placeholder
|
|
textBounds := element.placeholderDrawer.LayoutBounds()
|
|
offset := bounds.Min.Add (image.Point {
|
|
X: theme.Padding() + inset[3],
|
|
Y: theme.Padding() + inset[0],
|
|
})
|
|
foreground, _ := theme.ForegroundPattern(theme.PatternState {
|
|
Case: textBoxCase,
|
|
Disabled: true,
|
|
})
|
|
element.placeholderDrawer.Draw (
|
|
element,
|
|
foreground,
|
|
offset.Sub(textBounds.Min))
|
|
} else {
|
|
// draw input value
|
|
textBounds := element.valueDrawer.LayoutBounds()
|
|
offset := bounds.Min.Add (image.Point {
|
|
X: theme.Padding() + inset[3] - element.scroll,
|
|
Y: theme.Padding() + inset[0],
|
|
})
|
|
foreground, _ := theme.ForegroundPattern(theme.PatternState {
|
|
Case: textBoxCase,
|
|
Disabled: !element.Enabled(),
|
|
})
|
|
element.valueDrawer.Draw (
|
|
element,
|
|
foreground,
|
|
offset.Sub(textBounds.Min))
|
|
|
|
if element.Focused() {
|
|
// cursor
|
|
cursorPosition := element.valueDrawer.PositionOf (
|
|
element.cursor)
|
|
foreground, _ := theme.ForegroundPattern(theme.PatternState {
|
|
Case: textBoxCase,
|
|
})
|
|
artist.Line (
|
|
element,
|
|
foreground, 1,
|
|
cursorPosition.Add(offset),
|
|
image.Pt (
|
|
cursorPosition.X,
|
|
cursorPosition.Y + element.valueDrawer.
|
|
LineHeight().Round()).Add(offset))
|
|
}
|
|
}
|
|
}
|