コード例 #1
0
ファイル: form.go プロジェクト: trotha01/goncurses
// SetForeground character and attributes (colours, etc)
func (f *Field) SetForeground(ch Char) error {
	err := C.set_field_fore((*C.FIELD)(f), C.chtype(ch))
	return ncursesError(syscall.Errno(err))
}
コード例 #2
0
ファイル: forms.go プロジェクト: mpatraw/gocurse
func (field *Field) SetFore(fore Chtype) bool {
	return isOk(C.set_field_fore((*C.FIELD)(field), (C.chtype)(fore)))
}
コード例 #3
0
ファイル: form.go プロジェクト: zozor/gocurse
func (f *Field) SetFore(fore int) error {
	return geterror(C.set_field_fore(f.field, C.chtype(fore)))
}