2018-01-11 04:03:56 +01:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2019-05-04 16:31:16 +02:00
|
|
|
"sync/atomic"
|
|
|
|
|
2018-06-01 09:58:00 +02:00
|
|
|
"github.com/gdamore/tcell"
|
2018-01-11 04:03:56 +01:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/config"
|
2018-01-11 04:03:56 +01:00
|
|
|
)
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
type UI struct {
|
2018-02-28 03:17:26 +01:00
|
|
|
Content DrawableInteractive
|
2019-05-19 11:49:57 +02:00
|
|
|
exit atomic.Value // bool
|
2018-02-17 22:35:36 +01:00
|
|
|
ctx *Context
|
2018-06-01 09:58:00 +02:00
|
|
|
screen tcell.Screen
|
2018-01-11 04:41:15 +01:00
|
|
|
|
2019-05-19 11:50:14 +02:00
|
|
|
tcEvents chan tcell.Event
|
|
|
|
invalid int32 // access via atomic
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
|
|
|
|
2018-02-28 03:17:26 +01:00
|
|
|
func Initialize(conf *config.AercConfig,
|
|
|
|
content DrawableInteractive) (*UI, error) {
|
|
|
|
|
2018-06-01 09:58:00 +02:00
|
|
|
screen, err := tcell.NewScreen()
|
|
|
|
if err != nil {
|
2018-01-11 04:03:56 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-01 09:58:00 +02:00
|
|
|
|
|
|
|
if err = screen.Init(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
screen.Clear()
|
|
|
|
screen.HideCursor()
|
2019-07-16 20:06:22 +02:00
|
|
|
if conf.Ui.MouseEnabled {
|
|
|
|
screen.EnableMouse()
|
|
|
|
}
|
2018-06-01 09:58:00 +02:00
|
|
|
|
|
|
|
width, height := screen.Size()
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
state := UI{
|
|
|
|
Content: content,
|
2018-06-01 09:58:00 +02:00
|
|
|
ctx: NewContext(width, height, screen),
|
|
|
|
screen: screen,
|
2018-02-17 22:35:36 +01:00
|
|
|
|
2019-05-19 11:50:14 +02:00
|
|
|
tcEvents: make(chan tcell.Event, 10),
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2019-05-04 16:31:16 +02:00
|
|
|
state.exit.Store(false)
|
2019-05-19 11:50:14 +02:00
|
|
|
go func() {
|
2019-05-04 16:31:16 +02:00
|
|
|
for !state.ShouldExit() {
|
2018-06-01 09:58:00 +02:00
|
|
|
state.tcEvents <- screen.PollEvent()
|
2018-01-11 04:41:15 +01:00
|
|
|
}
|
2019-05-19 11:50:14 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
state.invalid = 1
|
2018-02-17 22:35:36 +01:00
|
|
|
content.OnInvalidate(func(_ Drawable) {
|
2019-05-19 11:50:14 +02:00
|
|
|
atomic.StoreInt32(&state.invalid, 1)
|
2018-02-17 22:35:36 +01:00
|
|
|
})
|
2019-03-17 19:02:33 +01:00
|
|
|
content.Focus(true)
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2018-01-11 04:03:56 +01:00
|
|
|
return &state, nil
|
|
|
|
}
|
|
|
|
|
2019-05-04 16:31:16 +02:00
|
|
|
func (state *UI) ShouldExit() bool {
|
|
|
|
return state.exit.Load().(bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (state *UI) Exit() {
|
|
|
|
state.exit.Store(true)
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func (state *UI) Close() {
|
2018-06-01 09:58:00 +02:00
|
|
|
state.screen.Fini()
|
2018-01-11 04:03:56 +01:00
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func (state *UI) Tick() bool {
|
2019-05-19 11:50:14 +02:00
|
|
|
more := false
|
|
|
|
|
2018-01-11 04:41:15 +01:00
|
|
|
select {
|
2018-06-01 09:58:00 +02:00
|
|
|
case event := <-state.tcEvents:
|
|
|
|
switch event := event.(type) {
|
|
|
|
case *tcell.EventResize:
|
|
|
|
state.screen.Clear()
|
|
|
|
width, height := event.Size()
|
|
|
|
state.ctx = NewContext(width, height, state.screen)
|
2018-02-17 22:35:36 +01:00
|
|
|
state.Content.Invalidate()
|
2018-01-11 04:41:15 +01:00
|
|
|
}
|
2018-02-28 03:17:26 +01:00
|
|
|
state.Content.Event(event)
|
2019-05-19 11:50:14 +02:00
|
|
|
more = true
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
wasInvalid := atomic.SwapInt32(&state.invalid, 0)
|
|
|
|
if wasInvalid != 0 {
|
2018-02-17 22:35:36 +01:00
|
|
|
state.Content.Draw(state.ctx)
|
2018-06-01 09:58:00 +02:00
|
|
|
state.screen.Show()
|
2019-05-19 11:50:14 +02:00
|
|
|
more = true
|
2018-01-11 04:03:56 +01:00
|
|
|
}
|
2019-05-19 11:50:14 +02:00
|
|
|
|
|
|
|
return more
|
2018-01-11 04:03:56 +01:00
|
|
|
}
|