mirror of
https://github.com/br0xen/termbox-util.git
synced 2024-10-31 21:33:14 +00:00
Handle spaces and tabs on input fields
This commit is contained in:
parent
de17902fb9
commit
31465b574e
@ -2,6 +2,7 @@ package termbox_util
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/nsf/termbox-go"
|
"github.com/nsf/termbox-go"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -73,14 +74,26 @@ func (i *InputField) HandleKeyPress(event termbox.Event) bool {
|
|||||||
// Ctrl+U Clears the Input
|
// Ctrl+U Clears the Input
|
||||||
i.value = ""
|
i.value = ""
|
||||||
} else {
|
} else {
|
||||||
|
// 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)
|
||||||
|
}
|
||||||
|
|
||||||
if i.cursor+len(i.value) == 0 {
|
if i.cursor+len(i.value) == 0 {
|
||||||
i.value = fmt.Sprintf("%s%s", string(event.Ch), i.value)
|
i.value = fmt.Sprintf("%s%s", ch, i.value)
|
||||||
} else if i.cursor == 0 {
|
} else if i.cursor == 0 {
|
||||||
i.value = fmt.Sprintf("%s%s", i.value, string(event.Ch))
|
i.value = fmt.Sprintf("%s%s", i.value, ch)
|
||||||
} else {
|
} else {
|
||||||
str_pt_1 := i.value[:(len(i.value) + i.cursor)]
|
str_pt_1 := i.value[:(len(i.value) + i.cursor)]
|
||||||
str_pt_2 := i.value[(len(i.value) + i.cursor):]
|
str_pt_2 := i.value[(len(i.value) + i.cursor):]
|
||||||
i.value = fmt.Sprintf("%s%s%s", str_pt_1, string(event.Ch), str_pt_2)
|
i.value = fmt.Sprintf("%s%s%s", str_pt_1, ch, str_pt_2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user