termui/point.go

29 lines
514 B
Go
Raw Normal View History

2015-03-20 20:21:50 +00: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 14:07:31 +00:00
package termui
2015-03-24 21:16:43 +00:00
// Point stands for a single cell in terminal.
2015-02-03 14:07:31 +00:00
type Point struct {
2015-03-03 18:28:09 +00:00
Ch rune
Bg Attribute
Fg Attribute
X int
Y int
}
func newPoint(c rune, x, y int) (p Point) {
p.Ch = c
p.X = x
p.Y = y
return
}
func newPointWithAttrs(c rune, x, y int, fg, bg Attribute) Point {
p := newPoint(c, x, y)
p.Bg = bg
p.Fg = fg
return p
2015-02-03 14:07:31 +00:00
}