termui/par.go

72 lines
1.6 KiB
Go
Raw Normal View History

// +build ignore
2015-03-20 20:21:50 +00:00
// Copyright 2015 Zack Guo <gizak@icloud.com>. All rights reserved.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
2015-02-03 19:13:51 +00:00
package termui
2015-03-24 21:16:43 +00:00
// Par displays a paragraph.
/*
par := termui.NewPar("Simple Text")
par.Height = 3
par.Width = 17
par.Border.Label = "Label"
*/
type Par struct {
2015-02-04 01:56:49 +00:00
Block
Text string
TextFgColor Attribute
TextBgColor Attribute
RendererFactory TextRendererFactory
2015-02-03 19:13:51 +00:00
}
2015-03-24 21:16:43 +00:00
// NewPar returns a new *Par with given text as its content.
func NewPar(s string) *Par {
return &Par{
Block: *NewBlock(),
Text: s,
TextFgColor: theme.ParTextFg,
TextBgColor: theme.ParTextBg,
RendererFactory: PlainRendererFactory{},
}
2015-02-03 19:13:51 +00:00
}
2015-03-24 21:16:43 +00:00
// Buffer implements Bufferer interface.
func (p *Par) Buffer() []Point {
2015-02-04 01:56:49 +00:00
ps := p.Block.Buffer()
2015-02-03 19:13:51 +00:00
fg, bg := p.TextFgColor, p.TextBgColor
sequence := p.RendererFactory.TextRenderer(p.Text).Render(fg, bg)
runes := []rune(sequence.NormalizedText)
y, x, n := 0, 0, 0
2015-10-07 18:25:59 +00:00
for y < p.innerArea.Dy() && n < len(runes) {
point, width := sequence.PointAt(n, x+p.innerArea.Min.X, y+p.innerArea.Min.Y)
2015-10-07 18:25:59 +00:00
if runes[n] == '\n' || x+width > p.innerArea.Dx() {
y++
x = 0 // set x = 0
if runes[n] == '\n' {
n++
2015-02-03 19:13:51 +00:00
}
2015-10-07 18:25:59 +00:00
if y >= p.innerArea.Dy() {
ps = append(ps, newPointWithAttrs('…',
2015-10-07 18:25:59 +00:00
p.innerArea.Min.X+p.innerArea.Dx()-1,
p.innerArea.Min.Y+p.innerArea.Dy()-1,
p.TextFgColor, p.TextBgColor))
break
}
2015-02-03 19:13:51 +00:00
continue
}
ps = append(ps, point)
n++
x += width
2015-02-03 19:13:51 +00:00
}
return p.Block.chopOverflow(ps)
2015-02-03 19:13:51 +00:00
}