示例#1
0
文件: layout.go 项目: DaviWei/iup
func Reparent(child, new_parent, ref_child *Ihandle) int {
	return int(C.IupReparent(child.C(), new_parent.C(), ref_child.C()))
}
示例#2
0
文件: handle.go 项目: visualfc/go-iup
func (h *Handle) Reparent(new_parent, ref_child IHandle) int {
	return int(C.IupReparent(h.p, toNative(new_parent), toNative(ref_child)))
}