2 * Copyright 2006 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
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
34 #include "htmlevent.h"
35 #include "htmlstyle.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
39 static const WCHAR aW
[] = {'A',0};
40 static const WCHAR bodyW
[] = {'B','O','D','Y',0};
41 static const WCHAR embedW
[] = {'E','M','B','E','D',0};
42 static const WCHAR formW
[] = {'F','O','R','M',0};
43 static const WCHAR frameW
[] = {'F','R','A','M','E',0};
44 static const WCHAR headW
[] = {'H','E','A','D',0};
45 static const WCHAR iframeW
[] = {'I','F','R','A','M','E',0};
46 static const WCHAR imgW
[] = {'I','M','G',0};
47 static const WCHAR inputW
[] = {'I','N','P','U','T',0};
48 static const WCHAR objectW
[] = {'O','B','J','E','C','T',0};
49 static const WCHAR optionW
[] = {'O','P','T','I','O','N',0};
50 static const WCHAR scriptW
[] = {'S','C','R','I','P','T',0};
51 static const WCHAR selectW
[] = {'S','E','L','E','C','T',0};
52 static const WCHAR styleW
[] = {'S','T','Y','L','E',0};
53 static const WCHAR tableW
[] = {'T','A','B','L','E',0};
54 static const WCHAR textareaW
[] = {'T','E','X','T','A','R','E','A',0};
55 static const WCHAR title_tagW
[]= {'T','I','T','L','E',0};
56 static const WCHAR trW
[] = {'T','R',0};
60 HRESULT (*constructor
)(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
63 static const tag_desc_t tag_descs
[] = {
64 {aW
, HTMLAnchorElement_Create
},
65 {bodyW
, HTMLBodyElement_Create
},
66 {embedW
, HTMLEmbedElement_Create
},
67 {formW
, HTMLFormElement_Create
},
68 {frameW
, HTMLFrameElement_Create
},
69 {headW
, HTMLHeadElement_Create
},
70 {iframeW
, HTMLIFrame_Create
},
71 {imgW
, HTMLImgElement_Create
},
72 {inputW
, HTMLInputElement_Create
},
73 {objectW
, HTMLObjectElement_Create
},
74 {optionW
, HTMLOptionElement_Create
},
75 {scriptW
, HTMLScriptElement_Create
},
76 {selectW
, HTMLSelectElement_Create
},
77 {styleW
, HTMLStyleElement_Create
},
78 {tableW
, HTMLTable_Create
},
79 {textareaW
, HTMLTextAreaElement_Create
},
80 {title_tagW
, HTMLTitleElement_Create
},
81 {trW
, HTMLTableRow_Create
}
84 static const tag_desc_t
*get_tag_desc(const WCHAR
*tag_name
)
86 DWORD min
=0, max
=sizeof(tag_descs
)/sizeof(*tag_descs
)-1, i
;
91 r
= strcmpW(tag_name
, tag_descs
[i
].name
);
104 HRESULT
replace_node_by_html(nsIDOMHTMLDocument
*nsdoc
, nsIDOMNode
*nsnode
, const WCHAR
*html
)
106 nsIDOMDocumentFragment
*nsfragment
;
107 nsIDOMNSRange
*nsrange
;
108 nsIDOMNode
*nsparent
;
114 nsres
= nsIDOMHTMLDocument_CreateRange(nsdoc
, &range
);
115 if(NS_FAILED(nsres
)) {
116 ERR("CreateRange failed: %08x\n", nsres
);
120 nsres
= nsIDOMRange_QueryInterface(range
, &IID_nsIDOMNSRange
, (void**)&nsrange
);
121 nsIDOMRange_Release(range
);
122 if(NS_FAILED(nsres
)) {
123 ERR("Could not get nsIDOMNSRange: %08x\n", nsres
);
127 nsAString_InitDepend(&html_str
, html
);
128 nsIDOMNSRange_CreateContextualFragment(nsrange
, &html_str
, &nsfragment
);
129 nsIDOMNSRange_Release(nsrange
);
130 nsAString_Finish(&html_str
);
131 if(NS_FAILED(nsres
)) {
132 ERR("CreateContextualFragment failed: %08x\n", nsres
);
136 nsres
= nsIDOMNode_GetParentNode(nsnode
, &nsparent
);
137 if(NS_SUCCEEDED(nsres
) && nsparent
) {
140 nsres
= nsIDOMNode_ReplaceChild(nsparent
, (nsIDOMNode
*)nsfragment
, nsnode
, &nstmp
);
141 nsIDOMNode_Release(nsparent
);
142 if(NS_FAILED(nsres
)) {
143 ERR("ReplaceChild failed: %08x\n", nsres
);
146 nsIDOMNode_Release(nstmp
);
149 ERR("GetParentNode failed: %08x\n", nsres
);
153 nsIDOMDocumentFragment_Release(nsfragment
);
160 IHTMLFiltersCollection IHTMLFiltersCollection_iface
;
163 } HTMLFiltersCollection
;
165 static inline HTMLFiltersCollection
*impl_from_IHTMLFiltersCollection(IHTMLFiltersCollection
*iface
)
167 return CONTAINING_RECORD(iface
, HTMLFiltersCollection
, IHTMLFiltersCollection_iface
);
170 static IHTMLFiltersCollection
*HTMLFiltersCollection_Create(void);
172 static inline HTMLElement
*impl_from_IHTMLElement(IHTMLElement
*iface
)
174 return CONTAINING_RECORD(iface
, HTMLElement
, IHTMLElement_iface
);
177 HRESULT
create_nselem(HTMLDocumentNode
*doc
, const WCHAR
*tag
, nsIDOMHTMLElement
**ret
)
179 nsIDOMElement
*nselem
;
184 WARN("NULL nsdoc\n");
188 nsAString_InitDepend(&tag_str
, tag
);
189 nsres
= nsIDOMDocument_CreateElement(doc
->nsdoc
, &tag_str
, &nselem
);
190 nsAString_Finish(&tag_str
);
191 if(NS_FAILED(nsres
)) {
192 ERR("CreateElement failed: %08x\n", nsres
);
196 nsres
= nsIDOMElement_QueryInterface(nselem
, &IID_nsIDOMHTMLElement
, (void**)ret
);
197 nsIDOMElement_Release(nselem
);
198 if(NS_FAILED(nsres
)) {
199 ERR("Could not get nsIDOMHTMLElement iface: %08x\n", nsres
);
206 static HRESULT WINAPI
HTMLElement_QueryInterface(IHTMLElement
*iface
,
207 REFIID riid
, void **ppv
)
209 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
211 return IHTMLDOMNode_QueryInterface(&This
->node
.IHTMLDOMNode_iface
, riid
, ppv
);
214 static ULONG WINAPI
HTMLElement_AddRef(IHTMLElement
*iface
)
216 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
218 return IHTMLDOMNode_AddRef(&This
->node
.IHTMLDOMNode_iface
);
221 static ULONG WINAPI
HTMLElement_Release(IHTMLElement
*iface
)
223 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
225 return IHTMLDOMNode_Release(&This
->node
.IHTMLDOMNode_iface
);
228 static HRESULT WINAPI
HTMLElement_GetTypeInfoCount(IHTMLElement
*iface
, UINT
*pctinfo
)
230 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
231 return IDispatchEx_GetTypeInfoCount(&This
->node
.dispex
.IDispatchEx_iface
, pctinfo
);
234 static HRESULT WINAPI
HTMLElement_GetTypeInfo(IHTMLElement
*iface
, UINT iTInfo
,
235 LCID lcid
, ITypeInfo
**ppTInfo
)
237 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
238 return IDispatchEx_GetTypeInfo(&This
->node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
241 static HRESULT WINAPI
HTMLElement_GetIDsOfNames(IHTMLElement
*iface
, REFIID riid
,
242 LPOLESTR
*rgszNames
, UINT cNames
,
243 LCID lcid
, DISPID
*rgDispId
)
245 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
246 return IDispatchEx_GetIDsOfNames(&This
->node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
250 static HRESULT WINAPI
HTMLElement_Invoke(IHTMLElement
*iface
, DISPID dispIdMember
,
251 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
252 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
254 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
255 return IDispatchEx_Invoke(&This
->node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
256 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
259 static HRESULT WINAPI
HTMLElement_setAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
260 VARIANT AttributeValue
, LONG lFlags
)
262 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
264 DISPID dispid
, dispidNamed
= DISPID_PROPERTYPUT
;
265 DISPPARAMS dispParams
;
268 TRACE("(%p)->(%s . %08x)\n", This
, debugstr_w(strAttributeName
), lFlags
);
270 hres
= IDispatchEx_GetDispID(&This
->node
.dispex
.IDispatchEx_iface
, strAttributeName
,
271 fdexNameCaseInsensitive
| fdexNameEnsure
, &dispid
);
275 dispParams
.cArgs
= 1;
276 dispParams
.cNamedArgs
= 1;
277 dispParams
.rgdispidNamedArgs
= &dispidNamed
;
278 dispParams
.rgvarg
= &AttributeValue
;
280 hres
= IDispatchEx_InvokeEx(&This
->node
.dispex
.IDispatchEx_iface
, dispid
,
281 LOCALE_SYSTEM_DEFAULT
, DISPATCH_PROPERTYPUT
, &dispParams
, NULL
, &excep
, NULL
);
285 static HRESULT WINAPI
HTMLElement_getAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
286 LONG lFlags
, VARIANT
*AttributeValue
)
288 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
291 DISPPARAMS dispParams
= {NULL
, NULL
, 0, 0};
294 TRACE("(%p)->(%s %08x %p)\n", This
, debugstr_w(strAttributeName
), lFlags
, AttributeValue
);
296 hres
= IDispatchEx_GetDispID(&This
->node
.dispex
.IDispatchEx_iface
, strAttributeName
,
297 fdexNameCaseInsensitive
, &dispid
);
298 if(hres
== DISP_E_UNKNOWNNAME
) {
299 V_VT(AttributeValue
) = VT_NULL
;
304 V_VT(AttributeValue
) = VT_NULL
;
308 hres
= IDispatchEx_InvokeEx(&This
->node
.dispex
.IDispatchEx_iface
, dispid
, LOCALE_SYSTEM_DEFAULT
,
309 DISPATCH_PROPERTYGET
, &dispParams
, AttributeValue
, &excep
, NULL
);
314 static HRESULT WINAPI
HTMLElement_removeAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
315 LONG lFlags
, VARIANT_BOOL
*pfSuccess
)
317 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
319 TRACE("(%p)->(%s %x %p)\n", This
, debugstr_w(strAttributeName
), lFlags
, pfSuccess
);
321 return remove_prop(&This
->node
.dispex
, strAttributeName
, pfSuccess
);
324 static HRESULT WINAPI
HTMLElement_put_className(IHTMLElement
*iface
, BSTR v
)
326 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
327 nsAString classname_str
;
330 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
333 FIXME("NULL nselem\n");
337 nsAString_InitDepend(&classname_str
, v
);
338 nsres
= nsIDOMHTMLElement_SetClassName(This
->nselem
, &classname_str
);
339 nsAString_Finish(&classname_str
);
341 ERR("SetClassName failed: %08x\n", nsres
);
346 static HRESULT WINAPI
HTMLElement_get_className(IHTMLElement
*iface
, BSTR
*p
)
348 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
353 TRACE("(%p)->(%p)\n", This
, p
);
356 FIXME("NULL nselem\n");
360 nsAString_Init(&class_str
, NULL
);
361 nsres
= nsIDOMHTMLElement_GetClassName(This
->nselem
, &class_str
);
363 if(NS_SUCCEEDED(nsres
)) {
364 const PRUnichar
*class;
365 nsAString_GetData(&class_str
, &class);
366 *p
= *class ? SysAllocString(class) : NULL
;
368 ERR("GetClassName failed: %08x\n", nsres
);
372 nsAString_Finish(&class_str
);
374 TRACE("className=%s\n", debugstr_w(*p
));
378 static HRESULT WINAPI
HTMLElement_put_id(IHTMLElement
*iface
, BSTR v
)
380 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
384 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
387 FIXME("nselem == NULL\n");
391 nsAString_InitDepend(&id_str
, v
);
392 nsres
= nsIDOMHTMLElement_SetId(This
->nselem
, &id_str
);
393 nsAString_Finish(&id_str
);
395 ERR("SetId failed: %08x\n", nsres
);
400 static HRESULT WINAPI
HTMLElement_get_id(IHTMLElement
*iface
, BSTR
*p
)
402 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
407 TRACE("(%p)->(%p)\n", This
, p
);
414 nsAString_Init(&id_str
, NULL
);
415 nsres
= nsIDOMHTMLElement_GetId(This
->nselem
, &id_str
);
416 nsAString_GetData(&id_str
, &id
);
419 ERR("GetId failed: %08x\n", nsres
);
421 *p
= SysAllocString(id
);
423 nsAString_Finish(&id_str
);
427 static HRESULT WINAPI
HTMLElement_get_tagName(IHTMLElement
*iface
, BSTR
*p
)
429 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
430 const PRUnichar
*tag
;
434 TRACE("(%p)->(%p)\n", This
, p
);
437 static const WCHAR comment_tagW
[] = {'!',0};
439 WARN("NULL nselem, assuming comment\n");
441 *p
= SysAllocString(comment_tagW
);
445 nsAString_Init(&tag_str
, NULL
);
446 nsres
= nsIDOMHTMLElement_GetTagName(This
->nselem
, &tag_str
);
447 if(NS_SUCCEEDED(nsres
)) {
448 nsAString_GetData(&tag_str
, &tag
);
449 *p
= SysAllocString(tag
);
451 ERR("GetTagName failed: %08x\n", nsres
);
454 nsAString_Finish(&tag_str
);
459 static HRESULT WINAPI
HTMLElement_get_parentElement(IHTMLElement
*iface
, IHTMLElement
**p
)
461 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
465 TRACE("(%p)->(%p)\n", This
, p
);
467 hres
= IHTMLDOMNode_get_parentNode(&This
->node
.IHTMLDOMNode_iface
, &node
);
471 hres
= IHTMLDOMNode_QueryInterface(node
, &IID_IHTMLElement
, (void**)p
);
472 IHTMLDOMNode_Release(node
);
479 static HRESULT WINAPI
HTMLElement_get_style(IHTMLElement
*iface
, IHTMLStyle
**p
)
481 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
483 TRACE("(%p)->(%p)\n", This
, p
);
486 nsIDOMElementCSSInlineStyle
*nselemstyle
;
487 nsIDOMCSSStyleDeclaration
*nsstyle
;
492 FIXME("NULL nselem\n");
496 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMElementCSSInlineStyle
,
497 (void**)&nselemstyle
);
498 if(NS_FAILED(nsres
)) {
499 ERR("Could not get nsIDOMCSSStyleDeclaration interface: %08x\n", nsres
);
503 nsres
= nsIDOMElementCSSInlineStyle_GetStyle(nselemstyle
, &nsstyle
);
504 nsIDOMElementCSSInlineStyle_Release(nselemstyle
);
505 if(NS_FAILED(nsres
)) {
506 ERR("GetStyle failed: %08x\n", nsres
);
510 hres
= HTMLStyle_Create(nsstyle
, &This
->style
);
511 nsIDOMCSSStyleDeclaration_Release(nsstyle
);
516 *p
= &This
->style
->IHTMLStyle_iface
;
517 IHTMLStyle_AddRef(*p
);
521 static HRESULT WINAPI
HTMLElement_put_onhelp(IHTMLElement
*iface
, VARIANT v
)
523 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
524 FIXME("(%p)->()\n", This
);
528 static HRESULT WINAPI
HTMLElement_get_onhelp(IHTMLElement
*iface
, VARIANT
*p
)
530 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
531 FIXME("(%p)->(%p)\n", This
, p
);
535 static HRESULT WINAPI
HTMLElement_put_onclick(IHTMLElement
*iface
, VARIANT v
)
537 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
539 TRACE("(%p)->()\n", This
);
541 return set_node_event(&This
->node
, EVENTID_CLICK
, &v
);
544 static HRESULT WINAPI
HTMLElement_get_onclick(IHTMLElement
*iface
, VARIANT
*p
)
546 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
548 TRACE("(%p)->(%p)\n", This
, p
);
550 return get_node_event(&This
->node
, EVENTID_CLICK
, p
);
553 static HRESULT WINAPI
HTMLElement_put_ondblclick(IHTMLElement
*iface
, VARIANT v
)
555 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
557 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
559 return set_node_event(&This
->node
, EVENTID_DBLCLICK
, &v
);
562 static HRESULT WINAPI
HTMLElement_get_ondblclick(IHTMLElement
*iface
, VARIANT
*p
)
564 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
566 TRACE("(%p)->(%p)\n", This
, p
);
568 return get_node_event(&This
->node
, EVENTID_DBLCLICK
, p
);
571 static HRESULT WINAPI
HTMLElement_put_onkeydown(IHTMLElement
*iface
, VARIANT v
)
573 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
575 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
577 return set_node_event(&This
->node
, EVENTID_KEYDOWN
, &v
);
580 static HRESULT WINAPI
HTMLElement_get_onkeydown(IHTMLElement
*iface
, VARIANT
*p
)
582 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
584 TRACE("(%p)->(%p)\n", This
, p
);
586 return get_node_event(&This
->node
, EVENTID_KEYDOWN
, p
);
589 static HRESULT WINAPI
HTMLElement_put_onkeyup(IHTMLElement
*iface
, VARIANT v
)
591 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
593 TRACE("(%p)->()\n", This
);
595 return set_node_event(&This
->node
, EVENTID_KEYUP
, &v
);
598 static HRESULT WINAPI
HTMLElement_get_onkeyup(IHTMLElement
*iface
, VARIANT
*p
)
600 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
601 FIXME("(%p)->(%p)\n", This
, p
);
605 static HRESULT WINAPI
HTMLElement_put_onkeypress(IHTMLElement
*iface
, VARIANT v
)
607 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
608 FIXME("(%p)->()\n", This
);
612 static HRESULT WINAPI
HTMLElement_get_onkeypress(IHTMLElement
*iface
, VARIANT
*p
)
614 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
615 FIXME("(%p)->(%p)\n", This
, p
);
619 static HRESULT WINAPI
HTMLElement_put_onmouseout(IHTMLElement
*iface
, VARIANT v
)
621 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
623 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
625 return set_node_event(&This
->node
, EVENTID_MOUSEOUT
, &v
);
628 static HRESULT WINAPI
HTMLElement_get_onmouseout(IHTMLElement
*iface
, VARIANT
*p
)
630 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
632 TRACE("(%p)->(%p)\n", This
, p
);
634 return get_node_event(&This
->node
, EVENTID_MOUSEOUT
, p
);
637 static HRESULT WINAPI
HTMLElement_put_onmouseover(IHTMLElement
*iface
, VARIANT v
)
639 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
641 TRACE("(%p)->()\n", This
);
643 return set_node_event(&This
->node
, EVENTID_MOUSEOVER
, &v
);
646 static HRESULT WINAPI
HTMLElement_get_onmouseover(IHTMLElement
*iface
, VARIANT
*p
)
648 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
650 TRACE("(%p)->(%p)\n", This
, p
);
652 return get_node_event(&This
->node
, EVENTID_MOUSEOVER
, p
);
655 static HRESULT WINAPI
HTMLElement_put_onmousemove(IHTMLElement
*iface
, VARIANT v
)
657 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
659 TRACE("(%p)->()\n", This
);
661 return set_node_event(&This
->node
, EVENTID_MOUSEMOVE
, &v
);
664 static HRESULT WINAPI
HTMLElement_get_onmousemove(IHTMLElement
*iface
, VARIANT
*p
)
666 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
668 TRACE("(%p)->(%p)\n", This
, p
);
670 return get_node_event(&This
->node
, EVENTID_MOUSEMOVE
, p
);
673 static HRESULT WINAPI
HTMLElement_put_onmousedown(IHTMLElement
*iface
, VARIANT v
)
675 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
677 TRACE("(%p)->()\n", This
);
679 return set_node_event(&This
->node
, EVENTID_MOUSEDOWN
, &v
);
682 static HRESULT WINAPI
HTMLElement_get_onmousedown(IHTMLElement
*iface
, VARIANT
*p
)
684 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
686 TRACE("(%p)->(%p)\n", This
, p
);
688 return get_node_event(&This
->node
, EVENTID_MOUSEDOWN
, p
);
691 static HRESULT WINAPI
HTMLElement_put_onmouseup(IHTMLElement
*iface
, VARIANT v
)
693 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
695 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
697 return set_node_event(&This
->node
, EVENTID_MOUSEUP
, &v
);
700 static HRESULT WINAPI
HTMLElement_get_onmouseup(IHTMLElement
*iface
, VARIANT
*p
)
702 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
704 TRACE("(%p)->(%p)\n", This
, p
);
706 return get_node_event(&This
->node
, EVENTID_MOUSEUP
, p
);
709 static HRESULT WINAPI
HTMLElement_get_document(IHTMLElement
*iface
, IDispatch
**p
)
711 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
713 TRACE("(%p)->(%p)\n", This
, p
);
718 if(This
->node
.vtbl
->get_document
)
719 return This
->node
.vtbl
->get_document(&This
->node
, p
);
721 *p
= (IDispatch
*)&This
->node
.doc
->basedoc
.IHTMLDocument2_iface
;
722 IDispatch_AddRef(*p
);
726 static const WCHAR titleW
[] = {'t','i','t','l','e',0};
728 static HRESULT WINAPI
HTMLElement_put_title(IHTMLElement
*iface
, BSTR v
)
730 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
734 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
740 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, titleW
, TRUE
, &var
);
746 V_BSTR(var
) = v
? SysAllocString(v
) : NULL
;
750 nsAString_InitDepend(&title_str
, v
);
751 nsres
= nsIDOMHTMLElement_SetTitle(This
->nselem
, &title_str
);
752 nsAString_Finish(&title_str
);
754 ERR("SetTitle failed: %08x\n", nsres
);
759 static HRESULT WINAPI
HTMLElement_get_title(IHTMLElement
*iface
, BSTR
*p
)
761 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
765 TRACE("(%p)->(%p)\n", This
, p
);
771 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, titleW
, FALSE
, &var
);
772 if(hres
== DISP_E_UNKNOWNNAME
) {
774 }else if(V_VT(var
) != VT_BSTR
) {
775 FIXME("title = %s\n", debugstr_variant(var
));
778 *p
= V_BSTR(var
) ? SysAllocString(V_BSTR(var
)) : NULL
;
784 nsAString_Init(&title_str
, NULL
);
785 nsres
= nsIDOMHTMLElement_GetTitle(This
->nselem
, &title_str
);
786 if(NS_SUCCEEDED(nsres
)) {
787 const PRUnichar
*title
;
789 nsAString_GetData(&title_str
, &title
);
790 *p
= *title
? SysAllocString(title
) : NULL
;
792 ERR("GetTitle failed: %08x\n", nsres
);
799 static HRESULT WINAPI
HTMLElement_put_language(IHTMLElement
*iface
, BSTR v
)
801 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
802 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
806 static HRESULT WINAPI
HTMLElement_get_language(IHTMLElement
*iface
, BSTR
*p
)
808 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
809 FIXME("(%p)->(%p)\n", This
, p
);
813 static HRESULT WINAPI
HTMLElement_put_onselectstart(IHTMLElement
*iface
, VARIANT v
)
815 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
817 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
819 return set_node_event(&This
->node
, EVENTID_SELECTSTART
, &v
);
822 static HRESULT WINAPI
HTMLElement_get_onselectstart(IHTMLElement
*iface
, VARIANT
*p
)
824 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
826 TRACE("(%p)->(%p)\n", This
, p
);
828 return get_node_event(&This
->node
, EVENTID_SELECTSTART
, p
);
831 static HRESULT WINAPI
HTMLElement_scrollIntoView(IHTMLElement
*iface
, VARIANT varargStart
)
833 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
834 FIXME("(%p)->()\n", This
);
838 static HRESULT WINAPI
HTMLElement_contains(IHTMLElement
*iface
, IHTMLElement
*pChild
,
839 VARIANT_BOOL
*pfResult
)
841 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
842 FIXME("(%p)->(%p %p)\n", This
, pChild
, pfResult
);
846 static HRESULT WINAPI
HTMLElement_get_sourceIndex(IHTMLElement
*iface
, LONG
*p
)
848 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
849 FIXME("(%p)->(%p)\n", This
, p
);
853 static HRESULT WINAPI
HTMLElement_get_recordNumber(IHTMLElement
*iface
, VARIANT
*p
)
855 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
856 FIXME("(%p)->(%p)\n", This
, p
);
860 static HRESULT WINAPI
HTMLElement_put_lang(IHTMLElement
*iface
, BSTR v
)
862 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
863 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
867 static HRESULT WINAPI
HTMLElement_get_lang(IHTMLElement
*iface
, BSTR
*p
)
869 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
870 FIXME("(%p)->(%p)\n", This
, p
);
874 static HRESULT WINAPI
HTMLElement_get_offsetLeft(IHTMLElement
*iface
, LONG
*p
)
876 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
877 nsIDOMNSHTMLElement
*nselem
;
878 PRInt32 off_left
= 0;
881 TRACE("(%p)->(%p)\n", This
, p
);
883 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
884 if(NS_FAILED(nsres
)) {
885 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
889 nsres
= nsIDOMNSHTMLElement_GetOffsetLeft(nselem
, &off_left
);
890 nsIDOMNSHTMLElement_Release(nselem
);
891 if(NS_FAILED(nsres
)) {
892 ERR("GetOffsetLeft failed: %08x\n", nsres
);
900 static HRESULT WINAPI
HTMLElement_get_offsetTop(IHTMLElement
*iface
, LONG
*p
)
902 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
903 nsIDOMNSHTMLElement
*nselem
;
907 TRACE("(%p)->(%p)\n", This
, p
);
909 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
910 if(NS_FAILED(nsres
)) {
911 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
915 nsres
= nsIDOMNSHTMLElement_GetOffsetTop(nselem
, &top
);
916 nsIDOMNSHTMLElement_Release(nselem
);
917 if(NS_FAILED(nsres
)) {
918 ERR("GetOffsetTop failed: %08x\n", nsres
);
926 static HRESULT WINAPI
HTMLElement_get_offsetWidth(IHTMLElement
*iface
, LONG
*p
)
928 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
929 nsIDOMNSHTMLElement
*nselem
;
933 TRACE("(%p)->(%p)\n", This
, p
);
935 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
936 if(NS_FAILED(nsres
)) {
937 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
941 nsres
= nsIDOMNSHTMLElement_GetOffsetWidth(nselem
, &offset
);
942 nsIDOMNSHTMLElement_Release(nselem
);
943 if(NS_FAILED(nsres
)) {
944 ERR("GetOffsetWidth failed: %08x\n", nsres
);
952 static HRESULT WINAPI
HTMLElement_get_offsetHeight(IHTMLElement
*iface
, LONG
*p
)
954 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
955 nsIDOMNSHTMLElement
*nselem
;
959 TRACE("(%p)->(%p)\n", This
, p
);
961 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
962 if(NS_FAILED(nsres
)) {
963 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
967 nsres
= nsIDOMNSHTMLElement_GetOffsetHeight(nselem
, &offset
);
968 nsIDOMNSHTMLElement_Release(nselem
);
969 if(NS_FAILED(nsres
)) {
970 ERR("GetOffsetHeight failed: %08x\n", nsres
);
978 static HRESULT WINAPI
HTMLElement_get_offsetParent(IHTMLElement
*iface
, IHTMLElement
**p
)
980 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
981 nsIDOMNSHTMLElement
*nselem
;
982 nsIDOMElement
*nsparent
;
986 TRACE("(%p)->(%p)\n", This
, p
);
988 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
989 if(NS_FAILED(nsres
)) {
990 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
994 nsres
= nsIDOMNSHTMLElement_GetOffsetParent(nselem
, &nsparent
);
995 nsIDOMNSHTMLElement_Release(nselem
);
996 if(NS_FAILED(nsres
)) {
997 ERR("GetOffsetParent failed: %08x\n", nsres
);
1004 hres
= get_node(This
->node
.doc
, (nsIDOMNode
*)nsparent
, TRUE
, &node
);
1005 nsIDOMElement_Release(nsparent
);
1009 hres
= IHTMLDOMNode_QueryInterface(&node
->IHTMLDOMNode_iface
, &IID_IHTMLElement
, (void**)p
);
1018 static HRESULT WINAPI
HTMLElement_put_innerHTML(IHTMLElement
*iface
, BSTR v
)
1020 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1021 nsIDOMNSHTMLElement
*nselem
;
1025 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
1028 FIXME("NULL nselem\n");
1032 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
1033 if(NS_FAILED(nsres
)) {
1034 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
1038 nsAString_InitDepend(&html_str
, v
);
1039 nsres
= nsIDOMNSHTMLElement_SetInnerHTML(nselem
, &html_str
);
1040 nsAString_Finish(&html_str
);
1042 if(NS_FAILED(nsres
)) {
1043 FIXME("SetInnerHtml failed %08x\n", nsres
);
1050 static HRESULT WINAPI
HTMLElement_get_innerHTML(IHTMLElement
*iface
, BSTR
*p
)
1052 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1053 nsIDOMNSHTMLElement
*nselem
;
1057 TRACE("(%p)->(%p)\n", This
, p
);
1060 FIXME("NULL nselem\n");
1064 nsres
= nsIDOMHTMLElement_QueryInterface(This
->nselem
, &IID_nsIDOMNSHTMLElement
, (void**)&nselem
);
1065 if(NS_FAILED(nsres
)) {
1066 ERR("Could not get nsIDOMNSHTMLElement: %08x\n", nsres
);
1070 nsAString_Init(&html_str
, NULL
);
1071 nsres
= nsIDOMNSHTMLElement_GetInnerHTML(nselem
, &html_str
);
1072 if(NS_SUCCEEDED(nsres
)) {
1073 const PRUnichar
*html
;
1075 nsAString_GetData(&html_str
, &html
);
1076 *p
= *html
? SysAllocString(html
) : NULL
;
1078 FIXME("SetInnerHtml failed %08x\n", nsres
);
1082 nsAString_Finish(&html_str
);
1086 static HRESULT WINAPI
HTMLElement_put_innerText(IHTMLElement
*iface
, BSTR v
)
1088 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1089 nsIDOMNode
*nschild
, *tmp
;
1090 nsIDOMText
*text_node
;
1094 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
1097 nsres
= nsIDOMHTMLElement_GetLastChild(This
->nselem
, &nschild
);
1098 if(NS_FAILED(nsres
)) {
1099 ERR("GetLastChild failed: %08x\n", nsres
);
1105 nsres
= nsIDOMHTMLElement_RemoveChild(This
->nselem
, nschild
, &tmp
);
1106 nsIDOMNode_Release(nschild
);
1107 if(NS_FAILED(nsres
)) {
1108 ERR("RemoveChild failed: %08x\n", nsres
);
1111 nsIDOMNode_Release(tmp
);
1114 nsAString_InitDepend(&text_str
, v
);
1115 nsres
= nsIDOMHTMLDocument_CreateTextNode(This
->node
.doc
->nsdoc
, &text_str
, &text_node
);
1116 nsAString_Finish(&text_str
);
1117 if(NS_FAILED(nsres
)) {
1118 ERR("CreateTextNode failed: %08x\n", nsres
);
1122 nsres
= nsIDOMHTMLElement_AppendChild(This
->nselem
, (nsIDOMNode
*)text_node
, &tmp
);
1123 if(NS_FAILED(nsres
)) {
1124 ERR("AppendChild failed: %08x\n", nsres
);
1128 nsIDOMNode_Release(tmp
);
1132 static HRESULT WINAPI
HTMLElement_get_innerText(IHTMLElement
*iface
, BSTR
*p
)
1134 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1136 TRACE("(%p)->(%p)\n", This
, p
);
1138 return get_node_text(&This
->node
, p
);
1141 static HRESULT WINAPI
HTMLElement_put_outerHTML(IHTMLElement
*iface
, BSTR v
)
1143 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1145 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
1147 return replace_node_by_html(This
->node
.doc
->nsdoc
, This
->node
.nsnode
, v
);
1150 static HRESULT WINAPI
HTMLElement_get_outerHTML(IHTMLElement
*iface
, BSTR
*p
)
1152 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1156 WARN("(%p)->(%p) semi-stub\n", This
, p
);
1158 nsAString_Init(&html_str
, NULL
);
1159 hres
= nsnode_to_nsstring(This
->node
.nsnode
, &html_str
);
1160 if(SUCCEEDED(hres
)) {
1161 const PRUnichar
*html
;
1163 nsAString_GetData(&html_str
, &html
);
1164 *p
= SysAllocString(html
);
1166 hres
= E_OUTOFMEMORY
;
1169 nsAString_Finish(&html_str
);
1171 TRACE("ret %s\n", debugstr_w(*p
));
1175 static HRESULT WINAPI
HTMLElement_put_outerText(IHTMLElement
*iface
, BSTR v
)
1177 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1178 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
1182 static HRESULT WINAPI
HTMLElement_get_outerText(IHTMLElement
*iface
, BSTR
*p
)
1184 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1185 FIXME("(%p)->(%p)\n", This
, p
);
1189 static HRESULT
HTMLElement_InsertAdjacentNode(HTMLElement
*This
, BSTR where
, nsIDOMNode
*nsnode
)
1191 static const WCHAR wszBeforeBegin
[] = {'b','e','f','o','r','e','B','e','g','i','n',0};
1192 static const WCHAR wszAfterBegin
[] = {'a','f','t','e','r','B','e','g','i','n',0};
1193 static const WCHAR wszBeforeEnd
[] = {'b','e','f','o','r','e','E','n','d',0};
1194 static const WCHAR wszAfterEnd
[] = {'a','f','t','e','r','E','n','d',0};
1197 if (!strcmpiW(where
, wszBeforeBegin
))
1201 nsres
= nsIDOMNode_GetParentNode(This
->node
.nsnode
, &parent
);
1202 if (!parent
) return E_INVALIDARG
;
1203 nsres
= nsIDOMNode_InsertBefore(parent
, nsnode
, This
->node
.nsnode
, &unused
);
1204 if (unused
) nsIDOMNode_Release(unused
);
1205 nsIDOMNode_Release(parent
);
1207 else if (!strcmpiW(where
, wszAfterBegin
))
1210 nsIDOMNode
*first_child
;
1211 nsIDOMNode_GetFirstChild(This
->node
.nsnode
, &first_child
);
1212 nsres
= nsIDOMNode_InsertBefore(This
->node
.nsnode
, nsnode
, first_child
, &unused
);
1213 if (unused
) nsIDOMNode_Release(unused
);
1214 if (first_child
) nsIDOMNode_Release(first_child
);
1216 else if (!strcmpiW(where
, wszBeforeEnd
))
1219 nsres
= nsIDOMNode_AppendChild(This
->node
.nsnode
, nsnode
, &unused
);
1220 if (unused
) nsIDOMNode_Release(unused
);
1222 else if (!strcmpiW(where
, wszAfterEnd
))
1225 nsIDOMNode
*next_sibling
;
1227 nsIDOMNode_GetParentNode(This
->node
.nsnode
, &parent
);
1228 if (!parent
) return E_INVALIDARG
;
1230 nsIDOMNode_GetNextSibling(This
->node
.nsnode
, &next_sibling
);
1233 nsres
= nsIDOMNode_InsertBefore(parent
, nsnode
, next_sibling
, &unused
);
1234 nsIDOMNode_Release(next_sibling
);
1237 nsres
= nsIDOMNode_AppendChild(parent
, nsnode
, &unused
);
1238 nsIDOMNode_Release(parent
);
1239 if (unused
) nsIDOMNode_Release(unused
);
1243 ERR("invalid where: %s\n", debugstr_w(where
));
1244 return E_INVALIDARG
;
1247 if (NS_FAILED(nsres
))
1253 static HRESULT WINAPI
HTMLElement_insertAdjacentHTML(IHTMLElement
*iface
, BSTR where
,
1256 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1258 nsIDOMNSRange
*nsrange
;
1264 TRACE("(%p)->(%s %s)\n", This
, debugstr_w(where
), debugstr_w(html
));
1266 if(!This
->node
.doc
->nsdoc
) {
1267 WARN("NULL nsdoc\n");
1268 return E_UNEXPECTED
;
1271 nsres
= nsIDOMHTMLDocument_CreateRange(This
->node
.doc
->nsdoc
, &range
);
1272 if(NS_FAILED(nsres
))
1274 ERR("CreateRange failed: %08x\n", nsres
);
1278 nsIDOMRange_SetStartBefore(range
, This
->node
.nsnode
);
1280 nsIDOMRange_QueryInterface(range
, &IID_nsIDOMNSRange
, (void **)&nsrange
);
1281 nsIDOMRange_Release(range
);
1282 if(NS_FAILED(nsres
))
1284 ERR("getting nsIDOMNSRange failed: %08x\n", nsres
);
1288 nsAString_InitDepend(&ns_html
, html
);
1290 nsres
= nsIDOMNSRange_CreateContextualFragment(nsrange
, &ns_html
, (nsIDOMDocumentFragment
**)&nsnode
);
1291 nsIDOMNSRange_Release(nsrange
);
1292 nsAString_Finish(&ns_html
);
1294 if(NS_FAILED(nsres
) || !nsnode
)
1296 ERR("CreateTextNode failed: %08x\n", nsres
);
1300 hr
= HTMLElement_InsertAdjacentNode(This
, where
, nsnode
);
1301 nsIDOMNode_Release(nsnode
);
1306 static HRESULT WINAPI
HTMLElement_insertAdjacentText(IHTMLElement
*iface
, BSTR where
,
1309 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1315 TRACE("(%p)->(%s %s)\n", This
, debugstr_w(where
), debugstr_w(text
));
1317 if(!This
->node
.doc
->nsdoc
) {
1318 WARN("NULL nsdoc\n");
1319 return E_UNEXPECTED
;
1323 nsAString_InitDepend(&ns_text
, text
);
1324 nsres
= nsIDOMDocument_CreateTextNode(This
->node
.doc
->nsdoc
, &ns_text
, (nsIDOMText
**)&nsnode
);
1325 nsAString_Finish(&ns_text
);
1327 if(NS_FAILED(nsres
) || !nsnode
)
1329 ERR("CreateTextNode failed: %08x\n", nsres
);
1333 hr
= HTMLElement_InsertAdjacentNode(This
, where
, nsnode
);
1334 nsIDOMNode_Release(nsnode
);
1339 static HRESULT WINAPI
HTMLElement_get_parentTextEdit(IHTMLElement
*iface
, IHTMLElement
**p
)
1341 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1342 FIXME("(%p)->(%p)\n", This
, p
);
1346 static HRESULT WINAPI
HTMLElement_get_isTextEdit(IHTMLElement
*iface
, VARIANT_BOOL
*p
)
1348 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1349 FIXME("(%p)->(%p)\n", This
, p
);
1353 static HRESULT WINAPI
HTMLElement_click(IHTMLElement
*iface
)
1355 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1357 TRACE("(%p)\n", This
);
1359 return call_fire_event(&This
->node
, EVENTID_CLICK
);
1362 static HRESULT WINAPI
HTMLElement_get_filters(IHTMLElement
*iface
,
1363 IHTMLFiltersCollection
**p
)
1365 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1366 TRACE("(%p)->(%p)\n", This
, p
);
1371 *p
= HTMLFiltersCollection_Create();
1376 static HRESULT WINAPI
HTMLElement_put_ondragstart(IHTMLElement
*iface
, VARIANT v
)
1378 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1379 FIXME("(%p)->()\n", This
);
1383 static HRESULT WINAPI
HTMLElement_get_ondragstart(IHTMLElement
*iface
, VARIANT
*p
)
1385 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1386 FIXME("(%p)->(%p)\n", This
, p
);
1390 static HRESULT WINAPI
HTMLElement_toString(IHTMLElement
*iface
, BSTR
*String
)
1392 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1393 FIXME("(%p)->(%p)\n", This
, String
);
1397 static HRESULT WINAPI
HTMLElement_put_onbeforeupdate(IHTMLElement
*iface
, VARIANT v
)
1399 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1400 FIXME("(%p)->()\n", This
);
1404 static HRESULT WINAPI
HTMLElement_get_onbeforeupdate(IHTMLElement
*iface
, VARIANT
*p
)
1406 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1407 FIXME("(%p)->(%p)\n", This
, p
);
1411 static HRESULT WINAPI
HTMLElement_put_onafterupdate(IHTMLElement
*iface
, VARIANT v
)
1413 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1414 FIXME("(%p)->()\n", This
);
1418 static HRESULT WINAPI
HTMLElement_get_onafterupdate(IHTMLElement
*iface
, VARIANT
*p
)
1420 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1421 FIXME("(%p)->(%p)\n", This
, p
);
1425 static HRESULT WINAPI
HTMLElement_put_onerrorupdate(IHTMLElement
*iface
, VARIANT v
)
1427 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1428 FIXME("(%p)->()\n", This
);
1432 static HRESULT WINAPI
HTMLElement_get_onerrorupdate(IHTMLElement
*iface
, VARIANT
*p
)
1434 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1435 FIXME("(%p)->(%p)\n", This
, p
);
1439 static HRESULT WINAPI
HTMLElement_put_onrowexit(IHTMLElement
*iface
, VARIANT v
)
1441 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1442 FIXME("(%p)->()\n", This
);
1446 static HRESULT WINAPI
HTMLElement_get_onrowexit(IHTMLElement
*iface
, VARIANT
*p
)
1448 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1449 FIXME("(%p)->(%p)\n", This
, p
);
1453 static HRESULT WINAPI
HTMLElement_put_onrowenter(IHTMLElement
*iface
, VARIANT v
)
1455 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1456 FIXME("(%p)->()\n", This
);
1460 static HRESULT WINAPI
HTMLElement_get_onrowenter(IHTMLElement
*iface
, VARIANT
*p
)
1462 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1463 FIXME("(%p)->(%p)\n", This
, p
);
1467 static HRESULT WINAPI
HTMLElement_put_ondatasetchanged(IHTMLElement
*iface
, VARIANT v
)
1469 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1470 FIXME("(%p)->()\n", This
);
1474 static HRESULT WINAPI
HTMLElement_get_ondatasetchanged(IHTMLElement
*iface
, VARIANT
*p
)
1476 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1477 FIXME("(%p)->(%p)\n", This
, p
);
1481 static HRESULT WINAPI
HTMLElement_put_ondataavailable(IHTMLElement
*iface
, VARIANT v
)
1483 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1484 FIXME("(%p)->()\n", This
);
1488 static HRESULT WINAPI
HTMLElement_get_ondataavailable(IHTMLElement
*iface
, VARIANT
*p
)
1490 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1491 FIXME("(%p)->(%p)\n", This
, p
);
1495 static HRESULT WINAPI
HTMLElement_put_ondatasetcomplete(IHTMLElement
*iface
, VARIANT v
)
1497 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1498 FIXME("(%p)->()\n", This
);
1502 static HRESULT WINAPI
HTMLElement_get_ondatasetcomplete(IHTMLElement
*iface
, VARIANT
*p
)
1504 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1505 FIXME("(%p)->(%p)\n", This
, p
);
1509 static HRESULT WINAPI
HTMLElement_put_onfilterchange(IHTMLElement
*iface
, VARIANT v
)
1511 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1512 FIXME("(%p)->()\n", This
);
1516 static HRESULT WINAPI
HTMLElement_get_onfilterchange(IHTMLElement
*iface
, VARIANT
*p
)
1518 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1519 FIXME("(%p)->(%p)\n", This
, p
);
1523 static HRESULT WINAPI
HTMLElement_get_children(IHTMLElement
*iface
, IDispatch
**p
)
1525 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1526 nsIDOMNodeList
*nsnode_list
;
1529 TRACE("(%p)->(%p)\n", This
, p
);
1531 nsres
= nsIDOMNode_GetChildNodes(This
->node
.nsnode
, &nsnode_list
);
1532 if(NS_FAILED(nsres
)) {
1533 ERR("GetChildNodes failed: %08x\n", nsres
);
1537 *p
= (IDispatch
*)create_collection_from_nodelist(This
->node
.doc
,
1538 (IUnknown
*)&This
->IHTMLElement_iface
, nsnode_list
);
1540 nsIDOMNodeList_Release(nsnode_list
);
1544 static HRESULT WINAPI
HTMLElement_get_all(IHTMLElement
*iface
, IDispatch
**p
)
1546 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1548 TRACE("(%p)->(%p)\n", This
, p
);
1550 *p
= (IDispatch
*)create_all_collection(&This
->node
, FALSE
);
1554 static const IHTMLElementVtbl HTMLElementVtbl
= {
1555 HTMLElement_QueryInterface
,
1557 HTMLElement_Release
,
1558 HTMLElement_GetTypeInfoCount
,
1559 HTMLElement_GetTypeInfo
,
1560 HTMLElement_GetIDsOfNames
,
1562 HTMLElement_setAttribute
,
1563 HTMLElement_getAttribute
,
1564 HTMLElement_removeAttribute
,
1565 HTMLElement_put_className
,
1566 HTMLElement_get_className
,
1569 HTMLElement_get_tagName
,
1570 HTMLElement_get_parentElement
,
1571 HTMLElement_get_style
,
1572 HTMLElement_put_onhelp
,
1573 HTMLElement_get_onhelp
,
1574 HTMLElement_put_onclick
,
1575 HTMLElement_get_onclick
,
1576 HTMLElement_put_ondblclick
,
1577 HTMLElement_get_ondblclick
,
1578 HTMLElement_put_onkeydown
,
1579 HTMLElement_get_onkeydown
,
1580 HTMLElement_put_onkeyup
,
1581 HTMLElement_get_onkeyup
,
1582 HTMLElement_put_onkeypress
,
1583 HTMLElement_get_onkeypress
,
1584 HTMLElement_put_onmouseout
,
1585 HTMLElement_get_onmouseout
,
1586 HTMLElement_put_onmouseover
,
1587 HTMLElement_get_onmouseover
,
1588 HTMLElement_put_onmousemove
,
1589 HTMLElement_get_onmousemove
,
1590 HTMLElement_put_onmousedown
,
1591 HTMLElement_get_onmousedown
,
1592 HTMLElement_put_onmouseup
,
1593 HTMLElement_get_onmouseup
,
1594 HTMLElement_get_document
,
1595 HTMLElement_put_title
,
1596 HTMLElement_get_title
,
1597 HTMLElement_put_language
,
1598 HTMLElement_get_language
,
1599 HTMLElement_put_onselectstart
,
1600 HTMLElement_get_onselectstart
,
1601 HTMLElement_scrollIntoView
,
1602 HTMLElement_contains
,
1603 HTMLElement_get_sourceIndex
,
1604 HTMLElement_get_recordNumber
,
1605 HTMLElement_put_lang
,
1606 HTMLElement_get_lang
,
1607 HTMLElement_get_offsetLeft
,
1608 HTMLElement_get_offsetTop
,
1609 HTMLElement_get_offsetWidth
,
1610 HTMLElement_get_offsetHeight
,
1611 HTMLElement_get_offsetParent
,
1612 HTMLElement_put_innerHTML
,
1613 HTMLElement_get_innerHTML
,
1614 HTMLElement_put_innerText
,
1615 HTMLElement_get_innerText
,
1616 HTMLElement_put_outerHTML
,
1617 HTMLElement_get_outerHTML
,
1618 HTMLElement_put_outerText
,
1619 HTMLElement_get_outerText
,
1620 HTMLElement_insertAdjacentHTML
,
1621 HTMLElement_insertAdjacentText
,
1622 HTMLElement_get_parentTextEdit
,
1623 HTMLElement_get_isTextEdit
,
1625 HTMLElement_get_filters
,
1626 HTMLElement_put_ondragstart
,
1627 HTMLElement_get_ondragstart
,
1628 HTMLElement_toString
,
1629 HTMLElement_put_onbeforeupdate
,
1630 HTMLElement_get_onbeforeupdate
,
1631 HTMLElement_put_onafterupdate
,
1632 HTMLElement_get_onafterupdate
,
1633 HTMLElement_put_onerrorupdate
,
1634 HTMLElement_get_onerrorupdate
,
1635 HTMLElement_put_onrowexit
,
1636 HTMLElement_get_onrowexit
,
1637 HTMLElement_put_onrowenter
,
1638 HTMLElement_get_onrowenter
,
1639 HTMLElement_put_ondatasetchanged
,
1640 HTMLElement_get_ondatasetchanged
,
1641 HTMLElement_put_ondataavailable
,
1642 HTMLElement_get_ondataavailable
,
1643 HTMLElement_put_ondatasetcomplete
,
1644 HTMLElement_get_ondatasetcomplete
,
1645 HTMLElement_put_onfilterchange
,
1646 HTMLElement_get_onfilterchange
,
1647 HTMLElement_get_children
,
1651 static inline HTMLElement
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
1653 return CONTAINING_RECORD(iface
, HTMLElement
, node
);
1656 HRESULT
HTMLElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
1658 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1662 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
1663 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
1664 *ppv
= &This
->IHTMLElement_iface
;
1665 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
1666 TRACE("(%p)->(IID_IDispatch %p)\n", This
, ppv
);
1667 *ppv
= &This
->IHTMLElement_iface
;
1668 }else if(IsEqualGUID(&IID_IHTMLElement
, riid
)) {
1669 TRACE("(%p)->(IID_IHTMLElement %p)\n", This
, ppv
);
1670 *ppv
= &This
->IHTMLElement_iface
;
1671 }else if(IsEqualGUID(&IID_IHTMLElement2
, riid
)) {
1672 TRACE("(%p)->(IID_IHTMLElement2 %p)\n", This
, ppv
);
1673 *ppv
= &This
->IHTMLElement2_iface
;
1674 }else if(IsEqualGUID(&IID_IHTMLElement3
, riid
)) {
1675 TRACE("(%p)->(IID_IHTMLElement3 %p)\n", This
, ppv
);
1676 *ppv
= &This
->IHTMLElement3_iface
;
1677 }else if(IsEqualGUID(&IID_IHTMLElement4
, riid
)) {
1678 TRACE("(%p)->(IID_IHTMLElement4 %p)\n", This
, ppv
);
1679 *ppv
= &This
->IHTMLElement4_iface
;
1680 }else if(IsEqualGUID(&IID_IConnectionPointContainer
, riid
)) {
1681 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This
, ppv
);
1682 *ppv
= &This
->cp_container
.IConnectionPointContainer_iface
;
1686 IHTMLElement_AddRef(&This
->IHTMLElement_iface
);
1690 return HTMLDOMNode_QI(&This
->node
, riid
, ppv
);
1693 void HTMLElement_destructor(HTMLDOMNode
*iface
)
1695 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1697 ConnectionPointContainer_Destroy(&This
->cp_container
);
1700 nsIDOMHTMLElement_Release(This
->nselem
);
1702 IHTMLStyle_Release(&This
->style
->IHTMLStyle_iface
);
1704 HTMLDOMAttribute
*attr
;
1706 LIST_FOR_EACH_ENTRY(attr
, &This
->attrs
->attrs
, HTMLDOMAttribute
, entry
)
1709 This
->attrs
->elem
= NULL
;
1710 IHTMLAttributeCollection_Release(&This
->attrs
->IHTMLAttributeCollection_iface
);
1713 HTMLDOMNode_destructor(&This
->node
);
1716 HRESULT
HTMLElement_clone(HTMLDOMNode
*iface
, nsIDOMNode
*nsnode
, HTMLDOMNode
**ret
)
1718 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1719 HTMLElement
*new_elem
;
1722 hres
= HTMLElement_Create(This
->node
.doc
, nsnode
, FALSE
, &new_elem
);
1726 IHTMLElement_AddRef(&new_elem
->IHTMLElement_iface
);
1727 *ret
= &new_elem
->node
;
1731 static const NodeImplVtbl HTMLElementImplVtbl
= {
1733 HTMLElement_destructor
,
1735 HTMLElement_get_attr_col
1738 static inline HTMLElement
*impl_from_DispatchEx(DispatchEx
*iface
)
1740 return CONTAINING_RECORD(iface
, HTMLElement
, node
.dispex
);
1743 static HRESULT
HTMLElement_get_dispid(DispatchEx
*dispex
, BSTR name
,
1744 DWORD grfdex
, DISPID
*pid
)
1746 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1748 if(This
->node
.vtbl
->get_dispid
)
1749 return This
->node
.vtbl
->get_dispid(&This
->node
, name
, grfdex
, pid
);
1751 return DISP_E_UNKNOWNNAME
;
1754 static HRESULT
HTMLElement_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
,
1755 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
,
1756 IServiceProvider
*caller
)
1758 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1760 if(This
->node
.vtbl
->invoke
)
1761 return This
->node
.vtbl
->invoke(&This
->node
, id
, lcid
, flags
,
1762 params
, res
, ei
, caller
);
1764 ERR("(%p): element has no invoke method\n", This
);
1768 static HRESULT
HTMLElement_populate_props(DispatchEx
*dispex
)
1770 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1771 nsIDOMNamedNodeMap
*attrs
;
1774 const PRUnichar
*str
;
1786 nsres
= nsIDOMHTMLElement_GetAttributes(This
->nselem
, &attrs
);
1787 if(NS_FAILED(nsres
))
1790 nsres
= nsIDOMNamedNodeMap_GetLength(attrs
, &len
);
1791 if(NS_FAILED(nsres
)) {
1792 nsIDOMNamedNodeMap_Release(attrs
);
1796 nsAString_Init(&nsstr
, NULL
);
1797 for(i
=0; i
<len
; i
++) {
1798 nsres
= nsIDOMNamedNodeMap_Item(attrs
, i
, &node
);
1799 if(NS_FAILED(nsres
))
1802 nsres
= nsIDOMNode_GetNodeName(node
, &nsstr
);
1803 if(NS_FAILED(nsres
)) {
1804 nsIDOMNode_Release(node
);
1808 nsAString_GetData(&nsstr
, &str
);
1809 name
= SysAllocString(str
);
1811 nsIDOMNode_Release(node
);
1815 hres
= IDispatchEx_GetDispID(&dispex
->IDispatchEx_iface
, name
, fdexNameCaseInsensitive
, &id
);
1816 if(hres
!= DISP_E_UNKNOWNNAME
) {
1817 nsIDOMNode_Release(node
);
1818 SysFreeString(name
);
1822 nsres
= nsIDOMNode_GetNodeValue(node
, &nsstr
);
1823 nsIDOMNode_Release(node
);
1824 if(NS_FAILED(nsres
)) {
1825 SysFreeString(name
);
1829 nsAString_GetData(&nsstr
, &str
);
1830 V_VT(&value
) = VT_BSTR
;
1832 V_BSTR(&value
) = SysAllocString(str
);
1833 if(!V_BSTR(&value
)) {
1834 SysFreeString(name
);
1838 V_BSTR(&value
) = NULL
;
1840 IHTMLElement_setAttribute(&This
->IHTMLElement_iface
, name
, value
, 0);
1841 SysFreeString(name
);
1842 VariantClear(&value
);
1844 nsAString_Finish(&nsstr
);
1846 nsIDOMNamedNodeMap_Release(attrs
);
1850 static const tid_t HTMLElement_iface_tids
[] = {
1855 static dispex_static_data_vtbl_t HTMLElement_dispex_vtbl
= {
1857 HTMLElement_get_dispid
,
1859 HTMLElement_populate_props
1862 static dispex_static_data_t HTMLElement_dispex
= {
1863 &HTMLElement_dispex_vtbl
,
1864 DispHTMLUnknownElement_tid
,
1866 HTMLElement_iface_tids
1869 void HTMLElement_Init(HTMLElement
*This
, HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, dispex_static_data_t
*dispex_data
)
1871 This
->IHTMLElement_iface
.lpVtbl
= &HTMLElementVtbl
;
1873 HTMLElement2_Init(This
);
1874 HTMLElement3_Init(This
);
1876 if(dispex_data
&& !dispex_data
->vtbl
)
1877 dispex_data
->vtbl
= &HTMLElement_dispex_vtbl
;
1878 init_dispex(&This
->node
.dispex
, (IUnknown
*)&This
->IHTMLElement_iface
,
1879 dispex_data
? dispex_data
: &HTMLElement_dispex
);
1882 nsIDOMHTMLElement_AddRef(nselem
);
1883 This
->nselem
= nselem
;
1885 HTMLDOMNode_Init(doc
, &This
->node
, (nsIDOMNode
*)nselem
);
1887 ConnectionPointContainer_Init(&This
->cp_container
, (IUnknown
*)&This
->IHTMLElement_iface
);
1890 HRESULT
HTMLElement_Create(HTMLDocumentNode
*doc
, nsIDOMNode
*nsnode
, BOOL use_generic
, HTMLElement
**ret
)
1892 nsIDOMHTMLElement
*nselem
;
1893 nsAString class_name_str
;
1894 const PRUnichar
*class_name
;
1895 const tag_desc_t
*tag
;
1900 nsres
= nsIDOMNode_QueryInterface(nsnode
, &IID_nsIDOMHTMLElement
, (void**)&nselem
);
1901 if(NS_FAILED(nsres
))
1904 nsAString_Init(&class_name_str
, NULL
);
1905 nsIDOMHTMLElement_GetTagName(nselem
, &class_name_str
);
1907 nsAString_GetData(&class_name_str
, &class_name
);
1909 tag
= get_tag_desc(class_name
);
1911 hres
= tag
->constructor(doc
, nselem
, &elem
);
1912 }else if(use_generic
) {
1913 hres
= HTMLGenericElement_Create(doc
, nselem
, &elem
);
1915 elem
= heap_alloc_zero(sizeof(HTMLElement
));
1917 HTMLElement_Init(elem
, doc
, nselem
, &HTMLElement_dispex
);
1918 elem
->node
.vtbl
= &HTMLElementImplVtbl
;
1921 hres
= E_OUTOFMEMORY
;
1925 TRACE("%s ret %p\n", debugstr_w(class_name
), elem
);
1927 nsIDOMElement_Release(nselem
);
1928 nsAString_Finish(&class_name_str
);
1936 /* interface IHTMLFiltersCollection */
1937 static HRESULT WINAPI
HTMLFiltersCollection_QueryInterface(IHTMLFiltersCollection
*iface
, REFIID riid
, void **ppv
)
1939 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1941 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppv
);
1943 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
1944 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
1945 *ppv
= &This
->IHTMLFiltersCollection_iface
;
1946 }else if(IsEqualGUID(&IID_IHTMLFiltersCollection
, riid
)) {
1947 TRACE("(%p)->(IID_IHTMLFiltersCollection %p)\n", This
, ppv
);
1948 *ppv
= &This
->IHTMLFiltersCollection_iface
;
1949 }else if(dispex_query_interface(&This
->dispex
, riid
, ppv
)) {
1950 return *ppv
? S_OK
: E_NOINTERFACE
;
1954 IUnknown_AddRef((IUnknown
*)*ppv
);
1958 FIXME("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
1959 return E_NOINTERFACE
;
1962 static ULONG WINAPI
HTMLFiltersCollection_AddRef(IHTMLFiltersCollection
*iface
)
1964 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1965 LONG ref
= InterlockedIncrement(&This
->ref
);
1967 TRACE("(%p) ref=%d\n", This
, ref
);
1972 static ULONG WINAPI
HTMLFiltersCollection_Release(IHTMLFiltersCollection
*iface
)
1974 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1975 LONG ref
= InterlockedDecrement(&This
->ref
);
1977 TRACE("(%p) ref=%d\n", This
, ref
);
1987 static HRESULT WINAPI
HTMLFiltersCollection_GetTypeInfoCount(IHTMLFiltersCollection
*iface
, UINT
*pctinfo
)
1989 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1990 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
1993 static HRESULT WINAPI
HTMLFiltersCollection_GetTypeInfo(IHTMLFiltersCollection
*iface
,
1994 UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
1996 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1997 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2000 static HRESULT WINAPI
HTMLFiltersCollection_GetIDsOfNames(IHTMLFiltersCollection
*iface
,
2001 REFIID riid
, LPOLESTR
*rgszNames
, UINT cNames
,
2002 LCID lcid
, DISPID
*rgDispId
)
2004 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
2005 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2009 static HRESULT WINAPI
HTMLFiltersCollection_Invoke(IHTMLFiltersCollection
*iface
, DISPID dispIdMember
, REFIID riid
,
2010 LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
,
2011 EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2013 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
2014 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2015 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2018 static HRESULT WINAPI
HTMLFiltersCollection_get_length(IHTMLFiltersCollection
*iface
, LONG
*p
)
2020 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
2025 FIXME("(%p)->(%p) Always returning 0\n", This
, p
);
2031 static HRESULT WINAPI
HTMLFiltersCollection_get__newEnum(IHTMLFiltersCollection
*iface
, IUnknown
**p
)
2033 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
2034 FIXME("(%p)->(%p)\n", This
, p
);
2038 static HRESULT WINAPI
HTMLFiltersCollection_item(IHTMLFiltersCollection
*iface
, VARIANT
*pvarIndex
, VARIANT
*pvarResult
)
2040 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
2041 FIXME("(%p)->(%p, %p)\n", This
, pvarIndex
, pvarResult
);
2045 static const IHTMLFiltersCollectionVtbl HTMLFiltersCollectionVtbl
= {
2046 HTMLFiltersCollection_QueryInterface
,
2047 HTMLFiltersCollection_AddRef
,
2048 HTMLFiltersCollection_Release
,
2049 HTMLFiltersCollection_GetTypeInfoCount
,
2050 HTMLFiltersCollection_GetTypeInfo
,
2051 HTMLFiltersCollection_GetIDsOfNames
,
2052 HTMLFiltersCollection_Invoke
,
2053 HTMLFiltersCollection_get_length
,
2054 HTMLFiltersCollection_get__newEnum
,
2055 HTMLFiltersCollection_item
2058 static HRESULT
HTMLFiltersCollection_get_dispid(DispatchEx
*dispex
, BSTR name
, DWORD flags
, DISPID
*dispid
)
2063 for(ptr
= name
; *ptr
&& isdigitW(*ptr
); ptr
++)
2064 idx
= idx
*10 + (*ptr
-'0');
2066 return DISP_E_UNKNOWNNAME
;
2068 *dispid
= MSHTML_DISPID_CUSTOM_MIN
+ idx
;
2069 TRACE("ret %x\n", *dispid
);
2073 static HRESULT
HTMLFiltersCollection_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
, WORD flags
, DISPPARAMS
*params
,
2074 VARIANT
*res
, EXCEPINFO
*ei
, IServiceProvider
*caller
)
2076 TRACE("(%p)->(%x %x %x %p %p %p)\n", dispex
, id
, lcid
, flags
, params
, res
, ei
);
2078 V_VT(res
) = VT_DISPATCH
;
2079 V_DISPATCH(res
) = NULL
;
2081 FIXME("always returning NULL\n");
2086 static const dispex_static_data_vtbl_t HTMLFiltersCollection_dispex_vtbl
= {
2088 HTMLFiltersCollection_get_dispid
,
2089 HTMLFiltersCollection_invoke
,
2093 static const tid_t HTMLFiltersCollection_iface_tids
[] = {
2094 IHTMLFiltersCollection_tid
,
2097 static dispex_static_data_t HTMLFiltersCollection_dispex
= {
2098 &HTMLFiltersCollection_dispex_vtbl
,
2099 IHTMLFiltersCollection_tid
,
2101 HTMLFiltersCollection_iface_tids
2104 static IHTMLFiltersCollection
*HTMLFiltersCollection_Create(void)
2106 HTMLFiltersCollection
*ret
= heap_alloc(sizeof(HTMLFiltersCollection
));
2108 ret
->IHTMLFiltersCollection_iface
.lpVtbl
= &HTMLFiltersCollectionVtbl
;
2111 init_dispex(&ret
->dispex
, (IUnknown
*)&ret
->IHTMLFiltersCollection_iface
,
2112 &HTMLFiltersCollection_dispex
);
2114 return &ret
->IHTMLFiltersCollection_iface
;
2117 /* interface IHTMLAttributeCollection */
2118 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection(IHTMLAttributeCollection
*iface
)
2120 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection_iface
);
2123 static HRESULT WINAPI
HTMLAttributeCollection_QueryInterface(IHTMLAttributeCollection
*iface
, REFIID riid
, void **ppv
)
2125 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2129 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
2130 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
2131 *ppv
= &This
->IHTMLAttributeCollection_iface
;
2132 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection
, riid
)) {
2133 TRACE("(%p)->(IID_IHTMLAttributeCollection %p)\n", This
, ppv
);
2134 *ppv
= &This
->IHTMLAttributeCollection_iface
;
2135 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection2
, riid
)) {
2136 TRACE("(%p)->(IID_IHTMLAttributeCollection2 %p)\n", This
, ppv
);
2137 *ppv
= &This
->IHTMLAttributeCollection2_iface
;
2138 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection3
, riid
)) {
2139 TRACE("(%p)->(IID_IHTMLAttributeCollection3 %p)\n", This
, ppv
);
2140 *ppv
= &This
->IHTMLAttributeCollection3_iface
;
2141 }else if(dispex_query_interface(&This
->dispex
, riid
, ppv
)) {
2142 return *ppv
? S_OK
: E_NOINTERFACE
;
2146 IUnknown_AddRef((IUnknown
*)*ppv
);
2150 WARN("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
2151 return E_NOINTERFACE
;
2154 static ULONG WINAPI
HTMLAttributeCollection_AddRef(IHTMLAttributeCollection
*iface
)
2156 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2157 LONG ref
= InterlockedIncrement(&This
->ref
);
2159 TRACE("(%p) ref=%d\n", This
, ref
);
2164 static ULONG WINAPI
HTMLAttributeCollection_Release(IHTMLAttributeCollection
*iface
)
2166 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2167 LONG ref
= InterlockedDecrement(&This
->ref
);
2169 TRACE("(%p) ref=%d\n", This
, ref
);
2172 while(!list_empty(&This
->attrs
)) {
2173 HTMLDOMAttribute
*attr
= LIST_ENTRY(list_head(&This
->attrs
), HTMLDOMAttribute
, entry
);
2175 list_remove(&attr
->entry
);
2177 IHTMLDOMAttribute_Release(&attr
->IHTMLDOMAttribute_iface
);
2186 static HRESULT WINAPI
HTMLAttributeCollection_GetTypeInfoCount(IHTMLAttributeCollection
*iface
, UINT
*pctinfo
)
2188 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2189 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2192 static HRESULT WINAPI
HTMLAttributeCollection_GetTypeInfo(IHTMLAttributeCollection
*iface
, UINT iTInfo
,
2193 LCID lcid
, ITypeInfo
**ppTInfo
)
2195 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2196 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2199 static HRESULT WINAPI
HTMLAttributeCollection_GetIDsOfNames(IHTMLAttributeCollection
*iface
, REFIID riid
,
2200 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2202 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2203 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2207 static HRESULT WINAPI
HTMLAttributeCollection_Invoke(IHTMLAttributeCollection
*iface
, DISPID dispIdMember
,
2208 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2209 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2211 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2212 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2213 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2216 static HRESULT
get_attr_dispid_by_idx(HTMLAttributeCollection
*This
, LONG
*idx
, DISPID
*dispid
)
2218 IDispatchEx
*dispex
= &This
->elem
->node
.dispex
.IDispatchEx_iface
;
2219 DISPID id
= DISPID_STARTENUM
;
2223 FIXME("filter non-enumerable attributes out\n");
2226 hres
= IDispatchEx_GetNextDispID(dispex
, fdexEnumAll
, id
, &id
);
2229 else if(hres
== S_FALSE
)
2239 return *idx
==len
? S_OK
: DISP_E_UNKNOWNNAME
;
2246 static inline HRESULT
get_attr_dispid_by_name(HTMLAttributeCollection
*This
, BSTR name
, DISPID
*id
)
2250 if(name
[0]>='0' && name
[0]<='9') {
2254 idx
= strtoulW(name
, &end_ptr
, 10);
2256 hres
= get_attr_dispid_by_idx(This
, &idx
, id
);
2263 WARN("NULL elem\n");
2264 return E_UNEXPECTED
;
2267 hres
= IDispatchEx_GetDispID(&This
->elem
->node
.dispex
.IDispatchEx_iface
,
2268 name
, fdexNameCaseInsensitive
, id
);
2272 static inline HRESULT
get_domattr(HTMLAttributeCollection
*This
, DISPID id
, LONG
*list_pos
, HTMLDOMAttribute
**attr
)
2274 HTMLDOMAttribute
*iter
;
2279 LIST_FOR_EACH_ENTRY(iter
, &This
->attrs
, HTMLDOMAttribute
, entry
) {
2280 if(iter
->dispid
== id
) {
2289 WARN("NULL elem\n");
2290 return E_UNEXPECTED
;
2294 hres
= HTMLDOMAttribute_Create(This
->elem
, id
, attr
);
2299 IHTMLDOMAttribute_AddRef(&(*attr
)->IHTMLDOMAttribute_iface
);
2305 static HRESULT WINAPI
HTMLAttributeCollection_get_length(IHTMLAttributeCollection
*iface
, LONG
*p
)
2307 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2310 TRACE("(%p)->(%p)\n", This
, p
);
2313 hres
= get_attr_dispid_by_idx(This
, p
, NULL
);
2317 static HRESULT WINAPI
HTMLAttributeCollection__newEnum(IHTMLAttributeCollection
*iface
, IUnknown
**p
)
2319 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2320 FIXME("(%p)->(%p)\n", This
, p
);
2324 static HRESULT WINAPI
HTMLAttributeCollection_item(IHTMLAttributeCollection
*iface
, VARIANT
*name
, IDispatch
**ppItem
)
2326 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2327 HTMLDOMAttribute
*attr
;
2331 TRACE("(%p)->(%s %p)\n", This
, debugstr_variant(name
), ppItem
);
2333 switch(V_VT(name
)) {
2335 hres
= get_attr_dispid_by_idx(This
, &V_I4(name
), &id
);
2338 hres
= get_attr_dispid_by_name(This
, V_BSTR(name
), &id
);
2341 FIXME("unsupported vt %x\n", V_VT(name
));
2344 if(hres
== DISP_E_UNKNOWNNAME
)
2345 return E_INVALIDARG
;
2349 hres
= get_domattr(This
, id
, NULL
, &attr
);
2353 *ppItem
= (IDispatch
*)&attr
->IHTMLDOMAttribute_iface
;
2357 static const IHTMLAttributeCollectionVtbl HTMLAttributeCollectionVtbl
= {
2358 HTMLAttributeCollection_QueryInterface
,
2359 HTMLAttributeCollection_AddRef
,
2360 HTMLAttributeCollection_Release
,
2361 HTMLAttributeCollection_GetTypeInfoCount
,
2362 HTMLAttributeCollection_GetTypeInfo
,
2363 HTMLAttributeCollection_GetIDsOfNames
,
2364 HTMLAttributeCollection_Invoke
,
2365 HTMLAttributeCollection_get_length
,
2366 HTMLAttributeCollection__newEnum
,
2367 HTMLAttributeCollection_item
2370 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection2(IHTMLAttributeCollection2
*iface
)
2372 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection2_iface
);
2375 static HRESULT WINAPI
HTMLAttributeCollection2_QueryInterface(IHTMLAttributeCollection2
*iface
, REFIID riid
, void **ppv
)
2377 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2378 return IHTMLAttributeCollection_QueryInterface(&This
->IHTMLAttributeCollection_iface
, riid
, ppv
);
2381 static ULONG WINAPI
HTMLAttributeCollection2_AddRef(IHTMLAttributeCollection2
*iface
)
2383 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2384 return IHTMLAttributeCollection_AddRef(&This
->IHTMLAttributeCollection_iface
);
2387 static ULONG WINAPI
HTMLAttributeCollection2_Release(IHTMLAttributeCollection2
*iface
)
2389 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2390 return IHTMLAttributeCollection_Release(&This
->IHTMLAttributeCollection_iface
);
2393 static HRESULT WINAPI
HTMLAttributeCollection2_GetTypeInfoCount(IHTMLAttributeCollection2
*iface
, UINT
*pctinfo
)
2395 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2396 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2399 static HRESULT WINAPI
HTMLAttributeCollection2_GetTypeInfo(IHTMLAttributeCollection2
*iface
, UINT iTInfo
,
2400 LCID lcid
, ITypeInfo
**ppTInfo
)
2402 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2403 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2406 static HRESULT WINAPI
HTMLAttributeCollection2_GetIDsOfNames(IHTMLAttributeCollection2
*iface
, REFIID riid
,
2407 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2409 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2410 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2414 static HRESULT WINAPI
HTMLAttributeCollection2_Invoke(IHTMLAttributeCollection2
*iface
, DISPID dispIdMember
,
2415 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2416 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2418 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2419 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2420 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2423 static HRESULT WINAPI
HTMLAttributeCollection2_getNamedItem(IHTMLAttributeCollection2
*iface
, BSTR bstrName
,
2424 IHTMLDOMAttribute
**newretNode
)
2426 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2427 HTMLDOMAttribute
*attr
;
2431 TRACE("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), newretNode
);
2433 hres
= get_attr_dispid_by_name(This
, bstrName
, &id
);
2434 if(hres
== DISP_E_UNKNOWNNAME
) {
2437 } else if(FAILED(hres
)) {
2441 hres
= get_domattr(This
, id
, NULL
, &attr
);
2445 *newretNode
= &attr
->IHTMLDOMAttribute_iface
;
2449 static HRESULT WINAPI
HTMLAttributeCollection2_setNamedItem(IHTMLAttributeCollection2
*iface
,
2450 IHTMLDOMAttribute
*ppNode
, IHTMLDOMAttribute
**newretNode
)
2452 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2453 FIXME("(%p)->(%p %p)\n", This
, ppNode
, newretNode
);
2457 static HRESULT WINAPI
HTMLAttributeCollection2_removeNamedItem(IHTMLAttributeCollection2
*iface
,
2458 BSTR bstrName
, IHTMLDOMAttribute
**newretNode
)
2460 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2461 FIXME("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), newretNode
);
2465 static const IHTMLAttributeCollection2Vtbl HTMLAttributeCollection2Vtbl
= {
2466 HTMLAttributeCollection2_QueryInterface
,
2467 HTMLAttributeCollection2_AddRef
,
2468 HTMLAttributeCollection2_Release
,
2469 HTMLAttributeCollection2_GetTypeInfoCount
,
2470 HTMLAttributeCollection2_GetTypeInfo
,
2471 HTMLAttributeCollection2_GetIDsOfNames
,
2472 HTMLAttributeCollection2_Invoke
,
2473 HTMLAttributeCollection2_getNamedItem
,
2474 HTMLAttributeCollection2_setNamedItem
,
2475 HTMLAttributeCollection2_removeNamedItem
2478 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection3(IHTMLAttributeCollection3
*iface
)
2480 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection3_iface
);
2483 static HRESULT WINAPI
HTMLAttributeCollection3_QueryInterface(IHTMLAttributeCollection3
*iface
, REFIID riid
, void **ppv
)
2485 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2486 return IHTMLAttributeCollection_QueryInterface(&This
->IHTMLAttributeCollection_iface
, riid
, ppv
);
2489 static ULONG WINAPI
HTMLAttributeCollection3_AddRef(IHTMLAttributeCollection3
*iface
)
2491 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2492 return IHTMLAttributeCollection_AddRef(&This
->IHTMLAttributeCollection_iface
);
2495 static ULONG WINAPI
HTMLAttributeCollection3_Release(IHTMLAttributeCollection3
*iface
)
2497 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2498 return IHTMLAttributeCollection_Release(&This
->IHTMLAttributeCollection_iface
);
2501 static HRESULT WINAPI
HTMLAttributeCollection3_GetTypeInfoCount(IHTMLAttributeCollection3
*iface
, UINT
*pctinfo
)
2503 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2504 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2507 static HRESULT WINAPI
HTMLAttributeCollection3_GetTypeInfo(IHTMLAttributeCollection3
*iface
, UINT iTInfo
,
2508 LCID lcid
, ITypeInfo
**ppTInfo
)
2510 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2511 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2514 static HRESULT WINAPI
HTMLAttributeCollection3_GetIDsOfNames(IHTMLAttributeCollection3
*iface
, REFIID riid
,
2515 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2517 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2518 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2522 static HRESULT WINAPI
HTMLAttributeCollection3_Invoke(IHTMLAttributeCollection3
*iface
, DISPID dispIdMember
,
2523 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2524 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2526 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2527 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2528 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2531 static HRESULT WINAPI
HTMLAttributeCollection3_getNamedItem(IHTMLAttributeCollection3
*iface
, BSTR bstrName
,
2532 IHTMLDOMAttribute
**ppNodeOut
)
2534 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2535 return IHTMLAttributeCollection2_getNamedItem(&This
->IHTMLAttributeCollection2_iface
, bstrName
, ppNodeOut
);
2538 static HRESULT WINAPI
HTMLAttributeCollection3_setNamedItem(IHTMLAttributeCollection3
*iface
,
2539 IHTMLDOMAttribute
*pNodeIn
, IHTMLDOMAttribute
**ppNodeOut
)
2541 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2542 FIXME("(%p)->(%p %p)\n", This
, pNodeIn
, ppNodeOut
);
2546 static HRESULT WINAPI
HTMLAttributeCollection3_removeNamedItem(IHTMLAttributeCollection3
*iface
,
2547 BSTR bstrName
, IHTMLDOMAttribute
**ppNodeOut
)
2549 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2550 FIXME("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), ppNodeOut
);
2554 static HRESULT WINAPI
HTMLAttributeCollection3_item(IHTMLAttributeCollection3
*iface
, LONG index
, IHTMLDOMAttribute
**ppNodeOut
)
2556 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2557 HTMLDOMAttribute
*attr
;
2561 TRACE("(%p)->(%d %p)\n", This
, index
, ppNodeOut
);
2563 hres
= get_attr_dispid_by_idx(This
, &index
, &id
);
2564 if(hres
== DISP_E_UNKNOWNNAME
)
2565 return E_INVALIDARG
;
2569 hres
= get_domattr(This
, id
, NULL
, &attr
);
2573 *ppNodeOut
= &attr
->IHTMLDOMAttribute_iface
;
2577 static HRESULT WINAPI
HTMLAttributeCollection3_get_length(IHTMLAttributeCollection3
*iface
, LONG
*p
)
2579 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2580 return IHTMLAttributeCollection_get_length(&This
->IHTMLAttributeCollection_iface
, p
);
2583 static const IHTMLAttributeCollection3Vtbl HTMLAttributeCollection3Vtbl
= {
2584 HTMLAttributeCollection3_QueryInterface
,
2585 HTMLAttributeCollection3_AddRef
,
2586 HTMLAttributeCollection3_Release
,
2587 HTMLAttributeCollection3_GetTypeInfoCount
,
2588 HTMLAttributeCollection3_GetTypeInfo
,
2589 HTMLAttributeCollection3_GetIDsOfNames
,
2590 HTMLAttributeCollection3_Invoke
,
2591 HTMLAttributeCollection3_getNamedItem
,
2592 HTMLAttributeCollection3_setNamedItem
,
2593 HTMLAttributeCollection3_removeNamedItem
,
2594 HTMLAttributeCollection3_item
,
2595 HTMLAttributeCollection3_get_length
2598 static inline HTMLAttributeCollection
*HTMLAttributeCollection_from_DispatchEx(DispatchEx
*iface
)
2600 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, dispex
);
2603 static HRESULT
HTMLAttributeCollection_get_dispid(DispatchEx
*dispex
, BSTR name
, DWORD flags
, DISPID
*dispid
)
2605 HTMLAttributeCollection
*This
= HTMLAttributeCollection_from_DispatchEx(dispex
);
2606 HTMLDOMAttribute
*attr
;
2610 TRACE("(%p)->(%s %x %p)\n", This
, debugstr_w(name
), flags
, dispid
);
2612 hres
= get_attr_dispid_by_name(This
, name
, dispid
);
2616 hres
= get_domattr(This
, *dispid
, &pos
, &attr
);
2619 IHTMLDOMAttribute_Release(&attr
->IHTMLDOMAttribute_iface
);
2621 *dispid
= MSHTML_DISPID_CUSTOM_MIN
+pos
;
2625 static HRESULT
HTMLAttributeCollection_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
,
2626 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
, IServiceProvider
*caller
)
2628 HTMLAttributeCollection
*This
= HTMLAttributeCollection_from_DispatchEx(dispex
);
2630 TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This
, id
, lcid
, flags
, params
, res
, ei
, caller
);
2633 case DISPATCH_PROPERTYGET
: {
2634 HTMLDOMAttribute
*iter
;
2636 id
= id
-MSHTML_DISPID_CUSTOM_MIN
+1;
2638 LIST_FOR_EACH_ENTRY(iter
, &This
->attrs
, HTMLDOMAttribute
, entry
) {
2643 return E_INVALIDARG
;
2645 IHTMLDOMAttribute_AddRef(&iter
->IHTMLDOMAttribute_iface
);
2646 V_VT(res
) = VT_DISPATCH
;
2647 V_DISPATCH(res
) = (IDispatch
*)&iter
->IHTMLDOMAttribute_iface
;
2652 FIXME("unimplemented flags %x\n", flags
);
2657 static const dispex_static_data_vtbl_t HTMLAttributeCollection_dispex_vtbl
= {
2659 HTMLAttributeCollection_get_dispid
,
2660 HTMLAttributeCollection_invoke
,
2664 static const tid_t HTMLAttributeCollection_iface_tids
[] = {
2665 IHTMLAttributeCollection_tid
,
2666 IHTMLAttributeCollection2_tid
,
2667 IHTMLAttributeCollection3_tid
,
2671 static dispex_static_data_t HTMLAttributeCollection_dispex
= {
2672 &HTMLAttributeCollection_dispex_vtbl
,
2673 DispHTMLAttributeCollection_tid
,
2675 HTMLAttributeCollection_iface_tids
2678 HRESULT
HTMLElement_get_attr_col(HTMLDOMNode
*iface
, HTMLAttributeCollection
**ac
)
2680 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
2683 IHTMLAttributeCollection_AddRef(&This
->attrs
->IHTMLAttributeCollection_iface
);
2688 This
->attrs
= heap_alloc_zero(sizeof(HTMLAttributeCollection
));
2690 return E_OUTOFMEMORY
;
2692 This
->attrs
->IHTMLAttributeCollection_iface
.lpVtbl
= &HTMLAttributeCollectionVtbl
;
2693 This
->attrs
->IHTMLAttributeCollection2_iface
.lpVtbl
= &HTMLAttributeCollection2Vtbl
;
2694 This
->attrs
->IHTMLAttributeCollection3_iface
.lpVtbl
= &HTMLAttributeCollection3Vtbl
;
2695 This
->attrs
->ref
= 2;
2697 This
->attrs
->elem
= This
;
2698 list_init(&This
->attrs
->attrs
);
2699 init_dispex(&This
->attrs
->dispex
, (IUnknown
*)&This
->attrs
->IHTMLAttributeCollection_iface
,
2700 &HTMLAttributeCollection_dispex
);