Ejemplo n.º 1
0
func FillWindowInfo(windowInfo *C.cef_window_info_t, hwnd unsafe.Pointer) {
	Logger.Println("FillWindowInfo")

	// Setting title isn't required for the CEF inner window.
	// --
	// var windowName *C.char = C.CString("TODO Darwin example")
	// defer C.free(unsafe.Pointer(windowName))
	// C.cef_string_from_utf8(windowName, C.strlen(windowName),
	//        &windowInfo.window_name)

	var bounds C.NSRect = C.GetWindowBounds(hwnd)

	windowInfo.x = C.int(bounds.origin.x)
	windowInfo.y = C.int(bounds.origin.y)
	windowInfo.width = C.int(bounds.size.width)
	windowInfo.height = C.int(bounds.size.height)

	// parent
	windowInfo.parent_view = hwnd
}