Files
zyedidia.micro/statusline.go
2016-03-18 20:40:00 -04:00

37 lines
831 B
Go

package main
import (
"github.com/gdamore/tcell"
"strconv"
)
// Statusline represents the blue line at the bottom of the
// editor that gives information about the buffer
type Statusline struct {
v *View
}
// Display draws the statusline to the screen
func (sl *Statusline) Display() {
y := sl.v.height
file := sl.v.buf.name
if file == "" {
file = "Untitled"
}
if sl.v.buf.text != sl.v.buf.savedText {
file += " +"
}
file += " (" + strconv.Itoa(sl.v.cursor.y+1) + "," + strconv.Itoa(sl.v.cursor.GetVisualX()+1) + ")"
statusLineStyle := tcell.StyleDefault.Background(tcell.ColorNavy).Foreground(tcell.ColorBlack)
for x := 0; x < sl.v.width; x++ {
if x < Count(file) {
sl.v.s.SetContent(x, y, []rune(file)[x], nil, statusLineStyle)
} else {
sl.v.s.SetContent(x, y, ' ', nil, statusLineStyle)
}
}
}