wldap32: Fix winldap_private header compatibility with 64-bit.
[wine/wine64.git] / dlls / mshtml / htmldoc3.c
blob533dedd647a73e6b95d56f7d87aa7987f3915879
1 /*
2 * Copyright 2005 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>
24 #define COBJMACROS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
37 #define HTMLDOC3_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument3, iface)
39 static HRESULT WINAPI HTMLDocument3_QueryInterface(IHTMLDocument3 *iface,
40 REFIID riid, void **ppv)
42 HTMLDocument *This = HTMLDOC3_THIS(iface);
43 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
46 static ULONG WINAPI HTMLDocument3_AddRef(IHTMLDocument3 *iface)
48 HTMLDocument *This = HTMLDOC3_THIS(iface);
49 return IHTMLDocument2_AddRef(HTMLDOC(This));
52 static ULONG WINAPI HTMLDocument3_Release(IHTMLDocument3 *iface)
54 HTMLDocument *This = HTMLDOC3_THIS(iface);
55 return IHTMLDocument2_Release(HTMLDOC(This));
58 static HRESULT WINAPI HTMLDocument3_GetTypeInfoCount(IHTMLDocument3 *iface, UINT *pctinfo)
60 HTMLDocument *This = HTMLDOC3_THIS(iface);
61 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(This), pctinfo);
64 static HRESULT WINAPI HTMLDocument3_GetTypeInfo(IHTMLDocument3 *iface, UINT iTInfo,
65 LCID lcid, ITypeInfo **ppTInfo)
67 HTMLDocument *This = HTMLDOC3_THIS(iface);
68 return IDispatchEx_GetTypeInfo(DISPATCHEX(This), iTInfo, lcid, ppTInfo);
71 static HRESULT WINAPI HTMLDocument3_GetIDsOfNames(IHTMLDocument3 *iface, REFIID riid,
72 LPOLESTR *rgszNames, UINT cNames,
73 LCID lcid, DISPID *rgDispId)
75 HTMLDocument *This = HTMLDOC3_THIS(iface);
76 return IDispatchEx_GetIDsOfNames(DISPATCHEX(This), riid, rgszNames, cNames, lcid, rgDispId);
79 static HRESULT WINAPI HTMLDocument3_Invoke(IHTMLDocument3 *iface, DISPID dispIdMember,
80 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
81 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
83 HTMLDocument *This = HTMLDOC3_THIS(iface);
84 return IDispatchEx_Invoke(DISPATCHEX(This), dispIdMember, riid, lcid, wFlags, pDispParams,
85 pVarResult, pExcepInfo, puArgErr);
88 static HRESULT WINAPI HTMLDocument3_releaseCapture(IHTMLDocument3 *iface)
90 HTMLDocument *This = HTMLDOC3_THIS(iface);
91 FIXME("(%p)\n", This);
92 return E_NOTIMPL;
95 static HRESULT WINAPI HTMLDocument3_recalc(IHTMLDocument3 *iface, VARIANT_BOOL fForce)
97 HTMLDocument *This = HTMLDOC3_THIS(iface);
98 FIXME("(%p)->(%x)\n", This, fForce);
99 return E_NOTIMPL;
102 static HRESULT WINAPI HTMLDocument3_createTextNode(IHTMLDocument3 *iface, BSTR text,
103 IHTMLDOMNode **newTextNode)
105 HTMLDocument *This = HTMLDOC3_THIS(iface);
106 nsIDOMText *nstext;
107 HTMLDOMNode *node;
108 nsAString text_str;
109 nsresult nsres;
111 TRACE("(%p)->(%s %p)\n", This, debugstr_w(text), newTextNode);
113 if(!This->nsdoc) {
114 WARN("NULL nsdoc\n");
115 return E_UNEXPECTED;
118 nsAString_Init(&text_str, text);
119 nsres = nsIDOMHTMLDocument_CreateTextNode(This->nsdoc, &text_str, &nstext);
120 nsAString_Finish(&text_str);
121 if(NS_FAILED(nsres)) {
122 ERR("CreateTextNode failed: %08x\n", nsres);
123 return E_FAIL;
126 node = HTMLDOMTextNode_Create(This, (nsIDOMNode*)nstext);
127 nsIDOMElement_Release(nstext);
129 *newTextNode = HTMLDOMNODE(node);
130 IHTMLDOMNode_AddRef(HTMLDOMNODE(node));
131 return S_OK;
134 static HRESULT WINAPI HTMLDocument3_get_documentElement(IHTMLDocument3 *iface, IHTMLElement **p)
136 HTMLDocument *This = HTMLDOC3_THIS(iface);
137 nsIDOMElement *nselem = NULL;
138 HTMLDOMNode *node;
139 nsresult nsres;
141 TRACE("(%p)->(%p)\n", This, p);
143 if(!This->nsdoc) {
144 WARN("NULL nsdoc\n");
145 return E_UNEXPECTED;
148 nsres = nsIDOMHTMLDocument_GetDocumentElement(This->nsdoc, &nselem);
149 if(NS_FAILED(nsres)) {
150 ERR("GetDocumentElement failed: %08x\n", nsres);
151 return E_FAIL;
154 if(nselem) {
155 node = get_node(This, (nsIDOMNode *)nselem, TRUE);
156 nsIDOMElement_Release(nselem);
157 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)p);
158 }else {
159 *p = NULL;
162 return S_OK;
165 static HRESULT WINAPI HTMLDocument3_uniqueID(IHTMLDocument3 *iface, BSTR *p)
167 HTMLDocument *This = HTMLDOC3_THIS(iface);
168 FIXME("(%p)->(%p)\n", This, p);
169 return E_NOTIMPL;
172 static HRESULT WINAPI HTMLDocument3_attachEvent(IHTMLDocument3 *iface, BSTR event,
173 IDispatch* pDisp, VARIANT_BOOL *pfResult)
175 HTMLDocument *This = HTMLDOC3_THIS(iface);
176 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(event), pDisp, pfResult);
177 return E_NOTIMPL;
180 static HRESULT WINAPI HTMLDocument3_detachEvent(IHTMLDocument3 *iface, BSTR event,
181 IDispatch *pDisp)
183 HTMLDocument *This = HTMLDOC3_THIS(iface);
184 FIXME("(%p)->(%s %p)\n", This, debugstr_w(event), pDisp);
185 return E_NOTIMPL;
188 static HRESULT WINAPI HTMLDocument3_put_onrowsdelete(IHTMLDocument3 *iface, VARIANT v)
190 HTMLDocument *This = HTMLDOC3_THIS(iface);
191 FIXME("(%p)->()\n", This);
192 return E_NOTIMPL;
195 static HRESULT WINAPI HTMLDocument3_get_onrowsdelete(IHTMLDocument3 *iface, VARIANT *p)
197 HTMLDocument *This = HTMLDOC3_THIS(iface);
198 FIXME("(%p)->(%p)\n", This, p);
199 return E_NOTIMPL;
202 static HRESULT WINAPI HTMLDocument3_put_onrowsinserted(IHTMLDocument3 *iface, VARIANT v)
204 HTMLDocument *This = HTMLDOC3_THIS(iface);
205 FIXME("(%p)->()\n", This);
206 return E_NOTIMPL;
209 static HRESULT WINAPI HTMLDocument3_get_onrowsinserted(IHTMLDocument3 *iface, VARIANT *p)
211 HTMLDocument *This = HTMLDOC3_THIS(iface);
212 FIXME("(%p)->(%p)\n", This, p);
213 return E_NOTIMPL;
216 static HRESULT WINAPI HTMLDocument3_put_oncellchange(IHTMLDocument3 *iface, VARIANT v)
218 HTMLDocument *This = HTMLDOC3_THIS(iface);
219 FIXME("(%p)->()\n", This);
220 return E_NOTIMPL;
223 static HRESULT WINAPI HTMLDocument3_get_oncellchange(IHTMLDocument3 *iface, VARIANT *p)
225 HTMLDocument *This = HTMLDOC3_THIS(iface);
226 FIXME("(%p)->(%p)\n", This, p);
227 return E_NOTIMPL;
230 static HRESULT WINAPI HTMLDocument3_put_ondatasetchanged(IHTMLDocument3 *iface, VARIANT v)
232 HTMLDocument *This = HTMLDOC3_THIS(iface);
233 FIXME("(%p)->()\n", This);
234 return E_NOTIMPL;
237 static HRESULT WINAPI HTMLDocument3_get_ondatasetchanged(IHTMLDocument3 *iface, VARIANT *p)
239 HTMLDocument *This = HTMLDOC3_THIS(iface);
240 FIXME("(%p)->(%p)\n", This, p);
241 return E_NOTIMPL;
244 static HRESULT WINAPI HTMLDocument3_put_ondataavailable(IHTMLDocument3 *iface, VARIANT v)
246 HTMLDocument *This = HTMLDOC3_THIS(iface);
247 FIXME("(%p)->()\n", This);
248 return E_NOTIMPL;
251 static HRESULT WINAPI HTMLDocument3_get_ondataavailable(IHTMLDocument3 *iface, VARIANT *p)
253 HTMLDocument *This = HTMLDOC3_THIS(iface);
254 FIXME("(%p)->(%p)\n", This, p);
255 return E_NOTIMPL;
258 static HRESULT WINAPI HTMLDocument3_put_ondatasetcomplete(IHTMLDocument3 *iface, VARIANT v)
260 HTMLDocument *This = HTMLDOC3_THIS(iface);
261 FIXME("(%p)->()\n", This);
262 return E_NOTIMPL;
265 static HRESULT WINAPI HTMLDocument3_get_ondatasetcomplete(IHTMLDocument3 *iface, VARIANT *p)
267 HTMLDocument *This = HTMLDOC3_THIS(iface);
268 FIXME("(%p)->(%p)\n", This, p);
269 return E_NOTIMPL;
272 static HRESULT WINAPI HTMLDocument3_put_onpropertychange(IHTMLDocument3 *iface, VARIANT v)
274 HTMLDocument *This = HTMLDOC3_THIS(iface);
275 FIXME("(%p)->()\n", This);
276 return E_NOTIMPL;
279 static HRESULT WINAPI HTMLDocument3_get_onpropertychange(IHTMLDocument3 *iface, VARIANT *p)
281 HTMLDocument *This = HTMLDOC3_THIS(iface);
282 FIXME("(%p)->(%p)\n", This, p);
283 return E_NOTIMPL;
286 static HRESULT WINAPI HTMLDocument3_put_dir(IHTMLDocument3 *iface, BSTR v)
288 HTMLDocument *This = HTMLDOC3_THIS(iface);
289 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
290 return E_NOTIMPL;
293 static HRESULT WINAPI HTMLDocument3_get_dir(IHTMLDocument3 *iface, BSTR *p)
295 HTMLDocument *This = HTMLDOC3_THIS(iface);
296 FIXME("(%p)->(%p)\n", This, p);
297 return E_NOTIMPL;
300 static HRESULT WINAPI HTMLDocument3_put_oncontextmenu(IHTMLDocument3 *iface, VARIANT v)
302 HTMLDocument *This = HTMLDOC3_THIS(iface);
303 FIXME("(%p)->()\n", This);
304 return E_NOTIMPL;
307 static HRESULT WINAPI HTMLDocument3_get_oncontextmenu(IHTMLDocument3 *iface, VARIANT *p)
309 HTMLDocument *This = HTMLDOC3_THIS(iface);
310 FIXME("(%p)->(%p)\n", This, p);
311 return E_NOTIMPL;
314 static HRESULT WINAPI HTMLDocument3_put_onstop(IHTMLDocument3 *iface, VARIANT v)
316 HTMLDocument *This = HTMLDOC3_THIS(iface);
317 FIXME("(%p)->()\n", This);
318 return E_NOTIMPL;
321 static HRESULT WINAPI HTMLDocument3_get_onstop(IHTMLDocument3 *iface, VARIANT *p)
323 HTMLDocument *This = HTMLDOC3_THIS(iface);
324 FIXME("(%p)->(%p)\n", This, p);
325 return E_NOTIMPL;
328 static HRESULT WINAPI HTMLDocument3_createDocumentFragment(IHTMLDocument3 *iface,
329 IHTMLDocument2 **ppNewDoc)
331 HTMLDocument *This = HTMLDOC3_THIS(iface);
332 FIXME("(%p)->(%p)\n", This, ppNewDoc);
333 return E_NOTIMPL;
336 static HRESULT WINAPI HTMLDocument3_get_parentDocument(IHTMLDocument3 *iface,
337 IHTMLDocument2 **p)
339 HTMLDocument *This = HTMLDOC3_THIS(iface);
340 FIXME("(%p)->(%p)\n", This, p);
341 return E_NOTIMPL;
344 static HRESULT WINAPI HTMLDocument3_put_enableDownload(IHTMLDocument3 *iface,
345 VARIANT_BOOL v)
347 HTMLDocument *This = HTMLDOC3_THIS(iface);
348 FIXME("(%p)->(%x)\n", This, v);
349 return E_NOTIMPL;
352 static HRESULT WINAPI HTMLDocument3_get_enableDownload(IHTMLDocument3 *iface,
353 VARIANT_BOOL *p)
355 HTMLDocument *This = HTMLDOC3_THIS(iface);
356 FIXME("(%p)->(%p)\n", This, p);
357 return E_NOTIMPL;
360 static HRESULT WINAPI HTMLDocument3_put_baseUrl(IHTMLDocument3 *iface, BSTR v)
362 HTMLDocument *This = HTMLDOC3_THIS(iface);
363 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
364 return E_NOTIMPL;
367 static HRESULT WINAPI HTMLDocument3_get_baseUrl(IHTMLDocument3 *iface, BSTR *p)
369 HTMLDocument *This = HTMLDOC3_THIS(iface);
370 FIXME("(%p)->(%p)\n", This, p);
371 return E_NOTIMPL;
374 static HRESULT WINAPI HTMLDocument3_get_childNodes(IHTMLDocument3 *iface, IDispatch **p)
376 HTMLDocument *This = HTMLDOC3_THIS(iface);
377 FIXME("(%p)->(%p)\n", This, p);
378 return E_NOTIMPL;
381 static HRESULT WINAPI HTMLDocument3_put_inheritStyleSheets(IHTMLDocument3 *iface,
382 VARIANT_BOOL v)
384 HTMLDocument *This = HTMLDOC3_THIS(iface);
385 FIXME("(%p)->()\n", This);
386 return E_NOTIMPL;
389 static HRESULT WINAPI HTMLDocument3_get_inheritStyleSheets(IHTMLDocument3 *iface,
390 VARIANT_BOOL *p)
392 HTMLDocument *This = HTMLDOC3_THIS(iface);
393 FIXME("(%p)->(%p)\n", This, p);
394 return E_NOTIMPL;
397 static HRESULT WINAPI HTMLDocument3_put_onbeforeeditfocus(IHTMLDocument3 *iface, VARIANT v)
399 HTMLDocument *This = HTMLDOC3_THIS(iface);
400 FIXME("(%p)->()\n", This);
401 return E_NOTIMPL;
404 static HRESULT WINAPI HTMLDocument3_get_onbeforeeditfocus(IHTMLDocument3 *iface, VARIANT *p)
406 HTMLDocument *This = HTMLDOC3_THIS(iface);
407 FIXME("(%p)->(%p)\n", This, p);
408 return E_NOTIMPL;
411 static HRESULT WINAPI HTMLDocument3_getElementsByName(IHTMLDocument3 *iface, BSTR v,
412 IHTMLElementCollection **ppelColl)
414 HTMLDocument *This = HTMLDOC3_THIS(iface);
415 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), ppelColl);
416 return E_NOTIMPL;
420 static HRESULT WINAPI HTMLDocument3_getElementById(IHTMLDocument3 *iface, BSTR v,
421 IHTMLElement **pel)
423 HTMLDocument *This = HTMLDOC3_THIS(iface);
424 nsIDOMElement *nselem;
425 HTMLDOMNode *node;
426 nsAString id_str;
427 nsresult nsres;
429 TRACE("(%p)->(%s %p)\n", This, debugstr_w(v), pel);
431 if(!This->nsdoc) {
432 WARN("NULL nsdoc\n");
433 return E_UNEXPECTED;
436 nsAString_Init(&id_str, v);
437 nsres = nsIDOMHTMLDocument_GetElementById(This->nsdoc, &id_str, &nselem);
438 nsAString_Finish(&id_str);
439 if(FAILED(nsres)) {
440 ERR("GetElementById failed: %08x\n", nsres);
441 return E_FAIL;
444 if(nselem) {
445 node = get_node(This, (nsIDOMNode*)nselem, TRUE);
446 nsIDOMElement_Release(nselem);
448 IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)pel);
449 }else {
450 *pel = NULL;
453 return S_OK;
457 static HRESULT WINAPI HTMLDocument3_getElementsByTagName(IHTMLDocument3 *iface, BSTR v,
458 IHTMLElementCollection **pelColl)
460 HTMLDocument *This = HTMLDOC3_THIS(iface);
461 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), pelColl);
462 return E_NOTIMPL;
465 #undef HTMLDOC3_THIS
467 static const IHTMLDocument3Vtbl HTMLDocument3Vtbl = {
468 HTMLDocument3_QueryInterface,
469 HTMLDocument3_AddRef,
470 HTMLDocument3_Release,
471 HTMLDocument3_GetTypeInfoCount,
472 HTMLDocument3_GetTypeInfo,
473 HTMLDocument3_GetIDsOfNames,
474 HTMLDocument3_Invoke,
475 HTMLDocument3_releaseCapture,
476 HTMLDocument3_recalc,
477 HTMLDocument3_createTextNode,
478 HTMLDocument3_get_documentElement,
479 HTMLDocument3_uniqueID,
480 HTMLDocument3_attachEvent,
481 HTMLDocument3_detachEvent,
482 HTMLDocument3_put_onrowsdelete,
483 HTMLDocument3_get_onrowsdelete,
484 HTMLDocument3_put_onrowsinserted,
485 HTMLDocument3_get_onrowsinserted,
486 HTMLDocument3_put_oncellchange,
487 HTMLDocument3_get_oncellchange,
488 HTMLDocument3_put_ondatasetchanged,
489 HTMLDocument3_get_ondatasetchanged,
490 HTMLDocument3_put_ondataavailable,
491 HTMLDocument3_get_ondataavailable,
492 HTMLDocument3_put_ondatasetcomplete,
493 HTMLDocument3_get_ondatasetcomplete,
494 HTMLDocument3_put_onpropertychange,
495 HTMLDocument3_get_onpropertychange,
496 HTMLDocument3_put_dir,
497 HTMLDocument3_get_dir,
498 HTMLDocument3_put_oncontextmenu,
499 HTMLDocument3_get_oncontextmenu,
500 HTMLDocument3_put_onstop,
501 HTMLDocument3_get_onstop,
502 HTMLDocument3_createDocumentFragment,
503 HTMLDocument3_get_parentDocument,
504 HTMLDocument3_put_enableDownload,
505 HTMLDocument3_get_enableDownload,
506 HTMLDocument3_put_baseUrl,
507 HTMLDocument3_get_baseUrl,
508 HTMLDocument3_get_childNodes,
509 HTMLDocument3_put_inheritStyleSheets,
510 HTMLDocument3_get_inheritStyleSheets,
511 HTMLDocument3_put_onbeforeeditfocus,
512 HTMLDocument3_get_onbeforeeditfocus,
513 HTMLDocument3_getElementsByName,
514 HTMLDocument3_getElementById,
515 HTMLDocument3_getElementsByTagName
518 #define HTMLDOC4_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument4, iface)
520 static HRESULT WINAPI HTMLDocument4_QueryInterface(IHTMLDocument4 *iface,
521 REFIID riid, void **ppv)
523 HTMLDocument *This = HTMLDOC4_THIS(iface);
524 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
527 static ULONG WINAPI HTMLDocument4_AddRef(IHTMLDocument4 *iface)
529 HTMLDocument *This = HTMLDOC4_THIS(iface);
530 return IHTMLDocument2_AddRef(HTMLDOC(This));
533 static ULONG WINAPI HTMLDocument4_Release(IHTMLDocument4 *iface)
535 HTMLDocument *This = HTMLDOC4_THIS(iface);
536 return IHTMLDocument2_Release(HTMLDOC(This));
539 static HRESULT WINAPI HTMLDocument4_GetTypeInfoCount(IHTMLDocument4 *iface, UINT *pctinfo)
541 HTMLDocument *This = HTMLDOC4_THIS(iface);
542 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(This), pctinfo);
545 static HRESULT WINAPI HTMLDocument4_GetTypeInfo(IHTMLDocument4 *iface, UINT iTInfo,
546 LCID lcid, ITypeInfo **ppTInfo)
548 HTMLDocument *This = HTMLDOC4_THIS(iface);
549 return IDispatchEx_GetTypeInfo(DISPATCHEX(This), iTInfo, lcid, ppTInfo);
552 static HRESULT WINAPI HTMLDocument4_GetIDsOfNames(IHTMLDocument4 *iface, REFIID riid,
553 LPOLESTR *rgszNames, UINT cNames,
554 LCID lcid, DISPID *rgDispId)
556 HTMLDocument *This = HTMLDOC4_THIS(iface);
557 return IDispatchEx_GetIDsOfNames(DISPATCHEX(This), riid, rgszNames, cNames, lcid, rgDispId);
560 static HRESULT WINAPI HTMLDocument4_Invoke(IHTMLDocument4 *iface, DISPID dispIdMember,
561 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
562 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
564 HTMLDocument *This = HTMLDOC4_THIS(iface);
565 return IDispatchEx_Invoke(DISPATCHEX(This), dispIdMember, riid, lcid, wFlags, pDispParams,
566 pVarResult, pExcepInfo, puArgErr);
569 static HRESULT WINAPI HTMLDocument4_focus(IHTMLDocument4 *iface)
571 HTMLDocument *This = HTMLDOC4_THIS(iface);
572 nsIDOMNSHTMLElement *nselem;
573 nsIDOMHTMLElement *nsbody;
574 nsresult nsres;
576 TRACE("(%p)->()\n", This);
578 nsres = nsIDOMHTMLDocument_GetBody(This->nsdoc, &nsbody);
579 if(NS_FAILED(nsres) || !nsbody) {
580 ERR("GetBody failed: %08x\n", nsres);
581 return E_FAIL;
584 nsres = nsIDOMHTMLElement_QueryInterface(nsbody, &IID_nsIDOMNSHTMLElement, (void**)&nselem);
585 nsIDOMHTMLElement_Release(nsbody);
586 if(NS_FAILED(nsres)) {
587 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres);
588 return E_FAIL;
591 nsres = nsIDOMNSHTMLElement_focus(nselem);
592 nsIDOMNSHTMLElement_Release(nselem);
593 if(NS_FAILED(nsres)) {
594 ERR("Focus failed: %08x\n", nsres);
595 return E_FAIL;
598 return S_OK;
601 static HRESULT WINAPI HTMLDocument4_hasFocus(IHTMLDocument4 *iface, VARIANT_BOOL *pfFocus)
603 HTMLDocument *This = HTMLDOC4_THIS(iface);
604 FIXME("(%p)->(%p)\n", This, pfFocus);
605 return E_NOTIMPL;
608 static HRESULT WINAPI HTMLDocument4_put_onselectionchange(IHTMLDocument4 *iface, VARIANT v)
610 HTMLDocument *This = HTMLDOC4_THIS(iface);
611 FIXME("(%p)->(v)\n", This);
612 return E_NOTIMPL;
615 static HRESULT WINAPI HTMLDocument4_get_onselectionchange(IHTMLDocument4 *iface, VARIANT *p)
617 HTMLDocument *This = HTMLDOC4_THIS(iface);
618 FIXME("(%p)->(%p)\n", This, p);
619 return E_NOTIMPL;
622 static HRESULT WINAPI HTMLDocument4_get_namespace(IHTMLDocument4 *iface, IDispatch **p)
624 HTMLDocument *This = HTMLDOC4_THIS(iface);
625 FIXME("(%p)->(%p)\n", This, p);
626 return E_NOTIMPL;
629 static HRESULT WINAPI HTMLDocument4_createDocumentFromUrl(IHTMLDocument4 *iface, BSTR bstrUrl,
630 BSTR bstrOptions, IHTMLDocument2 **newDoc)
632 HTMLDocument *This = HTMLDOC4_THIS(iface);
633 FIXME("(%p)->(%s %s %p)\n", This, debugstr_w(bstrUrl), debugstr_w(bstrOptions), newDoc);
634 return E_NOTIMPL;
637 static HRESULT WINAPI HTMLDocument4_put_media(IHTMLDocument4 *iface, BSTR v)
639 HTMLDocument *This = HTMLDOC4_THIS(iface);
640 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
641 return E_NOTIMPL;
644 static HRESULT WINAPI HTMLDocument4_get_media(IHTMLDocument4 *iface, BSTR *p)
646 HTMLDocument *This = HTMLDOC4_THIS(iface);
647 FIXME("(%p)->(%p)\n", This, p);
648 return E_NOTIMPL;
651 static HRESULT WINAPI HTMLDocument4_createEventObject(IHTMLDocument4 *iface,
652 VARIANT *pvarEventObject, IHTMLEventObj **ppEventObj)
654 HTMLDocument *This = HTMLDOC4_THIS(iface);
655 FIXME("(%p)->(%p %p)\n", This, pvarEventObject, ppEventObj);
656 return E_NOTIMPL;
659 static HRESULT WINAPI HTMLDocument4_fireEvent(IHTMLDocument4 *iface, BSTR bstrEventName,
660 VARIANT *pvarEventObject, VARIANT_BOOL *pfCanceled)
662 HTMLDocument *This = HTMLDOC4_THIS(iface);
663 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(bstrEventName), pvarEventObject, pfCanceled);
664 return E_NOTIMPL;
667 static HRESULT WINAPI HTMLDocument4_createRenderStyle(IHTMLDocument4 *iface, BSTR v,
668 IHTMLRenderStyle **ppIHTMLRenderStyle)
670 HTMLDocument *This = HTMLDOC4_THIS(iface);
671 FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), ppIHTMLRenderStyle);
672 return E_NOTIMPL;
675 static HRESULT WINAPI HTMLDocument4_put_oncontrolselect(IHTMLDocument4 *iface, VARIANT v)
677 HTMLDocument *This = HTMLDOC4_THIS(iface);
678 FIXME("(%p)->(v)\n", This);
679 return E_NOTIMPL;
682 static HRESULT WINAPI HTMLDocument4_get_oncontrolselect(IHTMLDocument4 *iface, VARIANT *p)
684 HTMLDocument *This = HTMLDOC4_THIS(iface);
685 FIXME("(%p)->(%p)\n", This, p);
686 return E_NOTIMPL;
689 static HRESULT WINAPI HTMLDocument4_get_URLEncoded(IHTMLDocument4 *iface, BSTR *p)
691 HTMLDocument *This = HTMLDOC4_THIS(iface);
692 FIXME("(%p)->(%p)\n", This, p);
693 return E_NOTIMPL;
696 #undef HTMLDOC4_THIS
698 static const IHTMLDocument4Vtbl HTMLDocument4Vtbl = {
699 HTMLDocument4_QueryInterface,
700 HTMLDocument4_AddRef,
701 HTMLDocument4_Release,
702 HTMLDocument4_GetTypeInfoCount,
703 HTMLDocument4_GetTypeInfo,
704 HTMLDocument4_GetIDsOfNames,
705 HTMLDocument4_Invoke,
706 HTMLDocument4_focus,
707 HTMLDocument4_hasFocus,
708 HTMLDocument4_put_onselectionchange,
709 HTMLDocument4_get_onselectionchange,
710 HTMLDocument4_get_namespace,
711 HTMLDocument4_createDocumentFromUrl,
712 HTMLDocument4_put_media,
713 HTMLDocument4_get_media,
714 HTMLDocument4_createEventObject,
715 HTMLDocument4_fireEvent,
716 HTMLDocument4_createRenderStyle,
717 HTMLDocument4_put_oncontrolselect,
718 HTMLDocument4_get_oncontrolselect,
719 HTMLDocument4_get_URLEncoded
722 void HTMLDocument_HTMLDocument3_Init(HTMLDocument *This)
724 This->lpHTMLDocument3Vtbl = &HTMLDocument3Vtbl;
725 This->lpHTMLDocument4Vtbl = &HTMLDocument4Vtbl;