2 * Copyright 2005 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
37 #define HTMLDOC3_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument3, iface)
39 static HRESULT WINAPI HTMLDocument3_QueryInterface(IHTMLDocument3 *iface,
40 REFIID riid, void **ppv)
42 HTMLDocument *This = HTMLDOC3_THIS(iface);
43 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
46 static ULONG WINAPI HTMLDocument3_AddRef(IHTMLDocument3 *iface)
48 HTMLDocument *This = HTMLDOC3_THIS(iface);
49 return IHTMLDocument2_AddRef(HTMLDOC(This));
52 static ULONG WINAPI HTMLDocument3_Release(IHTMLDocument3 *iface)
54 HTMLDocument *This = HTMLDOC3_THIS(iface);
55 return IHTMLDocument2_Release(HTMLDOC(This));
58 static HRESULT WINAPI HTMLDocument3_GetTypeInfoCount(IHTMLDocument3 *iface, UINT *pctinfo)
60 HTMLDocument *This = HTMLDOC3_THIS(iface);
61 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(This), pctinfo);
64 static HRESULT WINAPI HTMLDocument3_GetTypeInfo(IHTMLDocument3 *iface, UINT iTInfo,
65 LCID lcid, ITypeInfo **ppTInfo)
67 HTMLDocument *This = HTMLDOC3_THIS(iface);
68 return IDispatchEx_GetTypeInfo(DISPATCHEX(This), iTInfo, lcid, ppTInfo);
71 static HRESULT WINAPI HTMLDocument3_GetIDsOfNames(IHTMLDocument3 *iface, REFIID riid,
72 LPOLESTR *rgszNames, UINT cNames,
73 LCID lcid, DISPID *rgDispId)
75 HTMLDocument *This = HTMLDOC3_THIS(iface);
76 return IDispatchEx_GetIDsOfNames(DISPATCHEX(This), riid, rgszNames, cNames, lcid, rgDispId);
79 static HRESULT WINAPI HTMLDocument3_Invoke(IHTMLDocument3 *iface, DISPID dispIdMember,
80 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
81 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
83 HTMLDocument *This = HTMLDOC3_THIS(iface);
84 return IDispatchEx_Invoke(DISPATCHEX(This), dispIdMember, riid, lcid, wFlags, pDispParams,
85 pVarResult, pExcepInfo, puArgErr);
88 static HRESULT WINAPI HTMLDocument3_releaseCapture(IHTMLDocument3 *iface)
90 HTMLDocument *This = HTMLDOC3_THIS(iface);
91 FIXME("(%p)\n", This);
95 static HRESULT WINAPI HTMLDocument3_recalc(IHTMLDocument3 *iface, VARIANT_BOOL fForce)
97 HTMLDocument *This = HTMLDOC3_THIS(iface);
98 FIXME("(%p)->(%x)\n", This, fForce);
102 static HRESULT WINAPI HTMLDocument3_createTextNode(IHTMLDocument3 *iface, BSTR text,
103 IHTMLDOMNode **newTextNode)
105 HTMLDocument *This = HTMLDOC3_THIS(iface);
111 TRACE("(%p)->(%s %p)\n", This, debugstr_w(text), newTextNode);
114 WARN("NULL nsdoc\n");
118 nsAString_Init(&text_str, text);
119 nsres = nsIDOMHTMLDocument_CreateTextNode(This->nsdoc, &text_str, &nstext);
120 nsAString_Finish(&text_str);
121 if(NS_FAILED(nsres)) {
122 ERR("CreateTextNode failed: %08x\n", nsres);
126 node = HTMLDOMTextNode_Create(This, (nsIDOMNode*)nstext);
127 nsIDOMElement_Release(nstext);
129 *newTextNode = HTMLDOMNODE(node);
130 IHTMLDOMNode_AddRef(HTMLDOMNODE(node));
134 static HRESULT WINAPI HTMLDocument3_get_documentElement(IHTMLDocument3 *iface, IHTMLElement **p)
136 HTMLDocument *This = HTMLDOC3_THIS(iface);
137 nsIDOMElement *nselem = NULL;
141 TRACE("(%p)->(%p)\n", This, p);
144 WARN("NULL nsdoc\n");
148 nsres = nsIDOMHTMLDocument_GetDocumentElement(This->nsdoc, &nselem);
149 if(NS_FAILED(nsres)) {
150 ERR("GetDocumentElement failed: %08x\n", nsres);
155 node = get_node(This, (nsIDOMNode *)nselem, TRUE);
156 nsIDOMElement_Release(nselem);
157 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)p);
165 static HRESULT WINAPI HTMLDocument3_uniqueID(IHTMLDocument3 *iface, BSTR *p)
167 HTMLDocument *This = HTMLDOC3_THIS(iface);
168 FIXME("(%p)->(%p)\n", This, p);
172 static HRESULT WINAPI HTMLDocument3_attachEvent(IHTMLDocument3 *iface, BSTR event,
173 IDispatch* pDisp, VARIANT_BOOL *pfResult)
175 HTMLDocument *This = HTMLDOC3_THIS(iface);
176 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(event), pDisp, pfResult);
180 static HRESULT WINAPI HTMLDocument3_detachEvent(IHTMLDocument3 *iface, BSTR event,
183 HTMLDocument *This = HTMLDOC3_THIS(iface);
184 FIXME("(%p)->(%s %p)\n", This, debugstr_w(event), pDisp);
188 static HRESULT WINAPI HTMLDocument3_put_onrowsdelete(IHTMLDocument3 *iface, VARIANT v)
190 HTMLDocument *This = HTMLDOC3_THIS(iface);
191 FIXME("(%p)->()\n", This);
195 static HRESULT WINAPI HTMLDocument3_get_onrowsdelete(IHTMLDocument3 *iface, VARIANT *p)
197 HTMLDocument *This = HTMLDOC3_THIS(iface);
198 FIXME("(%p)->(%p)\n", This, p);
202 static HRESULT WINAPI HTMLDocument3_put_onrowsinserted(IHTMLDocument3 *iface, VARIANT v)
204 HTMLDocument *This = HTMLDOC3_THIS(iface);
205 FIXME("(%p)->()\n", This);
209 static HRESULT WINAPI HTMLDocument3_get_onrowsinserted(IHTMLDocument3 *iface, VARIANT *p)
211 HTMLDocument *This = HTMLDOC3_THIS(iface);
212 FIXME("(%p)->(%p)\n", This, p);
216 static HRESULT WINAPI HTMLDocument3_put_oncellchange(IHTMLDocument3 *iface, VARIANT v)
218 HTMLDocument *This = HTMLDOC3_THIS(iface);
219 FIXME("(%p)->()\n", This);
223 static HRESULT WINAPI HTMLDocument3_get_oncellchange(IHTMLDocument3 *iface, VARIANT *p)
225 HTMLDocument *This = HTMLDOC3_THIS(iface);
226 FIXME("(%p)->(%p)\n", This, p);
230 static HRESULT WINAPI HTMLDocument3_put_ondatasetchanged(IHTMLDocument3 *iface, VARIANT v)
232 HTMLDocument *This = HTMLDOC3_THIS(iface);
233 FIXME("(%p)->()\n", This);
237 static HRESULT WINAPI HTMLDocument3_get_ondatasetchanged(IHTMLDocument3 *iface, VARIANT *p)
239 HTMLDocument *This = HTMLDOC3_THIS(iface);
240 FIXME("(%p)->(%p)\n", This, p);
244 static HRESULT WINAPI HTMLDocument3_put_ondataavailable(IHTMLDocument3 *iface, VARIANT v)
246 HTMLDocument *This = HTMLDOC3_THIS(iface);
247 FIXME("(%p)->()\n", This);
251 static HRESULT WINAPI HTMLDocument3_get_ondataavailable(IHTMLDocument3 *iface, VARIANT *p)
253 HTMLDocument *This = HTMLDOC3_THIS(iface);
254 FIXME("(%p)->(%p)\n", This, p);
258 static HRESULT WINAPI HTMLDocument3_put_ondatasetcomplete(IHTMLDocument3 *iface, VARIANT v)
260 HTMLDocument *This = HTMLDOC3_THIS(iface);
261 FIXME("(%p)->()\n", This);
265 static HRESULT WINAPI HTMLDocument3_get_ondatasetcomplete(IHTMLDocument3 *iface, VARIANT *p)
267 HTMLDocument *This = HTMLDOC3_THIS(iface);
268 FIXME("(%p)->(%p)\n", This, p);
272 static HRESULT WINAPI HTMLDocument3_put_onpropertychange(IHTMLDocument3 *iface, VARIANT v)
274 HTMLDocument *This = HTMLDOC3_THIS(iface);
275 FIXME("(%p)->()\n", This);
279 static HRESULT WINAPI HTMLDocument3_get_onpropertychange(IHTMLDocument3 *iface, VARIANT *p)
281 HTMLDocument *This = HTMLDOC3_THIS(iface);
282 FIXME("(%p)->(%p)\n", This, p);
286 static HRESULT WINAPI HTMLDocument3_put_dir(IHTMLDocument3 *iface, BSTR v)
288 HTMLDocument *This = HTMLDOC3_THIS(iface);
289 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
293 static HRESULT WINAPI HTMLDocument3_get_dir(IHTMLDocument3 *iface, BSTR *p)
295 HTMLDocument *This = HTMLDOC3_THIS(iface);
296 FIXME("(%p)->(%p)\n", This, p);
300 static HRESULT WINAPI HTMLDocument3_put_oncontextmenu(IHTMLDocument3 *iface, VARIANT v)
302 HTMLDocument *This = HTMLDOC3_THIS(iface);
303 FIXME("(%p)->()\n", This);
307 static HRESULT WINAPI HTMLDocument3_get_oncontextmenu(IHTMLDocument3 *iface, VARIANT *p)
309 HTMLDocument *This = HTMLDOC3_THIS(iface);
310 FIXME("(%p)->(%p)\n", This, p);
314 static HRESULT WINAPI HTMLDocument3_put_onstop(IHTMLDocument3 *iface, VARIANT v)
316 HTMLDocument *This = HTMLDOC3_THIS(iface);
317 FIXME("(%p)->()\n", This);
321 static HRESULT WINAPI HTMLDocument3_get_onstop(IHTMLDocument3 *iface, VARIANT *p)
323 HTMLDocument *This = HTMLDOC3_THIS(iface);
324 FIXME("(%p)->(%p)\n", This, p);
328 static HRESULT WINAPI HTMLDocument3_createDocumentFragment(IHTMLDocument3 *iface,
329 IHTMLDocument2 **ppNewDoc)
331 HTMLDocument *This = HTMLDOC3_THIS(iface);
332 FIXME("(%p)->(%p)\n", This, ppNewDoc);
336 static HRESULT WINAPI HTMLDocument3_get_parentDocument(IHTMLDocument3 *iface,
339 HTMLDocument *This = HTMLDOC3_THIS(iface);
340 FIXME("(%p)->(%p)\n", This, p);
344 static HRESULT WINAPI HTMLDocument3_put_enableDownload(IHTMLDocument3 *iface,
347 HTMLDocument *This = HTMLDOC3_THIS(iface);
348 FIXME("(%p)->(%x)\n", This, v);
352 static HRESULT WINAPI HTMLDocument3_get_enableDownload(IHTMLDocument3 *iface,
355 HTMLDocument *This = HTMLDOC3_THIS(iface);
356 FIXME("(%p)->(%p)\n", This, p);
360 static HRESULT WINAPI HTMLDocument3_put_baseUrl(IHTMLDocument3 *iface, BSTR v)
362 HTMLDocument *This = HTMLDOC3_THIS(iface);
363 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
367 static HRESULT WINAPI HTMLDocument3_get_baseUrl(IHTMLDocument3 *iface, BSTR *p)
369 HTMLDocument *This = HTMLDOC3_THIS(iface);
370 FIXME("(%p)->(%p)\n", This, p);
374 static HRESULT WINAPI HTMLDocument3_get_childNodes(IHTMLDocument3 *iface, IDispatch **p)
376 HTMLDocument *This = HTMLDOC3_THIS(iface);
377 FIXME("(%p)->(%p)\n", This, p);
381 static HRESULT WINAPI HTMLDocument3_put_inheritStyleSheets(IHTMLDocument3 *iface,
384 HTMLDocument *This = HTMLDOC3_THIS(iface);
385 FIXME("(%p)->()\n", This);
389 static HRESULT WINAPI HTMLDocument3_get_inheritStyleSheets(IHTMLDocument3 *iface,
392 HTMLDocument *This = HTMLDOC3_THIS(iface);
393 FIXME("(%p)->(%p)\n", This, p);
397 static HRESULT WINAPI HTMLDocument3_put_onbeforeeditfocus(IHTMLDocument3 *iface, VARIANT v)
399 HTMLDocument *This = HTMLDOC3_THIS(iface);
400 FIXME("(%p)->()\n", This);
404 static HRESULT WINAPI HTMLDocument3_get_onbeforeeditfocus(IHTMLDocument3 *iface, VARIANT *p)
406 HTMLDocument *This = HTMLDOC3_THIS(iface);
407 FIXME("(%p)->(%p)\n", This, p);
411 static HRESULT WINAPI HTMLDocument3_getElementsByName(IHTMLDocument3 *iface, BSTR v,
412 IHTMLElementCollection **ppelColl)
414 HTMLDocument *This = HTMLDOC3_THIS(iface);
415 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), ppelColl);
420 static HRESULT WINAPI HTMLDocument3_getElementById(IHTMLDocument3 *iface, BSTR v,
423 HTMLDocument *This = HTMLDOC3_THIS(iface);
424 nsIDOMElement *nselem;
429 TRACE("(%p)->(%s %p)\n", This, debugstr_w(v), pel);
432 WARN("NULL nsdoc\n");
436 nsAString_Init(&id_str, v);
437 nsres = nsIDOMHTMLDocument_GetElementById(This->nsdoc, &id_str, &nselem);
438 nsAString_Finish(&id_str);
440 ERR("GetElementById failed: %08x\n", nsres);
445 node = get_node(This, (nsIDOMNode*)nselem, TRUE);
446 nsIDOMElement_Release(nselem);
448 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)pel);
457 static HRESULT WINAPI HTMLDocument3_getElementsByTagName(IHTMLDocument3 *iface, BSTR v,
458 IHTMLElementCollection **pelColl)
460 HTMLDocument *This = HTMLDOC3_THIS(iface);
461 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), pelColl);
467 static const IHTMLDocument3Vtbl HTMLDocument3Vtbl = {
468 HTMLDocument3_QueryInterface,
469 HTMLDocument3_AddRef,
470 HTMLDocument3_Release,
471 HTMLDocument3_GetTypeInfoCount,
472 HTMLDocument3_GetTypeInfo,
473 HTMLDocument3_GetIDsOfNames,
474 HTMLDocument3_Invoke,
475 HTMLDocument3_releaseCapture,
476 HTMLDocument3_recalc,
477 HTMLDocument3_createTextNode,
478 HTMLDocument3_get_documentElement,
479 HTMLDocument3_uniqueID,
480 HTMLDocument3_attachEvent,
481 HTMLDocument3_detachEvent,
482 HTMLDocument3_put_onrowsdelete,
483 HTMLDocument3_get_onrowsdelete,
484 HTMLDocument3_put_onrowsinserted,
485 HTMLDocument3_get_onrowsinserted,
486 HTMLDocument3_put_oncellchange,
487 HTMLDocument3_get_oncellchange,
488 HTMLDocument3_put_ondatasetchanged,
489 HTMLDocument3_get_ondatasetchanged,
490 HTMLDocument3_put_ondataavailable,
491 HTMLDocument3_get_ondataavailable,
492 HTMLDocument3_put_ondatasetcomplete,
493 HTMLDocument3_get_ondatasetcomplete,
494 HTMLDocument3_put_onpropertychange,
495 HTMLDocument3_get_onpropertychange,
496 HTMLDocument3_put_dir,
497 HTMLDocument3_get_dir,
498 HTMLDocument3_put_oncontextmenu,
499 HTMLDocument3_get_oncontextmenu,
500 HTMLDocument3_put_onstop,
501 HTMLDocument3_get_onstop,
502 HTMLDocument3_createDocumentFragment,
503 HTMLDocument3_get_parentDocument,
504 HTMLDocument3_put_enableDownload,
505 HTMLDocument3_get_enableDownload,
506 HTMLDocument3_put_baseUrl,
507 HTMLDocument3_get_baseUrl,
508 HTMLDocument3_get_childNodes,
509 HTMLDocument3_put_inheritStyleSheets,
510 HTMLDocument3_get_inheritStyleSheets,
511 HTMLDocument3_put_onbeforeeditfocus,
512 HTMLDocument3_get_onbeforeeditfocus,
513 HTMLDocument3_getElementsByName,
514 HTMLDocument3_getElementById,
515 HTMLDocument3_getElementsByTagName
518 #define HTMLDOC4_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument4, iface)
520 static HRESULT WINAPI HTMLDocument4_QueryInterface(IHTMLDocument4 *iface,
521 REFIID riid, void **ppv)
523 HTMLDocument *This = HTMLDOC4_THIS(iface);
524 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
527 static ULONG WINAPI HTMLDocument4_AddRef(IHTMLDocument4 *iface)
529 HTMLDocument *This = HTMLDOC4_THIS(iface);
530 return IHTMLDocument2_AddRef(HTMLDOC(This));
533 static ULONG WINAPI HTMLDocument4_Release(IHTMLDocument4 *iface)
535 HTMLDocument *This = HTMLDOC4_THIS(iface);
536 return IHTMLDocument2_Release(HTMLDOC(This));
539 static HRESULT WINAPI HTMLDocument4_GetTypeInfoCount(IHTMLDocument4 *iface, UINT *pctinfo)
541 HTMLDocument *This = HTMLDOC4_THIS(iface);
542 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(This), pctinfo);
545 static HRESULT WINAPI HTMLDocument4_GetTypeInfo(IHTMLDocument4 *iface, UINT iTInfo,
546 LCID lcid, ITypeInfo **ppTInfo)
548 HTMLDocument *This = HTMLDOC4_THIS(iface);
549 return IDispatchEx_GetTypeInfo(DISPATCHEX(This), iTInfo, lcid, ppTInfo);
552 static HRESULT WINAPI HTMLDocument4_GetIDsOfNames(IHTMLDocument4 *iface, REFIID riid,
553 LPOLESTR *rgszNames, UINT cNames,
554 LCID lcid, DISPID *rgDispId)
556 HTMLDocument *This = HTMLDOC4_THIS(iface);
557 return IDispatchEx_GetIDsOfNames(DISPATCHEX(This), riid, rgszNames, cNames, lcid, rgDispId);
560 static HRESULT WINAPI HTMLDocument4_Invoke(IHTMLDocument4 *iface, DISPID dispIdMember,
561 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
562 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
564 HTMLDocument *This = HTMLDOC4_THIS(iface);
565 return IDispatchEx_Invoke(DISPATCHEX(This), dispIdMember, riid, lcid, wFlags, pDispParams,
566 pVarResult, pExcepInfo, puArgErr);
569 static HRESULT WINAPI HTMLDocument4_focus(IHTMLDocument4 *iface)
571 HTMLDocument *This = HTMLDOC4_THIS(iface);
572 nsIDOMNSHTMLElement *nselem;
573 nsIDOMHTMLElement *nsbody;
576 TRACE("(%p)->()\n", This);
578 nsres = nsIDOMHTMLDocument_GetBody(This->nsdoc, &nsbody);
579 if(NS_FAILED(nsres) || !nsbody) {
580 ERR("GetBody failed: %08x\n", nsres);
584 nsres = nsIDOMHTMLElement_QueryInterface(nsbody, &IID_nsIDOMNSHTMLElement, (void**)&nselem);
585 nsIDOMHTMLElement_Release(nsbody);
586 if(NS_FAILED(nsres)) {
587 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres);
591 nsres = nsIDOMNSHTMLElement_focus(nselem);
592 nsIDOMNSHTMLElement_Release(nselem);
593 if(NS_FAILED(nsres)) {
594 ERR("Focus failed: %08x\n", nsres);
601 static HRESULT WINAPI HTMLDocument4_hasFocus(IHTMLDocument4 *iface, VARIANT_BOOL *pfFocus)
603 HTMLDocument *This = HTMLDOC4_THIS(iface);
604 FIXME("(%p)->(%p)\n", This, pfFocus);
608 static HRESULT WINAPI HTMLDocument4_put_onselectionchange(IHTMLDocument4 *iface, VARIANT v)
610 HTMLDocument *This = HTMLDOC4_THIS(iface);
611 FIXME("(%p)->(v)\n", This);
615 static HRESULT WINAPI HTMLDocument4_get_onselectionchange(IHTMLDocument4 *iface, VARIANT *p)
617 HTMLDocument *This = HTMLDOC4_THIS(iface);
618 FIXME("(%p)->(%p)\n", This, p);
622 static HRESULT WINAPI HTMLDocument4_get_namespace(IHTMLDocument4 *iface, IDispatch **p)
624 HTMLDocument *This = HTMLDOC4_THIS(iface);
625 FIXME("(%p)->(%p)\n", This, p);
629 static HRESULT WINAPI HTMLDocument4_createDocumentFromUrl(IHTMLDocument4 *iface, BSTR bstrUrl,
630 BSTR bstrOptions, IHTMLDocument2 **newDoc)
632 HTMLDocument *This = HTMLDOC4_THIS(iface);
633 FIXME("(%p)->(%s %s %p)\n", This, debugstr_w(bstrUrl), debugstr_w(bstrOptions), newDoc);
637 static HRESULT WINAPI HTMLDocument4_put_media(IHTMLDocument4 *iface, BSTR v)
639 HTMLDocument *This = HTMLDOC4_THIS(iface);
640 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
644 static HRESULT WINAPI HTMLDocument4_get_media(IHTMLDocument4 *iface, BSTR *p)
646 HTMLDocument *This = HTMLDOC4_THIS(iface);
647 FIXME("(%p)->(%p)\n", This, p);
651 static HRESULT WINAPI HTMLDocument4_createEventObject(IHTMLDocument4 *iface,
652 VARIANT *pvarEventObject, IHTMLEventObj **ppEventObj)
654 HTMLDocument *This = HTMLDOC4_THIS(iface);
655 FIXME("(%p)->(%p %p)\n", This, pvarEventObject, ppEventObj);
659 static HRESULT WINAPI HTMLDocument4_fireEvent(IHTMLDocument4 *iface, BSTR bstrEventName,
660 VARIANT *pvarEventObject, VARIANT_BOOL *pfCanceled)
662 HTMLDocument *This = HTMLDOC4_THIS(iface);
663 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(bstrEventName), pvarEventObject, pfCanceled);
667 static HRESULT WINAPI HTMLDocument4_createRenderStyle(IHTMLDocument4 *iface, BSTR v,
668 IHTMLRenderStyle **ppIHTMLRenderStyle)
670 HTMLDocument *This = HTMLDOC4_THIS(iface);
671 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), ppIHTMLRenderStyle);
675 static HRESULT WINAPI HTMLDocument4_put_oncontrolselect(IHTMLDocument4 *iface, VARIANT v)
677 HTMLDocument *This = HTMLDOC4_THIS(iface);
678 FIXME("(%p)->(v)\n", This);
682 static HRESULT WINAPI HTMLDocument4_get_oncontrolselect(IHTMLDocument4 *iface, VARIANT *p)
684 HTMLDocument *This = HTMLDOC4_THIS(iface);
685 FIXME("(%p)->(%p)\n", This, p);
689 static HRESULT WINAPI HTMLDocument4_get_URLEncoded(IHTMLDocument4 *iface, BSTR *p)
691 HTMLDocument *This = HTMLDOC4_THIS(iface);
692 FIXME("(%p)->(%p)\n", This, p);
698 static const IHTMLDocument4Vtbl HTMLDocument4Vtbl = {
699 HTMLDocument4_QueryInterface,
700 HTMLDocument4_AddRef,
701 HTMLDocument4_Release,
702 HTMLDocument4_GetTypeInfoCount,
703 HTMLDocument4_GetTypeInfo,
704 HTMLDocument4_GetIDsOfNames,
705 HTMLDocument4_Invoke,
707 HTMLDocument4_hasFocus,
708 HTMLDocument4_put_onselectionchange,
709 HTMLDocument4_get_onselectionchange,
710 HTMLDocument4_get_namespace,
711 HTMLDocument4_createDocumentFromUrl,
712 HTMLDocument4_put_media,
713 HTMLDocument4_get_media,
714 HTMLDocument4_createEventObject,
715 HTMLDocument4_fireEvent,
716 HTMLDocument4_createRenderStyle,
717 HTMLDocument4_put_oncontrolselect,
718 HTMLDocument4_get_oncontrolselect,
719 HTMLDocument4_get_URLEncoded
722 void HTMLDocument_HTMLDocument3_Init(HTMLDocument *This)
724 This->lpHTMLDocument3Vtbl = &HTMLDocument3Vtbl;
725 This->lpHTMLDocument4Vtbl = &HTMLDocument4Vtbl;