2 * Copyright 2005 Jacek Caban
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
37 #define HTMLDOC_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument2, iface)
39 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppvObject)
41 HTMLDocument *This = HTMLDOC_THIS(iface);
44 if(IsEqualGUID(&IID_IUnknown, riid)) {
45 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppvObject);
46 *ppvObject = HTMLDOC(This);
47 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
48 TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppvObject);
49 *ppvObject = HTMLDOC(This);
50 }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
51 TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppvObject);
52 *ppvObject = HTMLDOC(This);
53 }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
54 TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppvObject);
55 *ppvObject = HTMLDOC(This);
56 }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
57 TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppvObject);
58 *ppvObject = HTMLDOC3(This);
59 }else if(IsEqualGUID(&IID_IPersist, riid)) {
60 TRACE("(%p)->(IID_IPersist, %p)\n", This, ppvObject);
61 *ppvObject = PERSIST(This);
62 }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
63 TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppvObject);
64 *ppvObject = PERSISTMON(This);
65 }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
66 TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppvObject);
67 *ppvObject = PERSISTFILE(This);
68 }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
69 TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppvObject);
70 *ppvObject = MONPROP(This);
71 }else if(IsEqualGUID(&IID_IOleObject, riid)) {
72 TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppvObject);
73 *ppvObject = OLEOBJ(This);
74 }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
75 TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppvObject);
76 *ppvObject = OLEDOC(This);
77 }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
78 TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppvObject);
79 *ppvObject = DOCVIEW(This);
80 }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
81 TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppvObject);
82 *ppvObject = ACTOBJ(This);
83 }else if(IsEqualGUID(&IID_IViewObject, riid)) {
84 TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppvObject);
85 *ppvObject = VIEWOBJ(This);
86 }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
87 TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppvObject);
88 *ppvObject = VIEWOBJ2(This);
89 }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
90 TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppvObject);
91 *ppvObject = OLEWIN(This);
92 }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
93 TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppvObject);
94 *ppvObject = INPLACEOBJ(This);
95 }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
96 TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppvObject);
97 *ppvObject = INPLACEWIN(This);
98 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
99 TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppvObject);
100 *ppvObject = SERVPROV(This);
101 }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
102 TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppvObject);
103 *ppvObject = CMDTARGET(This);
104 }else if(IsEqualGUID(&IID_IOleControl, riid)) {
105 TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppvObject);
106 *ppvObject = CONTROL(This);
107 }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
108 TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppvObject);
109 *ppvObject = HLNKTARGET(This);
113 IHTMLDocument2_AddRef(iface);
117 FIXME("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppvObject);
118 return E_NOINTERFACE;
121 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
123 HTMLDocument *This = HTMLDOC_THIS(iface);
124 ULONG ref = InterlockedIncrement(&This->ref);
125 TRACE("(%p) ref = %lu\n", This, ref);
129 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
131 HTMLDocument *This = HTMLDOC_THIS(iface);
132 ULONG ref = InterlockedDecrement(&This->ref);
134 TRACE("(%p) ref = %lu\n", This, ref);
138 IOleObject_SetClientSite(OLEOBJ(This), NULL);
139 if(This->in_place_active)
140 IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(This));
142 IOleDocumentView_SetInPlaceSite(DOCVIEW(This), NULL);
144 DestroyWindow(This->hwnd);
146 if(This->nscontainer)
147 NSContainer_Release(This->nscontainer);
149 HeapFree(GetProcessHeap(), 0, This);
157 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
159 FIXME("(%p)->(%p)\n", iface, pctinfo);
163 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
164 LCID lcid, ITypeInfo **ppTInfo)
166 FIXME("(%p)->(%u %lu %p)\n", iface, iTInfo, lcid, ppTInfo);
170 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
171 LPOLESTR *rgszNames, UINT cNames,
172 LCID lcid, DISPID *rgDispId)
174 FIXME("(%p)->(%s %p %u %lu %p)\n", iface, debugstr_guid(riid), rgszNames, cNames,
179 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
180 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
181 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
183 FIXME("(%p)->(%ld %s %ld %d %p %p %p %p)\n", iface, dispIdMember, debugstr_guid(riid),
184 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
188 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
190 FIXME("(%p)->(%p)\n", iface, p);
194 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
196 FIXME("(%p)->(%p)\n", iface, p);
200 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
202 FIXME("(%p)->(%p)\n", iface, p);
206 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
208 FIXME("(%p)->(%p)\n", iface, p);
212 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
214 FIXME("(%p)->(%p)\n", iface, p);
218 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
220 FIXME("(%p)->(%p)\n", iface, p);
224 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
226 FIXME("(%p)->(%p)\n", iface, p);
230 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
232 FIXME("(%p)->(%p)\n", iface, p);
236 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
238 FIXME("(%p)->(%p)\n", iface, p);
242 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
244 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
248 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
250 FIXME("(%p)->(%p)\n", iface, p);
254 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
256 FIXME("(%p)->(%p)\n", iface, p);
260 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
262 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
266 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
268 FIXME("(%p)->(%p)\n", iface, p);
272 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
274 FIXME("(%p)->(%p)\n", iface, p);
278 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
280 FIXME("(%p)->(%p)\n", iface, p);
284 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
286 FIXME("(%p)->(%p)\n", iface, p);
290 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
292 FIXME("(%p)->(%p)\n", iface, p);
296 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
298 FIXME("(%p)->(%p)\n", iface, p);
302 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
304 FIXME("(%p)\n", iface);
308 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
310 FIXME("(%p)->(%p)\n", iface, p);
314 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
316 FIXME("(%p)\n", iface);
320 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
322 FIXME("(%p)->(%p)\n", iface, p);
326 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
328 FIXME("(%p)\n", iface);
332 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
334 FIXME("(%p)->(%p)\n", iface, p);
338 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
340 FIXME("(%p)->()\n", iface);
344 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
346 FIXME("(%p)->(%p)\n", iface, p);
350 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
352 FIXME("(%p)\n", iface);
356 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
358 FIXME("(%p)->(%p)\n", iface, p);
362 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
364 FIXME("(%p)->(%p)\n", iface, p);
368 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
370 FIXME("(%p)->(%p)\n", iface, p);
374 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
376 FIXME("(%p)->(%p)\n", iface, p);
380 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
382 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
386 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
388 FIXME("(%p)->(%p)\n", iface, p);
392 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
394 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
398 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
400 FIXME("(%p)->(%p)\n", iface, p);
404 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
406 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
410 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
412 FIXME("(%p)->(%p)\n", iface, p);
416 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
418 FIXME("(%p)->(%x)\n", iface, v);
422 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
424 FIXME("(%p)->(%p)\n", iface, p);
428 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
430 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
434 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
436 FIXME("(%p)->(%p)\n", iface, p);
440 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
442 FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
446 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
448 FIXME("(%p)->(%p)\n", iface, p);
452 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
454 FIXME("(%p)->(%p)\n", iface, p);
458 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
460 FIXME("(%p)->(%p)\n", iface, p);
464 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
466 FIXME("(%p)->(%p)\n", iface, p);
470 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
472 FIXME("(%p)->(%p)\n", iface, p);
476 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
478 FIXME("(%p)->(%p)\n", iface, p);
482 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
484 FIXME("(%p)->(%p)\n", iface, p);
488 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
490 FIXME("(%p)->(%p)\n", iface, p);
494 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
496 FIXME("(%p)->(%p)\n", iface, p);
500 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
502 FIXME("(%p)->(%p)\n", iface, psarray);
506 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
508 FIXME("(%p)->(%p)\n", iface, psarray);
512 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
513 VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
515 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(url), pomWindowResult);
519 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
521 FIXME("(%p)\n", iface);
525 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
527 FIXME("(%p)\n", iface);
531 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
534 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
538 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
541 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
545 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
548 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
552 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
555 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
559 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
562 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
566 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
569 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
573 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
574 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
576 FIXME("(%p)->(%s %x %p)\n", iface, debugstr_w(cmdID), showUI, pfRet);
580 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
583 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
587 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
588 IHTMLElement **newElem)
590 FIXME("(%p)->(%s %p)\n", iface, debugstr_w(eTag), newElem);
594 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
596 FIXME("(%p)\n", iface);
600 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
602 FIXME("(%p)->(%p)\n", iface, p);
606 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
608 FIXME("(%p)\n", iface);
612 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
614 FIXME("(%p)->(%p)\n", iface, p);
618 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
620 FIXME("(%p)\n", iface);
624 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
626 FIXME("(%p)->(%p)\n", iface, p);
630 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
632 FIXME("(%p)\n", iface);
636 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
638 FIXME("(%p)->(%p)\n", iface, p);
642 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
644 FIXME("(%p)\n", iface);
648 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
650 FIXME("(%p)->(%p)\n", iface, p);
654 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
656 FIXME("(%p)\n", iface);
660 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
662 FIXME("(%p)->(%p)\n", iface, p);
666 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
668 FIXME("(%p)\n", iface);
672 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
674 FIXME("(%p)->(%p)\n", iface, p);
678 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
680 FIXME("(%p)\n", iface);
684 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
686 FIXME("(%p)->(%p)\n", iface, p);
690 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
692 FIXME("(%p)\n", iface);
696 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
698 FIXME("(%p)->(%p)\n", iface, p);
702 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
704 FIXME("(%p)\n", iface);
708 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
710 FIXME("(%p)->(%p)\n", iface, p);
714 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
716 FIXME("(%p)\n", iface);
720 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
722 FIXME("(%p)->(%p)\n", iface, p);
726 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
728 FIXME("(%p)\n", iface);
732 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
734 FIXME("(%p)->(%p)\n", iface, p);
738 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
740 FIXME("(%p)\n", iface);
744 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
746 FIXME("(%p)->(%p)\n", iface, p);
750 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
752 FIXME("(%p)\n", iface);
756 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
758 FIXME("(%p)->(%p)\n", iface, p);
762 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
764 FIXME("(%p)\n", iface);
768 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
770 FIXME("(%p)->(%p)\n", iface, p);
774 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
776 FIXME("(%p)\n", iface);
780 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
782 FIXME("(%p)->(%p)\n", iface, p);
786 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
788 FIXME("(%p)\n", iface);
792 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
794 FIXME("(%p)->(%p)\n", iface, p);
798 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, long x, long y,
799 IHTMLElement **elementHit)
801 FIXME("(%p)->(%ld %ld %p)\n", iface, x, y, elementHit);
805 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
807 FIXME("(%p)->(%p)\n", iface, p);
811 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
812 IHTMLStyleSheetsCollection **p)
814 FIXME("(%p)->(%p)\n", iface, p);
818 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
820 FIXME("(%p)\n", iface);
824 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
826 FIXME("(%p)->(%p)\n", iface, p);
830 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
832 FIXME("(%p)\n", iface);
836 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
838 FIXME("(%p)->(%p)\n", iface, p);
842 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
844 FIXME("(%p)->(%p)\n", iface, String);
848 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
849 long lIndex, IHTMLStyleSheet **ppnewStyleSheet)
851 FIXME("(%p)->(%s %ld %p)\n", iface, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
855 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
856 HTMLDocument_QueryInterface,
858 HTMLDocument_Release,
859 HTMLDocument_GetTypeInfoCount,
860 HTMLDocument_GetTypeInfo,
861 HTMLDocument_GetIDsOfNames,
863 HTMLDocument_get_Script,
864 HTMLDocument_get_all,
865 HTMLDocument_get_body,
866 HTMLDocument_get_activeElement,
867 HTMLDocument_get_images,
868 HTMLDocument_get_applets,
869 HTMLDocument_get_links,
870 HTMLDocument_get_forms,
871 HTMLDocument_get_anchors,
872 HTMLDocument_put_title,
873 HTMLDocument_get_title,
874 HTMLDocument_get_scripts,
875 HTMLDocument_put_designMode,
876 HTMLDocument_get_designMode,
877 HTMLDocument_get_selection,
878 HTMLDocument_get_readyState,
879 HTMLDocument_get_frames,
880 HTMLDocument_get_embeds,
881 HTMLDocument_get_plugins,
882 HTMLDocument_put_alinkColor,
883 HTMLDocument_get_alinkColor,
884 HTMLDocument_put_bgColor,
885 HTMLDocument_get_bgColor,
886 HTMLDocument_put_fgColor,
887 HTMLDocument_get_fgColor,
888 HTMLDocument_put_linkColor,
889 HTMLDocument_get_linkColor,
890 HTMLDocument_put_vlinkColor,
891 HTMLDocument_get_vlinkColor,
892 HTMLDocument_get_referrer,
893 HTMLDocument_get_location,
894 HTMLDocument_get_lastModified,
895 HTMLDocument_put_URL,
896 HTMLDocument_get_URL,
897 HTMLDocument_put_domain,
898 HTMLDocument_get_domain,
899 HTMLDocument_put_cookie,
900 HTMLDocument_get_cookie,
901 HTMLDocument_put_expando,
902 HTMLDocument_get_expando,
903 HTMLDocument_put_charset,
904 HTMLDocument_get_charset,
905 HTMLDocument_put_defaultCharset,
906 HTMLDocument_get_defaultCharset,
907 HTMLDocument_get_mimeType,
908 HTMLDocument_get_fileSize,
909 HTMLDocument_get_fileCreatedDate,
910 HTMLDocument_get_fileModifiedDate,
911 HTMLDocument_get_fileUpdatedDate,
912 HTMLDocument_get_security,
913 HTMLDocument_get_protocol,
914 HTMLDocument_get_nameProp,
916 HTMLDocument_writeln,
920 HTMLDocument_queryCommandSupported,
921 HTMLDocument_queryCommandEnabled,
922 HTMLDocument_queryCommandState,
923 HTMLDocument_queryCommandIndeterm,
924 HTMLDocument_queryCommandText,
925 HTMLDocument_queryCommandValue,
926 HTMLDocument_execCommand,
927 HTMLDocument_execCommandShowHelp,
928 HTMLDocument_createElement,
929 HTMLDocument_put_onhelp,
930 HTMLDocument_get_onhelp,
931 HTMLDocument_put_onclick,
932 HTMLDocument_get_onclick,
933 HTMLDocument_put_ondblclick,
934 HTMLDocument_get_ondblclick,
935 HTMLDocument_put_onkeyup,
936 HTMLDocument_get_onkeyup,
937 HTMLDocument_put_onkeydown,
938 HTMLDocument_get_onkeydown,
939 HTMLDocument_put_onkeypress,
940 HTMLDocument_get_onkeypress,
941 HTMLDocument_put_onmouseup,
942 HTMLDocument_get_onmouseup,
943 HTMLDocument_put_onmousedown,
944 HTMLDocument_get_onmousedown,
945 HTMLDocument_put_onmousemove,
946 HTMLDocument_get_onmousemove,
947 HTMLDocument_put_onmouseout,
948 HTMLDocument_get_onmouseout,
949 HTMLDocument_put_onmouseover,
950 HTMLDocument_get_onmouseover,
951 HTMLDocument_put_onreadystatechange,
952 HTMLDocument_get_onreadystatechange,
953 HTMLDocument_put_onafterupdate,
954 HTMLDocument_get_onafterupdate,
955 HTMLDocument_put_onrowexit,
956 HTMLDocument_get_onrowexit,
957 HTMLDocument_put_onrowenter,
958 HTMLDocument_get_onrowenter,
959 HTMLDocument_put_ondragstart,
960 HTMLDocument_get_ondragstart,
961 HTMLDocument_put_onselectstart,
962 HTMLDocument_get_onselectstart,
963 HTMLDocument_elementFromPoint,
964 HTMLDocument_get_parentWindow,
965 HTMLDocument_get_styleSheets,
966 HTMLDocument_put_onbeforeupdate,
967 HTMLDocument_get_onbeforeupdate,
968 HTMLDocument_put_onerrorupdate,
969 HTMLDocument_get_onerrorupdate,
970 HTMLDocument_toString,
971 HTMLDocument_createStyleSheet
974 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
979 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
981 ret = HeapAlloc(GetProcessHeap(), 0, sizeof(HTMLDocument));
982 ret->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
984 ret->nscontainer = NULL;
986 hres = IHTMLDocument_QueryInterface(HTMLDOC(ret), riid, ppvObject);
988 HeapFree(GetProcessHeap(), 0, ret);
994 HTMLDocument_HTMLDocument3_Init(ret);
995 HTMLDocument_Persist_Init(ret);
996 HTMLDocument_OleObj_Init(ret);
997 HTMLDocument_View_Init(ret);
998 HTMLDocument_Window_Init(ret);
999 HTMLDocument_Service_Init(ret);
1000 HTMLDocument_Hlink_Init(ret);
1002 NSContainer_Create(ret);