2018-02-27 03:54:39 +00:00
|
|
|
package widgets
|
2018-02-27 03:41:54 +00:00
|
|
|
|
|
|
|
import (
|
2018-06-01 07:58:00 +00:00
|
|
|
"github.com/gdamore/tcell"
|
2018-02-27 03:54:39 +00:00
|
|
|
|
2019-07-23 16:52:33 +00:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib"
|
2019-05-18 00:57:10 +00:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
2018-02-27 03:41:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ExLine struct {
|
2019-04-27 16:47:59 +00:00
|
|
|
ui.Invalidatable
|
2019-06-27 17:33:11 +00:00
|
|
|
cancel func()
|
|
|
|
commit func(cmd string)
|
|
|
|
tabcomplete func(cmd string) []string
|
2019-07-23 16:52:33 +00:00
|
|
|
cmdHistory lib.History
|
2019-06-27 17:33:11 +00:00
|
|
|
input *ui.TextInput
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
|
2019-06-27 17:33:11 +00:00
|
|
|
func NewExLine(commit func(cmd string), cancel func(),
|
2019-07-23 16:52:33 +00:00
|
|
|
tabcomplete func(cmd string) []string,
|
|
|
|
cmdHistory lib.History) *ExLine {
|
2019-06-27 17:33:11 +00:00
|
|
|
|
2019-07-26 13:29:40 +00:00
|
|
|
input := ui.NewTextInput("").Prompt(":").TabComplete(tabcomplete)
|
2019-05-11 17:12:44 +00:00
|
|
|
exline := &ExLine{
|
2019-06-27 17:33:11 +00:00
|
|
|
cancel: cancel,
|
|
|
|
commit: commit,
|
|
|
|
tabcomplete: tabcomplete,
|
2019-07-23 16:52:33 +00:00
|
|
|
cmdHistory: cmdHistory,
|
2019-06-27 17:33:11 +00:00
|
|
|
input: input,
|
2018-02-28 02:02:56 +00:00
|
|
|
}
|
2019-05-11 17:12:44 +00:00
|
|
|
input.OnInvalidate(func(d ui.Drawable) {
|
|
|
|
exline.Invalidate()
|
|
|
|
})
|
|
|
|
return exline
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ex *ExLine) Invalidate() {
|
2019-04-27 16:47:59 +00:00
|
|
|
ex.DoInvalidate(ex)
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 03:54:39 +00:00
|
|
|
func (ex *ExLine) Draw(ctx *ui.Context) {
|
2019-05-11 17:12:44 +00:00
|
|
|
ex.input.Draw(ctx)
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 18:02:33 +00:00
|
|
|
func (ex *ExLine) Focus(focus bool) {
|
2019-05-11 17:12:44 +00:00
|
|
|
ex.input.Focus(focus)
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 07:58:00 +00:00
|
|
|
func (ex *ExLine) Event(event tcell.Event) bool {
|
|
|
|
switch event := event.(type) {
|
|
|
|
case *tcell.EventKey:
|
|
|
|
switch event.Key() {
|
2019-08-18 05:37:49 +00:00
|
|
|
case tcell.KeyEnter, tcell.KeyCtrlJ:
|
2019-07-23 16:52:33 +00:00
|
|
|
cmd := ex.input.String()
|
2019-05-11 17:20:29 +00:00
|
|
|
ex.input.Focus(false)
|
2019-07-23 16:52:33 +00:00
|
|
|
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()
|
2018-06-01 07:58:00 +00:00
|
|
|
case tcell.KeyEsc, tcell.KeyCtrlC:
|
2019-05-11 17:20:29 +00:00
|
|
|
ex.input.Focus(false)
|
2019-07-23 16:52:33 +00:00
|
|
|
ex.cmdHistory.Reset()
|
2018-02-28 02:02:56 +00:00
|
|
|
ex.cancel()
|
2019-05-11 17:12:44 +00:00
|
|
|
default:
|
|
|
|
return ex.input.Event(event)
|
2018-02-27 03:41:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|