2018-02-18 02:11:58 +01:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2020-11-30 23:07:03 +01:00
|
|
|
"github.com/gdamore/tcell/v2"
|
2020-07-27 10:03:55 +02:00
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/config"
|
2018-02-18 02:11:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
BORDER_LEFT = 1 << iota
|
|
|
|
BORDER_TOP = 1 << iota
|
|
|
|
BORDER_RIGHT = 1 << iota
|
|
|
|
BORDER_BOTTOM = 1 << iota
|
|
|
|
)
|
|
|
|
|
|
|
|
type Bordered struct {
|
2019-04-27 18:47:59 +02:00
|
|
|
Invalidatable
|
2022-07-30 13:29:46 +02:00
|
|
|
borders uint
|
|
|
|
content Drawable
|
|
|
|
uiConfig *config.UIConfig
|
2018-02-18 02:11:58 +01:00
|
|
|
}
|
|
|
|
|
2020-07-27 10:03:55 +02:00
|
|
|
func NewBordered(
|
2022-07-31 22:16:40 +02:00
|
|
|
content Drawable, borders uint, uiConfig *config.UIConfig,
|
|
|
|
) *Bordered {
|
2018-02-18 02:11:58 +01:00
|
|
|
b := &Bordered{
|
2020-07-27 10:03:55 +02:00
|
|
|
borders: borders,
|
|
|
|
content: content,
|
|
|
|
uiConfig: uiConfig,
|
2018-02-18 02:11:58 +01:00
|
|
|
}
|
|
|
|
content.OnInvalidate(b.contentInvalidated)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bordered *Bordered) contentInvalidated(d Drawable) {
|
|
|
|
bordered.Invalidate()
|
|
|
|
}
|
|
|
|
|
2019-01-20 21:06:44 +01:00
|
|
|
func (bordered *Bordered) Children() []Drawable {
|
|
|
|
return []Drawable{bordered.content}
|
|
|
|
}
|
|
|
|
|
2018-02-18 02:11:58 +01:00
|
|
|
func (bordered *Bordered) Invalidate() {
|
2019-04-27 18:47:59 +02:00
|
|
|
bordered.DoInvalidate(bordered)
|
2018-02-18 02:11:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (bordered *Bordered) Draw(ctx *Context) {
|
|
|
|
x := 0
|
|
|
|
y := 0
|
|
|
|
width := ctx.Width()
|
|
|
|
height := ctx.Height()
|
2020-07-27 10:03:55 +02:00
|
|
|
style := bordered.uiConfig.GetStyle(config.STYLE_BORDER)
|
2021-11-29 23:48:35 +01:00
|
|
|
verticalChar := bordered.uiConfig.BorderCharVertical
|
|
|
|
horizontalChar := bordered.uiConfig.BorderCharHorizontal
|
|
|
|
|
2018-02-18 02:11:58 +01:00
|
|
|
if bordered.borders&BORDER_LEFT != 0 {
|
2021-11-29 23:48:35 +01:00
|
|
|
ctx.Fill(0, 0, 1, ctx.Height(), verticalChar, style)
|
2018-02-18 02:11:58 +01:00
|
|
|
x += 1
|
|
|
|
width -= 1
|
|
|
|
}
|
|
|
|
if bordered.borders&BORDER_TOP != 0 {
|
2021-11-29 23:48:35 +01:00
|
|
|
ctx.Fill(0, 0, ctx.Width(), 1, horizontalChar, style)
|
2018-02-18 02:11:58 +01:00
|
|
|
y += 1
|
|
|
|
height -= 1
|
|
|
|
}
|
|
|
|
if bordered.borders&BORDER_RIGHT != 0 {
|
2021-11-29 23:48:35 +01:00
|
|
|
ctx.Fill(ctx.Width()-1, 0, 1, ctx.Height(), verticalChar, style)
|
2018-02-18 02:11:58 +01:00
|
|
|
width -= 1
|
|
|
|
}
|
|
|
|
if bordered.borders&BORDER_BOTTOM != 0 {
|
2021-11-29 23:48:35 +01:00
|
|
|
ctx.Fill(0, ctx.Height()-1, ctx.Width(), 1, horizontalChar, style)
|
2018-02-18 02:11:58 +01:00
|
|
|
height -= 1
|
|
|
|
}
|
|
|
|
subctx := ctx.Subcontext(x, y, width, height)
|
|
|
|
bordered.content.Draw(subctx)
|
|
|
|
}
|
2019-09-06 00:32:36 +02:00
|
|
|
|
|
|
|
func (bordered *Bordered) MouseEvent(localX int, localY int, event tcell.Event) {
|
2022-07-31 14:32:48 +02:00
|
|
|
if content, ok := bordered.content.(Mouseable); ok {
|
2019-09-06 00:32:36 +02:00
|
|
|
content.MouseEvent(localX, localY, event)
|
|
|
|
}
|
|
|
|
}
|