目前我想自动化正在运行的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和这个链接,我终于解决了我的问题。我把我的代码留在这里,希望它能对其他人有所帮助。
一个派生自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();
}
您必须在代码中编写一个实现DWebBrowserEvents2
接口的类。然后,您可以查询浏览器的IConnectionPointContainer
接口,调用IConnectionPointContainer::FindConnectionPoint()
方法来查找协同响应DWebBrowserEvents2
的IConnectionPoint
,并调用IConnectionPoint::Advise()
方法,将类的实例传递给它。使用完事件后,不要忘记调用IConnectionPoint::Unadvise()
。
为了帮助您,您可以从utilcls.h中VCL的TEventDispatcher
类派生类。它的ConnectEvents()
和DisconnectEvents()
方法为您处理IConnectionPoint
内容。然后只需覆盖抽象的InvokeEvent()
方法(浏览器的每个事件都有自己的DISPID
值)。