1
0
mirror of https://github.com/gizak/termui.git synced 2025-04-29 13:48:51 +08:00
termui/point.go

29 lines
514 B
Go
Raw Normal View History

2015-03-20 16:21:50 -04: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 09:07:31 -05:00
package termui
2015-03-24 17:16:43 -04:00
// Point stands for a single cell in terminal.
2015-02-03 09:07:31 -05:00
type Point struct {
2015-03-03 13:28:09 -05: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 09:07:31 -05:00
}