예제 #1
0
파일: menu.go 프로젝트: trotha01/goncurses
// Foreground gets the attributes of highlighted items in the menu
func (m *Menu) Foreground() int {
	return int(C.menu_fore(m.menu))
}
예제 #2
0
파일: menus.go 프로젝트: mpatraw/gocurse
func (menu *Menu) Fore() Chtype {
	return Chtype(C.menu_fore((*C.MENU)(menu)))
}
예제 #3
0
파일: menus.go 프로젝트: jncorpron/gocurse
func (menu *Menu) Foreground() int {
	return int(C.menu_fore((*C.MENU)(menu)))
}