Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C++
Article

HtmlObj Template

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
29 Aug 20032 min read 57.4K   1.7K   27   7
Using a template class to handle IE object events

Introduction

This template class allows you to create Interface wrappers for any IHTML* (i.e. IHTMLElement, IHTMLAnchorElement, IHTMLImgElement, etc.) interface you want, and it includes code to handle the events of the connected browser objects.

Background

I was tired of always having to create class from the mshtml type library for various applications I was creating. I'm was always afraid that Microsoft was going to make changes to it and I would have to go back and recreate the class when ever this happens. So I was fooling around with wrapper class for the various browser objects. After I created these wrapper classes I thought it would be useful to get events from the objects. Especially for popup kill I was working on at the time. Once I had a pretty good idea on how this worked I started getting tiered of rewriting, or cutting and pasting in most situations, classes for every object that I wanted to control. So, I thought a template class would reduce development time. I am pretty happy with what I have so far and wanted to share it with you all.

Using the code

If you would like to use the template all you have to include is HtmlObj.h to your project. Once included in your project you then need to start making wrapper class derived from CHtmlObj<class T, const IID* piid>, where T is the interface that you want to wrap and *piid is the event interface you want to handle.

#include "HtmlObj.h"

class CHtmlAnchorElement : public CHtmlObj<IHTMLAnchorElement, 
        &DIID_HTMLAnchorEvents>  
{
public:
  CHtmlAnchorElement(CHtmlDocument2* pParentDoc2);
  virtual ~CHtmlAnchorElement();

  virtual HRESULT OnInvoke(DISPID dispidMember,REFIID riid, 
         LCID lcid, WORD wFlags,
      DISPPARAMS * pdispparams, VARIANT * pvarResult, 
         EXCEPINFO * pexcepinfo, 
         UINT * puArgErr);
};

Next you just need to override the OnInvoke mehtod.

HRESULT CHtmlAnchorElement::OnInvoke(DISPID dispidMember, 
      REFIID riid, LCID lcid, WORD wFlags,
      DISPPARAMS * pdispparams, VARIANT * pvarResult,
      EXCEPINFO * pexcepinfo, 
      UINT * puArgErr)
{
  HRESULT hr = E_NOTIMPL;
  switch(dispidMember)
  {
    case DISPID_HTMLELEMENTEVENTS_ONMOUSEOVER :
    {
      hr = S_OK;

      // TODO: add code to handle on mouse over events
      
      break;
    }
    case DISPID_HTMLELEMENTEVENTS_ONMOUSEOUT :
    {
      hr = S_OK;

      // TODO: add code to handle on mouse out events
      
      break;
    }
    default: 
    {
      break;
    }
  }

  return hr;
}

Now all you have to do is to create an instance of your new class and call SetSite() with the interface you want to handle.

Points of Interest

I tried to derive this template from both CCmdTarget and CComQIPtr but could not resolve the some deconstruction issues. If anyone is willing to give it a try I have some code complete.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralLink error on VC7 using the demo above Pin
happyfisher20086-May-08 16:59
happyfisher20086-May-08 16:59 
GeneralRe: Link error on VC7 using the demo above Pin
Wagner7-May-08 5:36
Wagner7-May-08 5:36 
GeneralRe: Link error on VC7 using the demo above Pin
jehvmq1233-Dec-12 19:18
jehvmq1233-Dec-12 19:18 
GeneralRe: Link error on VC7 using the demo above Pin
Member 1034335211-Jan-14 1:16
Member 1034335211-Jan-14 1:16 
GeneralNot working with static link with MFC! Pin
internal23-Nov-04 21:40
internal23-Nov-04 21:40 
Generallink error! Pin
yezw31-Aug-03 17:54
yezw31-Aug-03 17:54 
GeneralRe: link error! Pin
Wagner4-Sep-03 3:16
Wagner4-Sep-03 3:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.