termui/par.go

74 lines
1.6 KiB
Go
Raw Normal View History

2017-01-14 06:07:43 +00:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
2015-03-20 20:21:50 +00:00
// 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
2016-10-14 11:48:50 +00:00
par.BorderLabel = "Label"
2015-03-24 21:16:43 +00:00
*/
type Par struct {
2015-02-04 01:56:49 +00:00
Block
2015-10-09 02:11:26 +00:00
Text string
TextFgColor Attribute
TextBgColor Attribute
2016-03-10 20:49:31 +00:00
WrapLength int // words wrap limit. Note it may not work properly with multi-width char
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{
2015-10-09 02:11:26 +00:00
Block: *NewBlock(),
Text: s,
TextFgColor: ThemeAttr("par.text.fg"),
TextBgColor: ThemeAttr("par.text.bg"),
2015-10-30 02:55:30 +00:00
WrapLength: 0,
}
2015-02-03 19:13:51 +00:00
}
2015-03-24 21:16:43 +00:00
// Buffer implements Bufferer interface.
2015-10-09 02:11:26 +00:00
func (p *Par) Buffer() Buffer {
buf := p.Block.Buffer()
2015-02-03 19:13:51 +00:00
fg, bg := p.TextFgColor, p.TextBgColor
2016-03-10 20:49:31 +00:00
cs := DefaultTxBuilder.Build(p.Text, fg, bg)
// wrap if WrapLength set
if p.WrapLength < 0 {
cs = wrapTx(cs, p.Width-2)
} else if p.WrapLength > 0 {
cs = wrapTx(cs, p.WrapLength)
2015-10-30 02:55:30 +00:00
}
y, x, n := 0, 0, 0
2015-10-09 02:11:26 +00:00
for y < p.innerArea.Dy() && n < len(cs) {
w := cs[n].Width()
if cs[n].Ch == '\n' || x+w > p.innerArea.Dx() {
y++
x = 0 // set x = 0
2015-10-09 02:11:26 +00:00
if cs[n].Ch == '\n' {
n++
2015-02-03 19:13:51 +00:00
}
2015-10-07 18:25:59 +00:00
if y >= p.innerArea.Dy() {
2015-10-09 02:11:26 +00:00
buf.Set(p.innerArea.Min.X+p.innerArea.Dx()-1,
2015-10-07 18:25:59 +00:00
p.innerArea.Min.Y+p.innerArea.Dy()-1,
2015-10-09 02:11:26 +00:00
Cell{Ch: '…', Fg: p.TextFgColor, Bg: p.TextBgColor})
break
}
2015-02-03 19:13:51 +00:00
continue
}
2015-10-09 02:11:26 +00:00
buf.Set(p.innerArea.Min.X+x, p.innerArea.Min.Y+y, cs[n])
n++
2015-10-09 02:11:26 +00:00
x += w
2015-02-03 19:13:51 +00:00
}
2015-10-09 02:11:26 +00:00
return buf
2015-02-03 19:13:51 +00:00
}