termui/helper.go

58 lines
909 B
Go
Raw Normal View History

2015-02-03 19:13:51 +00:00
package termui
import "unicode/utf8"
import "strings"
2015-02-04 01:56:49 +00:00
import tm "github.com/nsf/termbox-go"
2015-03-03 18:28:09 +00:00
/* ---------------Port from termbox-go --------------------- */
2015-02-04 01:56:49 +00:00
type Attribute uint16
const (
ColorDefault Attribute = iota
ColorBlack
ColorRed
ColorGreen
ColorYellow
ColorBlue
ColorMagenta
ColorCyan
ColorWhite
)
const (
AttrBold Attribute = 1 << (iota + 9)
AttrUnderline
AttrReverse
)
2015-03-03 18:28:09 +00:00
/* ----------------------- End ----------------------------- */
2015-02-04 01:56:49 +00:00
func toTmAttr(x Attribute) tm.Attribute {
return tm.Attribute(x)
}
2015-02-03 19:13:51 +00:00
func str2runes(s string) []rune {
n := utf8.RuneCountInString(s)
ss := strings.Split(s, "")
rs := make([]rune, n)
for i := 0; i < n; i++ {
r, _ := utf8.DecodeRuneInString(ss[i])
rs[i] = r
}
return rs
}
func trimStr2Runes(s string, w int) []rune {
rs := str2runes(s)
if w <= 0 {
return []rune{}
}
if len(rs) > w {
rs = rs[:w]
rs[w-1] = '…'
}
return rs
}