aerc/widgets/exline.go

79 lines
1.6 KiB
Go
Raw Normal View History

2018-02-27 04:54:39 +01:00
package widgets
import (
"github.com/gdamore/tcell"
2018-02-27 04:54:39 +01:00
"git.sr.ht/~sircmpwn/aerc/lib"
2019-05-18 02:57:10 +02:00
"git.sr.ht/~sircmpwn/aerc/lib/ui"
)
type ExLine struct {
ui.Invalidatable
cancel func()
commit func(cmd string)
tabcomplete func(cmd string) []string
cmdHistory lib.History
input *ui.TextInput
}
func NewExLine(commit func(cmd string), cancel func(),
tabcomplete func(cmd string) []string,
cmdHistory lib.History) *ExLine {
2019-05-12 06:06:09 +02:00
input := ui.NewTextInput("").Prompt(":")
exline := &ExLine{
cancel: cancel,
commit: commit,
tabcomplete: tabcomplete,
cmdHistory: cmdHistory,
input: input,
2018-02-28 03:02:56 +01:00
}
input.OnInvalidate(func(d ui.Drawable) {
exline.Invalidate()
})
return exline
}
func (ex *ExLine) Invalidate() {
ex.DoInvalidate(ex)
}
2018-02-27 04:54:39 +01:00
func (ex *ExLine) Draw(ctx *ui.Context) {
ex.input.Draw(ctx)
}
2019-03-17 19:02:33 +01:00
func (ex *ExLine) Focus(focus bool) {
ex.input.Focus(focus)
}
func (ex *ExLine) Event(event tcell.Event) bool {
switch event := event.(type) {
case *tcell.EventKey:
switch event.Key() {
case tcell.KeyEnter:
cmd := ex.input.String()
2019-05-11 19:20:29 +02:00
ex.input.Focus(false)
ex.commit(cmd)
case tcell.KeyUp:
ex.input.Set(ex.cmdHistory.Prev())
ex.Invalidate()
case tcell.KeyDown:
ex.input.Set(ex.cmdHistory.Next())
ex.Invalidate()
case tcell.KeyEsc, tcell.KeyCtrlC:
2019-05-11 19:20:29 +02:00
ex.input.Focus(false)
ex.cmdHistory.Reset()
2018-02-28 03:02:56 +01:00
ex.cancel()
case tcell.KeyTab:
complete := ex.tabcomplete(ex.input.StringLeft())
if len(complete) == 1 {
ex.input.Set(complete[0] + " " + ex.input.StringRight())
}
ex.Invalidate()
default:
return ex.input.Event(event)
}
}
return true
}