예제 #1
0
파일: forms.go 프로젝트: mpatraw/gocurse
func (field *Field) Fore() Chtype {
	return (Chtype)(C.field_fore((*C.FIELD)(field)))
}
예제 #2
0
// Foreground returns the field's foreground character attributes
func (f *Field) Foreground() Char {
	return Char(C.field_fore(f.field))
}
예제 #3
0
파일: form.go 프로젝트: trotha01/goncurses
// Foreground returns the field's foreground character attributes
func (f *Field) Foreground() Char {
	return Char(C.field_fore((*C.FIELD)(f)))
}
예제 #4
0
파일: form.go 프로젝트: zozor/gocurse
func (f *Field) Fore() int {
	return int(C.field_fore(f.field))
}