2 * Copyright 2005-2009 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
34 #include "wine/debug.h"
36 #include "mshtml_private.h"
37 #include "htmlevent.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
41 #define HTMLDOC_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument2, iface)
43 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppv)
45 HTMLDocument *This = HTMLDOC_THIS(iface);
47 return htmldoc_query_interface(This, riid, ppv);
50 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
52 HTMLDocument *This = HTMLDOC_THIS(iface);
54 return htmldoc_addref(This);
57 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
59 HTMLDocument *This = HTMLDOC_THIS(iface);
61 return htmldoc_release(This);
64 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
66 HTMLDocument *This = HTMLDOC_THIS(iface);
68 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(This), pctinfo);
71 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
72 LCID lcid, ITypeInfo **ppTInfo)
74 HTMLDocument *This = HTMLDOC_THIS(iface);
76 return IDispatchEx_GetTypeInfo(DISPATCHEX(This), iTInfo, lcid, ppTInfo);
79 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
80 LPOLESTR *rgszNames, UINT cNames,
81 LCID lcid, DISPID *rgDispId)
83 HTMLDocument *This = HTMLDOC_THIS(iface);
85 return IDispatchEx_GetIDsOfNames(DISPATCHEX(This), riid, rgszNames, cNames, lcid, rgDispId);
88 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
89 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
90 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
92 HTMLDocument *This = HTMLDOC_THIS(iface);
94 return IDispatchEx_Invoke(DISPATCHEX(This), dispIdMember, riid, lcid, wFlags, pDispParams,
95 pVarResult, pExcepInfo, puArgErr);
98 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
100 HTMLDocument *This = HTMLDOC_THIS(iface);
102 TRACE("(%p)->(%p)\n", This, p);
104 *p = (IDispatch*)HTMLWINDOW2(This->window);
105 IDispatch_AddRef(*p);
109 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
111 HTMLDocument *This = HTMLDOC_THIS(iface);
112 nsIDOMElement *nselem = NULL;
115 TRACE("(%p)->(%p)\n", This, p);
117 if(!This->doc_node->nsdoc) {
118 WARN("NULL nsdoc\n");
122 nsres = nsIDOMHTMLDocument_GetDocumentElement(This->doc_node->nsdoc, &nselem);
123 if(NS_FAILED(nsres)) {
124 ERR("GetDocumentElement failed: %08x\n", nsres);
129 *p = create_all_collection(get_node(This->doc_node, (nsIDOMNode*)nselem, TRUE), TRUE);
130 nsIDOMElement_Release(nselem);
138 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
140 HTMLDocument *This = HTMLDOC_THIS(iface);
141 nsIDOMHTMLElement *nsbody = NULL;
145 TRACE("(%p)->(%p)\n", This, p);
147 if(!This->doc_node->nsdoc) {
148 WARN("NULL nsdoc\n");
152 nsres = nsIDOMHTMLDocument_GetBody(This->doc_node->nsdoc, &nsbody);
153 if(NS_FAILED(nsres)) {
154 TRACE("Could not get body: %08x\n", nsres);
159 node = get_node(This->doc_node, (nsIDOMNode*)nsbody, TRUE);
160 nsIDOMHTMLElement_Release(nsbody);
162 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)p);
167 TRACE("*p = %p\n", *p);
171 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
173 HTMLDocument *This = HTMLDOC_THIS(iface);
174 FIXME("(%p)->(%p)\n", This, p);
178 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
180 HTMLDocument *This = HTMLDOC_THIS(iface);
181 nsIDOMHTMLCollection *nscoll = NULL;
184 TRACE("(%p)->(%p)\n", This, p);
191 if(!This->doc_node->nsdoc) {
192 WARN("NULL nsdoc\n");
196 nsres = nsIDOMHTMLDocument_GetImages(This->doc_node->nsdoc, &nscoll);
197 if(NS_FAILED(nsres)) {
198 ERR("GetImages failed: %08x\n", nsres);
203 *p = create_collection_from_htmlcol(This->doc_node, (IUnknown*)HTMLDOC(This), nscoll);
204 nsIDOMElement_Release(nscoll);
210 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
212 HTMLDocument *This = HTMLDOC_THIS(iface);
213 nsIDOMHTMLCollection *nscoll = NULL;
216 TRACE("(%p)->(%p)\n", This, p);
223 if(!This->doc_node->nsdoc) {
224 WARN("NULL nsdoc\n");
228 nsres = nsIDOMHTMLDocument_GetApplets(This->doc_node->nsdoc, &nscoll);
229 if(NS_FAILED(nsres)) {
230 ERR("GetApplets failed: %08x\n", nsres);
235 *p = create_collection_from_htmlcol(This->doc_node, (IUnknown*)HTMLDOC(This), nscoll);
236 nsIDOMElement_Release(nscoll);
242 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
244 HTMLDocument *This = HTMLDOC_THIS(iface);
245 nsIDOMHTMLCollection *nscoll = NULL;
248 TRACE("(%p)->(%p)\n", This, p);
255 if(!This->doc_node->nsdoc) {
256 WARN("NULL nsdoc\n");
260 nsres = nsIDOMHTMLDocument_GetLinks(This->doc_node->nsdoc, &nscoll);
261 if(NS_FAILED(nsres)) {
262 ERR("GetLinks failed: %08x\n", nsres);
267 *p = create_collection_from_htmlcol(This->doc_node, (IUnknown*)HTMLDOC(This), nscoll);
268 nsIDOMElement_Release(nscoll);
274 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
276 HTMLDocument *This = HTMLDOC_THIS(iface);
277 nsIDOMHTMLCollection *nscoll = NULL;
280 TRACE("(%p)->(%p)\n", This, p);
287 if(!This->doc_node->nsdoc) {
288 WARN("NULL nsdoc\n");
292 nsres = nsIDOMHTMLDocument_GetForms(This->doc_node->nsdoc, &nscoll);
293 if(NS_FAILED(nsres)) {
294 ERR("GetForms failed: %08x\n", nsres);
299 *p = create_collection_from_htmlcol(This->doc_node, (IUnknown*)HTMLDOC(This), nscoll);
300 nsIDOMElement_Release(nscoll);
306 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
308 HTMLDocument *This = HTMLDOC_THIS(iface);
309 nsIDOMHTMLCollection *nscoll = NULL;
312 TRACE("(%p)->(%p)\n", This, p);
319 if(!This->doc_node->nsdoc) {
320 WARN("NULL nsdoc\n");
324 nsres = nsIDOMHTMLDocument_GetAnchors(This->doc_node->nsdoc, &nscoll);
325 if(NS_FAILED(nsres)) {
326 ERR("GetAnchors failed: %08x\n", nsres);
331 *p = create_collection_from_htmlcol(This->doc_node, (IUnknown*)HTMLDOC(This), nscoll);
332 nsIDOMElement_Release(nscoll);
338 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
340 HTMLDocument *This = HTMLDOC_THIS(iface);
344 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
346 if(!This->doc_node->nsdoc) {
347 WARN("NULL nsdoc\n");
351 nsAString_InitDepend(&nsstr, v);
352 nsres = nsIDOMHTMLDocument_SetTitle(This->doc_node->nsdoc, &nsstr);
353 nsAString_Finish(&nsstr);
355 ERR("SetTitle failed: %08x\n", nsres);
360 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
362 HTMLDocument *This = HTMLDOC_THIS(iface);
363 const PRUnichar *ret;
367 TRACE("(%p)->(%p)\n", This, p);
369 if(!This->doc_node->nsdoc) {
370 WARN("NULL nsdoc\n");
375 nsAString_Init(&nsstr, NULL);
376 nsres = nsIDOMHTMLDocument_GetTitle(This->doc_node->nsdoc, &nsstr);
377 if (NS_SUCCEEDED(nsres)) {
378 nsAString_GetData(&nsstr, &ret);
379 *p = SysAllocString(ret);
381 nsAString_Finish(&nsstr);
383 if(NS_FAILED(nsres)) {
384 ERR("GetTitle failed: %08x\n", nsres);
391 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
393 HTMLDocument *This = HTMLDOC_THIS(iface);
394 FIXME("(%p)->(%p)\n", This, p);
398 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
400 HTMLDocument *This = HTMLDOC_THIS(iface);
401 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
405 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
407 HTMLDocument *This = HTMLDOC_THIS(iface);
408 static WCHAR szOff[] = {'O','f','f',0};
409 FIXME("(%p)->(%p) always returning Off\n", This, p);
414 *p = SysAllocString(szOff);
419 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
421 HTMLDocument *This = HTMLDOC_THIS(iface);
422 nsISelection *nsselection;
425 TRACE("(%p)->(%p)\n", This, p);
427 nsres = nsIDOMWindow_GetSelection(This->window->nswindow, &nsselection);
428 if(NS_FAILED(nsres)) {
429 ERR("GetSelection failed: %08x\n", nsres);
433 return HTMLSelectionObject_Create(This->doc_node, nsselection, p);
436 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
438 HTMLDocument *This = HTMLDOC_THIS(iface);
440 static const WCHAR wszUninitialized[] = {'u','n','i','n','i','t','i','a','l','i','z','e','d',0};
441 static const WCHAR wszLoading[] = {'l','o','a','d','i','n','g',0};
442 static const WCHAR wszLoaded[] = {'l','o','a','d','e','d',0};
443 static const WCHAR wszInteractive[] = {'i','n','t','e','r','a','c','t','i','v','e',0};
444 static const WCHAR wszComplete[] = {'c','o','m','p','l','e','t','e',0};
446 static const LPCWSTR readystate_str[] = {
454 TRACE("(%p)->(%p)\n", iface, p);
459 *p = SysAllocString(readystate_str[This->window->readystate]);
463 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
465 HTMLDocument *This = HTMLDOC_THIS(iface);
466 FIXME("(%p)->(%p)\n", This, p);
470 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
472 HTMLDocument *This = HTMLDOC_THIS(iface);
473 FIXME("(%p)->(%p)\n", This, p);
477 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
479 HTMLDocument *This = HTMLDOC_THIS(iface);
480 FIXME("(%p)->(%p)\n", This, p);
484 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
486 HTMLDocument *This = HTMLDOC_THIS(iface);
487 FIXME("(%p)\n", This);
491 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
493 HTMLDocument *This = HTMLDOC_THIS(iface);
494 FIXME("(%p)->(%p)\n", This, p);
498 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
500 HTMLDocument *This = HTMLDOC_THIS(iface);
501 FIXME("(%p)\n", This);
505 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
507 HTMLDocument *This = HTMLDOC_THIS(iface);
508 FIXME("(%p)->(%p)\n", This, p);
512 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
514 HTMLDocument *This = HTMLDOC_THIS(iface);
515 FIXME("(%p)\n", This);
519 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
521 HTMLDocument *This = HTMLDOC_THIS(iface);
522 FIXME("(%p)->(%p)\n", This, p);
526 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
528 HTMLDocument *This = HTMLDOC_THIS(iface);
529 FIXME("(%p)->()\n", This);
533 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
535 HTMLDocument *This = HTMLDOC_THIS(iface);
536 FIXME("(%p)->(%p)\n", This, p);
540 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
542 HTMLDocument *This = HTMLDOC_THIS(iface);
543 FIXME("(%p)\n", This);
547 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
549 HTMLDocument *This = HTMLDOC_THIS(iface);
550 FIXME("(%p)->(%p)\n", This, p);
554 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
556 HTMLDocument *This = HTMLDOC_THIS(iface);
558 FIXME("(%p)->(%p)\n", This, p);
564 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
566 HTMLDocument *This = HTMLDOC_THIS(iface);
568 TRACE("(%p)->(%p)\n", This, p);
570 return IHTMLWindow2_get_location(HTMLWINDOW2(This->window), p);
573 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
575 HTMLDocument *This = HTMLDOC_THIS(iface);
576 FIXME("(%p)->(%p)\n", This, p);
580 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
582 HTMLDocument *This = HTMLDOC_THIS(iface);
583 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
587 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
589 HTMLDocument *This = HTMLDOC_THIS(iface);
591 static const WCHAR about_blank_url[] =
592 {'a','b','o','u','t',':','b','l','a','n','k',0};
594 TRACE("(%p)->(%p)\n", iface, p);
596 *p = SysAllocString(This->window->url ? This->window->url : about_blank_url);
597 return *p ? S_OK : E_OUTOFMEMORY;
600 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
602 HTMLDocument *This = HTMLDOC_THIS(iface);
603 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
607 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
609 HTMLDocument *This = HTMLDOC_THIS(iface);
610 FIXME("(%p)->(%p)\n", This, p);
614 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
616 HTMLDocument *This = HTMLDOC_THIS(iface);
619 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
621 bret = InternetSetCookieExW(This->window->url, NULL, v, 0, 0);
623 FIXME("InternetSetCookieExW failed: %u\n", GetLastError());
624 return HRESULT_FROM_WIN32(GetLastError());
630 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
632 HTMLDocument *This = HTMLDOC_THIS(iface);
636 TRACE("(%p)->(%p)\n", This, p);
639 bret = InternetGetCookieExW(This->window->url, NULL, NULL, &size, 0, NULL);
641 switch(GetLastError()) {
642 case ERROR_INSUFFICIENT_BUFFER:
644 case ERROR_NO_MORE_ITEMS:
648 FIXME("InternetGetCookieExW failed: %u\n", GetLastError());
649 return HRESULT_FROM_WIN32(GetLastError());
658 *p = SysAllocStringLen(NULL, size-1);
660 return E_OUTOFMEMORY;
662 bret = InternetGetCookieExW(This->window->url, NULL, *p, &size, 0, NULL);
664 ERR("InternetGetCookieExW failed: %u\n", GetLastError());
671 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
673 HTMLDocument *This = HTMLDOC_THIS(iface);
674 FIXME("(%p)->(%x)\n", This, v);
678 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
680 HTMLDocument *This = HTMLDOC_THIS(iface);
681 FIXME("(%p)->(%p)\n", This, p);
685 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
687 HTMLDocument *This = HTMLDOC_THIS(iface);
688 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
692 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
694 HTMLDocument *This = HTMLDOC_THIS(iface);
695 FIXME("(%p)->(%p)\n", This, p);
699 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
701 HTMLDocument *This = HTMLDOC_THIS(iface);
702 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
706 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
708 HTMLDocument *This = HTMLDOC_THIS(iface);
709 FIXME("(%p)->(%p)\n", This, p);
713 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
715 HTMLDocument *This = HTMLDOC_THIS(iface);
716 FIXME("(%p)->(%p)\n", This, p);
720 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
722 HTMLDocument *This = HTMLDOC_THIS(iface);
723 FIXME("(%p)->(%p)\n", This, p);
727 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
729 HTMLDocument *This = HTMLDOC_THIS(iface);
730 FIXME("(%p)->(%p)\n", This, p);
734 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
736 HTMLDocument *This = HTMLDOC_THIS(iface);
737 FIXME("(%p)->(%p)\n", This, p);
741 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
743 HTMLDocument *This = HTMLDOC_THIS(iface);
744 FIXME("(%p)->(%p)\n", This, p);
748 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
750 HTMLDocument *This = HTMLDOC_THIS(iface);
751 FIXME("(%p)->(%p)\n", This, p);
755 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
757 HTMLDocument *This = HTMLDOC_THIS(iface);
758 FIXME("(%p)->(%p)\n", This, p);
762 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
764 HTMLDocument *This = HTMLDOC_THIS(iface);
765 FIXME("(%p)->(%p)\n", This, p);
769 static HRESULT document_write(HTMLDocument *This, SAFEARRAY *psarray, BOOL ln)
777 if(!This->doc_node->nsdoc) {
778 WARN("NULL nsdoc\n");
785 if(psarray->cDims != 1) {
786 FIXME("cDims=%d\n", psarray->cDims);
790 hres = SafeArrayAccessData(psarray, (void**)&var);
792 WARN("SafeArrayAccessData failed: %08x\n", hres);
796 nsAString_Init(&nsstr, NULL);
798 argc = psarray->rgsabound[0].cElements;
799 for(i=0; i < argc; i++) {
800 if(V_VT(var+i) == VT_BSTR) {
801 nsAString_SetData(&nsstr, V_BSTR(var+i));
802 if(!ln || i != argc-1)
803 nsres = nsIDOMHTMLDocument_Write(This->doc_node->nsdoc, &nsstr);
805 nsres = nsIDOMHTMLDocument_Writeln(This->doc_node->nsdoc, &nsstr);
807 ERR("Write failed: %08x\n", nsres);
809 FIXME("vt=%d\n", V_VT(var+i));
813 nsAString_Finish(&nsstr);
814 SafeArrayUnaccessData(psarray);
819 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
821 HTMLDocument *This = HTMLDOC_THIS(iface);
823 TRACE("(%p)->(%p)\n", iface, psarray);
825 return document_write(This, psarray, FALSE);
828 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
830 HTMLDocument *This = HTMLDOC_THIS(iface);
832 TRACE("(%p)->(%p)\n", This, psarray);
834 return document_write(This, psarray, TRUE);
837 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
838 VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
840 HTMLDocument *This = HTMLDOC_THIS(iface);
843 static const WCHAR text_htmlW[] = {'t','e','x','t','/','h','t','m','l',0};
845 TRACE("(%p)->(%s %s %s %s %p)\n", This, debugstr_w(url), debugstr_variant(&name),
846 debugstr_variant(&features), debugstr_variant(&replace), pomWindowResult);
848 if(!This->doc_node->nsdoc) {
853 if(!url || strcmpW(url, text_htmlW) || V_VT(&name) != VT_ERROR
854 || V_VT(&features) != VT_ERROR || V_VT(&replace) != VT_ERROR)
855 FIXME("unsupported args\n");
857 nsres = nsIDOMHTMLDocument_Open(This->doc_node->nsdoc);
858 if(NS_FAILED(nsres)) {
859 ERR("Open failed: %08x\n", nsres);
863 *pomWindowResult = (IDispatch*)HTMLWINDOW2(This->window);
864 IHTMLWindow2_AddRef(HTMLWINDOW2(This->window));
868 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
870 HTMLDocument *This = HTMLDOC_THIS(iface);
873 TRACE("(%p)\n", This);
875 if(!This->doc_node->nsdoc) {
880 nsres = nsIDOMHTMLDocument_Close(This->doc_node->nsdoc);
881 if(NS_FAILED(nsres)) {
882 ERR("Close failed: %08x\n", nsres);
889 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
891 HTMLDocument *This = HTMLDOC_THIS(iface);
892 FIXME("(%p)\n", This);
896 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
899 HTMLDocument *This = HTMLDOC_THIS(iface);
900 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
904 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
907 HTMLDocument *This = HTMLDOC_THIS(iface);
908 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
912 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
915 HTMLDocument *This = HTMLDOC_THIS(iface);
916 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
920 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
923 HTMLDocument *This = HTMLDOC_THIS(iface);
924 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
928 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
931 HTMLDocument *This = HTMLDOC_THIS(iface);
932 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
936 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
939 HTMLDocument *This = HTMLDOC_THIS(iface);
940 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
944 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
945 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
947 HTMLDocument *This = HTMLDOC_THIS(iface);
948 FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(cmdID), showUI, pfRet);
952 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
955 HTMLDocument *This = HTMLDOC_THIS(iface);
956 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
960 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
961 IHTMLElement **newElem)
963 HTMLDocument *This = HTMLDOC_THIS(iface);
964 nsIDOMHTMLElement *nselem;
968 TRACE("(%p)->(%s %p)\n", This, debugstr_w(eTag), newElem);
970 hres = create_nselem(This->doc_node, eTag, &nselem);
974 elem = HTMLElement_Create(This->doc_node, (nsIDOMNode*)nselem, TRUE);
975 nsIDOMHTMLElement_Release(nselem);
977 *newElem = HTMLELEM(elem);
978 IHTMLElement_AddRef(HTMLELEM(elem));
982 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
984 HTMLDocument *This = HTMLDOC_THIS(iface);
985 FIXME("(%p)\n", This);
989 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
991 HTMLDocument *This = HTMLDOC_THIS(iface);
992 FIXME("(%p)->(%p)\n", This, p);
996 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
998 HTMLDocument *This = HTMLDOC_THIS(iface);
1000 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1002 return set_doc_event(This, EVENTID_CLICK, &v);
1005 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
1007 HTMLDocument *This = HTMLDOC_THIS(iface);
1009 TRACE("(%p)->(%p)\n", This, p);
1011 return get_doc_event(This, EVENTID_CLICK, p);
1014 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
1016 HTMLDocument *This = HTMLDOC_THIS(iface);
1017 FIXME("(%p)\n", This);
1021 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
1023 HTMLDocument *This = HTMLDOC_THIS(iface);
1024 FIXME("(%p)->(%p)\n", This, p);
1028 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
1030 HTMLDocument *This = HTMLDOC_THIS(iface);
1032 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1034 return set_doc_event(This, EVENTID_KEYUP, &v);
1037 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
1039 HTMLDocument *This = HTMLDOC_THIS(iface);
1041 TRACE("(%p)->(%p)\n", This, p);
1043 return get_doc_event(This, EVENTID_KEYUP, p);
1046 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
1048 HTMLDocument *This = HTMLDOC_THIS(iface);
1050 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1052 return set_doc_event(This, EVENTID_KEYDOWN, &v);
1055 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
1057 HTMLDocument *This = HTMLDOC_THIS(iface);
1059 TRACE("(%p)->(%p)\n", This, p);
1061 return get_doc_event(This, EVENTID_KEYDOWN, p);
1064 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
1066 HTMLDocument *This = HTMLDOC_THIS(iface);
1067 FIXME("(%p)\n", This);
1071 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
1073 HTMLDocument *This = HTMLDOC_THIS(iface);
1074 FIXME("(%p)->(%p)\n", This, p);
1078 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
1080 HTMLDocument *This = HTMLDOC_THIS(iface);
1082 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1084 return set_doc_event(This, EVENTID_MOUSEUP, &v);
1087 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
1089 HTMLDocument *This = HTMLDOC_THIS(iface);
1091 TRACE("(%p)->(%p)\n", This, p);
1093 return get_doc_event(This, EVENTID_MOUSEUP, p);
1096 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
1098 HTMLDocument *This = HTMLDOC_THIS(iface);
1100 TRACE("(%p)->()\n", This);
1102 return set_doc_event(This, EVENTID_MOUSEDOWN, &v);
1105 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
1107 HTMLDocument *This = HTMLDOC_THIS(iface);
1109 TRACE("(%p)->(%p)\n", This, p);
1111 return get_doc_event(This, EVENTID_MOUSEDOWN, p);
1114 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
1116 HTMLDocument *This = HTMLDOC_THIS(iface);
1117 FIXME("(%p)\n", This);
1121 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
1123 HTMLDocument *This = HTMLDOC_THIS(iface);
1124 FIXME("(%p)->(%p)\n", This, p);
1128 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
1130 HTMLDocument *This = HTMLDOC_THIS(iface);
1132 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1134 return set_doc_event(This, EVENTID_MOUSEOUT, &v);
1137 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
1139 HTMLDocument *This = HTMLDOC_THIS(iface);
1141 TRACE("(%p)->(%p)\n", This, p);
1143 return get_doc_event(This, EVENTID_MOUSEOUT, p);
1146 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
1148 HTMLDocument *This = HTMLDOC_THIS(iface);
1150 TRACE("(%p)\n", This);
1152 return set_doc_event(This, EVENTID_MOUSEOVER, &v);
1155 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
1157 HTMLDocument *This = HTMLDOC_THIS(iface);
1159 TRACE("(%p)->(%p)\n", This, p);
1161 return get_doc_event(This, EVENTID_MOUSEOVER, p);
1164 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
1166 HTMLDocument *This = HTMLDOC_THIS(iface);
1168 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1170 return set_doc_event(This, EVENTID_READYSTATECHANGE, &v);
1173 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
1175 HTMLDocument *This = HTMLDOC_THIS(iface);
1177 TRACE("(%p)->(%p)\n", This, p);
1179 return get_doc_event(This, EVENTID_READYSTATECHANGE, p);
1182 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
1184 HTMLDocument *This = HTMLDOC_THIS(iface);
1185 FIXME("(%p)\n", This);
1189 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
1191 HTMLDocument *This = HTMLDOC_THIS(iface);
1192 FIXME("(%p)->(%p)\n", This, p);
1196 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
1198 HTMLDocument *This = HTMLDOC_THIS(iface);
1199 FIXME("(%p)\n", This);
1203 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
1205 HTMLDocument *This = HTMLDOC_THIS(iface);
1206 FIXME("(%p)->(%p)\n", This, p);
1210 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
1212 HTMLDocument *This = HTMLDOC_THIS(iface);
1213 FIXME("(%p)\n", This);
1217 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
1219 HTMLDocument *This = HTMLDOC_THIS(iface);
1220 FIXME("(%p)->(%p)\n", This, p);
1224 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
1226 HTMLDocument *This = HTMLDOC_THIS(iface);
1228 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1230 return set_doc_event(This, EVENTID_DRAGSTART, &v);
1233 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
1235 HTMLDocument *This = HTMLDOC_THIS(iface);
1237 TRACE("(%p)->(%p)\n", This, p);
1239 return get_doc_event(This, EVENTID_DRAGSTART, p);
1242 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
1244 HTMLDocument *This = HTMLDOC_THIS(iface);
1246 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1248 return set_doc_event(This, EVENTID_SELECTSTART, &v);
1251 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
1253 HTMLDocument *This = HTMLDOC_THIS(iface);
1255 TRACE("(%p)->(%p)\n", This, p);
1257 return get_doc_event(This, EVENTID_SELECTSTART, p);
1260 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, LONG x, LONG y,
1261 IHTMLElement **elementHit)
1263 HTMLDocument *This = HTMLDOC_THIS(iface);
1264 FIXME("(%p)->(%d %d %p)\n", This, x, y, elementHit);
1268 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
1270 HTMLDocument *This = HTMLDOC_THIS(iface);
1272 TRACE("(%p)->(%p)\n", This, p);
1274 *p = HTMLWINDOW2(This->window);
1275 IHTMLWindow2_AddRef(*p);
1279 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
1280 IHTMLStyleSheetsCollection **p)
1282 HTMLDocument *This = HTMLDOC_THIS(iface);
1283 nsIDOMStyleSheetList *nsstylelist;
1284 nsIDOMDocumentStyle *nsdocstyle;
1287 TRACE("(%p)->(%p)\n", This, p);
1291 if(!This->doc_node->nsdoc) {
1292 WARN("NULL nsdoc\n");
1293 return E_UNEXPECTED;
1296 nsIDOMHTMLDocument_QueryInterface(This->doc_node->nsdoc, &IID_nsIDOMDocumentStyle, (void**)&nsdocstyle);
1297 nsres = nsIDOMDocumentStyle_GetStyleSheets(nsdocstyle, &nsstylelist);
1298 nsIDOMDocumentStyle_Release(nsdocstyle);
1299 if(NS_FAILED(nsres)) {
1300 ERR("GetStyleSheets failed: %08x\n", nsres);
1304 *p = HTMLStyleSheetsCollection_Create(nsstylelist);
1305 nsIDOMDocumentStyle_Release(nsstylelist);
1310 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
1312 HTMLDocument *This = HTMLDOC_THIS(iface);
1313 FIXME("(%p)\n", This);
1317 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
1319 HTMLDocument *This = HTMLDOC_THIS(iface);
1320 FIXME("(%p)->(%p)\n", This, p);
1324 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
1326 HTMLDocument *This = HTMLDOC_THIS(iface);
1327 FIXME("(%p)\n", This);
1331 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
1333 HTMLDocument *This = HTMLDOC_THIS(iface);
1334 FIXME("(%p)->(%p)\n", This, p);
1338 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
1340 HTMLDocument *This = HTMLDOC_THIS(iface);
1341 FIXME("(%p)->(%p)\n", This, String);
1345 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
1346 LONG lIndex, IHTMLStyleSheet **ppnewStyleSheet)
1348 HTMLDocument *This = HTMLDOC_THIS(iface);
1350 FIXME("(%p)->(%s %d %p) semi-stub\n", This, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
1352 *ppnewStyleSheet = HTMLStyleSheet_Create(NULL);
1356 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
1357 HTMLDocument_QueryInterface,
1358 HTMLDocument_AddRef,
1359 HTMLDocument_Release,
1360 HTMLDocument_GetTypeInfoCount,
1361 HTMLDocument_GetTypeInfo,
1362 HTMLDocument_GetIDsOfNames,
1363 HTMLDocument_Invoke,
1364 HTMLDocument_get_Script,
1365 HTMLDocument_get_all,
1366 HTMLDocument_get_body,
1367 HTMLDocument_get_activeElement,
1368 HTMLDocument_get_images,
1369 HTMLDocument_get_applets,
1370 HTMLDocument_get_links,
1371 HTMLDocument_get_forms,
1372 HTMLDocument_get_anchors,
1373 HTMLDocument_put_title,
1374 HTMLDocument_get_title,
1375 HTMLDocument_get_scripts,
1376 HTMLDocument_put_designMode,
1377 HTMLDocument_get_designMode,
1378 HTMLDocument_get_selection,
1379 HTMLDocument_get_readyState,
1380 HTMLDocument_get_frames,
1381 HTMLDocument_get_embeds,
1382 HTMLDocument_get_plugins,
1383 HTMLDocument_put_alinkColor,
1384 HTMLDocument_get_alinkColor,
1385 HTMLDocument_put_bgColor,
1386 HTMLDocument_get_bgColor,
1387 HTMLDocument_put_fgColor,
1388 HTMLDocument_get_fgColor,
1389 HTMLDocument_put_linkColor,
1390 HTMLDocument_get_linkColor,
1391 HTMLDocument_put_vlinkColor,
1392 HTMLDocument_get_vlinkColor,
1393 HTMLDocument_get_referrer,
1394 HTMLDocument_get_location,
1395 HTMLDocument_get_lastModified,
1396 HTMLDocument_put_URL,
1397 HTMLDocument_get_URL,
1398 HTMLDocument_put_domain,
1399 HTMLDocument_get_domain,
1400 HTMLDocument_put_cookie,
1401 HTMLDocument_get_cookie,
1402 HTMLDocument_put_expando,
1403 HTMLDocument_get_expando,
1404 HTMLDocument_put_charset,
1405 HTMLDocument_get_charset,
1406 HTMLDocument_put_defaultCharset,
1407 HTMLDocument_get_defaultCharset,
1408 HTMLDocument_get_mimeType,
1409 HTMLDocument_get_fileSize,
1410 HTMLDocument_get_fileCreatedDate,
1411 HTMLDocument_get_fileModifiedDate,
1412 HTMLDocument_get_fileUpdatedDate,
1413 HTMLDocument_get_security,
1414 HTMLDocument_get_protocol,
1415 HTMLDocument_get_nameProp,
1417 HTMLDocument_writeln,
1421 HTMLDocument_queryCommandSupported,
1422 HTMLDocument_queryCommandEnabled,
1423 HTMLDocument_queryCommandState,
1424 HTMLDocument_queryCommandIndeterm,
1425 HTMLDocument_queryCommandText,
1426 HTMLDocument_queryCommandValue,
1427 HTMLDocument_execCommand,
1428 HTMLDocument_execCommandShowHelp,
1429 HTMLDocument_createElement,
1430 HTMLDocument_put_onhelp,
1431 HTMLDocument_get_onhelp,
1432 HTMLDocument_put_onclick,
1433 HTMLDocument_get_onclick,
1434 HTMLDocument_put_ondblclick,
1435 HTMLDocument_get_ondblclick,
1436 HTMLDocument_put_onkeyup,
1437 HTMLDocument_get_onkeyup,
1438 HTMLDocument_put_onkeydown,
1439 HTMLDocument_get_onkeydown,
1440 HTMLDocument_put_onkeypress,
1441 HTMLDocument_get_onkeypress,
1442 HTMLDocument_put_onmouseup,
1443 HTMLDocument_get_onmouseup,
1444 HTMLDocument_put_onmousedown,
1445 HTMLDocument_get_onmousedown,
1446 HTMLDocument_put_onmousemove,
1447 HTMLDocument_get_onmousemove,
1448 HTMLDocument_put_onmouseout,
1449 HTMLDocument_get_onmouseout,
1450 HTMLDocument_put_onmouseover,
1451 HTMLDocument_get_onmouseover,
1452 HTMLDocument_put_onreadystatechange,
1453 HTMLDocument_get_onreadystatechange,
1454 HTMLDocument_put_onafterupdate,
1455 HTMLDocument_get_onafterupdate,
1456 HTMLDocument_put_onrowexit,
1457 HTMLDocument_get_onrowexit,
1458 HTMLDocument_put_onrowenter,
1459 HTMLDocument_get_onrowenter,
1460 HTMLDocument_put_ondragstart,
1461 HTMLDocument_get_ondragstart,
1462 HTMLDocument_put_onselectstart,
1463 HTMLDocument_get_onselectstart,
1464 HTMLDocument_elementFromPoint,
1465 HTMLDocument_get_parentWindow,
1466 HTMLDocument_get_styleSheets,
1467 HTMLDocument_put_onbeforeupdate,
1468 HTMLDocument_get_onbeforeupdate,
1469 HTMLDocument_put_onerrorupdate,
1470 HTMLDocument_get_onerrorupdate,
1471 HTMLDocument_toString,
1472 HTMLDocument_createStyleSheet
1475 static void HTMLDocument_on_advise(IUnknown *iface, cp_static_data_t *cp)
1477 HTMLDocument *This = HTMLDOC_THIS(iface);
1480 update_cp_events(This->window, &This->doc_node->node.event_target, cp, This->doc_node->node.nsnode);
1485 #define SUPPINFO_THIS(iface) DEFINE_THIS(HTMLDocument, SupportErrorInfo, iface)
1487 static HRESULT WINAPI SupportErrorInfo_QueryInterface(ISupportErrorInfo *iface, REFIID riid, void **ppv)
1489 HTMLDocument *This = SUPPINFO_THIS(iface);
1490 return IHTMLDocument_QueryInterface(HTMLDOC(This), riid, ppv);
1493 static ULONG WINAPI SupportErrorInfo_AddRef(ISupportErrorInfo *iface)
1495 HTMLDocument *This = SUPPINFO_THIS(iface);
1496 return IHTMLDocument_AddRef(HTMLDOC(This));
1499 static ULONG WINAPI SupportErrorInfo_Release(ISupportErrorInfo *iface)
1501 HTMLDocument *This = SUPPINFO_THIS(iface);
1502 return IHTMLDocument_Release(HTMLDOC(This));
1505 static HRESULT WINAPI SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorInfo *iface, REFIID riid)
1507 FIXME("(%p)->(%s)\n", iface, debugstr_guid(riid));
1511 static const ISupportErrorInfoVtbl SupportErrorInfoVtbl = {
1512 SupportErrorInfo_QueryInterface,
1513 SupportErrorInfo_AddRef,
1514 SupportErrorInfo_Release,
1515 SupportErrorInfo_InterfaceSupportsErrorInfo
1518 #define DISPEX_THIS(iface) DEFINE_THIS(HTMLDocument, IDispatchEx, iface)
1520 static HRESULT WINAPI DocDispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
1522 HTMLDocument *This = DISPEX_THIS(iface);
1524 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
1527 static ULONG WINAPI DocDispatchEx_AddRef(IDispatchEx *iface)
1529 HTMLDocument *This = DISPEX_THIS(iface);
1531 return IHTMLDocument2_AddRef(HTMLDOC(This));
1534 static ULONG WINAPI DocDispatchEx_Release(IDispatchEx *iface)
1536 HTMLDocument *This = DISPEX_THIS(iface);
1538 return IHTMLDocument2_Release(HTMLDOC(This));
1541 static HRESULT WINAPI DocDispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
1543 HTMLDocument *This = DISPEX_THIS(iface);
1545 return IDispatchEx_GetTypeInfoCount(This->dispex, pctinfo);
1548 static HRESULT WINAPI DocDispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
1549 LCID lcid, ITypeInfo **ppTInfo)
1551 HTMLDocument *This = DISPEX_THIS(iface);
1553 return IDispatchEx_GetTypeInfo(This->dispex, iTInfo, lcid, ppTInfo);
1556 static HRESULT WINAPI DocDispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
1557 LPOLESTR *rgszNames, UINT cNames,
1558 LCID lcid, DISPID *rgDispId)
1560 HTMLDocument *This = DISPEX_THIS(iface);
1562 return IDispatchEx_GetIDsOfNames(This->dispex, riid, rgszNames, cNames, lcid, rgDispId);
1565 static HRESULT WINAPI DocDispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
1566 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
1567 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
1569 HTMLDocument *This = DISPEX_THIS(iface);
1571 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1572 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1574 switch(dispIdMember) {
1575 case DISPID_READYSTATE:
1576 TRACE("DISPID_READYSTATE\n");
1578 if(!(wFlags & DISPATCH_PROPERTYGET))
1579 return E_INVALIDARG;
1581 V_VT(pVarResult) = VT_I4;
1582 V_I4(pVarResult) = This->window->readystate;
1586 return IDispatchEx_Invoke(This->dispex, dispIdMember, riid, lcid, wFlags, pDispParams,
1587 pVarResult, pExcepInfo, puArgErr);
1590 static HRESULT WINAPI DocDispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
1592 HTMLDocument *This = DISPEX_THIS(iface);
1594 return IDispatchEx_GetDispID(This->dispex, bstrName, grfdex, pid);
1597 static HRESULT WINAPI DocDispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
1598 VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
1600 HTMLDocument *This = DISPEX_THIS(iface);
1602 if(This->window && id == DISPID_IHTMLDOCUMENT2_LOCATION && (wFlags & DISPATCH_PROPERTYPUT))
1603 return IDispatchEx_InvokeEx(DISPATCHEX(This->window), DISPID_IHTMLWINDOW2_LOCATION, lcid, wFlags,
1604 pdp, pvarRes, pei, pspCaller);
1607 return IDispatchEx_InvokeEx(This->dispex, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
1610 static HRESULT WINAPI DocDispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
1612 HTMLDocument *This = DISPEX_THIS(iface);
1614 return IDispatchEx_DeleteMemberByName(This->dispex, bstrName, grfdex);
1617 static HRESULT WINAPI DocDispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
1619 HTMLDocument *This = DISPEX_THIS(iface);
1621 return IDispatchEx_DeleteMemberByDispID(This->dispex, id);
1624 static HRESULT WINAPI DocDispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
1626 HTMLDocument *This = DISPEX_THIS(iface);
1628 return IDispatchEx_GetMemberProperties(This->dispex, id, grfdexFetch, pgrfdex);
1631 static HRESULT WINAPI DocDispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
1633 HTMLDocument *This = DISPEX_THIS(iface);
1635 return IDispatchEx_GetMemberName(This->dispex, id, pbstrName);
1638 static HRESULT WINAPI DocDispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
1640 HTMLDocument *This = DISPEX_THIS(iface);
1642 return IDispatchEx_GetNextDispID(This->dispex, grfdex, id, pid);
1645 static HRESULT WINAPI DocDispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
1647 HTMLDocument *This = DISPEX_THIS(iface);
1649 return IDispatchEx_GetNameSpaceParent(This->dispex, ppunk);
1654 static const IDispatchExVtbl DocDispatchExVtbl = {
1655 DocDispatchEx_QueryInterface,
1656 DocDispatchEx_AddRef,
1657 DocDispatchEx_Release,
1658 DocDispatchEx_GetTypeInfoCount,
1659 DocDispatchEx_GetTypeInfo,
1660 DocDispatchEx_GetIDsOfNames,
1661 DocDispatchEx_Invoke,
1662 DocDispatchEx_GetDispID,
1663 DocDispatchEx_InvokeEx,
1664 DocDispatchEx_DeleteMemberByName,
1665 DocDispatchEx_DeleteMemberByDispID,
1666 DocDispatchEx_GetMemberProperties,
1667 DocDispatchEx_GetMemberName,
1668 DocDispatchEx_GetNextDispID,
1669 DocDispatchEx_GetNameSpaceParent
1672 static BOOL htmldoc_qi(HTMLDocument *This, REFIID riid, void **ppv)
1676 if(IsEqualGUID(&IID_IUnknown, riid)) {
1677 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppv);
1678 *ppv = HTMLDOC(This);
1679 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
1680 TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppv);
1681 *ppv = DISPATCHEX(This);
1682 }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
1683 TRACE("(%p)->(IID_IDispatchEx, %p)\n", This, ppv);
1684 *ppv = DISPATCHEX(This);
1685 }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
1686 TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppv);
1687 *ppv = HTMLDOC(This);
1688 }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
1689 TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppv);
1690 *ppv = HTMLDOC(This);
1691 }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
1692 TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppv);
1693 *ppv = HTMLDOC3(This);
1694 }else if(IsEqualGUID(&IID_IHTMLDocument4, riid)) {
1695 TRACE("(%p)->(IID_IHTMLDocument4, %p)\n", This, ppv);
1696 *ppv = HTMLDOC4(This);
1697 }else if(IsEqualGUID(&IID_IHTMLDocument5, riid)) {
1698 TRACE("(%p)->(IID_IHTMLDocument5, %p)\n", This, ppv);
1699 *ppv = HTMLDOC5(This);
1700 }else if(IsEqualGUID(&IID_IHTMLDocument6, riid)) {
1701 TRACE("(%p)->(IID_IHTMLDocument6, %p)\n", This, ppv);
1702 *ppv = HTMLDOC6(This);
1703 }else if(IsEqualGUID(&IID_IPersist, riid)) {
1704 TRACE("(%p)->(IID_IPersist, %p)\n", This, ppv);
1705 *ppv = PERSIST(This);
1706 }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
1707 TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppv);
1708 *ppv = PERSISTMON(This);
1709 }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
1710 TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppv);
1711 *ppv = PERSISTFILE(This);
1712 }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
1713 TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppv);
1714 *ppv = MONPROP(This);
1715 }else if(IsEqualGUID(&IID_IOleObject, riid)) {
1716 TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppv);
1717 *ppv = OLEOBJ(This);
1718 }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
1719 TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppv);
1720 *ppv = OLEDOC(This);
1721 }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
1722 TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppv);
1723 *ppv = DOCVIEW(This);
1724 }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
1725 TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppv);
1726 *ppv = ACTOBJ(This);
1727 }else if(IsEqualGUID(&IID_IViewObject, riid)) {
1728 TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppv);
1729 *ppv = VIEWOBJ(This);
1730 }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
1731 TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppv);
1732 *ppv = VIEWOBJ2(This);
1733 }else if(IsEqualGUID(&IID_IViewObjectEx, riid)) {
1734 TRACE("(%p)->(IID_IViewObjectEx, %p)\n", This, ppv);
1735 *ppv = VIEWOBJEX(This);
1736 }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
1737 TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppv);
1738 *ppv = OLEWIN(This);
1739 }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
1740 TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppv);
1741 *ppv = INPLACEOBJ(This);
1742 }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
1743 TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppv);
1744 *ppv = INPLACEWIN(This);
1745 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
1746 TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppv);
1747 *ppv = SERVPROV(This);
1748 }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
1749 TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppv);
1750 *ppv = CMDTARGET(This);
1751 }else if(IsEqualGUID(&IID_IOleControl, riid)) {
1752 TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppv);
1753 *ppv = CONTROL(This);
1754 }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
1755 TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppv);
1756 *ppv = HLNKTARGET(This);
1757 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
1758 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
1759 *ppv = CONPTCONT(&This->cp_container);
1760 }else if(IsEqualGUID(&IID_IPersistStreamInit, riid)) {
1761 TRACE("(%p)->(IID_IPersistStreamInit %p)\n", This, ppv);
1762 *ppv = PERSTRINIT(This);
1763 }else if(IsEqualGUID(&DIID_DispHTMLDocument, riid)) {
1764 TRACE("(%p)->(DIID_DispHTMLDocument %p)\n", This, ppv);
1765 *ppv = HTMLDOC(This);
1766 }else if(IsEqualGUID(&IID_ISupportErrorInfo, riid)) {
1767 TRACE("(%p)->(IID_ISupportErrorInfo %p)\n", This, ppv);
1768 *ppv = SUPPERRINFO(This);
1769 }else if(IsEqualGUID(&IID_IPersistHistory, riid)) {
1770 TRACE("(%p)->(IID_IPersistHistory %p)\n", This, ppv);
1771 *ppv = PERSISTHIST(This);
1772 }else if(IsEqualGUID(&CLSID_CMarkup, riid)) {
1773 FIXME("(%p)->(CLSID_CMarkup %p)\n", This, ppv);
1775 }else if(IsEqualGUID(&IID_IRunnableObject, riid)) {
1776 TRACE("(%p)->(IID_IRunnableObject %p) returning NULL\n", This, ppv);
1778 }else if(IsEqualGUID(&IID_IPersistPropertyBag, riid)) {
1779 TRACE("(%p)->(IID_IPersistPropertyBag %p) returning NULL\n", This, ppv);
1781 }else if(IsEqualGUID(&IID_IMarshal, riid)) {
1782 TRACE("(%p)->(IID_IMarshal %p) returning NULL\n", This, ppv);
1784 }else if(IsEqualGUID(&IID_IExternalConnection, riid)) {
1785 TRACE("(%p)->(IID_IExternalConnection %p) returning NULL\n", This, ppv);
1787 }else if(IsEqualGUID(&IID_IStdMarshalInfo, riid)) {
1788 TRACE("(%p)->(IID_IStdMarshalInfo %p) returning NULL\n", This, ppv);
1790 }else if(IsEqualGUID(&IID_IObjectWithSite, riid)) {
1791 TRACE("(%p)->(IID_IObjectWithSite %p)\n", This, ppv);
1792 *ppv = OBJSITE(This);
1798 IUnknown_AddRef((IUnknown*)*ppv);
1802 static cp_static_data_t HTMLDocumentEvents_data = { HTMLDocumentEvents_tid, HTMLDocument_on_advise };
1804 static void init_doc(HTMLDocument *doc, IUnknown *unk_impl, IDispatchEx *dispex)
1806 doc->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
1807 doc->lpIDispatchExVtbl = &DocDispatchExVtbl;
1808 doc->lpSupportErrorInfoVtbl = &SupportErrorInfoVtbl;
1810 doc->unk_impl = unk_impl;
1811 doc->dispex = dispex;
1812 doc->task_magic = get_task_target_magic();
1814 HTMLDocument_HTMLDocument3_Init(doc);
1815 HTMLDocument_HTMLDocument5_Init(doc);
1816 HTMLDocument_Persist_Init(doc);
1817 HTMLDocument_OleCmd_Init(doc);
1818 HTMLDocument_OleObj_Init(doc);
1819 HTMLDocument_View_Init(doc);
1820 HTMLDocument_Window_Init(doc);
1821 HTMLDocument_Service_Init(doc);
1822 HTMLDocument_Hlink_Init(doc);
1824 ConnectionPointContainer_Init(&doc->cp_container, (IUnknown*)HTMLDOC(doc));
1825 ConnectionPoint_Init(&doc->cp_dispatch, &doc->cp_container, &IID_IDispatch, NULL);
1826 ConnectionPoint_Init(&doc->cp_propnotif, &doc->cp_container, &IID_IPropertyNotifySink, NULL);
1827 ConnectionPoint_Init(&doc->cp_htmldocevents, &doc->cp_container, &DIID_HTMLDocumentEvents, &HTMLDocumentEvents_data);
1828 ConnectionPoint_Init(&doc->cp_htmldocevents2, &doc->cp_container, &DIID_HTMLDocumentEvents2, NULL);
1831 static void destroy_htmldoc(HTMLDocument *This)
1833 remove_target_tasks(This->task_magic);
1835 ConnectionPointContainer_Destroy(&This->cp_container);
1838 #define HTMLDOCNODE_NODE_THIS(iface) DEFINE_THIS2(HTMLDocumentNode, node, iface)
1840 static HRESULT HTMLDocumentNode_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
1842 HTMLDocumentNode *This = HTMLDOCNODE_NODE_THIS(iface);
1844 if(htmldoc_qi(&This->basedoc, riid, ppv))
1845 return *ppv ? S_OK : E_NOINTERFACE;
1847 if(IsEqualGUID(&IID_IInternetHostSecurityManager, riid)) {
1848 TRACE("(%p)->(IID_IInternetHostSecurityManager %p)\n", This, ppv);
1849 *ppv = HOSTSECMGR(This);
1851 return HTMLDOMNode_QI(&This->node, riid, ppv);
1854 IUnknown_AddRef((IUnknown*)*ppv);
1858 static void HTMLDocumentNode_destructor(HTMLDOMNode *iface)
1860 HTMLDocumentNode *This = HTMLDOCNODE_NODE_THIS(iface);
1862 if(This->body_event_target)
1863 release_event_target(This->body_event_target);
1864 if(This->nsevent_listener)
1865 release_nsevents(This);
1867 ICatInformation_Release(This->catmgr);
1869 IInternetSecurityManager_Release(This->secmgr);
1871 detach_selection(This);
1872 detach_ranges(This);
1873 release_nodes(This);
1876 release_mutation(This);
1877 nsIDOMHTMLDocument_Release(This->nsdoc);
1880 heap_free(This->event_vector);
1881 destroy_htmldoc(&This->basedoc);
1884 #undef HTMLDOCNODE_NODE_THIS
1886 static const NodeImplVtbl HTMLDocumentNodeImplVtbl = {
1887 HTMLDocumentNode_QI,
1888 HTMLDocumentNode_destructor
1891 static const tid_t HTMLDocumentNode_iface_tids[] = {
1901 static dispex_static_data_t HTMLDocumentNode_dispex = {
1903 DispHTMLDocument_tid,
1905 HTMLDocumentNode_iface_tids
1908 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument *nsdoc, HTMLDocumentObj *doc_obj, HTMLWindow *window, HTMLDocumentNode **ret)
1910 HTMLDocumentNode *doc;
1913 doc = heap_alloc_zero(sizeof(HTMLDocumentNode));
1915 return E_OUTOFMEMORY;
1917 doc->basedoc.doc_node = doc;
1918 doc->basedoc.doc_obj = doc_obj;
1920 init_dispex(&doc->node.dispex, (IUnknown*)HTMLDOMNODE(&doc->node), &HTMLDocumentNode_dispex);
1921 init_doc(&doc->basedoc, (IUnknown*)HTMLDOMNODE(&doc->node), DISPATCHEX(&doc->node.dispex));
1922 HTMLDocumentNode_SecMgr_Init(doc);
1925 doc->basedoc.window = window;
1926 if(window == doc_obj->basedoc.window)
1927 doc->basedoc.cp_container.forward_container = &doc_obj->basedoc.cp_container;
1929 nsIDOMHTMLDocument_AddRef(nsdoc);
1934 list_init(&doc->bindings);
1935 list_init(&doc->selection_list);
1936 list_init(&doc->range_list);
1938 HTMLDOMNode_Init(doc, &doc->node, (nsIDOMNode*)nsdoc);
1939 doc->node.vtbl = &HTMLDocumentNodeImplVtbl;
1940 doc->node.cp_container = &doc->basedoc.cp_container;
1942 hres = CoInternetCreateSecurityManager(NULL, &doc->secmgr, 0);
1944 htmldoc_release(&doc->basedoc);
1952 /**********************************************************
1953 * ICustomDoc implementation
1956 #define CUSTOMDOC_THIS(iface) DEFINE_THIS(HTMLDocumentObj, CustomDoc, iface)
1958 static HRESULT WINAPI CustomDoc_QueryInterface(ICustomDoc *iface, REFIID riid, void **ppv)
1960 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1962 if(htmldoc_qi(&This->basedoc, riid, ppv))
1963 return *ppv ? S_OK : E_NOINTERFACE;
1965 if(IsEqualGUID(&IID_ICustomDoc, riid)) {
1966 TRACE("(%p)->(IID_ICustomDoc %p)\n", This, ppv);
1967 *ppv = CUSTOMDOC(This);
1968 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
1969 return *ppv ? S_OK : E_NOINTERFACE;
1971 FIXME("Unimplemented interface %s\n", debugstr_guid(riid));
1973 return E_NOINTERFACE;
1976 IUnknown_AddRef((IUnknown*)*ppv);
1980 static ULONG WINAPI CustomDoc_AddRef(ICustomDoc *iface)
1982 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1983 ULONG ref = InterlockedIncrement(&This->ref);
1985 TRACE("(%p) ref = %u\n", This, ref);
1990 static ULONG WINAPI CustomDoc_Release(ICustomDoc *iface)
1992 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1993 ULONG ref = InterlockedDecrement(&This->ref);
1995 TRACE("(%p) ref = %u\n", This, ref);
1998 if(This->basedoc.doc_node) {
1999 This->basedoc.doc_node->basedoc.doc_obj = NULL;
2000 IHTMLDocument2_Release(HTMLDOC(&This->basedoc.doc_node->basedoc));
2002 if(This->basedoc.window) {
2003 This->basedoc.window->doc_obj = NULL;
2004 IHTMLWindow2_Release(HTMLWINDOW2(This->basedoc.window));
2006 if(This->basedoc.advise_holder)
2007 IOleAdviseHolder_Release(This->basedoc.advise_holder);
2010 IAdviseSink_Release(This->view_sink);
2012 IOleObject_SetClientSite(OLEOBJ(&This->basedoc), NULL);
2013 if(This->in_place_active)
2014 IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(&This->basedoc));
2016 IOleDocumentView_SetInPlaceSite(DOCVIEW(&This->basedoc), NULL);
2018 IOleUndoManager_Release(This->undomgr);
2019 if(This->tooltips_hwnd)
2020 DestroyWindow(This->tooltips_hwnd);
2023 DestroyWindow(This->hwnd);
2024 heap_free(This->mime);
2026 destroy_htmldoc(&This->basedoc);
2027 release_dispex(&This->dispex);
2029 if(This->nscontainer)
2030 NSContainer_Release(This->nscontainer);
2037 static HRESULT WINAPI CustomDoc_SetUIHandler(ICustomDoc *iface, IDocHostUIHandler *pUIHandler)
2039 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
2040 FIXME("(%p)->(%p)\n", This, pUIHandler);
2044 #undef CUSTOMDOC_THIS
2046 static const ICustomDocVtbl CustomDocVtbl = {
2047 CustomDoc_QueryInterface,
2050 CustomDoc_SetUIHandler
2053 static const tid_t HTMLDocumentObj_iface_tids[] = {
2060 static dispex_static_data_t HTMLDocumentObj_dispex = {
2062 DispHTMLDocument_tid,
2064 HTMLDocumentObj_iface_tids
2067 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
2069 HTMLDocumentObj *doc;
2070 nsIDOMWindow *nswindow = NULL;
2074 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
2076 doc = heap_alloc_zero(sizeof(HTMLDocumentObj));
2078 return E_OUTOFMEMORY;
2080 init_dispex(&doc->dispex, (IUnknown*)CUSTOMDOC(doc), &HTMLDocumentObj_dispex);
2081 init_doc(&doc->basedoc, (IUnknown*)CUSTOMDOC(doc), DISPATCHEX(&doc->dispex));
2083 doc->lpCustomDocVtbl = &CustomDocVtbl;
2085 doc->basedoc.doc_obj = doc;
2087 doc->usermode = UNKNOWN_USERMODE;
2089 doc->nscontainer = NSContainer_Create(doc, NULL);
2090 if(!doc->nscontainer) {
2091 ERR("Failed to init Gecko, returning CLASS_E_CLASSNOTAVAILABLE\n");
2092 htmldoc_release(&doc->basedoc);
2093 return CLASS_E_CLASSNOTAVAILABLE;
2096 hres = htmldoc_query_interface(&doc->basedoc, riid, ppvObject);
2097 htmldoc_release(&doc->basedoc);
2102 nsres = nsIWebBrowser_GetContentDOMWindow(doc->nscontainer->webbrowser, &nswindow);
2103 if(NS_FAILED(nsres))
2104 ERR("GetContentDOMWindow failed: %08x\n", nsres);
2106 hres = HTMLWindow_Create(doc, nswindow, NULL /* FIXME */, &doc->basedoc.window);
2108 nsIDOMWindow_Release(nswindow);
2110 IHTMLDocument_Release(HTMLDOC(&doc->basedoc));
2114 if(!doc->basedoc.doc_node && doc->basedoc.window->doc) {
2115 doc->basedoc.doc_node = doc->basedoc.window->doc;
2116 htmldoc_addref(&doc->basedoc.doc_node->basedoc);