func onWndMenuSelect(nID int, pbHandled *bool) int { switch nID { case 1330: web.XWeb_LoadUrl(hWeb, "http://www.hupu.cn") case 1331: web.XWeb_Reload(hWeb) case 1332: web.XWeb_StopLoading(hWeb) case 1333: // web.XWeb_SetProxy(hWeb, proxyType, hostName, port, username, pwd) xcgui.MessageBox(xcgui.XWnd_GetHWND(hWindow), "代理", "请在源码中设置代理服务器.", xcgui.MB_ICONWARNING) case 1334: zom := web.XWeb_GetZoom(hWeb) zom += 0.3 web.XWeb_Zoom(hWeb, zom) case 1335: zom := web.XWeb_GetZoom(hWeb) zom -= 0.3 web.XWeb_Zoom(hWeb, zom) case 1336: web.XWeb_ZoomReset(hWeb) case 1337: pCookie := web.XWeb_GetCookie(hWeb) xcgui.MessageBox(xcgui.XWnd_GetHWND(hWindow), "Cookie", pCookie, xcgui.MB_ICONINFORMATION) case 1338: web.XWeb_LoadUrl(hWeb, "file://./jsCallFunction.html") case 1340: web.XWeb_SetEditable(hWeb, true) case 1341: web.XWeb_SetEditable(hWeb, false) case 1351: web.XWeb_RunJs(hWeb, "javascript: alert('JS: \n 炫彩界面库-golang.')") case 1352: if web.XWeb_IsDocumentReady(hWeb) { SetStat("网页加载完毕!") } else if web.XWeb_IsLoadingCompleted(hWeb) { SetStat("网页加载完成!") } else if web.XWeb_IsLoadingFailed(hWeb) { SetStat("网页加载失败!") } case 1353: fmt.Println("js模拟填写,还未完成.") case 1360: version := web.XWeb_GetVersionString() xcgui.MessageBox(xcgui.XWnd_GetHWND(hWindow), "版本", version, xcgui.MB_ICONINFORMATION) } return 0 }
func main() { hWindow := xcgui.XWnd_Create(0, 0, 820, 700, "测试", 0, xcgui.XC_WINDOW_STYLE_DEFAULT) xcgui.CloseBtn(hWindow) button := xcgui.XBtn_Create(300, 35, 50, 30, "执行js", xcgui.HXCGUI(hWindow)) hWeb = web.XWeb_Create(20, 100, 750, 550, xcgui.XWnd_GetHWND(hWindow)) web.XWeb_SetCookieEnabled(hWeb, true) version := web.XWeb_GetVersionString() fmt.Println(version) web.XWeb_SetUserAgentA(hWeb, "Mozilla/5.0 (Windows NT 12.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Codyguo/45.0.2454.101 Safari/537.36") version2 := web.XWeb_GetVersion() fmt.Println(version2) web.XWeb_LoadUrl(hWeb, "http://www.xcgui.com/bbs/forum.php") xcgui.XEle_RegEventC1(button, xcgui.XE_BNCLICK, xcgui.CallBack(RunJS)) xcgui.XWnd_ShowWindow(hWindow, xcgui.SW_SHOW) xcgui.XRunXCGUI() xcgui.XExitXCGUI() }