aerc/lib/ui/tab.go

138 lines
2.9 KiB
Go
Raw Normal View History

2018-02-18 01:42:29 +01:00
package ui
import (
"github.com/gdamore/tcell"
"github.com/mattn/go-runewidth"
2018-02-18 01:42:29 +01:00
)
type Tabs struct {
Tabs []*Tab
TabStrip *TabStrip
TabContent *TabContent
Selected int
onInvalidateStrip func(d Drawable)
onInvalidateContent func(d Drawable)
}
type Tab struct {
Content Drawable
Name string
invalid bool
}
type TabStrip Tabs
type TabContent Tabs
func NewTabs() *Tabs {
tabs := &Tabs{}
tabs.TabStrip = (*TabStrip)(tabs)
tabs.TabContent = (*TabContent)(tabs)
return tabs
}
func (tabs *Tabs) Add(content Drawable, name string) *Tab {
tab := &Tab{
2018-02-18 01:42:29 +01:00
Content: content,
Name: name,
}
tabs.Tabs = append(tabs.Tabs, tab)
2018-02-18 01:42:29 +01:00
tabs.TabStrip.Invalidate()
content.OnInvalidate(tabs.invalidateChild)
return tab
2018-02-18 01:42:29 +01:00
}
func (tabs *Tabs) invalidateChild(d Drawable) {
if tabs.Selected >= len(tabs.Tabs) {
return
}
if tabs.Tabs[tabs.Selected].Content == d {
if tabs.onInvalidateContent != nil {
tabs.onInvalidateContent(tabs.TabContent)
2018-02-18 01:42:29 +01:00
}
}
}
func (tabs *Tabs) Remove(content Drawable) {
for i, tab := range tabs.Tabs {
if tab.Content == content {
tabs.Tabs = append(tabs.Tabs[:i], tabs.Tabs[i+1:]...)
break
}
}
/* Force the selected index into the existing range */
if tabs.Selected >= len(tabs.Tabs) {
2019-03-17 22:23:53 +01:00
tabs.Select(tabs.Selected - 1)
}
2018-02-18 01:42:29 +01:00
tabs.TabStrip.Invalidate()
}
func (tabs *Tabs) Select(index int) {
2019-03-17 22:23:53 +01:00
if index >= len(tabs.Tabs) {
panic("Tried to set tab index to a non-existing element")
}
2018-02-18 01:42:29 +01:00
if tabs.Selected != index {
tabs.Selected = index
tabs.TabStrip.Invalidate()
tabs.TabContent.Invalidate()
}
}
// TODO: Color repository
func (strip *TabStrip) Draw(ctx *Context) {
x := 0
for i, tab := range strip.Tabs {
style := tcell.StyleDefault.Reverse(true)
2018-02-18 01:42:29 +01:00
if strip.Selected == i {
style = tcell.StyleDefault
2018-02-18 01:42:29 +01:00
}
trunc := runewidth.Truncate(tab.Name, 32, "…")
x += ctx.Printf(x, 0, style, " %s ", trunc)
2018-02-18 01:42:29 +01:00
}
style := tcell.StyleDefault.Reverse(true)
ctx.Fill(x, 0, ctx.Width()-x, 1, ' ', style)
2018-02-18 01:42:29 +01:00
}
func (strip *TabStrip) Invalidate() {
if strip.onInvalidateStrip != nil {
strip.onInvalidateStrip(strip)
}
}
func (strip *TabStrip) OnInvalidate(onInvalidate func(d Drawable)) {
strip.onInvalidateStrip = onInvalidate
}
func (content *TabContent) Children() []Drawable {
children := make([]Drawable, len(content.Tabs))
for i, tab := range content.Tabs {
children[i] = tab.Content
}
return children
}
2018-02-18 01:42:29 +01:00
func (content *TabContent) Draw(ctx *Context) {
if content.Selected >= len(content.Tabs) {
width := ctx.Width()
height := ctx.Height()
ctx.Fill(0, 0, width, height, ' ', tcell.StyleDefault)
}
2018-02-18 01:42:29 +01:00
tab := content.Tabs[content.Selected]
tab.Content.Draw(ctx)
}
func (content *TabContent) Invalidate() {
if content.onInvalidateContent != nil {
content.onInvalidateContent(content)
}
2018-06-12 02:13:02 +02:00
tab := content.Tabs[content.Selected]
tab.Content.Invalidate()
2018-02-18 01:42:29 +01:00
}
func (content *TabContent) OnInvalidate(onInvalidate func(d Drawable)) {
content.onInvalidateContent = onInvalidate
}