2015-10-21 16:14:57 +00:00
|
|
|
package termboxUtil
|
2015-05-18 14:39:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-10-21 16:00:06 +00:00
|
|
|
|
2015-05-18 14:39:31 +00:00
|
|
|
"github.com/nsf/termbox-go"
|
|
|
|
)
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// InputField is a field for inputting text
|
2015-05-18 14:39:31 +00:00
|
|
|
type InputField struct {
|
|
|
|
value string
|
|
|
|
x, y, width, height int
|
|
|
|
cursor int
|
|
|
|
fg, bg termbox.Attribute
|
|
|
|
bordered bool
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// CreateInputField creates an input field at x, y that is w by h
|
2015-05-18 14:39:31 +00:00
|
|
|
func CreateInputField(x, y, w, h int, fg, bg termbox.Attribute) *InputField {
|
|
|
|
i := InputField{x: x, y: y, width: w, height: h, fg: fg, bg: bg}
|
|
|
|
return &i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// GetValue gets the current text that is in the InputField
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) GetValue() string { return i.value }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetValue sets the current text in the InputField to s
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetValue(s string) *InputField {
|
|
|
|
i.value = s
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// GetX returns the x position of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) GetX() int { return i.x }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetX sets the x position of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetX(x int) *InputField {
|
|
|
|
i.x = x
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// GetY returns the y position of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) GetY() int { return i.y }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetY sets the y position of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetY(y int) *InputField {
|
|
|
|
i.y = y
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// GetWidth returns the current width of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) GetWidth() int { return i.width }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetWidth sets the current width of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetWidth(w int) *InputField {
|
|
|
|
i.width = w
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// GetHeight returns the current height of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) GetHeight() int { return i.height }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetHeight sets the current height of the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetHeight(h int) *InputField {
|
|
|
|
i.height = h
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// IsBordered returns true or false if this input field has a border
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) IsBordered() bool { return i.bordered }
|
2015-10-21 16:14:57 +00:00
|
|
|
|
|
|
|
// SetBordered sets whether we render a border around the input field
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) SetBordered(b bool) *InputField {
|
|
|
|
i.bordered = b
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// HandleKeyPress accepts the termbox event and returns whether it was consumed
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) HandleKeyPress(event termbox.Event) bool {
|
|
|
|
if event.Key == termbox.KeyEnter {
|
|
|
|
// Done editing
|
|
|
|
} else if event.Key == termbox.KeyBackspace || event.Key == termbox.KeyBackspace2 {
|
|
|
|
if len(i.value) > 0 {
|
|
|
|
i.value = i.value[:len(i.value)-1]
|
|
|
|
}
|
|
|
|
} else if event.Key == termbox.KeyArrowLeft {
|
|
|
|
if i.cursor+len(i.value) > 0 {
|
2015-10-21 16:14:57 +00:00
|
|
|
i.cursor--
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|
|
|
|
} else if event.Key == termbox.KeyArrowRight {
|
|
|
|
if i.cursor < 0 {
|
2015-10-21 16:14:57 +00:00
|
|
|
i.cursor++
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|
|
|
|
} else if event.Key == termbox.KeyCtrlU {
|
|
|
|
// Ctrl+U Clears the Input
|
|
|
|
i.value = ""
|
|
|
|
} else {
|
2015-10-21 16:00:06 +00:00
|
|
|
// Get the rune to add to our value. Space and Tab are special cases where
|
|
|
|
// we can't use the event's rune directly
|
|
|
|
var ch string
|
|
|
|
switch event.Key {
|
|
|
|
case termbox.KeySpace:
|
|
|
|
ch = " "
|
|
|
|
case termbox.KeyTab:
|
|
|
|
ch = "\t"
|
|
|
|
default:
|
|
|
|
ch = string(event.Ch)
|
|
|
|
}
|
|
|
|
|
2015-05-18 14:39:31 +00:00
|
|
|
if i.cursor+len(i.value) == 0 {
|
2015-10-21 16:00:06 +00:00
|
|
|
i.value = fmt.Sprintf("%s%s", ch, i.value)
|
2015-05-18 14:39:31 +00:00
|
|
|
} else if i.cursor == 0 {
|
2015-10-21 16:00:06 +00:00
|
|
|
i.value = fmt.Sprintf("%s%s", i.value, ch)
|
2015-05-18 14:39:31 +00:00
|
|
|
} else {
|
2015-10-21 16:14:57 +00:00
|
|
|
strPt1 := i.value[:(len(i.value) + i.cursor)]
|
|
|
|
strPt2 := i.value[(len(i.value) + i.cursor):]
|
|
|
|
i.value = fmt.Sprintf("%s%s%s", strPt1, ch, strPt2)
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
// Draw outputs the input field on the screen
|
2015-05-18 14:39:31 +00:00
|
|
|
func (i *InputField) Draw() {
|
|
|
|
if i.bordered {
|
|
|
|
DrawBorder(i.x, i.y, i.x+i.width, i.y+i.height, i.fg, i.bg)
|
|
|
|
}
|
|
|
|
|
2015-10-21 16:14:57 +00:00
|
|
|
var strPt1, strPt2 string
|
|
|
|
var cursorRune rune
|
2015-05-18 14:39:31 +00:00
|
|
|
if len(i.value) > 0 {
|
|
|
|
if i.cursor+len(i.value) == 0 {
|
2015-10-21 16:14:57 +00:00
|
|
|
strPt1 = ""
|
|
|
|
strPt2 = i.value[1:]
|
|
|
|
cursorRune = rune(i.value[0])
|
2015-05-18 14:39:31 +00:00
|
|
|
} else if i.cursor == 0 {
|
2015-10-21 16:14:57 +00:00
|
|
|
strPt1 = i.value
|
|
|
|
strPt2 = ""
|
|
|
|
cursorRune = ' '
|
2015-05-18 14:39:31 +00:00
|
|
|
} else {
|
2015-10-21 16:14:57 +00:00
|
|
|
strPt1 = i.value[:(len(i.value) + i.cursor)]
|
|
|
|
strPt2 = i.value[(len(i.value)+i.cursor)+1:]
|
|
|
|
cursorRune = rune(i.value[len(i.value)+i.cursor])
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-10-21 16:14:57 +00:00
|
|
|
strPt1, strPt2, cursorRune = "", "", ' '
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|
2015-10-21 16:14:57 +00:00
|
|
|
x, y := DrawStringAtPoint(strPt1, i.x+1, i.y+1, i.fg, i.bg)
|
|
|
|
termbox.SetCell(x, y, cursorRune, i.bg, i.fg)
|
2015-10-21 16:46:14 +00:00
|
|
|
DrawStringAtPoint(strPt2, x+1, y, i.fg, i.bg)
|
2015-05-18 14:39:31 +00:00
|
|
|
}
|