2018-02-28 03:17:26 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
2018-06-01 09:58:00 +02:00
|
|
|
"github.com/gdamore/tcell"
|
2018-02-28 03:17:26 +01:00
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/config"
|
2018-02-28 03:17:26 +01:00
|
|
|
libui "git.sr.ht/~sircmpwn/aerc2/lib/ui"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Aerc struct {
|
2019-01-13 19:33:43 +01:00
|
|
|
accounts map[string]*AccountView
|
|
|
|
grid *libui.Grid
|
|
|
|
tabs *libui.Tabs
|
2018-02-28 03:17:26 +01:00
|
|
|
}
|
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
func NewAerc(conf *config.AercConfig, logger *log.Logger) *Aerc {
|
2018-02-28 03:17:26 +01:00
|
|
|
tabs := libui.NewTabs()
|
|
|
|
|
2018-06-12 01:23:09 +02:00
|
|
|
mainGrid := libui.NewGrid().Rows([]libui.GridSpec{
|
2018-06-12 15:50:46 +02:00
|
|
|
{libui.SIZE_EXACT, 1},
|
|
|
|
{libui.SIZE_WEIGHT, 1},
|
2018-02-28 03:17:26 +01:00
|
|
|
}).Columns([]libui.GridSpec{
|
2018-06-12 15:50:46 +02:00
|
|
|
{libui.SIZE_EXACT, 20},
|
|
|
|
{libui.SIZE_WEIGHT, 1},
|
2018-02-28 03:17:26 +01:00
|
|
|
})
|
|
|
|
|
2018-06-12 01:23:09 +02:00
|
|
|
// TODO: Grab sidebar size from config and via :set command
|
|
|
|
mainGrid.AddChild(libui.NewText("aerc").
|
2018-02-28 03:17:26 +01:00
|
|
|
Strategy(libui.TEXT_CENTER).
|
2018-06-01 09:58:00 +02:00
|
|
|
Color(tcell.ColorBlack, tcell.ColorWhite))
|
2018-06-12 01:23:09 +02:00
|
|
|
mainGrid.AddChild(tabs.TabStrip).At(0, 1)
|
|
|
|
mainGrid.AddChild(tabs.TabContent).At(1, 0).Span(1, 2)
|
2018-02-28 03:17:26 +01:00
|
|
|
|
2019-01-13 19:25:56 +01:00
|
|
|
accts := make(map[string]*AccountView)
|
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
for _, acct := range conf.Accounts {
|
2019-01-13 19:33:43 +01:00
|
|
|
view := NewAccountView(&acct, logger)
|
2019-01-13 19:25:56 +01:00
|
|
|
accts[acct.Name] = view
|
2019-01-13 19:03:28 +01:00
|
|
|
tabs.Add(view, acct.Name)
|
2018-06-12 01:23:09 +02:00
|
|
|
}
|
2018-02-28 03:17:26 +01:00
|
|
|
|
|
|
|
return &Aerc{
|
2019-01-13 19:33:43 +01:00
|
|
|
accounts: accts,
|
|
|
|
grid: mainGrid,
|
|
|
|
tabs: tabs,
|
2018-02-28 03:17:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aerc *Aerc) OnInvalidate(onInvalidate func(d libui.Drawable)) {
|
2019-01-13 19:25:56 +01:00
|
|
|
aerc.grid.OnInvalidate(func(_ libui.Drawable) {
|
|
|
|
onInvalidate(aerc)
|
|
|
|
})
|
2018-02-28 03:17:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (aerc *Aerc) Invalidate() {
|
|
|
|
aerc.grid.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aerc *Aerc) Draw(ctx *libui.Context) {
|
|
|
|
aerc.grid.Draw(ctx)
|
|
|
|
}
|
|
|
|
|
2018-06-01 09:58:00 +02:00
|
|
|
func (aerc *Aerc) Event(event tcell.Event) bool {
|
2019-01-13 19:33:43 +01:00
|
|
|
acct, _ := aerc.tabs.Tabs[aerc.tabs.Selected].Content.(*AccountView)
|
|
|
|
return acct.Event(event)
|
2018-02-28 03:17:26 +01:00
|
|
|
}
|