inetcpl.cpl: Minor fix, remove useless code.
[wine.git] / dlls / mshtml / htmldoc.c
blob7168bab7643a1ccf301b3eeebcb31d99301e8022
1 /*
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
19 #include "config.h"
21 #include <stdarg.h>
22 #include <stdio.h>
23 #include <assert.h>
25 #define COBJMACROS
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winuser.h"
30 #include "wininet.h"
31 #include "ole2.h"
32 #include "perhist.h"
33 #include "mshtmdid.h"
35 #include "wine/debug.h"
37 #include "mshtml_private.h"
38 #include "htmlevent.h"
39 #include "pluginhost.h"
40 #include "binding.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
44 static inline HTMLDocument *impl_from_IHTMLDocument2(IHTMLDocument2 *iface)
46 return CONTAINING_RECORD(iface, HTMLDocument, IHTMLDocument2_iface);
49 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppv)
51 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
53 return htmldoc_query_interface(This, riid, ppv);
56 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
58 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
60 return htmldoc_addref(This);
63 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
65 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
67 return htmldoc_release(This);
70 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
72 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
74 return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
77 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
78 LCID lcid, ITypeInfo **ppTInfo)
80 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
82 return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
85 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
86 LPOLESTR *rgszNames, UINT cNames,
87 LCID lcid, DISPID *rgDispId)
89 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
91 return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
92 rgDispId);
95 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
96 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
97 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
99 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
101 return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
102 pDispParams, pVarResult, pExcepInfo, puArgErr);
105 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
107 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
109 TRACE("(%p)->(%p)\n", This, p);
111 *p = (IDispatch*)&This->window->base.IHTMLWindow2_iface;
112 IDispatch_AddRef(*p);
113 return S_OK;
116 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
118 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
119 nsIDOMElement *nselem = NULL;
120 HTMLDOMNode *node;
121 nsresult nsres;
122 HRESULT hres;
124 TRACE("(%p)->(%p)\n", This, p);
126 if(!This->doc_node->nsdoc) {
127 WARN("NULL nsdoc\n");
128 return E_UNEXPECTED;
131 nsres = nsIDOMHTMLDocument_GetDocumentElement(This->doc_node->nsdoc, &nselem);
132 if(NS_FAILED(nsres)) {
133 ERR("GetDocumentElement failed: %08x\n", nsres);
134 return E_FAIL;
137 if(!nselem) {
138 *p = NULL;
139 return S_OK;
142 hres = get_node(This->doc_node, (nsIDOMNode*)nselem, TRUE, &node);
143 nsIDOMElement_Release(nselem);
144 if(FAILED(hres))
145 return hres;
147 *p = create_all_collection(node, TRUE);
148 node_release(node);
149 return hres;
152 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
154 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
155 nsIDOMHTMLElement *nsbody = NULL;
156 HTMLDOMNode *node;
157 HRESULT hres;
159 TRACE("(%p)->(%p)\n", This, p);
161 if(This->doc_node->nsdoc) {
162 nsresult nsres;
164 nsres = nsIDOMHTMLDocument_GetBody(This->doc_node->nsdoc, &nsbody);
165 if(NS_FAILED(nsres)) {
166 TRACE("Could not get body: %08x\n", nsres);
167 return E_UNEXPECTED;
171 if(!nsbody) {
172 *p = NULL;
173 return S_OK;
176 hres = get_node(This->doc_node, (nsIDOMNode*)nsbody, TRUE, &node);
177 nsIDOMHTMLElement_Release(nsbody);
178 if(FAILED(hres))
179 return hres;
181 hres = IHTMLDOMNode_QueryInterface(&node->IHTMLDOMNode_iface, &IID_IHTMLElement, (void**)p);
182 node_release(node);
183 return hres;
186 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
188 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
189 FIXME("(%p)->(%p)\n", This, p);
190 return E_NOTIMPL;
193 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
195 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
196 nsIDOMHTMLCollection *nscoll = NULL;
197 nsresult nsres;
199 TRACE("(%p)->(%p)\n", This, p);
201 if(!p)
202 return E_INVALIDARG;
204 *p = NULL;
206 if(!This->doc_node->nsdoc) {
207 WARN("NULL nsdoc\n");
208 return E_UNEXPECTED;
211 nsres = nsIDOMHTMLDocument_GetImages(This->doc_node->nsdoc, &nscoll);
212 if(NS_FAILED(nsres)) {
213 ERR("GetImages failed: %08x\n", nsres);
214 return E_FAIL;
217 if(nscoll) {
218 *p = create_collection_from_htmlcol(This->doc_node, nscoll);
219 nsIDOMHTMLCollection_Release(nscoll);
222 return S_OK;
225 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
227 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
228 nsIDOMHTMLCollection *nscoll = NULL;
229 nsresult nsres;
231 TRACE("(%p)->(%p)\n", This, p);
233 if(!p)
234 return E_INVALIDARG;
236 *p = NULL;
238 if(!This->doc_node->nsdoc) {
239 WARN("NULL nsdoc\n");
240 return E_UNEXPECTED;
243 nsres = nsIDOMHTMLDocument_GetApplets(This->doc_node->nsdoc, &nscoll);
244 if(NS_FAILED(nsres)) {
245 ERR("GetApplets failed: %08x\n", nsres);
246 return E_FAIL;
249 if(nscoll) {
250 *p = create_collection_from_htmlcol(This->doc_node, nscoll);
251 nsIDOMHTMLCollection_Release(nscoll);
254 return S_OK;
257 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
259 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
260 nsIDOMHTMLCollection *nscoll = NULL;
261 nsresult nsres;
263 TRACE("(%p)->(%p)\n", This, p);
265 if(!p)
266 return E_INVALIDARG;
268 *p = NULL;
270 if(!This->doc_node->nsdoc) {
271 WARN("NULL nsdoc\n");
272 return E_UNEXPECTED;
275 nsres = nsIDOMHTMLDocument_GetLinks(This->doc_node->nsdoc, &nscoll);
276 if(NS_FAILED(nsres)) {
277 ERR("GetLinks failed: %08x\n", nsres);
278 return E_FAIL;
281 if(nscoll) {
282 *p = create_collection_from_htmlcol(This->doc_node, nscoll);
283 nsIDOMHTMLCollection_Release(nscoll);
286 return S_OK;
289 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
291 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
292 nsIDOMHTMLCollection *nscoll = NULL;
293 nsresult nsres;
295 TRACE("(%p)->(%p)\n", This, p);
297 if(!p)
298 return E_INVALIDARG;
300 *p = NULL;
302 if(!This->doc_node->nsdoc) {
303 WARN("NULL nsdoc\n");
304 return E_UNEXPECTED;
307 nsres = nsIDOMHTMLDocument_GetForms(This->doc_node->nsdoc, &nscoll);
308 if(NS_FAILED(nsres)) {
309 ERR("GetForms failed: %08x\n", nsres);
310 return E_FAIL;
313 if(nscoll) {
314 *p = create_collection_from_htmlcol(This->doc_node, nscoll);
315 nsIDOMHTMLCollection_Release(nscoll);
318 return S_OK;
321 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
323 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
324 nsIDOMHTMLCollection *nscoll = NULL;
325 nsresult nsres;
327 TRACE("(%p)->(%p)\n", This, p);
329 if(!p)
330 return E_INVALIDARG;
332 *p = NULL;
334 if(!This->doc_node->nsdoc) {
335 WARN("NULL nsdoc\n");
336 return E_UNEXPECTED;
339 nsres = nsIDOMHTMLDocument_GetAnchors(This->doc_node->nsdoc, &nscoll);
340 if(NS_FAILED(nsres)) {
341 ERR("GetAnchors failed: %08x\n", nsres);
342 return E_FAIL;
345 if(nscoll) {
346 *p = create_collection_from_htmlcol(This->doc_node, nscoll);
347 nsIDOMHTMLCollection_Release(nscoll);
350 return S_OK;
353 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
355 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
356 nsAString nsstr;
357 nsresult nsres;
359 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
361 if(!This->doc_node->nsdoc) {
362 WARN("NULL nsdoc\n");
363 return E_UNEXPECTED;
366 nsAString_InitDepend(&nsstr, v);
367 nsres = nsIDOMHTMLDocument_SetTitle(This->doc_node->nsdoc, &nsstr);
368 nsAString_Finish(&nsstr);
369 if(NS_FAILED(nsres))
370 ERR("SetTitle failed: %08x\n", nsres);
372 return S_OK;
375 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
377 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
378 const PRUnichar *ret;
379 nsAString nsstr;
380 nsresult nsres;
382 TRACE("(%p)->(%p)\n", This, p);
384 if(!This->doc_node->nsdoc) {
385 WARN("NULL nsdoc\n");
386 return E_UNEXPECTED;
390 nsAString_Init(&nsstr, NULL);
391 nsres = nsIDOMHTMLDocument_GetTitle(This->doc_node->nsdoc, &nsstr);
392 if (NS_SUCCEEDED(nsres)) {
393 nsAString_GetData(&nsstr, &ret);
394 *p = SysAllocString(ret);
396 nsAString_Finish(&nsstr);
398 if(NS_FAILED(nsres)) {
399 ERR("GetTitle failed: %08x\n", nsres);
400 return E_FAIL;
403 return S_OK;
406 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
408 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
409 FIXME("(%p)->(%p)\n", This, p);
410 return E_NOTIMPL;
413 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
415 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
416 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
417 return E_NOTIMPL;
420 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
422 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
423 static WCHAR szOff[] = {'O','f','f',0};
424 FIXME("(%p)->(%p) always returning Off\n", This, p);
426 if(!p)
427 return E_INVALIDARG;
429 *p = SysAllocString(szOff);
431 return S_OK;
434 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
436 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
437 nsISelection *nsselection;
438 nsresult nsres;
440 TRACE("(%p)->(%p)\n", This, p);
442 nsres = nsIDOMWindow_GetSelection(This->window->nswindow, &nsselection);
443 if(NS_FAILED(nsres)) {
444 ERR("GetSelection failed: %08x\n", nsres);
445 return E_FAIL;
448 return HTMLSelectionObject_Create(This->doc_node, nsselection, p);
451 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
453 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
455 static const WCHAR wszUninitialized[] = {'u','n','i','n','i','t','i','a','l','i','z','e','d',0};
456 static const WCHAR wszLoading[] = {'l','o','a','d','i','n','g',0};
457 static const WCHAR wszLoaded[] = {'l','o','a','d','e','d',0};
458 static const WCHAR wszInteractive[] = {'i','n','t','e','r','a','c','t','i','v','e',0};
459 static const WCHAR wszComplete[] = {'c','o','m','p','l','e','t','e',0};
461 static const LPCWSTR readystate_str[] = {
462 wszUninitialized,
463 wszLoading,
464 wszLoaded,
465 wszInteractive,
466 wszComplete
469 TRACE("(%p)->(%p)\n", iface, p);
471 if(!p)
472 return E_POINTER;
474 *p = SysAllocString(readystate_str[This->window->readystate]);
475 return S_OK;
478 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
480 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
482 TRACE("(%p)->(%p)\n", This, p);
484 return IHTMLWindow2_get_frames(&This->window->base.IHTMLWindow2_iface, p);
487 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
489 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
490 FIXME("(%p)->(%p)\n", This, p);
491 return E_NOTIMPL;
494 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
496 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
497 FIXME("(%p)->(%p)\n", This, p);
498 return E_NOTIMPL;
501 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
503 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
504 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
505 return E_NOTIMPL;
508 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
510 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
511 FIXME("(%p)->(%p)\n", This, p);
512 return E_NOTIMPL;
515 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
517 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
518 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
519 return E_NOTIMPL;
522 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
524 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
525 FIXME("(%p)->(%p)\n", This, p);
526 return E_NOTIMPL;
529 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
531 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
532 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
533 return E_NOTIMPL;
536 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
538 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
539 FIXME("(%p)->(%p)\n", This, p);
540 return E_NOTIMPL;
543 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
545 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
546 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
547 return E_NOTIMPL;
550 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
552 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
553 FIXME("(%p)->(%p)\n", This, p);
554 return E_NOTIMPL;
557 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
559 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
560 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
561 return E_NOTIMPL;
564 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
566 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
567 FIXME("(%p)->(%p)\n", This, p);
568 return E_NOTIMPL;
571 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
573 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
575 FIXME("(%p)->(%p)\n", This, p);
577 *p = NULL;
578 return S_OK;
581 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
583 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
585 TRACE("(%p)->(%p)\n", This, p);
587 if(!This->doc_node->nsdoc) {
588 WARN("NULL nsdoc\n");
589 return E_UNEXPECTED;
592 return IHTMLWindow2_get_location(&This->window->base.IHTMLWindow2_iface, p);
595 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
597 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
598 FIXME("(%p)->(%p)\n", This, p);
599 return E_NOTIMPL;
602 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
604 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
606 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
608 if(!This->window) {
609 FIXME("No window available\n");
610 return E_FAIL;
613 return navigate_url(This->window, v, This->window->uri, BINDING_NAVIGATED);
616 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
618 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
620 static const WCHAR about_blank_url[] =
621 {'a','b','o','u','t',':','b','l','a','n','k',0};
623 TRACE("(%p)->(%p)\n", iface, p);
625 *p = SysAllocString(This->window->url ? This->window->url : about_blank_url);
626 return *p ? S_OK : E_OUTOFMEMORY;
629 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
631 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
632 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
633 return E_NOTIMPL;
636 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
638 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
639 HRESULT hres;
641 TRACE("(%p)->(%p)\n", This, p);
643 if(!This->window || !This->window->uri) {
644 FIXME("No current URI\n");
645 return E_FAIL;
648 hres = IUri_GetHost(This->window->uri, p);
649 return FAILED(hres) ? hres : S_OK;
652 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
654 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
655 BOOL bret;
657 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
659 bret = InternetSetCookieExW(This->window->url, NULL, v, 0, 0);
660 if(!bret) {
661 FIXME("InternetSetCookieExW failed: %u\n", GetLastError());
662 return HRESULT_FROM_WIN32(GetLastError());
665 return S_OK;
668 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
670 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
671 DWORD size;
672 BOOL bret;
674 TRACE("(%p)->(%p)\n", This, p);
676 size = 0;
677 bret = InternetGetCookieExW(This->window->url, NULL, NULL, &size, 0, NULL);
678 if(!bret) {
679 switch(GetLastError()) {
680 case ERROR_INSUFFICIENT_BUFFER:
681 break;
682 case ERROR_NO_MORE_ITEMS:
683 *p = NULL;
684 return S_OK;
685 default:
686 FIXME("InternetGetCookieExW failed: %u\n", GetLastError());
687 return HRESULT_FROM_WIN32(GetLastError());
691 if(!size) {
692 *p = NULL;
693 return S_OK;
696 *p = SysAllocStringLen(NULL, size-1);
697 if(!*p)
698 return E_OUTOFMEMORY;
700 bret = InternetGetCookieExW(This->window->url, NULL, *p, &size, 0, NULL);
701 if(!bret) {
702 ERR("InternetGetCookieExW failed: %u\n", GetLastError());
703 return E_FAIL;
706 return S_OK;
709 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
711 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
712 FIXME("(%p)->(%x)\n", This, v);
713 return E_NOTIMPL;
716 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
718 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
719 FIXME("(%p)->(%p)\n", This, p);
720 return E_NOTIMPL;
723 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
725 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
726 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
727 return E_NOTIMPL;
730 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
732 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
733 nsAString charset_str;
734 nsresult nsres;
736 TRACE("(%p)->(%p)\n", This, p);
738 if(!This->doc_node->nsdoc) {
739 FIXME("NULL nsdoc\n");
740 return E_FAIL;
743 nsAString_Init(&charset_str, NULL);
744 nsres = nsIDOMHTMLDocument_GetCharacterSet(This->doc_node->nsdoc, &charset_str);
745 return return_nsstr(nsres, &charset_str, p);
748 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
750 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
751 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
752 return E_NOTIMPL;
755 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
757 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
758 FIXME("(%p)->(%p)\n", This, p);
759 return E_NOTIMPL;
762 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
764 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
765 FIXME("(%p)->(%p)\n", This, p);
766 return E_NOTIMPL;
769 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
771 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
772 FIXME("(%p)->(%p)\n", This, p);
773 return E_NOTIMPL;
776 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
778 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
779 FIXME("(%p)->(%p)\n", This, p);
780 return E_NOTIMPL;
783 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
785 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
786 FIXME("(%p)->(%p)\n", This, p);
787 return E_NOTIMPL;
790 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
792 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
793 FIXME("(%p)->(%p)\n", This, p);
794 return E_NOTIMPL;
797 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
799 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
800 FIXME("(%p)->(%p)\n", This, p);
801 return E_NOTIMPL;
804 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
806 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
807 FIXME("(%p)->(%p)\n", This, p);
808 return E_NOTIMPL;
811 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
813 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
814 FIXME("(%p)->(%p)\n", This, p);
815 return E_NOTIMPL;
818 static HRESULT document_write(HTMLDocument *This, SAFEARRAY *psarray, BOOL ln)
820 VARIANT *var, tmp;
821 nsAString nsstr;
822 ULONG i, argc;
823 nsresult nsres;
824 HRESULT hres;
826 if(!This->doc_node->nsdoc) {
827 WARN("NULL nsdoc\n");
828 return E_UNEXPECTED;
831 if (!psarray)
832 return S_OK;
834 if(psarray->cDims != 1) {
835 FIXME("cDims=%d\n", psarray->cDims);
836 return E_INVALIDARG;
839 hres = SafeArrayAccessData(psarray, (void**)&var);
840 if(FAILED(hres)) {
841 WARN("SafeArrayAccessData failed: %08x\n", hres);
842 return hres;
845 V_VT(&tmp) = VT_EMPTY;
847 argc = psarray->rgsabound[0].cElements;
848 for(i=0; i < argc; i++) {
849 if(V_VT(var+i) == VT_BSTR) {
850 nsAString_InitDepend(&nsstr, V_BSTR(var+i));
851 }else {
852 hres = VariantChangeTypeEx(&tmp, var+i, MAKELCID(MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),SORT_DEFAULT), 0, VT_BSTR);
853 if(FAILED(hres)) {
854 WARN("Could not convert %s to string\n", debugstr_variant(var+i));
855 break;
857 nsAString_InitDepend(&nsstr, V_BSTR(&tmp));
860 if(!ln || i != argc-1)
861 nsres = nsIDOMHTMLDocument_Write(This->doc_node->nsdoc, &nsstr, NULL /* FIXME! */);
862 else
863 nsres = nsIDOMHTMLDocument_Writeln(This->doc_node->nsdoc, &nsstr, NULL /* FIXME! */);
864 nsAString_Finish(&nsstr);
865 if(V_VT(var+i) != VT_BSTR)
866 VariantClear(&tmp);
867 if(NS_FAILED(nsres)) {
868 ERR("Write failed: %08x\n", nsres);
869 hres = E_FAIL;
870 break;
874 SafeArrayUnaccessData(psarray);
876 return hres;
879 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
881 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
883 TRACE("(%p)->(%p)\n", iface, psarray);
885 return document_write(This, psarray, FALSE);
888 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
890 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
892 TRACE("(%p)->(%p)\n", This, psarray);
894 return document_write(This, psarray, TRUE);
897 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
898 VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
900 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
901 nsISupports *tmp;
902 nsresult nsres;
904 static const WCHAR text_htmlW[] = {'t','e','x','t','/','h','t','m','l',0};
906 TRACE("(%p)->(%s %s %s %s %p)\n", This, debugstr_w(url), debugstr_variant(&name),
907 debugstr_variant(&features), debugstr_variant(&replace), pomWindowResult);
909 if(!This->doc_node->nsdoc) {
910 ERR("!nsdoc\n");
911 return E_NOTIMPL;
914 if(!url || strcmpW(url, text_htmlW) || V_VT(&name) != VT_ERROR
915 || V_VT(&features) != VT_ERROR || V_VT(&replace) != VT_ERROR)
916 FIXME("unsupported args\n");
918 nsres = nsIDOMHTMLDocument_Open(This->doc_node->nsdoc, NULL, NULL, NULL, NULL, 0, &tmp);
919 if(NS_FAILED(nsres)) {
920 ERR("Open failed: %08x\n", nsres);
921 return E_FAIL;
924 if(tmp)
925 nsISupports_Release(tmp);
927 *pomWindowResult = (IDispatch*)&This->window->base.IHTMLWindow2_iface;
928 IHTMLWindow2_AddRef(&This->window->base.IHTMLWindow2_iface);
929 return S_OK;
932 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
934 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
935 nsresult nsres;
937 TRACE("(%p)\n", This);
939 if(!This->doc_node->nsdoc) {
940 ERR("!nsdoc\n");
941 return E_NOTIMPL;
944 nsres = nsIDOMHTMLDocument_Close(This->doc_node->nsdoc);
945 if(NS_FAILED(nsres)) {
946 ERR("Close failed: %08x\n", nsres);
947 return E_FAIL;
950 return S_OK;
953 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
955 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
956 nsresult nsres;
958 TRACE("(%p)\n", This);
960 nsres = nsIDOMHTMLDocument_Clear(This->doc_node->nsdoc);
961 if(NS_FAILED(nsres)) {
962 ERR("Clear failed: %08x\n", nsres);
963 return E_FAIL;
966 return S_OK;
969 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
970 VARIANT_BOOL *pfRet)
972 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
973 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
974 return E_NOTIMPL;
977 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
978 VARIANT_BOOL *pfRet)
980 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
981 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
982 return E_NOTIMPL;
985 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
986 VARIANT_BOOL *pfRet)
988 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
989 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
990 return E_NOTIMPL;
993 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
994 VARIANT_BOOL *pfRet)
996 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
997 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
998 return E_NOTIMPL;
1001 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
1002 BSTR *pfRet)
1004 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1005 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
1006 return E_NOTIMPL;
1009 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
1010 VARIANT *pfRet)
1012 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1013 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
1014 return E_NOTIMPL;
1017 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
1018 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
1020 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1021 FIXME("(%p)->(%s %x %s %p)\n", This, debugstr_w(cmdID), showUI, debugstr_variant(&value), pfRet);
1022 return E_NOTIMPL;
1025 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
1026 VARIANT_BOOL *pfRet)
1028 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1029 FIXME("(%p)->(%s %p)\n", This, debugstr_w(cmdID), pfRet);
1030 return E_NOTIMPL;
1033 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
1034 IHTMLElement **newElem)
1036 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1037 HTMLElement *elem;
1038 HRESULT hres;
1040 TRACE("(%p)->(%s %p)\n", This, debugstr_w(eTag), newElem);
1042 hres = create_element(This->doc_node, eTag, &elem);
1043 if(FAILED(hres))
1044 return hres;
1046 *newElem = &elem->IHTMLElement_iface;
1047 return S_OK;
1050 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
1052 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1053 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1054 return E_NOTIMPL;
1057 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
1059 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1060 FIXME("(%p)->(%p)\n", This, p);
1061 return E_NOTIMPL;
1064 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
1066 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1068 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1070 return set_doc_event(This, EVENTID_CLICK, &v);
1073 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
1075 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1077 TRACE("(%p)->(%p)\n", This, p);
1079 return get_doc_event(This, EVENTID_CLICK, p);
1082 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
1084 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1085 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1086 return E_NOTIMPL;
1089 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
1091 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1092 FIXME("(%p)->(%p)\n", This, p);
1093 return E_NOTIMPL;
1096 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
1098 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1100 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1102 return set_doc_event(This, EVENTID_KEYUP, &v);
1105 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
1107 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1109 TRACE("(%p)->(%p)\n", This, p);
1111 return get_doc_event(This, EVENTID_KEYUP, p);
1114 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
1116 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1118 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1120 return set_doc_event(This, EVENTID_KEYDOWN, &v);
1123 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
1125 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1127 TRACE("(%p)->(%p)\n", This, p);
1129 return get_doc_event(This, EVENTID_KEYDOWN, p);
1132 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
1134 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1136 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1138 return set_doc_event(This, EVENTID_KEYPRESS, &v);
1141 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
1143 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1145 TRACE("(%p)->(%p)\n", This, p);
1147 return get_doc_event(This, EVENTID_KEYPRESS, p);
1150 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
1152 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1154 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1156 return set_doc_event(This, EVENTID_MOUSEUP, &v);
1159 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
1161 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1163 TRACE("(%p)->(%p)\n", This, p);
1165 return get_doc_event(This, EVENTID_MOUSEUP, p);
1168 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
1170 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1172 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1174 return set_doc_event(This, EVENTID_MOUSEDOWN, &v);
1177 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
1179 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1181 TRACE("(%p)->(%p)\n", This, p);
1183 return get_doc_event(This, EVENTID_MOUSEDOWN, p);
1186 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
1188 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1190 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1192 return set_doc_event(This, EVENTID_MOUSEMOVE, &v);
1195 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
1197 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1199 TRACE("(%p)->(%p)\n", This, p);
1201 return get_doc_event(This, EVENTID_MOUSEMOVE, p);
1204 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
1206 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1208 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1210 return set_doc_event(This, EVENTID_MOUSEOUT, &v);
1213 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
1215 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1217 TRACE("(%p)->(%p)\n", This, p);
1219 return get_doc_event(This, EVENTID_MOUSEOUT, p);
1222 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
1224 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1226 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1228 return set_doc_event(This, EVENTID_MOUSEOVER, &v);
1231 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
1233 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1235 TRACE("(%p)->(%p)\n", This, p);
1237 return get_doc_event(This, EVENTID_MOUSEOVER, p);
1240 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
1242 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1244 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1246 return set_doc_event(This, EVENTID_READYSTATECHANGE, &v);
1249 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
1251 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1253 TRACE("(%p)->(%p)\n", This, p);
1255 return get_doc_event(This, EVENTID_READYSTATECHANGE, p);
1258 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
1260 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1261 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1262 return E_NOTIMPL;
1265 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
1267 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1268 FIXME("(%p)->(%p)\n", This, p);
1269 return E_NOTIMPL;
1272 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
1274 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1275 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1276 return E_NOTIMPL;
1279 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
1281 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1282 FIXME("(%p)->(%p)\n", This, p);
1283 return E_NOTIMPL;
1286 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
1288 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1289 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1290 return E_NOTIMPL;
1293 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
1295 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1296 FIXME("(%p)->(%p)\n", This, p);
1297 return E_NOTIMPL;
1300 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
1302 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1304 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1306 return set_doc_event(This, EVENTID_DRAGSTART, &v);
1309 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
1311 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1313 TRACE("(%p)->(%p)\n", This, p);
1315 return get_doc_event(This, EVENTID_DRAGSTART, p);
1318 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
1320 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1322 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
1324 return set_doc_event(This, EVENTID_SELECTSTART, &v);
1327 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
1329 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1331 TRACE("(%p)->(%p)\n", This, p);
1333 return get_doc_event(This, EVENTID_SELECTSTART, p);
1336 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, LONG x, LONG y,
1337 IHTMLElement **elementHit)
1339 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1340 nsIDOMElement *nselem;
1341 HTMLDOMNode *node;
1342 nsresult nsres;
1343 HRESULT hres;
1345 TRACE("(%p)->(%d %d %p)\n", This, x, y, elementHit);
1347 nsres = nsIDOMHTMLDocument_ElementFromPoint(This->doc_node->nsdoc, x, y, &nselem);
1348 if(NS_FAILED(nsres)) {
1349 ERR("ElementFromPoint failed: %08x\n", nsres);
1350 return E_FAIL;
1353 if(!nselem) {
1354 *elementHit = NULL;
1355 return S_OK;
1358 hres = get_node(This->doc_node, (nsIDOMNode*)nselem, TRUE, &node);
1359 nsIDOMElement_Release(nselem);
1360 if(FAILED(hres))
1361 return hres;
1363 hres = IHTMLDOMNode_QueryInterface(&node->IHTMLDOMNode_iface, &IID_IHTMLElement, (void**)elementHit);
1364 node_release(node);
1365 return hres;
1368 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
1370 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1372 TRACE("(%p)->(%p)\n", This, p);
1374 *p = &This->window->base.IHTMLWindow2_iface;
1375 IHTMLWindow2_AddRef(*p);
1376 return S_OK;
1379 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
1380 IHTMLStyleSheetsCollection **p)
1382 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1383 nsIDOMStyleSheetList *nsstylelist;
1384 nsresult nsres;
1386 TRACE("(%p)->(%p)\n", This, p);
1388 *p = NULL;
1390 if(!This->doc_node->nsdoc) {
1391 WARN("NULL nsdoc\n");
1392 return E_UNEXPECTED;
1395 nsres = nsIDOMHTMLDocument_GetStyleSheets(This->doc_node->nsdoc, &nsstylelist);
1396 if(NS_FAILED(nsres)) {
1397 ERR("GetStyleSheets failed: %08x\n", nsres);
1398 return E_FAIL;
1401 *p = HTMLStyleSheetsCollection_Create(nsstylelist);
1402 nsIDOMStyleSheetList_Release(nsstylelist);
1404 return S_OK;
1407 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
1409 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1410 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1411 return E_NOTIMPL;
1414 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
1416 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1417 FIXME("(%p)->(%p)\n", This, p);
1418 return E_NOTIMPL;
1421 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
1423 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1424 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
1425 return E_NOTIMPL;
1428 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
1430 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1431 FIXME("(%p)->(%p)\n", This, p);
1432 return E_NOTIMPL;
1435 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
1437 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1438 FIXME("(%p)->(%p)\n", This, String);
1439 return E_NOTIMPL;
1442 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
1443 LONG lIndex, IHTMLStyleSheet **ppnewStyleSheet)
1445 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
1446 nsIDOMHTMLHeadElement *head_elem;
1447 IHTMLStyleElement *style_elem;
1448 HTMLElement *elem;
1449 nsresult nsres;
1450 HRESULT hres;
1452 static const WCHAR styleW[] = {'s','t','y','l','e',0};
1454 TRACE("(%p)->(%s %d %p)\n", This, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
1456 if(!This->doc_node->nsdoc) {
1457 FIXME("not a real doc object\n");
1458 return E_NOTIMPL;
1461 if(lIndex != -1)
1462 FIXME("Unsupported lIndex %d\n", lIndex);
1464 if(bstrHref) {
1465 FIXME("semi-stub for href %s\n", debugstr_w(bstrHref));
1466 *ppnewStyleSheet = HTMLStyleSheet_Create(NULL);
1467 return S_OK;
1470 hres = create_element(This->doc_node, styleW, &elem);
1471 if(FAILED(hres))
1472 return hres;
1474 nsres = nsIDOMHTMLDocument_GetHead(This->doc_node->nsdoc, &head_elem);
1475 if(NS_SUCCEEDED(nsres)) {
1476 nsIDOMNode *tmp_node;
1478 nsres = nsIDOMHTMLHeadElement_AppendChild(head_elem, (nsIDOMNode*)elem->nselem, &tmp_node);
1479 nsIDOMHTMLHeadElement_Release(head_elem);
1480 if(NS_SUCCEEDED(nsres) && tmp_node)
1481 nsIDOMNode_Release(tmp_node);
1483 if(NS_FAILED(nsres)) {
1484 IHTMLElement_Release(&elem->IHTMLElement_iface);
1485 return E_FAIL;
1488 hres = IHTMLElement_QueryInterface(&elem->IHTMLElement_iface, &IID_IHTMLStyleElement, (void**)&style_elem);
1489 assert(hres == S_OK);
1490 IHTMLElement_Release(&elem->IHTMLElement_iface);
1492 hres = IHTMLStyleElement_get_styleSheet(style_elem, ppnewStyleSheet);
1493 IHTMLStyleElement_Release(style_elem);
1494 return hres;
1497 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
1498 HTMLDocument_QueryInterface,
1499 HTMLDocument_AddRef,
1500 HTMLDocument_Release,
1501 HTMLDocument_GetTypeInfoCount,
1502 HTMLDocument_GetTypeInfo,
1503 HTMLDocument_GetIDsOfNames,
1504 HTMLDocument_Invoke,
1505 HTMLDocument_get_Script,
1506 HTMLDocument_get_all,
1507 HTMLDocument_get_body,
1508 HTMLDocument_get_activeElement,
1509 HTMLDocument_get_images,
1510 HTMLDocument_get_applets,
1511 HTMLDocument_get_links,
1512 HTMLDocument_get_forms,
1513 HTMLDocument_get_anchors,
1514 HTMLDocument_put_title,
1515 HTMLDocument_get_title,
1516 HTMLDocument_get_scripts,
1517 HTMLDocument_put_designMode,
1518 HTMLDocument_get_designMode,
1519 HTMLDocument_get_selection,
1520 HTMLDocument_get_readyState,
1521 HTMLDocument_get_frames,
1522 HTMLDocument_get_embeds,
1523 HTMLDocument_get_plugins,
1524 HTMLDocument_put_alinkColor,
1525 HTMLDocument_get_alinkColor,
1526 HTMLDocument_put_bgColor,
1527 HTMLDocument_get_bgColor,
1528 HTMLDocument_put_fgColor,
1529 HTMLDocument_get_fgColor,
1530 HTMLDocument_put_linkColor,
1531 HTMLDocument_get_linkColor,
1532 HTMLDocument_put_vlinkColor,
1533 HTMLDocument_get_vlinkColor,
1534 HTMLDocument_get_referrer,
1535 HTMLDocument_get_location,
1536 HTMLDocument_get_lastModified,
1537 HTMLDocument_put_URL,
1538 HTMLDocument_get_URL,
1539 HTMLDocument_put_domain,
1540 HTMLDocument_get_domain,
1541 HTMLDocument_put_cookie,
1542 HTMLDocument_get_cookie,
1543 HTMLDocument_put_expando,
1544 HTMLDocument_get_expando,
1545 HTMLDocument_put_charset,
1546 HTMLDocument_get_charset,
1547 HTMLDocument_put_defaultCharset,
1548 HTMLDocument_get_defaultCharset,
1549 HTMLDocument_get_mimeType,
1550 HTMLDocument_get_fileSize,
1551 HTMLDocument_get_fileCreatedDate,
1552 HTMLDocument_get_fileModifiedDate,
1553 HTMLDocument_get_fileUpdatedDate,
1554 HTMLDocument_get_security,
1555 HTMLDocument_get_protocol,
1556 HTMLDocument_get_nameProp,
1557 HTMLDocument_write,
1558 HTMLDocument_writeln,
1559 HTMLDocument_open,
1560 HTMLDocument_close,
1561 HTMLDocument_clear,
1562 HTMLDocument_queryCommandSupported,
1563 HTMLDocument_queryCommandEnabled,
1564 HTMLDocument_queryCommandState,
1565 HTMLDocument_queryCommandIndeterm,
1566 HTMLDocument_queryCommandText,
1567 HTMLDocument_queryCommandValue,
1568 HTMLDocument_execCommand,
1569 HTMLDocument_execCommandShowHelp,
1570 HTMLDocument_createElement,
1571 HTMLDocument_put_onhelp,
1572 HTMLDocument_get_onhelp,
1573 HTMLDocument_put_onclick,
1574 HTMLDocument_get_onclick,
1575 HTMLDocument_put_ondblclick,
1576 HTMLDocument_get_ondblclick,
1577 HTMLDocument_put_onkeyup,
1578 HTMLDocument_get_onkeyup,
1579 HTMLDocument_put_onkeydown,
1580 HTMLDocument_get_onkeydown,
1581 HTMLDocument_put_onkeypress,
1582 HTMLDocument_get_onkeypress,
1583 HTMLDocument_put_onmouseup,
1584 HTMLDocument_get_onmouseup,
1585 HTMLDocument_put_onmousedown,
1586 HTMLDocument_get_onmousedown,
1587 HTMLDocument_put_onmousemove,
1588 HTMLDocument_get_onmousemove,
1589 HTMLDocument_put_onmouseout,
1590 HTMLDocument_get_onmouseout,
1591 HTMLDocument_put_onmouseover,
1592 HTMLDocument_get_onmouseover,
1593 HTMLDocument_put_onreadystatechange,
1594 HTMLDocument_get_onreadystatechange,
1595 HTMLDocument_put_onafterupdate,
1596 HTMLDocument_get_onafterupdate,
1597 HTMLDocument_put_onrowexit,
1598 HTMLDocument_get_onrowexit,
1599 HTMLDocument_put_onrowenter,
1600 HTMLDocument_get_onrowenter,
1601 HTMLDocument_put_ondragstart,
1602 HTMLDocument_get_ondragstart,
1603 HTMLDocument_put_onselectstart,
1604 HTMLDocument_get_onselectstart,
1605 HTMLDocument_elementFromPoint,
1606 HTMLDocument_get_parentWindow,
1607 HTMLDocument_get_styleSheets,
1608 HTMLDocument_put_onbeforeupdate,
1609 HTMLDocument_get_onbeforeupdate,
1610 HTMLDocument_put_onerrorupdate,
1611 HTMLDocument_get_onerrorupdate,
1612 HTMLDocument_toString,
1613 HTMLDocument_createStyleSheet
1616 static void HTMLDocument_on_advise(IUnknown *iface, cp_static_data_t *cp)
1618 HTMLDocument *This = impl_from_IHTMLDocument2((IHTMLDocument2*)iface);
1620 if(This->window)
1621 update_cp_events(This->window->base.inner_window, &This->doc_node->node.event_target, cp, This->doc_node->node.nsnode);
1624 static inline HTMLDocument *impl_from_ISupportErrorInfo(ISupportErrorInfo *iface)
1626 return CONTAINING_RECORD(iface, HTMLDocument, ISupportErrorInfo_iface);
1629 static HRESULT WINAPI SupportErrorInfo_QueryInterface(ISupportErrorInfo *iface, REFIID riid, void **ppv)
1631 HTMLDocument *This = impl_from_ISupportErrorInfo(iface);
1632 return htmldoc_query_interface(This, riid, ppv);
1635 static ULONG WINAPI SupportErrorInfo_AddRef(ISupportErrorInfo *iface)
1637 HTMLDocument *This = impl_from_ISupportErrorInfo(iface);
1638 return htmldoc_addref(This);
1641 static ULONG WINAPI SupportErrorInfo_Release(ISupportErrorInfo *iface)
1643 HTMLDocument *This = impl_from_ISupportErrorInfo(iface);
1644 return htmldoc_release(This);
1647 static HRESULT WINAPI SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorInfo *iface, REFIID riid)
1649 FIXME("(%p)->(%s)\n", iface, debugstr_guid(riid));
1650 return S_FALSE;
1653 static const ISupportErrorInfoVtbl SupportErrorInfoVtbl = {
1654 SupportErrorInfo_QueryInterface,
1655 SupportErrorInfo_AddRef,
1656 SupportErrorInfo_Release,
1657 SupportErrorInfo_InterfaceSupportsErrorInfo
1660 static inline HTMLDocument *impl_from_IDispatchEx(IDispatchEx *iface)
1662 return CONTAINING_RECORD(iface, HTMLDocument, IDispatchEx_iface);
1665 static HRESULT dispid_from_elem_name(HTMLDocumentNode *This, BSTR name, DISPID *dispid)
1667 nsIDOMNodeList *node_list;
1668 nsAString name_str;
1669 UINT32 len;
1670 unsigned i;
1671 nsresult nsres;
1673 if(!This->nsdoc)
1674 return DISP_E_UNKNOWNNAME;
1676 nsAString_InitDepend(&name_str, name);
1677 nsres = nsIDOMHTMLDocument_GetElementsByName(This->nsdoc, &name_str, &node_list);
1678 nsAString_Finish(&name_str);
1679 if(NS_FAILED(nsres))
1680 return E_FAIL;
1682 nsres = nsIDOMNodeList_GetLength(node_list, &len);
1683 nsIDOMNodeList_Release(node_list);
1684 if(NS_FAILED(nsres))
1685 return E_FAIL;
1687 if(!len)
1688 return DISP_E_UNKNOWNNAME;
1690 for(i=0; i < This->elem_vars_cnt; i++) {
1691 if(!strcmpW(name, This->elem_vars[i])) {
1692 *dispid = MSHTML_DISPID_CUSTOM_MIN+i;
1693 return S_OK;
1697 if(This->elem_vars_cnt == This->elem_vars_size) {
1698 WCHAR **new_vars;
1700 if(This->elem_vars_size) {
1701 new_vars = heap_realloc(This->elem_vars, This->elem_vars_size*2*sizeof(WCHAR*));
1702 if(!new_vars)
1703 return E_OUTOFMEMORY;
1704 This->elem_vars_size *= 2;
1705 }else {
1706 new_vars = heap_alloc(16*sizeof(WCHAR*));
1707 if(!new_vars)
1708 return E_OUTOFMEMORY;
1709 This->elem_vars_size = 16;
1712 This->elem_vars = new_vars;
1715 This->elem_vars[This->elem_vars_cnt] = heap_strdupW(name);
1716 if(!This->elem_vars[This->elem_vars_cnt])
1717 return E_OUTOFMEMORY;
1719 *dispid = MSHTML_DISPID_CUSTOM_MIN+This->elem_vars_cnt++;
1720 return S_OK;
1723 static HRESULT WINAPI DocDispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
1725 HTMLDocument *This = impl_from_IDispatchEx(iface);
1727 return htmldoc_query_interface(This, riid, ppv);
1730 static ULONG WINAPI DocDispatchEx_AddRef(IDispatchEx *iface)
1732 HTMLDocument *This = impl_from_IDispatchEx(iface);
1734 return htmldoc_addref(This);
1737 static ULONG WINAPI DocDispatchEx_Release(IDispatchEx *iface)
1739 HTMLDocument *This = impl_from_IDispatchEx(iface);
1741 return htmldoc_release(This);
1744 static HRESULT WINAPI DocDispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
1746 HTMLDocument *This = impl_from_IDispatchEx(iface);
1748 return IDispatchEx_GetTypeInfoCount(This->dispex, pctinfo);
1751 static HRESULT WINAPI DocDispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
1752 LCID lcid, ITypeInfo **ppTInfo)
1754 HTMLDocument *This = impl_from_IDispatchEx(iface);
1756 return IDispatchEx_GetTypeInfo(This->dispex, iTInfo, lcid, ppTInfo);
1759 static HRESULT WINAPI DocDispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
1760 LPOLESTR *rgszNames, UINT cNames,
1761 LCID lcid, DISPID *rgDispId)
1763 HTMLDocument *This = impl_from_IDispatchEx(iface);
1765 return IDispatchEx_GetIDsOfNames(This->dispex, riid, rgszNames, cNames, lcid, rgDispId);
1768 static HRESULT WINAPI DocDispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
1769 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
1770 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
1772 HTMLDocument *This = impl_from_IDispatchEx(iface);
1774 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1775 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1777 switch(dispIdMember) {
1778 case DISPID_READYSTATE:
1779 TRACE("DISPID_READYSTATE\n");
1781 if(!(wFlags & DISPATCH_PROPERTYGET))
1782 return E_INVALIDARG;
1784 V_VT(pVarResult) = VT_I4;
1785 V_I4(pVarResult) = This->window->readystate;
1786 return S_OK;
1789 return IDispatchEx_Invoke(This->dispex, dispIdMember, riid, lcid, wFlags, pDispParams,
1790 pVarResult, pExcepInfo, puArgErr);
1793 static HRESULT WINAPI DocDispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
1795 HTMLDocument *This = impl_from_IDispatchEx(iface);
1796 HRESULT hres;
1798 hres = IDispatchEx_GetDispID(This->dispex, bstrName, grfdex, pid);
1799 if(hres != DISP_E_UNKNOWNNAME)
1800 return hres;
1802 return dispid_from_elem_name(This->doc_node, bstrName, pid);
1805 static HRESULT WINAPI DocDispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
1806 VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
1808 HTMLDocument *This = impl_from_IDispatchEx(iface);
1810 if(This->window && id == DISPID_IHTMLDOCUMENT2_LOCATION && (wFlags & DISPATCH_PROPERTYPUT))
1811 return IDispatchEx_InvokeEx(&This->window->base.IDispatchEx_iface, DISPID_IHTMLWINDOW2_LOCATION,
1812 lcid, wFlags, pdp, pvarRes, pei, pspCaller);
1815 return IDispatchEx_InvokeEx(This->dispex, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
1818 static HRESULT WINAPI DocDispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
1820 HTMLDocument *This = impl_from_IDispatchEx(iface);
1822 return IDispatchEx_DeleteMemberByName(This->dispex, bstrName, grfdex);
1825 static HRESULT WINAPI DocDispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
1827 HTMLDocument *This = impl_from_IDispatchEx(iface);
1829 return IDispatchEx_DeleteMemberByDispID(This->dispex, id);
1832 static HRESULT WINAPI DocDispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
1834 HTMLDocument *This = impl_from_IDispatchEx(iface);
1836 return IDispatchEx_GetMemberProperties(This->dispex, id, grfdexFetch, pgrfdex);
1839 static HRESULT WINAPI DocDispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
1841 HTMLDocument *This = impl_from_IDispatchEx(iface);
1843 return IDispatchEx_GetMemberName(This->dispex, id, pbstrName);
1846 static HRESULT WINAPI DocDispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
1848 HTMLDocument *This = impl_from_IDispatchEx(iface);
1850 return IDispatchEx_GetNextDispID(This->dispex, grfdex, id, pid);
1853 static HRESULT WINAPI DocDispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
1855 HTMLDocument *This = impl_from_IDispatchEx(iface);
1857 return IDispatchEx_GetNameSpaceParent(This->dispex, ppunk);
1860 static const IDispatchExVtbl DocDispatchExVtbl = {
1861 DocDispatchEx_QueryInterface,
1862 DocDispatchEx_AddRef,
1863 DocDispatchEx_Release,
1864 DocDispatchEx_GetTypeInfoCount,
1865 DocDispatchEx_GetTypeInfo,
1866 DocDispatchEx_GetIDsOfNames,
1867 DocDispatchEx_Invoke,
1868 DocDispatchEx_GetDispID,
1869 DocDispatchEx_InvokeEx,
1870 DocDispatchEx_DeleteMemberByName,
1871 DocDispatchEx_DeleteMemberByDispID,
1872 DocDispatchEx_GetMemberProperties,
1873 DocDispatchEx_GetMemberName,
1874 DocDispatchEx_GetNextDispID,
1875 DocDispatchEx_GetNameSpaceParent
1878 static inline HTMLDocument *impl_from_IProvideClassInfo(IProvideClassInfo *iface)
1880 return CONTAINING_RECORD(iface, HTMLDocument, IProvideClassInfo_iface);
1883 static HRESULT WINAPI ProvideClassInfo_QueryInterface(IProvideClassInfo *iface,
1884 REFIID riid, void **ppv)
1886 HTMLDocument *This = impl_from_IProvideClassInfo(iface);
1887 return htmldoc_query_interface(This, riid, ppv);
1890 static ULONG WINAPI ProvideClassInfo_AddRef(IProvideClassInfo *iface)
1892 HTMLDocument *This = impl_from_IProvideClassInfo(iface);
1893 return htmldoc_addref(This);
1896 static ULONG WINAPI ProvideClassInfo_Release(IProvideClassInfo *iface)
1898 HTMLDocument *This = impl_from_IProvideClassInfo(iface);
1899 return htmldoc_release(This);
1902 static HRESULT WINAPI ProvideClassInfo_GetClassInfo(IProvideClassInfo* iface,
1903 ITypeInfo **ppTI)
1905 HTMLDocument *This = impl_from_IProvideClassInfo(iface);
1906 TRACE("(%p)->(%p)\n", This, ppTI);
1907 return get_htmldoc_classinfo(ppTI);
1910 static const IProvideClassInfoVtbl ProvideClassInfoVtbl = {
1911 ProvideClassInfo_QueryInterface,
1912 ProvideClassInfo_AddRef,
1913 ProvideClassInfo_Release,
1914 ProvideClassInfo_GetClassInfo
1917 static BOOL htmldoc_qi(HTMLDocument *This, REFIID riid, void **ppv)
1919 *ppv = NULL;
1921 if(IsEqualGUID(&IID_IUnknown, riid)) {
1922 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppv);
1923 *ppv = &This->IHTMLDocument2_iface;
1924 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
1925 TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppv);
1926 *ppv = &This->IDispatchEx_iface;
1927 }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
1928 TRACE("(%p)->(IID_IDispatchEx, %p)\n", This, ppv);
1929 *ppv = &This->IDispatchEx_iface;
1930 }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
1931 TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppv);
1932 *ppv = &This->IHTMLDocument2_iface;
1933 }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
1934 TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppv);
1935 *ppv = &This->IHTMLDocument2_iface;
1936 }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
1937 TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppv);
1938 *ppv = &This->IHTMLDocument3_iface;
1939 }else if(IsEqualGUID(&IID_IHTMLDocument4, riid)) {
1940 TRACE("(%p)->(IID_IHTMLDocument4, %p)\n", This, ppv);
1941 *ppv = &This->IHTMLDocument4_iface;
1942 }else if(IsEqualGUID(&IID_IHTMLDocument5, riid)) {
1943 TRACE("(%p)->(IID_IHTMLDocument5, %p)\n", This, ppv);
1944 *ppv = &This->IHTMLDocument5_iface;
1945 }else if(IsEqualGUID(&IID_IHTMLDocument6, riid)) {
1946 TRACE("(%p)->(IID_IHTMLDocument6, %p)\n", This, ppv);
1947 *ppv = &This->IHTMLDocument6_iface;
1948 }else if(IsEqualGUID(&IID_IPersist, riid)) {
1949 TRACE("(%p)->(IID_IPersist, %p)\n", This, ppv);
1950 *ppv = &This->IPersistFile_iface;
1951 }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
1952 TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppv);
1953 *ppv = &This->IPersistMoniker_iface;
1954 }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
1955 TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppv);
1956 *ppv = &This->IPersistFile_iface;
1957 }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
1958 TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppv);
1959 *ppv = &This->IMonikerProp_iface;
1960 }else if(IsEqualGUID(&IID_IOleObject, riid)) {
1961 TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppv);
1962 *ppv = &This->IOleObject_iface;
1963 }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
1964 TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppv);
1965 *ppv = &This->IOleDocument_iface;
1966 }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
1967 TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppv);
1968 *ppv = &This->IOleDocumentView_iface;
1969 }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
1970 TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppv);
1971 *ppv = &This->IOleInPlaceActiveObject_iface;
1972 }else if(IsEqualGUID(&IID_IViewObject, riid)) {
1973 TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppv);
1974 *ppv = &This->IViewObjectEx_iface;
1975 }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
1976 TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppv);
1977 *ppv = &This->IViewObjectEx_iface;
1978 }else if(IsEqualGUID(&IID_IViewObjectEx, riid)) {
1979 TRACE("(%p)->(IID_IViewObjectEx, %p)\n", This, ppv);
1980 *ppv = &This->IViewObjectEx_iface;
1981 }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
1982 TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppv);
1983 *ppv = &This->IOleInPlaceActiveObject_iface;
1984 }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
1985 TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppv);
1986 *ppv = &This->IOleInPlaceObjectWindowless_iface;
1987 }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
1988 TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppv);
1989 *ppv = &This->IOleInPlaceObjectWindowless_iface;
1990 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
1991 TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppv);
1992 *ppv = &This->IServiceProvider_iface;
1993 }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
1994 TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppv);
1995 *ppv = &This->IOleCommandTarget_iface;
1996 }else if(IsEqualGUID(&IID_IOleControl, riid)) {
1997 TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppv);
1998 *ppv = &This->IOleControl_iface;
1999 }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
2000 TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppv);
2001 *ppv = &This->IHlinkTarget_iface;
2002 }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
2003 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
2004 *ppv = &This->cp_container.IConnectionPointContainer_iface;
2005 }else if(IsEqualGUID(&IID_IPersistStreamInit, riid)) {
2006 TRACE("(%p)->(IID_IPersistStreamInit %p)\n", This, ppv);
2007 *ppv = &This->IPersistStreamInit_iface;
2008 }else if(IsEqualGUID(&DIID_DispHTMLDocument, riid)) {
2009 TRACE("(%p)->(DIID_DispHTMLDocument %p)\n", This, ppv);
2010 *ppv = &This->IHTMLDocument2_iface;
2011 }else if(IsEqualGUID(&IID_ISupportErrorInfo, riid)) {
2012 TRACE("(%p)->(IID_ISupportErrorInfo %p)\n", This, ppv);
2013 *ppv = &This->ISupportErrorInfo_iface;
2014 }else if(IsEqualGUID(&IID_IPersistHistory, riid)) {
2015 TRACE("(%p)->(IID_IPersistHistory %p)\n", This, ppv);
2016 *ppv = &This->IPersistHistory_iface;
2017 }else if(IsEqualGUID(&CLSID_CMarkup, riid)) {
2018 FIXME("(%p)->(CLSID_CMarkup %p)\n", This, ppv);
2019 *ppv = NULL;
2020 }else if(IsEqualGUID(&IID_IRunnableObject, riid)) {
2021 TRACE("(%p)->(IID_IRunnableObject %p) returning NULL\n", This, ppv);
2022 *ppv = NULL;
2023 }else if(IsEqualGUID(&IID_IPersistPropertyBag, riid)) {
2024 TRACE("(%p)->(IID_IPersistPropertyBag %p) returning NULL\n", This, ppv);
2025 *ppv = NULL;
2026 }else if(IsEqualGUID(&IID_IMarshal, riid)) {
2027 TRACE("(%p)->(IID_IMarshal %p) returning NULL\n", This, ppv);
2028 *ppv = NULL;
2029 }else if(IsEqualGUID(&IID_IExternalConnection, riid)) {
2030 TRACE("(%p)->(IID_IExternalConnection %p) returning NULL\n", This, ppv);
2031 *ppv = NULL;
2032 }else if(IsEqualGUID(&IID_IStdMarshalInfo, riid)) {
2033 TRACE("(%p)->(IID_IStdMarshalInfo %p) returning NULL\n", This, ppv);
2034 *ppv = NULL;
2035 }else if(IsEqualGUID(&IID_IObjectWithSite, riid)) {
2036 TRACE("(%p)->(IID_IObjectWithSite %p)\n", This, ppv);
2037 *ppv = &This->IObjectWithSite_iface;
2038 }else if(IsEqualGUID(&IID_IOleContainer, riid)) {
2039 TRACE("(%p)->(IID_IOleContainer %p)\n", This, ppv);
2040 *ppv = &This->IOleContainer_iface;
2041 }else if(IsEqualGUID(&IID_IObjectSafety, riid)) {
2042 TRACE("(%p)->(IID_IObjectSafety %p)\n", This, ppv);
2043 *ppv = &This->IObjectSafety_iface;
2044 }else if(IsEqualGUID(&IID_IProvideClassInfo, riid)) {
2045 TRACE("(%p)->(IID_IProvideClassInfo, %p)\n", This, ppv);
2046 *ppv = &This->IProvideClassInfo_iface;
2047 }else {
2048 return FALSE;
2051 if(*ppv)
2052 IUnknown_AddRef((IUnknown*)*ppv);
2053 return TRUE;
2056 static cp_static_data_t HTMLDocumentEvents_data = { HTMLDocumentEvents_tid, HTMLDocument_on_advise };
2058 static const cpc_entry_t HTMLDocument_cpc[] = {
2059 {&IID_IDispatch, &HTMLDocumentEvents_data},
2060 {&IID_IPropertyNotifySink},
2061 {&DIID_HTMLDocumentEvents, &HTMLDocumentEvents_data},
2062 {&DIID_HTMLDocumentEvents2},
2063 {NULL}
2066 static void init_doc(HTMLDocument *doc, IUnknown *unk_impl, IDispatchEx *dispex)
2068 doc->IHTMLDocument2_iface.lpVtbl = &HTMLDocumentVtbl;
2069 doc->IDispatchEx_iface.lpVtbl = &DocDispatchExVtbl;
2070 doc->ISupportErrorInfo_iface.lpVtbl = &SupportErrorInfoVtbl;
2071 doc->IProvideClassInfo_iface.lpVtbl = &ProvideClassInfoVtbl;
2073 doc->unk_impl = unk_impl;
2074 doc->dispex = dispex;
2075 doc->task_magic = get_task_target_magic();
2077 HTMLDocument_HTMLDocument3_Init(doc);
2078 HTMLDocument_HTMLDocument5_Init(doc);
2079 HTMLDocument_Persist_Init(doc);
2080 HTMLDocument_OleCmd_Init(doc);
2081 HTMLDocument_OleObj_Init(doc);
2082 HTMLDocument_View_Init(doc);
2083 HTMLDocument_Window_Init(doc);
2084 HTMLDocument_Service_Init(doc);
2085 HTMLDocument_Hlink_Init(doc);
2087 ConnectionPointContainer_Init(&doc->cp_container, (IUnknown*)&doc->IHTMLDocument2_iface, HTMLDocument_cpc);
2090 static void destroy_htmldoc(HTMLDocument *This)
2092 remove_target_tasks(This->task_magic);
2094 ConnectionPointContainer_Destroy(&This->cp_container);
2097 static inline HTMLDocumentNode *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
2099 return CONTAINING_RECORD(iface, HTMLDocumentNode, node);
2102 static HRESULT HTMLDocumentNode_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
2104 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2106 if(htmldoc_qi(&This->basedoc, riid, ppv))
2107 return *ppv ? S_OK : E_NOINTERFACE;
2109 if(IsEqualGUID(&IID_IInternetHostSecurityManager, riid)) {
2110 TRACE("(%p)->(IID_IInternetHostSecurityManager %p)\n", This, ppv);
2111 *ppv = &This->IInternetHostSecurityManager_iface;
2112 }else {
2113 return HTMLDOMNode_QI(&This->node, riid, ppv);
2116 IUnknown_AddRef((IUnknown*)*ppv);
2117 return S_OK;
2120 static void HTMLDocumentNode_destructor(HTMLDOMNode *iface)
2122 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2123 unsigned i;
2125 for(i=0; i < This->elem_vars_cnt; i++)
2126 heap_free(This->elem_vars[i]);
2127 heap_free(This->elem_vars);
2129 detach_events(This);
2130 if(This->body_event_target)
2131 release_event_target(This->body_event_target);
2132 if(This->catmgr)
2133 ICatInformation_Release(This->catmgr);
2135 detach_selection(This);
2136 detach_ranges(This);
2138 while(!list_empty(&This->plugin_hosts))
2139 detach_plugin_host(LIST_ENTRY(list_head(&This->plugin_hosts), PluginHost, entry));
2141 if(This->nsnode_selector) {
2142 nsIDOMNodeSelector_Release(This->nsnode_selector);
2143 This->nsnode_selector = NULL;
2146 if(This->nsdoc) {
2147 assert(!This->window);
2148 release_document_mutation(This);
2149 nsIDOMHTMLDocument_Release(This->nsdoc);
2150 }else if(This->window) {
2151 /* document fragments own reference to inner window */
2152 IHTMLWindow2_Release(&This->window->base.IHTMLWindow2_iface);
2153 This->window = NULL;
2156 heap_free(This->event_vector);
2157 destroy_htmldoc(&This->basedoc);
2160 static HRESULT HTMLDocumentNode_clone(HTMLDOMNode *iface, nsIDOMNode *nsnode, HTMLDOMNode **ret)
2162 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2163 FIXME("%p\n", This);
2164 return E_NOTIMPL;
2167 static void HTMLDocumentNode_traverse(HTMLDOMNode *iface, nsCycleCollectionTraversalCallback *cb)
2169 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2171 if(This->nsnode_selector)
2172 note_cc_edge((nsISupports*)This->nsnode_selector, "This->nsnode_selector", cb);
2173 if(This->nsdoc)
2174 note_cc_edge((nsISupports*)This->nsdoc, "This->nsdoc", cb);
2177 static void HTMLDocumentNode_unlink(HTMLDOMNode *iface)
2179 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2181 if(This->nsnode_selector) {
2182 nsIDOMNodeSelector_Release(This->nsnode_selector);
2183 This->nsnode_selector = NULL;
2186 if(This->nsdoc) {
2187 nsIDOMHTMLDocument *nsdoc = This->nsdoc;
2189 release_document_mutation(This);
2190 This->nsdoc = NULL;
2191 nsIDOMHTMLDocument_Release(nsdoc);
2192 This->window = NULL;
2196 static const NodeImplVtbl HTMLDocumentNodeImplVtbl = {
2197 HTMLDocumentNode_QI,
2198 HTMLDocumentNode_destructor,
2199 HTMLDocument_cpc,
2200 HTMLDocumentNode_clone,
2201 NULL,
2202 NULL,
2203 NULL,
2204 NULL,
2205 NULL,
2206 NULL,
2207 NULL,
2208 NULL,
2209 NULL,
2210 NULL,
2211 NULL,
2212 HTMLDocumentNode_traverse,
2213 HTMLDocumentNode_unlink
2216 static HRESULT HTMLDocumentFragment_clone(HTMLDOMNode *iface, nsIDOMNode *nsnode, HTMLDOMNode **ret)
2218 HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
2219 HTMLDocumentNode *new_node;
2220 HRESULT hres;
2222 hres = create_document_fragment(nsnode, This->node.doc, &new_node);
2223 if(FAILED(hres))
2224 return hres;
2226 *ret = &new_node->node;
2227 return S_OK;
2230 static inline HTMLDocumentNode *impl_from_DispatchEx(DispatchEx *iface)
2232 return CONTAINING_RECORD(iface, HTMLDocumentNode, node.dispex);
2235 static HRESULT HTMLDocumentNode_invoke(DispatchEx *dispex, DISPID id, LCID lcid, WORD flags, DISPPARAMS *params,
2236 VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
2238 HTMLDocumentNode *This = impl_from_DispatchEx(dispex);
2239 nsIDOMNodeList *node_list;
2240 nsAString name_str;
2241 nsIDOMNode *nsnode;
2242 HTMLDOMNode *node;
2243 unsigned i;
2244 nsresult nsres;
2245 HRESULT hres;
2247 if(flags != DISPATCH_PROPERTYGET && flags != (DISPATCH_METHOD|DISPATCH_PROPERTYGET)) {
2248 FIXME("unsupported flags %x\n", flags);
2249 return E_NOTIMPL;
2252 i = id - MSHTML_DISPID_CUSTOM_MIN;
2254 if(!This->nsdoc || i >= This->elem_vars_cnt)
2255 return DISP_E_UNKNOWNNAME;
2257 nsAString_InitDepend(&name_str, This->elem_vars[i]);
2258 nsres = nsIDOMHTMLDocument_GetElementsByName(This->nsdoc, &name_str, &node_list);
2259 nsAString_Finish(&name_str);
2260 if(NS_FAILED(nsres))
2261 return E_FAIL;
2263 nsres = nsIDOMNodeList_Item(node_list, 0, &nsnode);
2264 nsIDOMNodeList_Release(node_list);
2265 if(NS_FAILED(nsres) || !nsnode)
2266 return DISP_E_UNKNOWNNAME;
2268 hres = get_node(This, nsnode, TRUE, &node);
2269 if(FAILED(hres))
2270 return hres;
2272 V_VT(res) = VT_DISPATCH;
2273 V_DISPATCH(res) = (IDispatch*)&node->IHTMLDOMNode_iface;
2274 return S_OK;
2278 static const dispex_static_data_vtbl_t HTMLDocumentNode_dispex_vtbl = {
2279 NULL,
2280 NULL,
2281 HTMLDocumentNode_invoke,
2282 NULL
2285 static const NodeImplVtbl HTMLDocumentFragmentImplVtbl = {
2286 HTMLDocumentNode_QI,
2287 HTMLDocumentNode_destructor,
2288 HTMLDocument_cpc,
2289 HTMLDocumentFragment_clone
2292 static const tid_t HTMLDocumentNode_iface_tids[] = {
2293 IHTMLDOMNode_tid,
2294 IHTMLDOMNode2_tid,
2295 IHTMLDocument2_tid,
2296 IHTMLDocument3_tid,
2297 IHTMLDocument4_tid,
2298 IHTMLDocument5_tid,
2302 static dispex_static_data_t HTMLDocumentNode_dispex = {
2303 &HTMLDocumentNode_dispex_vtbl,
2304 DispHTMLDocument_tid,
2305 NULL,
2306 HTMLDocumentNode_iface_tids
2309 static HTMLDocumentNode *alloc_doc_node(HTMLDocumentObj *doc_obj, HTMLInnerWindow *window)
2311 HTMLDocumentNode *doc;
2313 doc = heap_alloc_zero(sizeof(HTMLDocumentNode));
2314 if(!doc)
2315 return NULL;
2317 doc->ref = 1;
2318 doc->basedoc.doc_node = doc;
2319 doc->basedoc.doc_obj = doc_obj;
2320 doc->basedoc.window = window->base.outer_window;
2321 doc->window = window;
2323 init_dispex(&doc->node.dispex, (IUnknown*)&doc->node.IHTMLDOMNode_iface,
2324 &HTMLDocumentNode_dispex);
2325 init_doc(&doc->basedoc, (IUnknown*)&doc->node.IHTMLDOMNode_iface,
2326 &doc->node.dispex.IDispatchEx_iface);
2327 HTMLDocumentNode_SecMgr_Init(doc);
2329 list_init(&doc->selection_list);
2330 list_init(&doc->range_list);
2331 list_init(&doc->plugin_hosts);
2333 return doc;
2336 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument *nsdoc, HTMLDocumentObj *doc_obj, HTMLInnerWindow *window, HTMLDocumentNode **ret)
2338 HTMLDocumentNode *doc;
2339 nsresult nsres;
2341 doc = alloc_doc_node(doc_obj, window);
2342 if(!doc)
2343 return E_OUTOFMEMORY;
2345 if(!doc_obj->basedoc.window || window->base.outer_window == doc_obj->basedoc.window)
2346 doc->basedoc.cp_container.forward_container = &doc_obj->basedoc.cp_container;
2348 HTMLDOMNode_Init(doc, &doc->node, (nsIDOMNode*)nsdoc);
2350 nsIDOMHTMLDocument_AddRef(nsdoc);
2351 doc->nsdoc = nsdoc;
2353 nsres = nsIDOMHTMLDocument_QueryInterface(nsdoc, &IID_nsIDOMNodeSelector, (void**)&doc->nsnode_selector);
2354 assert(nsres == NS_OK);
2356 init_document_mutation(doc);
2357 doc_init_events(doc);
2359 doc->node.vtbl = &HTMLDocumentNodeImplVtbl;
2360 doc->node.cp_container = &doc->basedoc.cp_container;
2362 *ret = doc;
2363 return S_OK;
2366 HRESULT create_document_fragment(nsIDOMNode *nsnode, HTMLDocumentNode *doc_node, HTMLDocumentNode **ret)
2368 HTMLDocumentNode *doc_frag;
2370 doc_frag = alloc_doc_node(doc_node->basedoc.doc_obj, doc_node->window);
2371 if(!doc_frag)
2372 return E_OUTOFMEMORY;
2374 IHTMLWindow2_AddRef(&doc_frag->window->base.IHTMLWindow2_iface);
2376 HTMLDOMNode_Init(doc_node, &doc_frag->node, nsnode);
2377 doc_frag->node.vtbl = &HTMLDocumentFragmentImplVtbl;
2378 doc_frag->node.cp_container = &doc_frag->basedoc.cp_container;
2380 *ret = doc_frag;
2381 return S_OK;
2384 /**********************************************************
2385 * ICustomDoc implementation
2388 static inline HTMLDocumentObj *impl_from_ICustomDoc(ICustomDoc *iface)
2390 return CONTAINING_RECORD(iface, HTMLDocumentObj, ICustomDoc_iface);
2393 static HRESULT WINAPI CustomDoc_QueryInterface(ICustomDoc *iface, REFIID riid, void **ppv)
2395 HTMLDocumentObj *This = impl_from_ICustomDoc(iface);
2397 if(htmldoc_qi(&This->basedoc, riid, ppv))
2398 return *ppv ? S_OK : E_NOINTERFACE;
2400 if(IsEqualGUID(&IID_ICustomDoc, riid)) {
2401 TRACE("(%p)->(IID_ICustomDoc %p)\n", This, ppv);
2402 *ppv = &This->ICustomDoc_iface;
2403 }else if(IsEqualGUID(&IID_ITargetContainer, riid)) {
2404 TRACE("(%p)->(IID_ITargetContainer %p)\n", This, ppv);
2405 *ppv = &This->ITargetContainer_iface;
2406 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
2407 return *ppv ? S_OK : E_NOINTERFACE;
2408 }else {
2409 FIXME("Unimplemented interface %s\n", debugstr_guid(riid));
2410 *ppv = NULL;
2411 return E_NOINTERFACE;
2414 IUnknown_AddRef((IUnknown*)*ppv);
2415 return S_OK;
2418 static ULONG WINAPI CustomDoc_AddRef(ICustomDoc *iface)
2420 HTMLDocumentObj *This = impl_from_ICustomDoc(iface);
2421 ULONG ref = InterlockedIncrement(&This->ref);
2423 TRACE("(%p) ref = %u\n", This, ref);
2425 return ref;
2428 static ULONG WINAPI CustomDoc_Release(ICustomDoc *iface)
2430 HTMLDocumentObj *This = impl_from_ICustomDoc(iface);
2431 ULONG ref = InterlockedDecrement(&This->ref);
2433 TRACE("(%p) ref = %u\n", This, ref);
2435 if(!ref) {
2436 nsIDOMWindowUtils *window_utils = NULL;
2438 if(This->basedoc.window && This->basedoc.window->nswindow)
2439 get_nsinterface((nsISupports*)This->basedoc.window->nswindow, &IID_nsIDOMWindowUtils, (void**)&window_utils);
2441 if(This->basedoc.doc_node) {
2442 This->basedoc.doc_node->basedoc.doc_obj = NULL;
2443 htmldoc_release(&This->basedoc.doc_node->basedoc);
2445 if(This->basedoc.window) {
2446 This->basedoc.window->doc_obj = NULL;
2447 IHTMLWindow2_Release(&This->basedoc.window->base.IHTMLWindow2_iface);
2449 if(This->basedoc.advise_holder)
2450 IOleAdviseHolder_Release(This->basedoc.advise_holder);
2452 if(This->view_sink)
2453 IAdviseSink_Release(This->view_sink);
2454 if(This->client)
2455 IOleObject_SetClientSite(&This->basedoc.IOleObject_iface, NULL);
2456 if(This->hostui)
2457 ICustomDoc_SetUIHandler(&This->ICustomDoc_iface, NULL);
2458 if(This->in_place_active)
2459 IOleInPlaceObjectWindowless_InPlaceDeactivate(&This->basedoc.IOleInPlaceObjectWindowless_iface);
2460 if(This->ipsite)
2461 IOleDocumentView_SetInPlaceSite(&This->basedoc.IOleDocumentView_iface, NULL);
2462 if(This->undomgr)
2463 IOleUndoManager_Release(This->undomgr);
2464 if(This->tooltips_hwnd)
2465 DestroyWindow(This->tooltips_hwnd);
2467 if(This->hwnd)
2468 DestroyWindow(This->hwnd);
2469 heap_free(This->mime);
2471 destroy_htmldoc(&This->basedoc);
2472 release_dispex(&This->dispex);
2474 if(This->nscontainer)
2475 NSContainer_Release(This->nscontainer);
2476 heap_free(This);
2478 /* Force cycle collection */
2479 if(window_utils) {
2480 nsIDOMWindowUtils_CycleCollect(window_utils, NULL, 0);
2481 nsIDOMWindowUtils_Release(window_utils);
2485 return ref;
2488 static HRESULT WINAPI CustomDoc_SetUIHandler(ICustomDoc *iface, IDocHostUIHandler *pUIHandler)
2490 HTMLDocumentObj *This = impl_from_ICustomDoc(iface);
2491 IOleCommandTarget *cmdtrg;
2492 HRESULT hres;
2494 TRACE("(%p)->(%p)\n", This, pUIHandler);
2496 if(This->custom_hostui && This->hostui == pUIHandler)
2497 return S_OK;
2499 This->custom_hostui = TRUE;
2501 if(This->hostui)
2502 IDocHostUIHandler_Release(This->hostui);
2503 if(pUIHandler)
2504 IDocHostUIHandler_AddRef(pUIHandler);
2505 This->hostui = pUIHandler;
2506 if(!pUIHandler)
2507 return S_OK;
2509 hres = IDocHostUIHandler_QueryInterface(pUIHandler, &IID_IOleCommandTarget, (void**)&cmdtrg);
2510 if(SUCCEEDED(hres)) {
2511 FIXME("custom UI handler supports IOleCommandTarget\n");
2512 IOleCommandTarget_Release(cmdtrg);
2515 return S_OK;
2518 static const ICustomDocVtbl CustomDocVtbl = {
2519 CustomDoc_QueryInterface,
2520 CustomDoc_AddRef,
2521 CustomDoc_Release,
2522 CustomDoc_SetUIHandler
2525 static const tid_t HTMLDocumentObj_iface_tids[] = {
2526 IHTMLDocument2_tid,
2527 IHTMLDocument3_tid,
2528 IHTMLDocument4_tid,
2529 IHTMLDocument5_tid,
2532 static dispex_static_data_t HTMLDocumentObj_dispex = {
2533 NULL,
2534 DispHTMLDocument_tid,
2535 NULL,
2536 HTMLDocumentObj_iface_tids
2539 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
2541 HTMLDocumentObj *doc;
2542 nsIDOMWindow *nswindow = NULL;
2543 nsresult nsres;
2544 HRESULT hres;
2546 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
2548 doc = heap_alloc_zero(sizeof(HTMLDocumentObj));
2549 if(!doc)
2550 return E_OUTOFMEMORY;
2552 init_dispex(&doc->dispex, (IUnknown*)&doc->ICustomDoc_iface, &HTMLDocumentObj_dispex);
2553 init_doc(&doc->basedoc, (IUnknown*)&doc->ICustomDoc_iface, &doc->dispex.IDispatchEx_iface);
2554 TargetContainer_Init(doc);
2556 doc->ICustomDoc_iface.lpVtbl = &CustomDocVtbl;
2557 doc->ref = 1;
2558 doc->basedoc.doc_obj = doc;
2560 doc->usermode = UNKNOWN_USERMODE;
2562 init_binding_ui(doc);
2564 hres = create_nscontainer(doc, &doc->nscontainer);
2565 if(FAILED(hres)) {
2566 ERR("Failed to init Gecko, returning CLASS_E_CLASSNOTAVAILABLE\n");
2567 htmldoc_release(&doc->basedoc);
2568 return hres;
2571 hres = htmldoc_query_interface(&doc->basedoc, riid, ppvObject);
2572 htmldoc_release(&doc->basedoc);
2573 if(FAILED(hres))
2574 return hres;
2576 nsres = nsIWebBrowser_GetContentDOMWindow(doc->nscontainer->webbrowser, &nswindow);
2577 if(NS_FAILED(nsres))
2578 ERR("GetContentDOMWindow failed: %08x\n", nsres);
2580 hres = HTMLOuterWindow_Create(doc, nswindow, NULL /* FIXME */, &doc->basedoc.window);
2581 if(nswindow)
2582 nsIDOMWindow_Release(nswindow);
2583 if(FAILED(hres)) {
2584 htmldoc_release(&doc->basedoc);
2585 return hres;
2588 if(!doc->basedoc.doc_node && doc->basedoc.window->base.inner_window->doc) {
2589 doc->basedoc.doc_node = doc->basedoc.window->base.inner_window->doc;
2590 htmldoc_addref(&doc->basedoc.doc_node->basedoc);
2593 get_thread_hwnd();
2595 return S_OK;