termui/p.go

42 lines
602 B
Go
Raw Normal View History

2015-02-03 19:13:51 +00:00
package termui
type P struct {
2015-02-04 01:56:49 +00:00
Block
2015-02-03 19:13:51 +00:00
Text string
2015-02-04 01:56:49 +00:00
TextFgColor Attribute
TextBgColor Attribute
2015-02-03 19:13:51 +00:00
}
2015-02-04 01:56:49 +00:00
func NewP(s string) *P {
return &P{Block: *NewBlock(), Text: s}
2015-02-03 19:13:51 +00:00
}
2015-02-04 01:56:49 +00:00
func (p *P) Buffer() []Point {
ps := p.Block.Buffer()
2015-02-03 19:13:51 +00:00
rs := str2runes(p.Text)
i, j, k := 0, 0, 0
for i < p.innerHeight && k < len(rs) {
if rs[k] == '\n' || j == p.innerWidth {
i++
j = 0
if rs[k] == '\n' {
k++
}
continue
}
pi := Point{}
pi.X = p.innerX + j
pi.Y = p.innerY + i
2015-03-03 18:28:09 +00:00
pi.Ch = rs[k]
pi.Bg = p.TextBgColor
pi.Fg = p.TextFgColor
2015-02-03 19:13:51 +00:00
ps = append(ps, pi)
k++
j++
}
return ps
}