如何在C ++ XE2中使用IWebBrowser2监听运行IE的事件?

时间:2012-07-25 04:54:39

标签: c++ c++builder iwebbrowser2 c++builder-xe2

目前我想自动运行IE。我已经使用下面的代码成功附加了运行的IE(我假设在一个选项卡中只有一个IE)

#include "atl/atlbase.h"
#include <exdisp.h>
#include <mshtml.h>
CComQIPtr<IWebBrowser2> pCurIE;    
void __fastcall TForm4::Button3Click(TObject *Sender)
{
    bool SuccessToHook = false;
    CComPtr<IShellWindows> m_spSHWinds;
    if (FAILED(m_spSHWinds.CoCreateInstance( __uuidof( ShellWindows)))){

        return ;
    }


    LONG nCount;
    m_spSHWinds->get_Count( &nCount);
    ShowMessage(nCount);
    for (int i = 0; i < nCount; i++) {
        CComPtr<IDispatch> pDisp;
        m_spSHWinds->Item( CComVariant(i), &pDisp);
        CComQIPtr<IWebBrowser2> pIE(pDisp);
        if (pIE == NULL){

            continue ;
        }
        CComPtr<IDispatch> pDispDoc;
        pIE->get_Document(&pDispDoc);
        CComQIPtr<IHTMLDocument2> pHtmlDoc(pDispDoc);
        if (pHtmlDoc){
            pCurIE = pIE;
            SuccessToHook = true;
            break ;
        }
    }
    ShowMessage(SuccessToHook ? "Success to hook." : "Failed to hook." );
}

现在我可以控制当前正在运行的IE,就像导航和读取当前状态一样。但是当我想在onDocumentComplete事件之类的事件被触发时显示消息。我不知道如何按照我当前的代码监听事件。使用BCB的简单示例代码将非常受欢迎,因为有一些VC ++示例,但我的项目是在C ++ XE2上。


谢谢@Remy Lebeau和this link,我终于解决了我的问题。 我把我的代码留在这里,并希望它对其他人有帮助。

从TEventDispatcher

派生的类
#include <exdisp.h>
#include <exdispid.h>
#include <mshtml.h>
#include <mshtmdid.h>
#include <utilcls.h>
//---------------------------------------------------------------------------
class TForm4;
class EventHandler:public TEventDispatcher<EventHandler,&DIID_DWebBrowserEvents2>{
    private:
        bool connected;
        TForm4 *theform;
        IUnknown* server;
    protected:
        HRESULT InvokeEvent(DISPID id, TVariant *params){
            switch(id){
                case DISPID_DOCUMENTCOMPLETE:
                    ShowMessage("On Document Complete");
                    break;
                default:
                    break;
            }
        }
    public:
        EventHandler(){
            connected = false; //not connected;
            theform = false; //backptr to form is null
        }
        ~EventHandler(){
            if (connected)
                Disconnect();
        }
        void Connect(TForm4 *form,  IUnknown* srv){
            server = srv;
            theform = form; //back pointer to form to do stuff with it.
            server->AddRef(); //addref the server
            ConnectEvents(server);
        }
        void Disconnect(){
            DisconnectEvents(server);   //disconnect the events
            server->Release();
        }
};

开始聆听

void __fastcall TForm4::Button5Click(TObject *Sender)
{
    Event = new EventHandler();
    Event->Connect(this, pCurIE);
}

停止聆听

void __fastcall TForm4::Button6Click(TObject *Sender)
{
    Event->Disconnect();
}

1 个答案:

答案 0 :(得分:2)

您必须在代码中编写一个实现DWebBrowserEvents2接口的类。然后,您可以在浏览器中查询其IConnectionPointContainer界面,调用IConnectionPointContainer::FindConnectionPoint()方法查找对IConnectionPoint进行协调的DWebBrowserEvents2,并调用IConnectionPoint::Advise()方法它是你班级的一个实例。完成事件后,请不要忘记致电IConnectionPoint::Unadvise()

为了帮助您,您可以从utilcls.h中的VCL TEventDispatcher类派生您的类。其ConnectEvents()DisconnectEvents()方法为您处理IConnectionPoint内容。然后,您只需覆盖抽象InvokeEvent()方法(每个浏览器的事件都有自己的DISPID值。)