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);
557 FIXME("(%p)->(%p)\n", This, p);
561 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
563 HTMLDocument *This = HTMLDOC_THIS(iface);
565 TRACE("(%p)->(%p)\n", This, p);
567 return IHTMLWindow2_get_location(HTMLWINDOW2(This->window), p);
570 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
572 HTMLDocument *This = HTMLDOC_THIS(iface);
573 FIXME("(%p)->(%p)\n", This, p);
577 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
579 HTMLDocument *This = HTMLDOC_THIS(iface);
580 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
584 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
586 HTMLDocument *This = HTMLDOC_THIS(iface);
588 static const WCHAR about_blank_url[] =
589 {'a','b','o','u','t',':','b','l','a','n','k',0};
591 TRACE("(%p)->(%p)\n", iface, p);
593 *p = SysAllocString(This->window->url ? This->window->url : about_blank_url);
594 return *p ? S_OK : E_OUTOFMEMORY;
597 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
599 HTMLDocument *This = HTMLDOC_THIS(iface);
600 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
604 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
606 HTMLDocument *This = HTMLDOC_THIS(iface);
607 FIXME("(%p)->(%p)\n", This, p);
611 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
613 HTMLDocument *This = HTMLDOC_THIS(iface);
616 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
618 bret = InternetSetCookieExW(This->window->url, NULL, v, 0, 0);
620 FIXME("InternetSetCookieExW failed: %u\n", GetLastError());
621 return HRESULT_FROM_WIN32(GetLastError());
627 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
629 HTMLDocument *This = HTMLDOC_THIS(iface);
633 TRACE("(%p)->(%p)\n", This, p);
636 bret = InternetGetCookieExW(This->window->url, NULL, NULL, &size, 0, NULL);
638 switch(GetLastError()) {
639 case ERROR_INSUFFICIENT_BUFFER:
641 case ERROR_NO_MORE_ITEMS:
645 FIXME("InternetGetCookieExW failed: %u\n", GetLastError());
646 return HRESULT_FROM_WIN32(GetLastError());
655 *p = SysAllocStringLen(NULL, size-1);
657 return E_OUTOFMEMORY;
659 bret = InternetGetCookieExW(This->window->url, NULL, *p, &size, 0, NULL);
661 ERR("InternetGetCookieExW failed: %u\n", GetLastError());
668 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
670 HTMLDocument *This = HTMLDOC_THIS(iface);
671 FIXME("(%p)->(%x)\n", This, v);
675 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
677 HTMLDocument *This = HTMLDOC_THIS(iface);
678 FIXME("(%p)->(%p)\n", This, p);
682 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
684 HTMLDocument *This = HTMLDOC_THIS(iface);
685 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
689 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
691 HTMLDocument *This = HTMLDOC_THIS(iface);
692 FIXME("(%p)->(%p)\n", This, p);
696 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
698 HTMLDocument *This = HTMLDOC_THIS(iface);
699 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
703 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
705 HTMLDocument *This = HTMLDOC_THIS(iface);
706 FIXME("(%p)->(%p)\n", This, p);
710 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
712 HTMLDocument *This = HTMLDOC_THIS(iface);
713 FIXME("(%p)->(%p)\n", This, p);
717 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
719 HTMLDocument *This = HTMLDOC_THIS(iface);
720 FIXME("(%p)->(%p)\n", This, p);
724 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
726 HTMLDocument *This = HTMLDOC_THIS(iface);
727 FIXME("(%p)->(%p)\n", This, p);
731 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
733 HTMLDocument *This = HTMLDOC_THIS(iface);
734 FIXME("(%p)->(%p)\n", This, p);
738 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
740 HTMLDocument *This = HTMLDOC_THIS(iface);
741 FIXME("(%p)->(%p)\n", This, p);
745 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
747 HTMLDocument *This = HTMLDOC_THIS(iface);
748 FIXME("(%p)->(%p)\n", This, p);
752 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
754 HTMLDocument *This = HTMLDOC_THIS(iface);
755 FIXME("(%p)->(%p)\n", This, p);
759 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
761 HTMLDocument *This = HTMLDOC_THIS(iface);
762 FIXME("(%p)->(%p)\n", This, p);
766 static HRESULT document_write(HTMLDocument *This, SAFEARRAY *psarray, BOOL ln)
774 if(!This->doc_node->nsdoc) {
775 WARN("NULL nsdoc\n");
782 if(psarray->cDims != 1) {
783 FIXME("cDims=%d\n", psarray->cDims);
787 hres = SafeArrayAccessData(psarray, (void**)&var);
789 WARN("SafeArrayAccessData failed: %08x\n", hres);
793 nsAString_Init(&nsstr, NULL);
795 argc = psarray->rgsabound[0].cElements;
796 for(i=0; i < argc; i++) {
797 if(V_VT(var+i) == VT_BSTR) {
798 nsAString_SetData(&nsstr, V_BSTR(var+i));
799 if(!ln || i != argc-1)
800 nsres = nsIDOMHTMLDocument_Write(This->doc_node->nsdoc, &nsstr);
802 nsres = nsIDOMHTMLDocument_Writeln(This->doc_node->nsdoc, &nsstr);
804 ERR("Write failed: %08x\n", nsres);
806 FIXME("vt=%d\n", V_VT(var+i));
810 nsAString_Finish(&nsstr);
811 SafeArrayUnaccessData(psarray);
816 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
818 HTMLDocument *This = HTMLDOC_THIS(iface);
820 TRACE("(%p)->(%p)\n", iface, psarray);
822 return document_write(This, psarray, FALSE);
825 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
827 HTMLDocument *This = HTMLDOC_THIS(iface);
829 TRACE("(%p)->(%p)\n", This, psarray);
831 return document_write(This, psarray, TRUE);
834 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
835 VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
837 HTMLDocument *This = HTMLDOC_THIS(iface);
840 static const WCHAR text_htmlW[] = {'t','e','x','t','/','h','t','m','l',0};
842 TRACE("(%p)->(%s %s %s %s %p)\n", This, debugstr_w(url), debugstr_variant(&name),
843 debugstr_variant(&features), debugstr_variant(&replace), pomWindowResult);
845 if(!This->doc_node->nsdoc) {
850 if(!url || strcmpW(url, text_htmlW) || V_VT(&name) != VT_ERROR
851 || V_VT(&features) != VT_ERROR || V_VT(&replace) != VT_ERROR)
852 FIXME("unsupported args\n");
854 nsres = nsIDOMHTMLDocument_Open(This->doc_node->nsdoc);
855 if(NS_FAILED(nsres)) {
856 ERR("Open failed: %08x\n", nsres);
860 *pomWindowResult = (IDispatch*)HTMLWINDOW2(This->window);
861 IHTMLWindow2_AddRef(HTMLWINDOW2(This->window));
865 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
867 HTMLDocument *This = HTMLDOC_THIS(iface);
870 TRACE("(%p)\n", This);
872 if(!This->doc_node->nsdoc) {
877 nsres = nsIDOMHTMLDocument_Close(This->doc_node->nsdoc);
878 if(NS_FAILED(nsres)) {
879 ERR("Close failed: %08x\n", nsres);
886 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
888 HTMLDocument *This = HTMLDOC_THIS(iface);
889 FIXME("(%p)\n", This);
893 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
896 HTMLDocument *This = HTMLDOC_THIS(iface);
897 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
901 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
904 HTMLDocument *This = HTMLDOC_THIS(iface);
905 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
909 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
912 HTMLDocument *This = HTMLDOC_THIS(iface);
913 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
917 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
920 HTMLDocument *This = HTMLDOC_THIS(iface);
921 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
925 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
928 HTMLDocument *This = HTMLDOC_THIS(iface);
929 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
933 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
936 HTMLDocument *This = HTMLDOC_THIS(iface);
937 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
941 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
942 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
944 HTMLDocument *This = HTMLDOC_THIS(iface);
945 FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(cmdID), showUI, pfRet);
949 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
952 HTMLDocument *This = HTMLDOC_THIS(iface);
953 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
957 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
958 IHTMLElement **newElem)
960 HTMLDocument *This = HTMLDOC_THIS(iface);
961 nsIDOMHTMLElement *nselem;
965 TRACE("(%p)->(%s %p)\n", This, debugstr_w(eTag), newElem);
967 hres = create_nselem(This->doc_node, eTag, &nselem);
971 elem = HTMLElement_Create(This->doc_node, (nsIDOMNode*)nselem, TRUE);
972 nsIDOMHTMLElement_Release(nselem);
974 *newElem = HTMLELEM(elem);
975 IHTMLElement_AddRef(HTMLELEM(elem));
979 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
981 HTMLDocument *This = HTMLDOC_THIS(iface);
982 FIXME("(%p)\n", This);
986 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
988 HTMLDocument *This = HTMLDOC_THIS(iface);
989 FIXME("(%p)->(%p)\n", This, p);
993 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
995 HTMLDocument *This = HTMLDOC_THIS(iface);
997 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
999 return set_doc_event(This, EVENTID_CLICK, &v);
1002 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
1004 HTMLDocument *This = HTMLDOC_THIS(iface);
1006 TRACE("(%p)->(%p)\n", This, p);
1008 return get_doc_event(This, EVENTID_CLICK, p);
1011 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
1013 HTMLDocument *This = HTMLDOC_THIS(iface);
1014 FIXME("(%p)\n", This);
1018 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
1020 HTMLDocument *This = HTMLDOC_THIS(iface);
1021 FIXME("(%p)->(%p)\n", This, p);
1025 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
1027 HTMLDocument *This = HTMLDOC_THIS(iface);
1029 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1031 return set_doc_event(This, EVENTID_KEYUP, &v);
1034 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
1036 HTMLDocument *This = HTMLDOC_THIS(iface);
1038 TRACE("(%p)->(%p)\n", This, p);
1040 return get_doc_event(This, EVENTID_KEYUP, p);
1043 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
1045 HTMLDocument *This = HTMLDOC_THIS(iface);
1047 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1049 return set_doc_event(This, EVENTID_KEYDOWN, &v);
1052 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
1054 HTMLDocument *This = HTMLDOC_THIS(iface);
1056 TRACE("(%p)->(%p)\n", This, p);
1058 return get_doc_event(This, EVENTID_KEYDOWN, p);
1061 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
1063 HTMLDocument *This = HTMLDOC_THIS(iface);
1064 FIXME("(%p)\n", This);
1068 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
1070 HTMLDocument *This = HTMLDOC_THIS(iface);
1071 FIXME("(%p)->(%p)\n", This, p);
1075 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
1077 HTMLDocument *This = HTMLDOC_THIS(iface);
1079 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1081 return set_doc_event(This, EVENTID_MOUSEUP, &v);
1084 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
1086 HTMLDocument *This = HTMLDOC_THIS(iface);
1088 TRACE("(%p)->(%p)\n", This, p);
1090 return get_doc_event(This, EVENTID_MOUSEUP, p);
1093 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
1095 HTMLDocument *This = HTMLDOC_THIS(iface);
1097 TRACE("(%p)->()\n", This);
1099 return set_doc_event(This, EVENTID_MOUSEDOWN, &v);
1102 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
1104 HTMLDocument *This = HTMLDOC_THIS(iface);
1106 TRACE("(%p)->(%p)\n", This, p);
1108 return get_doc_event(This, EVENTID_MOUSEDOWN, p);
1111 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
1113 HTMLDocument *This = HTMLDOC_THIS(iface);
1114 FIXME("(%p)\n", This);
1118 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
1120 HTMLDocument *This = HTMLDOC_THIS(iface);
1121 FIXME("(%p)->(%p)\n", This, p);
1125 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
1127 HTMLDocument *This = HTMLDOC_THIS(iface);
1129 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1131 return set_doc_event(This, EVENTID_MOUSEOUT, &v);
1134 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
1136 HTMLDocument *This = HTMLDOC_THIS(iface);
1138 TRACE("(%p)->(%p)\n", This, p);
1140 return get_doc_event(This, EVENTID_MOUSEOUT, p);
1143 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
1145 HTMLDocument *This = HTMLDOC_THIS(iface);
1147 TRACE("(%p)\n", This);
1149 return set_doc_event(This, EVENTID_MOUSEOVER, &v);
1152 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
1154 HTMLDocument *This = HTMLDOC_THIS(iface);
1156 TRACE("(%p)->(%p)\n", This, p);
1158 return get_doc_event(This, EVENTID_MOUSEOVER, p);
1161 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
1163 HTMLDocument *This = HTMLDOC_THIS(iface);
1165 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1167 return set_doc_event(This, EVENTID_READYSTATECHANGE, &v);
1170 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
1172 HTMLDocument *This = HTMLDOC_THIS(iface);
1174 TRACE("(%p)->(%p)\n", This, p);
1176 return get_doc_event(This, EVENTID_READYSTATECHANGE, p);
1179 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
1181 HTMLDocument *This = HTMLDOC_THIS(iface);
1182 FIXME("(%p)\n", This);
1186 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
1188 HTMLDocument *This = HTMLDOC_THIS(iface);
1189 FIXME("(%p)->(%p)\n", This, p);
1193 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
1195 HTMLDocument *This = HTMLDOC_THIS(iface);
1196 FIXME("(%p)\n", This);
1200 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
1202 HTMLDocument *This = HTMLDOC_THIS(iface);
1203 FIXME("(%p)->(%p)\n", This, p);
1207 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
1209 HTMLDocument *This = HTMLDOC_THIS(iface);
1210 FIXME("(%p)\n", This);
1214 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
1216 HTMLDocument *This = HTMLDOC_THIS(iface);
1217 FIXME("(%p)->(%p)\n", This, p);
1221 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
1223 HTMLDocument *This = HTMLDOC_THIS(iface);
1225 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1227 return set_doc_event(This, EVENTID_DRAGSTART, &v);
1230 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
1232 HTMLDocument *This = HTMLDOC_THIS(iface);
1234 TRACE("(%p)->(%p)\n", This, p);
1236 return get_doc_event(This, EVENTID_DRAGSTART, p);
1239 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
1241 HTMLDocument *This = HTMLDOC_THIS(iface);
1243 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1245 return set_doc_event(This, EVENTID_SELECTSTART, &v);
1248 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
1250 HTMLDocument *This = HTMLDOC_THIS(iface);
1252 TRACE("(%p)->(%p)\n", This, p);
1254 return get_doc_event(This, EVENTID_SELECTSTART, p);
1257 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, LONG x, LONG y,
1258 IHTMLElement **elementHit)
1260 HTMLDocument *This = HTMLDOC_THIS(iface);
1261 FIXME("(%p)->(%d %d %p)\n", This, x, y, elementHit);
1265 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
1267 HTMLDocument *This = HTMLDOC_THIS(iface);
1269 TRACE("(%p)->(%p)\n", This, p);
1271 *p = HTMLWINDOW2(This->window);
1272 IHTMLWindow2_AddRef(*p);
1276 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
1277 IHTMLStyleSheetsCollection **p)
1279 HTMLDocument *This = HTMLDOC_THIS(iface);
1280 nsIDOMStyleSheetList *nsstylelist;
1281 nsIDOMDocumentStyle *nsdocstyle;
1284 TRACE("(%p)->(%p)\n", This, p);
1288 if(!This->doc_node->nsdoc) {
1289 WARN("NULL nsdoc\n");
1290 return E_UNEXPECTED;
1293 nsIDOMHTMLDocument_QueryInterface(This->doc_node->nsdoc, &IID_nsIDOMDocumentStyle, (void**)&nsdocstyle);
1294 nsres = nsIDOMDocumentStyle_GetStyleSheets(nsdocstyle, &nsstylelist);
1295 nsIDOMDocumentStyle_Release(nsdocstyle);
1296 if(NS_FAILED(nsres)) {
1297 ERR("GetStyleSheets failed: %08x\n", nsres);
1301 *p = HTMLStyleSheetsCollection_Create(nsstylelist);
1302 nsIDOMDocumentStyle_Release(nsstylelist);
1307 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
1309 HTMLDocument *This = HTMLDOC_THIS(iface);
1310 FIXME("(%p)\n", This);
1314 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
1316 HTMLDocument *This = HTMLDOC_THIS(iface);
1317 FIXME("(%p)->(%p)\n", This, p);
1321 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
1323 HTMLDocument *This = HTMLDOC_THIS(iface);
1324 FIXME("(%p)\n", This);
1328 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
1330 HTMLDocument *This = HTMLDOC_THIS(iface);
1331 FIXME("(%p)->(%p)\n", This, p);
1335 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
1337 HTMLDocument *This = HTMLDOC_THIS(iface);
1338 FIXME("(%p)->(%p)\n", This, String);
1342 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
1343 LONG lIndex, IHTMLStyleSheet **ppnewStyleSheet)
1345 HTMLDocument *This = HTMLDOC_THIS(iface);
1347 FIXME("(%p)->(%s %d %p) semi-stub\n", This, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
1349 *ppnewStyleSheet = HTMLStyleSheet_Create(NULL);
1353 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
1354 HTMLDocument_QueryInterface,
1355 HTMLDocument_AddRef,
1356 HTMLDocument_Release,
1357 HTMLDocument_GetTypeInfoCount,
1358 HTMLDocument_GetTypeInfo,
1359 HTMLDocument_GetIDsOfNames,
1360 HTMLDocument_Invoke,
1361 HTMLDocument_get_Script,
1362 HTMLDocument_get_all,
1363 HTMLDocument_get_body,
1364 HTMLDocument_get_activeElement,
1365 HTMLDocument_get_images,
1366 HTMLDocument_get_applets,
1367 HTMLDocument_get_links,
1368 HTMLDocument_get_forms,
1369 HTMLDocument_get_anchors,
1370 HTMLDocument_put_title,
1371 HTMLDocument_get_title,
1372 HTMLDocument_get_scripts,
1373 HTMLDocument_put_designMode,
1374 HTMLDocument_get_designMode,
1375 HTMLDocument_get_selection,
1376 HTMLDocument_get_readyState,
1377 HTMLDocument_get_frames,
1378 HTMLDocument_get_embeds,
1379 HTMLDocument_get_plugins,
1380 HTMLDocument_put_alinkColor,
1381 HTMLDocument_get_alinkColor,
1382 HTMLDocument_put_bgColor,
1383 HTMLDocument_get_bgColor,
1384 HTMLDocument_put_fgColor,
1385 HTMLDocument_get_fgColor,
1386 HTMLDocument_put_linkColor,
1387 HTMLDocument_get_linkColor,
1388 HTMLDocument_put_vlinkColor,
1389 HTMLDocument_get_vlinkColor,
1390 HTMLDocument_get_referrer,
1391 HTMLDocument_get_location,
1392 HTMLDocument_get_lastModified,
1393 HTMLDocument_put_URL,
1394 HTMLDocument_get_URL,
1395 HTMLDocument_put_domain,
1396 HTMLDocument_get_domain,
1397 HTMLDocument_put_cookie,
1398 HTMLDocument_get_cookie,
1399 HTMLDocument_put_expando,
1400 HTMLDocument_get_expando,
1401 HTMLDocument_put_charset,
1402 HTMLDocument_get_charset,
1403 HTMLDocument_put_defaultCharset,
1404 HTMLDocument_get_defaultCharset,
1405 HTMLDocument_get_mimeType,
1406 HTMLDocument_get_fileSize,
1407 HTMLDocument_get_fileCreatedDate,
1408 HTMLDocument_get_fileModifiedDate,
1409 HTMLDocument_get_fileUpdatedDate,
1410 HTMLDocument_get_security,
1411 HTMLDocument_get_protocol,
1412 HTMLDocument_get_nameProp,
1414 HTMLDocument_writeln,
1418 HTMLDocument_queryCommandSupported,
1419 HTMLDocument_queryCommandEnabled,
1420 HTMLDocument_queryCommandState,
1421 HTMLDocument_queryCommandIndeterm,
1422 HTMLDocument_queryCommandText,
1423 HTMLDocument_queryCommandValue,
1424 HTMLDocument_execCommand,
1425 HTMLDocument_execCommandShowHelp,
1426 HTMLDocument_createElement,
1427 HTMLDocument_put_onhelp,
1428 HTMLDocument_get_onhelp,
1429 HTMLDocument_put_onclick,
1430 HTMLDocument_get_onclick,
1431 HTMLDocument_put_ondblclick,
1432 HTMLDocument_get_ondblclick,
1433 HTMLDocument_put_onkeyup,
1434 HTMLDocument_get_onkeyup,
1435 HTMLDocument_put_onkeydown,
1436 HTMLDocument_get_onkeydown,
1437 HTMLDocument_put_onkeypress,
1438 HTMLDocument_get_onkeypress,
1439 HTMLDocument_put_onmouseup,
1440 HTMLDocument_get_onmouseup,
1441 HTMLDocument_put_onmousedown,
1442 HTMLDocument_get_onmousedown,
1443 HTMLDocument_put_onmousemove,
1444 HTMLDocument_get_onmousemove,
1445 HTMLDocument_put_onmouseout,
1446 HTMLDocument_get_onmouseout,
1447 HTMLDocument_put_onmouseover,
1448 HTMLDocument_get_onmouseover,
1449 HTMLDocument_put_onreadystatechange,
1450 HTMLDocument_get_onreadystatechange,
1451 HTMLDocument_put_onafterupdate,
1452 HTMLDocument_get_onafterupdate,
1453 HTMLDocument_put_onrowexit,
1454 HTMLDocument_get_onrowexit,
1455 HTMLDocument_put_onrowenter,
1456 HTMLDocument_get_onrowenter,
1457 HTMLDocument_put_ondragstart,
1458 HTMLDocument_get_ondragstart,
1459 HTMLDocument_put_onselectstart,
1460 HTMLDocument_get_onselectstart,
1461 HTMLDocument_elementFromPoint,
1462 HTMLDocument_get_parentWindow,
1463 HTMLDocument_get_styleSheets,
1464 HTMLDocument_put_onbeforeupdate,
1465 HTMLDocument_get_onbeforeupdate,
1466 HTMLDocument_put_onerrorupdate,
1467 HTMLDocument_get_onerrorupdate,
1468 HTMLDocument_toString,
1469 HTMLDocument_createStyleSheet
1472 static void HTMLDocument_on_advise(IUnknown *iface, cp_static_data_t *cp)
1474 HTMLDocument *This = HTMLDOC_THIS(iface);
1477 update_cp_events(This->window, cp);
1482 #define SUPPINFO_THIS(iface) DEFINE_THIS(HTMLDocument, SupportErrorInfo, iface)
1484 static HRESULT WINAPI SupportErrorInfo_QueryInterface(ISupportErrorInfo *iface, REFIID riid, void **ppv)
1486 HTMLDocument *This = SUPPINFO_THIS(iface);
1487 return IHTMLDocument_QueryInterface(HTMLDOC(This), riid, ppv);
1490 static ULONG WINAPI SupportErrorInfo_AddRef(ISupportErrorInfo *iface)
1492 HTMLDocument *This = SUPPINFO_THIS(iface);
1493 return IHTMLDocument_AddRef(HTMLDOC(This));
1496 static ULONG WINAPI SupportErrorInfo_Release(ISupportErrorInfo *iface)
1498 HTMLDocument *This = SUPPINFO_THIS(iface);
1499 return IHTMLDocument_Release(HTMLDOC(This));
1502 static HRESULT WINAPI SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorInfo *iface, REFIID riid)
1504 FIXME("(%p)->(%s)\n", iface, debugstr_guid(riid));
1508 static const ISupportErrorInfoVtbl SupportErrorInfoVtbl = {
1509 SupportErrorInfo_QueryInterface,
1510 SupportErrorInfo_AddRef,
1511 SupportErrorInfo_Release,
1512 SupportErrorInfo_InterfaceSupportsErrorInfo
1515 #define DISPEX_THIS(iface) DEFINE_THIS(HTMLDocument, IDispatchEx, iface)
1517 static HRESULT WINAPI DocDispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
1519 HTMLDocument *This = DISPEX_THIS(iface);
1521 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
1524 static ULONG WINAPI DocDispatchEx_AddRef(IDispatchEx *iface)
1526 HTMLDocument *This = DISPEX_THIS(iface);
1528 return IHTMLDocument2_AddRef(HTMLDOC(This));
1531 static ULONG WINAPI DocDispatchEx_Release(IDispatchEx *iface)
1533 HTMLDocument *This = DISPEX_THIS(iface);
1535 return IHTMLDocument2_Release(HTMLDOC(This));
1538 static HRESULT WINAPI DocDispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
1540 HTMLDocument *This = DISPEX_THIS(iface);
1542 return IDispatchEx_GetTypeInfoCount(This->dispex, pctinfo);
1545 static HRESULT WINAPI DocDispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
1546 LCID lcid, ITypeInfo **ppTInfo)
1548 HTMLDocument *This = DISPEX_THIS(iface);
1550 return IDispatchEx_GetTypeInfo(This->dispex, iTInfo, lcid, ppTInfo);
1553 static HRESULT WINAPI DocDispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
1554 LPOLESTR *rgszNames, UINT cNames,
1555 LCID lcid, DISPID *rgDispId)
1557 HTMLDocument *This = DISPEX_THIS(iface);
1559 return IDispatchEx_GetIDsOfNames(This->dispex, riid, rgszNames, cNames, lcid, rgDispId);
1562 static HRESULT WINAPI DocDispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
1563 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
1564 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
1566 HTMLDocument *This = DISPEX_THIS(iface);
1568 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1569 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1571 switch(dispIdMember) {
1572 case DISPID_READYSTATE:
1573 TRACE("DISPID_READYSTATE\n");
1575 if(!(wFlags & DISPATCH_PROPERTYGET))
1576 return E_INVALIDARG;
1578 V_VT(pVarResult) = VT_I4;
1579 V_I4(pVarResult) = This->window->readystate;
1583 return IDispatchEx_Invoke(This->dispex, dispIdMember, riid, lcid, wFlags, pDispParams,
1584 pVarResult, pExcepInfo, puArgErr);
1587 static HRESULT WINAPI DocDispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
1589 HTMLDocument *This = DISPEX_THIS(iface);
1591 return IDispatchEx_GetDispID(This->dispex, bstrName, grfdex, pid);
1594 static HRESULT WINAPI DocDispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
1595 VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
1597 HTMLDocument *This = DISPEX_THIS(iface);
1599 return IDispatchEx_InvokeEx(This->dispex, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
1602 static HRESULT WINAPI DocDispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
1604 HTMLDocument *This = DISPEX_THIS(iface);
1606 return IDispatchEx_DeleteMemberByName(This->dispex, bstrName, grfdex);
1609 static HRESULT WINAPI DocDispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
1611 HTMLDocument *This = DISPEX_THIS(iface);
1613 return IDispatchEx_DeleteMemberByDispID(This->dispex, id);
1616 static HRESULT WINAPI DocDispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
1618 HTMLDocument *This = DISPEX_THIS(iface);
1620 return IDispatchEx_GetMemberProperties(This->dispex, id, grfdexFetch, pgrfdex);
1623 static HRESULT WINAPI DocDispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
1625 HTMLDocument *This = DISPEX_THIS(iface);
1627 return IDispatchEx_GetMemberName(This->dispex, id, pbstrName);
1630 static HRESULT WINAPI DocDispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
1632 HTMLDocument *This = DISPEX_THIS(iface);
1634 return IDispatchEx_GetNextDispID(This->dispex, grfdex, id, pid);
1637 static HRESULT WINAPI DocDispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
1639 HTMLDocument *This = DISPEX_THIS(iface);
1641 return IDispatchEx_GetNameSpaceParent(This->dispex, ppunk);
1646 static const IDispatchExVtbl DocDispatchExVtbl = {
1647 DocDispatchEx_QueryInterface,
1648 DocDispatchEx_AddRef,
1649 DocDispatchEx_Release,
1650 DocDispatchEx_GetTypeInfoCount,
1651 DocDispatchEx_GetTypeInfo,
1652 DocDispatchEx_GetIDsOfNames,
1653 DocDispatchEx_Invoke,
1654 DocDispatchEx_GetDispID,
1655 DocDispatchEx_InvokeEx,
1656 DocDispatchEx_DeleteMemberByName,
1657 DocDispatchEx_DeleteMemberByDispID,
1658 DocDispatchEx_GetMemberProperties,
1659 DocDispatchEx_GetMemberName,
1660 DocDispatchEx_GetNextDispID,
1661 DocDispatchEx_GetNameSpaceParent
1664 static BOOL htmldoc_qi(HTMLDocument *This, REFIID riid, void **ppv)
1668 if(IsEqualGUID(&IID_IUnknown, riid)) {
1669 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppv);
1670 *ppv = HTMLDOC(This);
1671 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
1672 TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppv);
1673 *ppv = DISPATCHEX(This);
1674 }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
1675 TRACE("(%p)->(IID_IDispatchEx, %p)\n", This, ppv);
1676 *ppv = DISPATCHEX(This);
1677 }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
1678 TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppv);
1679 *ppv = HTMLDOC(This);
1680 }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
1681 TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppv);
1682 *ppv = HTMLDOC(This);
1683 }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
1684 TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppv);
1685 *ppv = HTMLDOC3(This);
1686 }else if(IsEqualGUID(&IID_IHTMLDocument4, riid)) {
1687 TRACE("(%p)->(IID_IHTMLDocument4, %p)\n", This, ppv);
1688 *ppv = HTMLDOC4(This);
1689 }else if(IsEqualGUID(&IID_IHTMLDocument5, riid)) {
1690 TRACE("(%p)->(IID_IHTMLDocument5, %p)\n", This, ppv);
1691 *ppv = HTMLDOC5(This);
1692 }else if(IsEqualGUID(&IID_IHTMLDocument6, riid)) {
1693 TRACE("(%p)->(IID_IHTMLDocument6, %p)\n", This, ppv);
1694 *ppv = HTMLDOC6(This);
1695 }else if(IsEqualGUID(&IID_IPersist, riid)) {
1696 TRACE("(%p)->(IID_IPersist, %p)\n", This, ppv);
1697 *ppv = PERSIST(This);
1698 }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
1699 TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppv);
1700 *ppv = PERSISTMON(This);
1701 }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
1702 TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppv);
1703 *ppv = PERSISTFILE(This);
1704 }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
1705 TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppv);
1706 *ppv = MONPROP(This);
1707 }else if(IsEqualGUID(&IID_IOleObject, riid)) {
1708 TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppv);
1709 *ppv = OLEOBJ(This);
1710 }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
1711 TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppv);
1712 *ppv = OLEDOC(This);
1713 }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
1714 TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppv);
1715 *ppv = DOCVIEW(This);
1716 }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
1717 TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppv);
1718 *ppv = ACTOBJ(This);
1719 }else if(IsEqualGUID(&IID_IViewObject, riid)) {
1720 TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppv);
1721 *ppv = VIEWOBJ(This);
1722 }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
1723 TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppv);
1724 *ppv = VIEWOBJ2(This);
1725 }else if(IsEqualGUID(&IID_IViewObjectEx, riid)) {
1726 TRACE("(%p)->(IID_IViewObjectEx, %p)\n", This, ppv);
1727 *ppv = VIEWOBJEX(This);
1728 }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
1729 TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppv);
1730 *ppv = OLEWIN(This);
1731 }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
1732 TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppv);
1733 *ppv = INPLACEOBJ(This);
1734 }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
1735 TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppv);
1736 *ppv = INPLACEWIN(This);
1737 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
1738 TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppv);
1739 *ppv = SERVPROV(This);
1740 }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
1741 TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppv);
1742 *ppv = CMDTARGET(This);
1743 }else if(IsEqualGUID(&IID_IOleControl, riid)) {
1744 TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppv);
1745 *ppv = CONTROL(This);
1746 }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
1747 TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppv);
1748 *ppv = HLNKTARGET(This);
1749 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
1750 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
1751 *ppv = CONPTCONT(&This->cp_container);
1752 }else if(IsEqualGUID(&IID_IPersistStreamInit, riid)) {
1753 TRACE("(%p)->(IID_IPersistStreamInit %p)\n", This, ppv);
1754 *ppv = PERSTRINIT(This);
1755 }else if(IsEqualGUID(&DIID_DispHTMLDocument, riid)) {
1756 TRACE("(%p)->(DIID_DispHTMLDocument %p)\n", This, ppv);
1757 *ppv = HTMLDOC(This);
1758 }else if(IsEqualGUID(&IID_ISupportErrorInfo, riid)) {
1759 TRACE("(%p)->(IID_ISupportErrorInfo %p)\n", This, ppv);
1760 *ppv = SUPPERRINFO(This);
1761 }else if(IsEqualGUID(&IID_IPersistHistory, riid)) {
1762 TRACE("(%p)->(IID_IPersistHistory %p)\n", This, ppv);
1763 *ppv = PERSISTHIST(This);
1764 }else if(IsEqualGUID(&CLSID_CMarkup, riid)) {
1765 FIXME("(%p)->(CLSID_CMarkup %p)\n", This, ppv);
1767 }else if(IsEqualGUID(&IID_IRunnableObject, riid)) {
1768 TRACE("(%p)->(IID_IRunnableObject %p) returning NULL\n", This, ppv);
1770 }else if(IsEqualGUID(&IID_IPersistPropertyBag, riid)) {
1771 TRACE("(%p)->(IID_IPersistPropertyBag %p) returning NULL\n", This, ppv);
1773 }else if(IsEqualGUID(&IID_IMarshal, riid)) {
1774 TRACE("(%p)->(IID_IMarshal %p) returning NULL\n", This, ppv);
1776 }else if(IsEqualGUID(&IID_IObjectWithSite, riid)) {
1777 TRACE("(%p)->(IID_IObjectWithSite %p)\n", This, ppv);
1778 *ppv = OBJSITE(This);
1784 IUnknown_AddRef((IUnknown*)*ppv);
1788 static cp_static_data_t HTMLDocumentEvents_data = { HTMLDocumentEvents_tid, HTMLDocument_on_advise };
1790 static void init_doc(HTMLDocument *doc, IUnknown *unk_impl, IDispatchEx *dispex)
1792 doc->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
1793 doc->lpIDispatchExVtbl = &DocDispatchExVtbl;
1794 doc->lpSupportErrorInfoVtbl = &SupportErrorInfoVtbl;
1796 doc->unk_impl = unk_impl;
1797 doc->dispex = dispex;
1798 doc->task_magic = get_task_target_magic();
1800 HTMLDocument_HTMLDocument3_Init(doc);
1801 HTMLDocument_HTMLDocument5_Init(doc);
1802 HTMLDocument_Persist_Init(doc);
1803 HTMLDocument_OleCmd_Init(doc);
1804 HTMLDocument_OleObj_Init(doc);
1805 HTMLDocument_View_Init(doc);
1806 HTMLDocument_Window_Init(doc);
1807 HTMLDocument_Service_Init(doc);
1808 HTMLDocument_Hlink_Init(doc);
1810 ConnectionPointContainer_Init(&doc->cp_container, (IUnknown*)HTMLDOC(doc));
1811 ConnectionPoint_Init(&doc->cp_dispatch, &doc->cp_container, &IID_IDispatch, NULL);
1812 ConnectionPoint_Init(&doc->cp_propnotif, &doc->cp_container, &IID_IPropertyNotifySink, NULL);
1813 ConnectionPoint_Init(&doc->cp_htmldocevents, &doc->cp_container, &DIID_HTMLDocumentEvents, &HTMLDocumentEvents_data);
1814 ConnectionPoint_Init(&doc->cp_htmldocevents2, &doc->cp_container, &DIID_HTMLDocumentEvents2, NULL);
1817 static void destroy_htmldoc(HTMLDocument *This)
1819 remove_target_tasks(This->task_magic);
1821 ConnectionPointContainer_Destroy(&This->cp_container);
1824 #define HTMLDOCNODE_NODE_THIS(iface) DEFINE_THIS2(HTMLDocumentNode, node, iface)
1826 static HRESULT HTMLDocumentNode_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
1828 HTMLDocumentNode *This = HTMLDOCNODE_NODE_THIS(iface);
1830 if(htmldoc_qi(&This->basedoc, riid, ppv))
1831 return *ppv ? S_OK : E_NOINTERFACE;
1833 if(IsEqualGUID(&IID_IInternetHostSecurityManager, riid)) {
1834 TRACE("(%p)->(IID_IInternetHostSecurityManager %p)\n", This, ppv);
1835 *ppv = HOSTSECMGR(This);
1837 return HTMLDOMNode_QI(&This->node, riid, ppv);
1840 IUnknown_AddRef((IUnknown*)*ppv);
1844 static void HTMLDocumentNode_destructor(HTMLDOMNode *iface)
1846 HTMLDocumentNode *This = HTMLDOCNODE_NODE_THIS(iface);
1848 if(This->body_event_target)
1849 release_event_target(This->body_event_target);
1850 if(This->nsevent_listener)
1851 release_nsevents(This);
1853 ICatInformation_Release(This->catmgr);
1855 IInternetSecurityManager_Release(This->secmgr);
1857 detach_selection(This);
1858 detach_ranges(This);
1859 release_nodes(This);
1862 release_mutation(This);
1863 nsIDOMHTMLDocument_Release(This->nsdoc);
1866 heap_free(This->event_vector);
1867 destroy_htmldoc(&This->basedoc);
1870 #undef HTMLDOCNODE_NODE_THIS
1872 static const NodeImplVtbl HTMLDocumentNodeImplVtbl = {
1873 HTMLDocumentNode_QI,
1874 HTMLDocumentNode_destructor
1877 static const tid_t HTMLDocumentNode_iface_tids[] = {
1887 static dispex_static_data_t HTMLDocumentNode_dispex = {
1889 DispHTMLDocument_tid,
1891 HTMLDocumentNode_iface_tids
1894 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument *nsdoc, HTMLDocumentObj *doc_obj, HTMLWindow *window, HTMLDocumentNode **ret)
1896 HTMLDocumentNode *doc;
1899 doc = heap_alloc_zero(sizeof(HTMLDocumentNode));
1901 return E_OUTOFMEMORY;
1903 doc->basedoc.doc_node = doc;
1904 doc->basedoc.doc_obj = doc_obj;
1906 init_dispex(&doc->node.dispex, (IUnknown*)HTMLDOMNODE(&doc->node), &HTMLDocumentNode_dispex);
1907 init_doc(&doc->basedoc, (IUnknown*)HTMLDOMNODE(&doc->node), DISPATCHEX(&doc->node.dispex));
1908 HTMLDocumentNode_SecMgr_Init(doc);
1911 doc->basedoc.window = window;
1912 if(window == doc_obj->basedoc.window)
1913 doc->basedoc.cp_container.forward_container = &doc_obj->basedoc.cp_container;
1915 nsIDOMHTMLDocument_AddRef(nsdoc);
1920 list_init(&doc->bindings);
1921 list_init(&doc->selection_list);
1922 list_init(&doc->range_list);
1924 HTMLDOMNode_Init(doc, &doc->node, (nsIDOMNode*)nsdoc);
1925 doc->node.vtbl = &HTMLDocumentNodeImplVtbl;
1926 doc->node.cp_container = &doc->basedoc.cp_container;
1928 hres = CoInternetCreateSecurityManager(NULL, &doc->secmgr, 0);
1930 htmldoc_release(&doc->basedoc);
1938 /**********************************************************
1939 * ICustomDoc implementation
1942 #define CUSTOMDOC_THIS(iface) DEFINE_THIS(HTMLDocumentObj, CustomDoc, iface)
1944 static HRESULT WINAPI CustomDoc_QueryInterface(ICustomDoc *iface, REFIID riid, void **ppv)
1946 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1948 if(htmldoc_qi(&This->basedoc, riid, ppv))
1949 return *ppv ? S_OK : E_NOINTERFACE;
1951 if(IsEqualGUID(&IID_ICustomDoc, riid)) {
1952 TRACE("(%p)->(IID_ICustomDoc %p)\n", This, ppv);
1953 *ppv = CUSTOMDOC(This);
1954 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
1955 return *ppv ? S_OK : E_NOINTERFACE;
1957 FIXME("Unimplemented interface %s\n", debugstr_guid(riid));
1959 return E_NOINTERFACE;
1962 IUnknown_AddRef((IUnknown*)*ppv);
1966 static ULONG WINAPI CustomDoc_AddRef(ICustomDoc *iface)
1968 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1969 ULONG ref = InterlockedIncrement(&This->ref);
1971 TRACE("(%p) ref = %u\n", This, ref);
1976 static ULONG WINAPI CustomDoc_Release(ICustomDoc *iface)
1978 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
1979 ULONG ref = InterlockedDecrement(&This->ref);
1981 TRACE("(%p) ref = %u\n", This, ref);
1984 if(This->basedoc.doc_node) {
1985 This->basedoc.doc_node->basedoc.doc_obj = NULL;
1986 IHTMLDocument2_Release(HTMLDOC(&This->basedoc.doc_node->basedoc));
1988 if(This->basedoc.window) {
1989 This->basedoc.window->doc_obj = NULL;
1990 IHTMLWindow2_Release(HTMLWINDOW2(This->basedoc.window));
1992 if(This->basedoc.advise_holder)
1993 IOleAdviseHolder_Release(This->basedoc.advise_holder);
1996 IOleObject_SetClientSite(OLEOBJ(&This->basedoc), NULL);
1997 if(This->in_place_active)
1998 IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(&This->basedoc));
2000 IOleDocumentView_SetInPlaceSite(DOCVIEW(&This->basedoc), NULL);
2002 IOleUndoManager_Release(This->undomgr);
2003 if(This->tooltips_hwnd)
2004 DestroyWindow(This->tooltips_hwnd);
2007 DestroyWindow(This->hwnd);
2008 heap_free(This->mime);
2010 destroy_htmldoc(&This->basedoc);
2011 release_dispex(&This->dispex);
2013 if(This->nscontainer)
2014 NSContainer_Release(This->nscontainer);
2021 static HRESULT WINAPI CustomDoc_SetUIHandler(ICustomDoc *iface, IDocHostUIHandler *pUIHandler)
2023 HTMLDocumentObj *This = CUSTOMDOC_THIS(iface);
2024 FIXME("(%p)->(%p)\n", This, pUIHandler);
2028 #undef CUSTOMDOC_THIS
2030 static const ICustomDocVtbl CustomDocVtbl = {
2031 CustomDoc_QueryInterface,
2034 CustomDoc_SetUIHandler
2037 static const tid_t HTMLDocumentObj_iface_tids[] = {
2044 static dispex_static_data_t HTMLDocumentObj_dispex = {
2046 DispHTMLDocument_tid,
2048 HTMLDocumentObj_iface_tids
2051 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
2053 HTMLDocumentObj *doc;
2054 nsIDOMWindow *nswindow = NULL;
2058 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
2060 doc = heap_alloc_zero(sizeof(HTMLDocumentObj));
2062 return E_OUTOFMEMORY;
2064 init_dispex(&doc->dispex, (IUnknown*)CUSTOMDOC(doc), &HTMLDocumentObj_dispex);
2065 init_doc(&doc->basedoc, (IUnknown*)CUSTOMDOC(doc), DISPATCHEX(&doc->dispex));
2067 doc->lpCustomDocVtbl = &CustomDocVtbl;
2069 doc->basedoc.doc_obj = doc;
2071 doc->usermode = UNKNOWN_USERMODE;
2073 doc->nscontainer = NSContainer_Create(doc, NULL);
2074 if(!doc->nscontainer) {
2075 ERR("Failed to init Gecko, returning CLASS_E_CLASSNOTAVAILABLE\n");
2076 htmldoc_release(&doc->basedoc);
2077 return CLASS_E_CLASSNOTAVAILABLE;
2080 hres = htmldoc_query_interface(&doc->basedoc, riid, ppvObject);
2081 htmldoc_release(&doc->basedoc);
2086 nsres = nsIWebBrowser_GetContentDOMWindow(doc->nscontainer->webbrowser, &nswindow);
2087 if(NS_FAILED(nsres))
2088 ERR("GetContentDOMWindow failed: %08x\n", nsres);
2090 hres = HTMLWindow_Create(doc, nswindow, NULL /* FIXME */, &doc->basedoc.window);
2092 nsIDOMWindow_Release(nswindow);
2094 IHTMLDocument_Release(HTMLDOC(&doc->basedoc));
2098 if(!doc->basedoc.doc_node && doc->basedoc.window->doc) {
2099 doc->basedoc.doc_node = doc->basedoc.window->doc;
2100 htmldoc_addref(&doc->basedoc.doc_node->basedoc);