WinLaucher启动

extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(HINSTANCE, HINSTANCE, LPTSTR, int nCmdShow)
{
    MyRegisterClass(hInst); 注册Main窗口类
    hMainWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
                       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, hInst, 0); 创建Main窗口
    hURLBarWnd = CreateWindow(L"EDIT", 0,
                    WS_CHILD | WS_VISIBLE | WS_BORDER | ES_LEFT | ES_AUTOVSCROLL, 
                    0, 0, 0, 0,
                    hMainWnd,
                    0,
                    hInst, 0); 创建地址栏
    ShowWindow(hMainWnd, nCmdShow);
    UpdateWindow(hMainWnd);

    HRESULT hr = WebKitCreateInstance(CLSID_WebView, 0, IID_IWebView, reinterpret_cast<void**>(&gWebView));  创建WebView

    gWebHost = new WinLauncherWebHost();  创建FrameLoadDelegate
    hr = gWebView->setFrameLoadDelegate(gWebHost);

    gPrintDelegate = new PrintWebUIDelegate; 创建UIDelegate
    hr = gWebView->setUIDelegate(gPrintDelegate);

    hr = gWebView->setHostWindow(reinterpret_cast<OLE_HANDLE>(hMainWnd));

    hr = gWebView->initWithFrame(clientRect, 0, 0); WebView初始化
            registerWebViewWindowClass();
            m_viewWindow = CreateWindowEx(0, kWebViewWindowClassName); 创建ViewWindow
                   ViewWindow窗口过程函数(WebView::WebViewWndProc)
            m_page = new Page(pageClients);  创建Page
            WebFrame* webFrame = WebFrame::createInstance();创建WebFrame 
            SetWindowLongPtr(m_viewWindow, 0, (LONG_PTR)this);将WebView指针保持在窗口里
   

    resizeSubViews(); 调整ViewWindow和地址栏位置

    ShowWindow(gViewWindow, nCmdShow);
    UpdateWindow(gViewWindow);

    while (GetMessage(&msg, NULL, 0, 0)) { 主窗口消息循环
        if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
    }

}
 
 
 
   
   

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值