2 * Copyright 2005 Jacek Caban
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 HTMLDOC_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument2, iface)
39 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppvObject)
41 HTMLDocument *This = HTMLDOC_THIS(iface);
44 if(IsEqualGUID(&IID_IUnknown, riid)) {
45 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppvObject);
46 *ppvObject = HTMLDOC(This);
47 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
48 TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppvObject);
49 *ppvObject = HTMLDOC(This);
50 }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
51 TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppvObject);
52 *ppvObject = HTMLDOC(This);
53 }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
54 TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppvObject);
55 *ppvObject = HTMLDOC(This);
56 }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
57 TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppvObject);
58 *ppvObject = HTMLDOC3(This);
59 }else if(IsEqualGUID(&IID_IPersist, riid)) {
60 TRACE("(%p)->(IID_IPersist, %p)\n", This, ppvObject);
61 *ppvObject = PERSIST(This);
62 }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
63 TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppvObject);
64 *ppvObject = PERSISTMON(This);
65 }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
66 TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppvObject);
67 *ppvObject = PERSISTFILE(This);
68 }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
69 TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppvObject);
70 *ppvObject = MONPROP(This);
71 }else if(IsEqualGUID(&IID_IOleObject, riid)) {
72 TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppvObject);
73 *ppvObject = OLEOBJ(This);
74 }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
75 TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppvObject);
76 *ppvObject = OLEDOC(This);
77 }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
78 TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppvObject);
79 *ppvObject = DOCVIEW(This);
80 }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
81 TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppvObject);
82 *ppvObject = ACTOBJ(This);
83 }else if(IsEqualGUID(&IID_IViewObject, riid)) {
84 TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppvObject);
85 *ppvObject = VIEWOBJ(This);
86 }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
87 TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppvObject);
88 *ppvObject = VIEWOBJ2(This);
89 }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
90 TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppvObject);
91 *ppvObject = OLEWIN(This);
92 }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
93 TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppvObject);
94 *ppvObject = INPLACEOBJ(This);
95 }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
96 TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppvObject);
97 *ppvObject = INPLACEWIN(This);
98 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
99 TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppvObject);
100 *ppvObject = SERVPROV(This);
101 }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
102 TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppvObject);
103 *ppvObject = CMDTARGET(This);
104 }else if(IsEqualGUID(&IID_IOleControl, riid)) {
105 TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppvObject);
106 *ppvObject = CONTROL(This);
107 }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
108 TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppvObject);
109 *ppvObject = HLNKTARGET(This);
110 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
111 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppvObject);
112 *ppvObject = CONPTCONT(This);
113 }else if(IsEqualGUID(&IID_IPersistStreamInit, riid)) {
114 TRACE("(%p)->(IID_IPersistStreamInit %p)\n", This, ppvObject);
115 *ppvObject = PERSTRINIT(This);
116 }else if(IsEqualGUID(&CLSID_CMarkup, riid)) {
117 FIXME("(%p)->(CLSID_CMarkup %p)\n", This, ppvObject);
118 return E_NOINTERFACE;
122 IHTMLDocument2_AddRef(iface);
126 FIXME("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppvObject);
127 return E_NOINTERFACE;
130 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
132 HTMLDocument *This = HTMLDOC_THIS(iface);
133 ULONG ref = InterlockedIncrement(&This->ref);
134 TRACE("(%p) ref = %lu\n", This, ref);
138 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
140 HTMLDocument *This = HTMLDOC_THIS(iface);
141 ULONG ref = InterlockedDecrement(&This->ref);
143 TRACE("(%p) ref = %lu\n", This, ref);
147 IOleObject_SetClientSite(OLEOBJ(This), NULL);
148 if(This->in_place_active)
149 IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(This));
151 IOleDocumentView_SetInPlaceSite(DOCVIEW(This), NULL);
153 if(This->tooltips_hwnd)
154 DestroyWindow(This->tooltips_hwnd);
156 DestroyWindow(This->hwnd);
160 HTMLDocument_ConnectionPoints_Destroy(This);
162 if(This->nscontainer)
163 NSContainer_Release(This->nscontainer);
165 HeapFree(GetProcessHeap(), 0, This);
173 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
175 FIXME("(%p)->(%p)\n", iface, pctinfo);
179 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
180 LCID lcid, ITypeInfo **ppTInfo)
182 FIXME("(%p)->(%u %lu %p)\n", iface, iTInfo, lcid, ppTInfo);
186 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
187 LPOLESTR *rgszNames, UINT cNames,
188 LCID lcid, DISPID *rgDispId)
190 FIXME("(%p)->(%s %p %u %lu %p)\n", iface, debugstr_guid(riid), rgszNames, cNames,
195 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
196 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
197 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
199 FIXME("(%p)->(%ld %s %ld %d %p %p %p %p)\n", iface, dispIdMember, debugstr_guid(riid),
200 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
204 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
206 FIXME("(%p)->(%p)\n", iface, p);
210 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
212 FIXME("(%p)->(%p)\n", iface, p);
216 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
218 HTMLDocument *This = HTMLDOC_THIS(iface);
219 nsIDOMDocument *nsdoc;
220 nsIDOMHTMLDocument *nshtmldoc;
221 nsIDOMHTMLElement *nsbody = NULL;
225 TRACE("(%p)->(%p)\n", This, p);
229 if(!This->nscontainer)
232 nsres = nsIWebNavigation_GetDocument(This->nscontainer->navigation, &nsdoc);
233 if(NS_FAILED(nsres)) {
234 ERR("GetDocument failed: %08lx\n", nsres);
238 if(NS_FAILED(nsres) || !nsdoc)
241 nsIDOMDocument_QueryInterface(nsdoc, &IID_nsIDOMHTMLDocument, (void**)&nshtmldoc);
242 nsIDOMDocument_Release(nsdoc);
244 nsres = nsIDOMHTMLDocument_GetBody(nshtmldoc, &nsbody);
245 nsIDOMHTMLDocument_Release(nshtmldoc);
247 if(NS_FAILED(nsres) || !nsbody) {
248 TRACE("Could not get body: %08lx\n", nsres);
252 node = get_node(This, (nsIDOMNode*)nsbody);
253 nsIDOMHTMLElement_Release(nsbody);
255 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)p);
257 TRACE("*p = %p\n", *p);
261 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
263 FIXME("(%p)->(%p)\n", iface, p);
267 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
269 FIXME("(%p)->(%p)\n", iface, p);
273 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
275 FIXME("(%p)->(%p)\n", iface, p);
279 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
281 FIXME("(%p)->(%p)\n", iface, p);
285 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
287 FIXME("(%p)->(%p)\n", iface, p);
291 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
293 FIXME("(%p)->(%p)\n", iface, p);
297 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
299 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
303 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
305 FIXME("(%p)->(%p)\n", iface, p);
309 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
311 FIXME("(%p)->(%p)\n", iface, p);
315 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
317 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
321 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
323 FIXME("(%p)->(%p)\n", iface, p);
327 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
329 FIXME("(%p)->(%p)\n", iface, p);
333 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
335 FIXME("(%p)->(%p)\n", iface, p);
339 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
341 FIXME("(%p)->(%p)\n", iface, p);
345 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
347 FIXME("(%p)->(%p)\n", iface, p);
351 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
353 FIXME("(%p)->(%p)\n", iface, p);
357 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
359 FIXME("(%p)\n", iface);
363 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
365 FIXME("(%p)->(%p)\n", iface, p);
369 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
371 FIXME("(%p)\n", iface);
375 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
377 FIXME("(%p)->(%p)\n", iface, p);
381 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
383 FIXME("(%p)\n", iface);
387 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
389 FIXME("(%p)->(%p)\n", iface, p);
393 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
395 FIXME("(%p)->()\n", iface);
399 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
401 FIXME("(%p)->(%p)\n", iface, p);
405 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
407 FIXME("(%p)\n", iface);
411 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
413 FIXME("(%p)->(%p)\n", iface, p);
417 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
419 FIXME("(%p)->(%p)\n", iface, p);
423 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
425 FIXME("(%p)->(%p)\n", iface, p);
429 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
431 FIXME("(%p)->(%p)\n", iface, p);
435 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
437 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
441 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
443 FIXME("(%p)->(%p)\n", iface, p);
447 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
449 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
453 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
455 FIXME("(%p)->(%p)\n", iface, p);
459 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
461 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
465 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
467 FIXME("(%p)->(%p)\n", iface, p);
471 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
473 FIXME("(%p)->(%x)\n", iface, v);
477 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
479 FIXME("(%p)->(%p)\n", iface, p);
483 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
485 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
489 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
491 FIXME("(%p)->(%p)\n", iface, p);
495 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
497 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
501 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
503 FIXME("(%p)->(%p)\n", iface, p);
507 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
509 FIXME("(%p)->(%p)\n", iface, p);
513 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
515 FIXME("(%p)->(%p)\n", iface, p);
519 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
521 FIXME("(%p)->(%p)\n", iface, p);
525 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
527 FIXME("(%p)->(%p)\n", iface, p);
531 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
533 FIXME("(%p)->(%p)\n", iface, p);
537 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
539 FIXME("(%p)->(%p)\n", iface, p);
543 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
545 FIXME("(%p)->(%p)\n", iface, p);
549 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
551 FIXME("(%p)->(%p)\n", iface, p);
555 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
557 FIXME("(%p)->(%p)\n", iface, psarray);
561 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
563 FIXME("(%p)->(%p)\n", iface, psarray);
567 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
568 VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
570 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(url), pomWindowResult);
574 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
576 FIXME("(%p)\n", iface);
580 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
582 FIXME("(%p)\n", iface);
586 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
589 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
593 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
596 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
600 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
603 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
607 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
610 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
614 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
617 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
621 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
624 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
628 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
629 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
631 FIXME("(%p)->(%s %x %p)\n", iface, debugstr_w(cmdID), showUI, pfRet);
635 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
638 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
642 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
643 IHTMLElement **newElem)
645 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(eTag), newElem);
649 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
651 FIXME("(%p)\n", iface);
655 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
657 FIXME("(%p)->(%p)\n", iface, p);
661 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
663 FIXME("(%p)\n", iface);
667 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
669 FIXME("(%p)->(%p)\n", iface, p);
673 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
675 FIXME("(%p)\n", iface);
679 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
681 FIXME("(%p)->(%p)\n", iface, p);
685 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
687 FIXME("(%p)\n", iface);
691 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
693 FIXME("(%p)->(%p)\n", iface, p);
697 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
699 FIXME("(%p)\n", iface);
703 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
705 FIXME("(%p)->(%p)\n", iface, p);
709 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
711 FIXME("(%p)\n", iface);
715 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
717 FIXME("(%p)->(%p)\n", iface, p);
721 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
723 FIXME("(%p)\n", iface);
727 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
729 FIXME("(%p)->(%p)\n", iface, p);
733 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
735 FIXME("(%p)\n", iface);
739 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
741 FIXME("(%p)->(%p)\n", iface, p);
745 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
747 FIXME("(%p)\n", iface);
751 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
753 FIXME("(%p)->(%p)\n", iface, p);
757 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
759 FIXME("(%p)\n", iface);
763 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
765 FIXME("(%p)->(%p)\n", iface, p);
769 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
771 FIXME("(%p)\n", iface);
775 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
777 FIXME("(%p)->(%p)\n", iface, p);
781 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
783 FIXME("(%p)\n", iface);
787 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
789 FIXME("(%p)->(%p)\n", iface, p);
793 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
795 FIXME("(%p)\n", iface);
799 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
801 FIXME("(%p)->(%p)\n", iface, p);
805 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
807 FIXME("(%p)\n", iface);
811 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
813 FIXME("(%p)->(%p)\n", iface, p);
817 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
819 FIXME("(%p)\n", iface);
823 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
825 FIXME("(%p)->(%p)\n", iface, p);
829 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
831 FIXME("(%p)\n", iface);
835 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
837 FIXME("(%p)->(%p)\n", iface, p);
841 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
843 FIXME("(%p)\n", iface);
847 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
849 FIXME("(%p)->(%p)\n", iface, p);
853 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, long x, long y,
854 IHTMLElement **elementHit)
856 FIXME("(%p)->(%ld %ld %p)\n", iface, x, y, elementHit);
860 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
862 FIXME("(%p)->(%p)\n", iface, p);
866 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
867 IHTMLStyleSheetsCollection **p)
869 FIXME("(%p)->(%p)\n", iface, p);
873 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
875 FIXME("(%p)\n", iface);
879 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
881 FIXME("(%p)->(%p)\n", iface, p);
885 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
887 FIXME("(%p)\n", iface);
891 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
893 FIXME("(%p)->(%p)\n", iface, p);
897 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
899 FIXME("(%p)->(%p)\n", iface, String);
903 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
904 long lIndex, IHTMLStyleSheet **ppnewStyleSheet)
906 FIXME("(%p)->(%s %ld %p)\n", iface, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
910 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
911 HTMLDocument_QueryInterface,
913 HTMLDocument_Release,
914 HTMLDocument_GetTypeInfoCount,
915 HTMLDocument_GetTypeInfo,
916 HTMLDocument_GetIDsOfNames,
918 HTMLDocument_get_Script,
919 HTMLDocument_get_all,
920 HTMLDocument_get_body,
921 HTMLDocument_get_activeElement,
922 HTMLDocument_get_images,
923 HTMLDocument_get_applets,
924 HTMLDocument_get_links,
925 HTMLDocument_get_forms,
926 HTMLDocument_get_anchors,
927 HTMLDocument_put_title,
928 HTMLDocument_get_title,
929 HTMLDocument_get_scripts,
930 HTMLDocument_put_designMode,
931 HTMLDocument_get_designMode,
932 HTMLDocument_get_selection,
933 HTMLDocument_get_readyState,
934 HTMLDocument_get_frames,
935 HTMLDocument_get_embeds,
936 HTMLDocument_get_plugins,
937 HTMLDocument_put_alinkColor,
938 HTMLDocument_get_alinkColor,
939 HTMLDocument_put_bgColor,
940 HTMLDocument_get_bgColor,
941 HTMLDocument_put_fgColor,
942 HTMLDocument_get_fgColor,
943 HTMLDocument_put_linkColor,
944 HTMLDocument_get_linkColor,
945 HTMLDocument_put_vlinkColor,
946 HTMLDocument_get_vlinkColor,
947 HTMLDocument_get_referrer,
948 HTMLDocument_get_location,
949 HTMLDocument_get_lastModified,
950 HTMLDocument_put_URL,
951 HTMLDocument_get_URL,
952 HTMLDocument_put_domain,
953 HTMLDocument_get_domain,
954 HTMLDocument_put_cookie,
955 HTMLDocument_get_cookie,
956 HTMLDocument_put_expando,
957 HTMLDocument_get_expando,
958 HTMLDocument_put_charset,
959 HTMLDocument_get_charset,
960 HTMLDocument_put_defaultCharset,
961 HTMLDocument_get_defaultCharset,
962 HTMLDocument_get_mimeType,
963 HTMLDocument_get_fileSize,
964 HTMLDocument_get_fileCreatedDate,
965 HTMLDocument_get_fileModifiedDate,
966 HTMLDocument_get_fileUpdatedDate,
967 HTMLDocument_get_security,
968 HTMLDocument_get_protocol,
969 HTMLDocument_get_nameProp,
971 HTMLDocument_writeln,
975 HTMLDocument_queryCommandSupported,
976 HTMLDocument_queryCommandEnabled,
977 HTMLDocument_queryCommandState,
978 HTMLDocument_queryCommandIndeterm,
979 HTMLDocument_queryCommandText,
980 HTMLDocument_queryCommandValue,
981 HTMLDocument_execCommand,
982 HTMLDocument_execCommandShowHelp,
983 HTMLDocument_createElement,
984 HTMLDocument_put_onhelp,
985 HTMLDocument_get_onhelp,
986 HTMLDocument_put_onclick,
987 HTMLDocument_get_onclick,
988 HTMLDocument_put_ondblclick,
989 HTMLDocument_get_ondblclick,
990 HTMLDocument_put_onkeyup,
991 HTMLDocument_get_onkeyup,
992 HTMLDocument_put_onkeydown,
993 HTMLDocument_get_onkeydown,
994 HTMLDocument_put_onkeypress,
995 HTMLDocument_get_onkeypress,
996 HTMLDocument_put_onmouseup,
997 HTMLDocument_get_onmouseup,
998 HTMLDocument_put_onmousedown,
999 HTMLDocument_get_onmousedown,
1000 HTMLDocument_put_onmousemove,
1001 HTMLDocument_get_onmousemove,
1002 HTMLDocument_put_onmouseout,
1003 HTMLDocument_get_onmouseout,
1004 HTMLDocument_put_onmouseover,
1005 HTMLDocument_get_onmouseover,
1006 HTMLDocument_put_onreadystatechange,
1007 HTMLDocument_get_onreadystatechange,
1008 HTMLDocument_put_onafterupdate,
1009 HTMLDocument_get_onafterupdate,
1010 HTMLDocument_put_onrowexit,
1011 HTMLDocument_get_onrowexit,
1012 HTMLDocument_put_onrowenter,
1013 HTMLDocument_get_onrowenter,
1014 HTMLDocument_put_ondragstart,
1015 HTMLDocument_get_ondragstart,
1016 HTMLDocument_put_onselectstart,
1017 HTMLDocument_get_onselectstart,
1018 HTMLDocument_elementFromPoint,
1019 HTMLDocument_get_parentWindow,
1020 HTMLDocument_get_styleSheets,
1021 HTMLDocument_put_onbeforeupdate,
1022 HTMLDocument_get_onbeforeupdate,
1023 HTMLDocument_put_onerrorupdate,
1024 HTMLDocument_get_onerrorupdate,
1025 HTMLDocument_toString,
1026 HTMLDocument_createStyleSheet
1029 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
1034 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
1036 ret = HeapAlloc(GetProcessHeap(), 0, sizeof(HTMLDocument));
1037 ret->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
1039 ret->nscontainer = NULL;
1042 hres = IHTMLDocument_QueryInterface(HTMLDOC(ret), riid, ppvObject);
1044 HeapFree(GetProcessHeap(), 0, ret);
1050 HTMLDocument_HTMLDocument3_Init(ret);
1051 HTMLDocument_Persist_Init(ret);
1052 HTMLDocument_OleCmd_Init(ret);
1053 HTMLDocument_OleObj_Init(ret);
1054 HTMLDocument_View_Init(ret);
1055 HTMLDocument_Window_Init(ret);
1056 HTMLDocument_Service_Init(ret);
1057 HTMLDocument_Hlink_Init(ret);
1058 HTMLDocument_ConnectionPoints_Init(ret);
1060 ret->nscontainer = NSContainer_Create(ret, NULL);