2015-03-20 14:21:50 -06: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 12:13:51 -07:00
|
|
|
package termui
|
|
|
|
|
2015-03-24 15:16:43 -06:00
|
|
|
// Par displays a paragraph.
|
|
|
|
/*
|
|
|
|
par := termui.NewPar("Simple Text")
|
|
|
|
par.Height = 3
|
|
|
|
par.Width = 17
|
|
|
|
par.Border.Label = "Label"
|
|
|
|
*/
|
2015-03-11 14:15:59 -06:00
|
|
|
type Par struct {
|
2015-02-03 18:56:49 -07:00
|
|
|
Block
|
2015-04-16 12:19:44 -06:00
|
|
|
Text string
|
|
|
|
TextFgColor Attribute
|
|
|
|
TextBgColor Attribute
|
|
|
|
RendererFactory TextRendererFactory
|
2015-02-03 12:13:51 -07:00
|
|
|
}
|
|
|
|
|
2015-03-24 15:16:43 -06:00
|
|
|
// NewPar returns a new *Par with given text as its content.
|
2015-03-11 14:15:59 -06:00
|
|
|
func NewPar(s string) *Par {
|
|
|
|
return &Par{
|
2015-04-16 12:19:44 -06:00
|
|
|
Block: *NewBlock(),
|
|
|
|
Text: s,
|
|
|
|
TextFgColor: theme.ParTextFg,
|
|
|
|
TextBgColor: theme.ParTextBg,
|
|
|
|
RendererFactory: PlainRendererFactory{},
|
|
|
|
}
|
2015-02-03 12:13:51 -07:00
|
|
|
}
|
|
|
|
|
2015-03-24 15:16:43 -06:00
|
|
|
// Buffer implements Bufferer interface.
|
2015-03-11 14:15:59 -06:00
|
|
|
func (p *Par) Buffer() []Point {
|
2015-02-03 18:56:49 -07:00
|
|
|
ps := p.Block.Buffer()
|
2015-02-03 12:13:51 -07:00
|
|
|
|
2015-04-16 12:19:44 -06: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
|
|
|
|
for y < p.innerHeight && n < len(runes) {
|
|
|
|
point, width := sequence.PointAt(n, x+p.innerX, y+p.innerY)
|
2015-03-25 16:04:15 -06:00
|
|
|
|
2015-04-16 12:19:44 -06:00
|
|
|
if runes[n] == '\n' || x+width > p.innerWidth {
|
|
|
|
y++
|
|
|
|
x = 0 // set x = 0
|
|
|
|
if runes[n] == '\n' {
|
|
|
|
n++
|
2015-02-03 12:13:51 -07:00
|
|
|
}
|
2015-03-13 11:20:17 -06:00
|
|
|
|
2015-04-16 12:19:44 -06:00
|
|
|
if y >= p.innerHeight {
|
2015-03-13 11:20:17 -06:00
|
|
|
ps = append(ps, newPointWithAttrs('…',
|
|
|
|
p.innerX+p.innerWidth-1,
|
|
|
|
p.innerY+p.innerHeight-1,
|
|
|
|
p.TextFgColor, p.TextBgColor))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2015-02-03 12:13:51 -07:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-04-16 12:19:44 -06:00
|
|
|
ps = append(ps, point)
|
|
|
|
n++
|
|
|
|
x += width
|
2015-02-03 12:13:51 -07:00
|
|
|
}
|
2015-04-16 12:19:44 -06:00
|
|
|
|
2015-04-09 14:40:49 -06:00
|
|
|
return p.Block.chopOverflow(ps)
|
2015-02-03 12:13:51 -07:00
|
|
|
}
|