예제 #1
0
파일: dialog.go 프로젝트: DaviWei/iup
func Popup(ih *Ihandle, x, y int) int {
	return int(C.IupPopup(ih.C(), C.int(x), C.int(y)))
}
예제 #2
0
파일: handle.go 프로젝트: visualfc/go-iup
func (h *Handle) PopupA() int {
	return int(C.IupPopup(h.p, C.IUP_CURRENT, C.IUP_CURRENT))
}
예제 #3
0
파일: handle.go 프로젝트: visualfc/go-iup
func (h *Handle) PopupC() int {
	return int(C.IupPopup(h.p, C.IUP_CENTER, C.IUP_CENTER))
}
예제 #4
0
파일: handle.go 프로젝트: visualfc/go-iup
func (h *Handle) Popup(x, y int) int {
	return int(C.IupPopup(h.p, C.int(x), C.int(y)))
}