2018-01-11 04:03:56 +01:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2019-05-04 16:31:16 +02:00
|
|
|
"sync/atomic"
|
|
|
|
|
2022-03-22 09:52:27 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/logging"
|
2020-11-30 23:07:03 +01:00
|
|
|
"github.com/gdamore/tcell/v2"
|
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
|
2019-12-20 19:21:32 +01:00
|
|
|
popover *Popover
|
2022-09-14 21:09:02 +02:00
|
|
|
invalid int32 // access via atomic
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 15:57:19 +02:00
|
|
|
func Initialize(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()
|
2022-09-14 21:36:42 +02:00
|
|
|
screen.EnablePaste()
|
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
|
|
|
screen: screen,
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
2019-12-20 19:21:32 +01:00
|
|
|
state.ctx = NewContext(width, height, screen, state.onPopover)
|
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
|
|
|
|
|
|
|
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
|
|
|
})
|
2020-05-05 15:57:19 +02:00
|
|
|
if beeper, ok := content.(DrawableInteractiveBeeper); ok {
|
|
|
|
beeper.OnBeep(screen.Beep)
|
|
|
|
}
|
2019-03-17 19:02:33 +01:00
|
|
|
content.Focus(true)
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2020-03-03 22:20:07 +01:00
|
|
|
if root, ok := content.(RootDrawable); ok {
|
|
|
|
root.Initialize(&state)
|
|
|
|
}
|
|
|
|
|
2018-01-11 04:03:56 +01:00
|
|
|
return &state, nil
|
|
|
|
}
|
|
|
|
|
2019-12-20 19:21:32 +01:00
|
|
|
func (state *UI) onPopover(p *Popover) {
|
|
|
|
state.popover = p
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-09-14 21:09:02 +02:00
|
|
|
func (state *UI) Render() bool {
|
2019-05-19 11:50:14 +02:00
|
|
|
more := false
|
|
|
|
|
|
|
|
wasInvalid := atomic.SwapInt32(&state.invalid, 0)
|
|
|
|
if wasInvalid != 0 {
|
2019-12-20 19:21:32 +01:00
|
|
|
if state.popover != nil {
|
|
|
|
// if the previous frame had a popover, rerender the entire display
|
|
|
|
state.Content.Invalidate()
|
|
|
|
atomic.StoreInt32(&state.invalid, 0)
|
|
|
|
}
|
|
|
|
// reset popover for the next Draw
|
|
|
|
state.popover = nil
|
2018-02-17 22:35:36 +01:00
|
|
|
state.Content.Draw(state.ctx)
|
2019-12-20 19:21:32 +01:00
|
|
|
if state.popover != nil {
|
|
|
|
// if the Draw resulted in a popover, draw it
|
|
|
|
state.popover.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
|
|
|
}
|
2019-08-03 17:17:13 +02:00
|
|
|
|
|
|
|
func (state *UI) EnableMouse() {
|
|
|
|
state.screen.EnableMouse()
|
|
|
|
}
|
2022-09-12 23:09:19 +02:00
|
|
|
|
2022-09-14 21:09:02 +02:00
|
|
|
func (state *UI) ProcessEvents() {
|
|
|
|
defer logging.PanicHandler()
|
|
|
|
|
|
|
|
for !state.ShouldExit() {
|
|
|
|
event := state.screen.PollEvent()
|
2022-09-12 23:09:19 +02:00
|
|
|
if event, ok := event.(*tcell.EventResize); ok {
|
|
|
|
state.screen.Clear()
|
|
|
|
width, height := event.Size()
|
|
|
|
state.ctx = NewContext(width, height, state.screen, state.onPopover)
|
|
|
|
state.Content.Invalidate()
|
|
|
|
}
|
|
|
|
// if we have a popover, and it can handle the event, it does so
|
|
|
|
if state.popover == nil || !state.popover.Event(event) {
|
|
|
|
// otherwise, we send the event to the main content
|
|
|
|
state.Content.Event(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|