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
28 #include "wine/debug.h"
29 #include "wine/unicode.h"
31 #include "mshtml_private.h"
32 #include "htmlevent.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36 #define HTMLELEM2_THIS(iface) DEFINE_THIS(HTMLElement, HTMLElement2, iface)
38 static HRESULT WINAPI HTMLElement2_QueryInterface(IHTMLElement2 *iface,
39 REFIID riid, void **ppv)
41 HTMLElement *This = HTMLELEM2_THIS(iface);
42 return IHTMLElement_QueryInterface(HTMLELEM(This), riid, ppv);
45 static ULONG WINAPI HTMLElement2_AddRef(IHTMLElement2 *iface)
47 HTMLElement *This = HTMLELEM2_THIS(iface);
48 return IHTMLElement_AddRef(HTMLELEM(This));
51 static ULONG WINAPI HTMLElement2_Release(IHTMLElement2 *iface)
53 HTMLElement *This = HTMLELEM2_THIS(iface);
54 return IHTMLElement_Release(HTMLELEM(This));
57 static HRESULT WINAPI HTMLElement2_GetTypeInfoCount(IHTMLElement2 *iface, UINT *pctinfo)
59 HTMLElement *This = HTMLELEM2_THIS(iface);
60 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->node.dispex), pctinfo);
63 static HRESULT WINAPI HTMLElement2_GetTypeInfo(IHTMLElement2 *iface, UINT iTInfo,
64 LCID lcid, ITypeInfo **ppTInfo)
66 HTMLElement *This = HTMLELEM2_THIS(iface);
67 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->node.dispex), iTInfo, lcid, ppTInfo);
70 static HRESULT WINAPI HTMLElement2_GetIDsOfNames(IHTMLElement2 *iface, REFIID riid,
71 LPOLESTR *rgszNames, UINT cNames,
72 LCID lcid, DISPID *rgDispId)
74 HTMLElement *This = HTMLELEM2_THIS(iface);
75 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->node.dispex), riid, rgszNames, cNames, lcid, rgDispId);
78 static HRESULT WINAPI HTMLElement2_Invoke(IHTMLElement2 *iface, DISPID dispIdMember,
79 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
80 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
82 HTMLElement *This = HTMLELEM2_THIS(iface);
83 return IDispatchEx_Invoke(DISPATCHEX(&This->node.dispex), dispIdMember, riid, lcid,
84 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
87 static HRESULT WINAPI HTMLElement2_get_scopeName(IHTMLElement2 *iface, BSTR *p)
89 HTMLElement *This = HTMLELEM2_THIS(iface);
90 FIXME("(%p)->(%p)\n", This, p);
94 static HRESULT WINAPI HTMLElement2_setCapture(IHTMLElement2 *iface, VARIANT_BOOL containerCapture)
96 HTMLElement *This = HTMLELEM2_THIS(iface);
97 FIXME("(%p)->(%x)\n", This, containerCapture);
101 static HRESULT WINAPI HTMLElement2_releaseCapture(IHTMLElement2 *iface)
103 HTMLElement *This = HTMLELEM2_THIS(iface);
104 FIXME("(%p)\n", This);
108 static HRESULT WINAPI HTMLElement2_put_onlosecapture(IHTMLElement2 *iface, VARIANT v)
110 HTMLElement *This = HTMLELEM2_THIS(iface);
111 FIXME("(%p)->()\n", This);
115 static HRESULT WINAPI HTMLElement2_get_onlosecapture(IHTMLElement2 *iface, VARIANT *p)
117 HTMLElement *This = HTMLELEM2_THIS(iface);
118 FIXME("(%p)->(%p)\n", This, p);
122 static HRESULT WINAPI HTMLElement2_componentFromPoint(IHTMLElement2 *iface,
123 LONG x, LONG y, BSTR *component)
125 HTMLElement *This = HTMLELEM2_THIS(iface);
126 FIXME("(%p)->(%d %d %p)\n", This, x, y, component);
130 static HRESULT WINAPI HTMLElement2_doScroll(IHTMLElement2 *iface, VARIANT component)
132 HTMLElement *This = HTMLELEM2_THIS(iface);
133 FIXME("(%p)->()\n", This);
137 static HRESULT WINAPI HTMLElement2_put_onscroll(IHTMLElement2 *iface, VARIANT v)
139 HTMLElement *This = HTMLELEM2_THIS(iface);
140 FIXME("(%p)->()\n", This);
144 static HRESULT WINAPI HTMLElement2_get_onscroll(IHTMLElement2 *iface, VARIANT *p)
146 HTMLElement *This = HTMLELEM2_THIS(iface);
147 FIXME("(%p)->(%p)\n", This, p);
151 static HRESULT WINAPI HTMLElement2_put_ondrag(IHTMLElement2 *iface, VARIANT v)
153 HTMLElement *This = HTMLELEM2_THIS(iface);
155 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
157 return set_node_event(&This->node, EVENTID_DRAG, &v);
160 static HRESULT WINAPI HTMLElement2_get_ondrag(IHTMLElement2 *iface, VARIANT *p)
162 HTMLElement *This = HTMLELEM2_THIS(iface);
164 TRACE("(%p)->(%p)\n", This, p);
166 return get_node_event(&This->node, EVENTID_DRAG, p);
169 static HRESULT WINAPI HTMLElement2_put_ondragend(IHTMLElement2 *iface, VARIANT v)
171 HTMLElement *This = HTMLELEM2_THIS(iface);
172 FIXME("(%p)->()\n", This);
176 static HRESULT WINAPI HTMLElement2_get_ondragend(IHTMLElement2 *iface, VARIANT *p)
178 HTMLElement *This = HTMLELEM2_THIS(iface);
179 FIXME("(%p)->(%p)\n", This, p);
183 static HRESULT WINAPI HTMLElement2_put_ondragenter(IHTMLElement2 *iface, VARIANT v)
185 HTMLElement *This = HTMLELEM2_THIS(iface);
186 FIXME("(%p)->()\n", This);
190 static HRESULT WINAPI HTMLElement2_get_ondragenter(IHTMLElement2 *iface, VARIANT *p)
192 HTMLElement *This = HTMLELEM2_THIS(iface);
193 FIXME("(%p)->(%p)\n", This, p);
197 static HRESULT WINAPI HTMLElement2_put_ondragover(IHTMLElement2 *iface, VARIANT v)
199 HTMLElement *This = HTMLELEM2_THIS(iface);
200 FIXME("(%p)->()\n", This);
204 static HRESULT WINAPI HTMLElement2_get_ondragover(IHTMLElement2 *iface, VARIANT *p)
206 HTMLElement *This = HTMLELEM2_THIS(iface);
207 FIXME("(%p)->(%p)\n", This, p);
211 static HRESULT WINAPI HTMLElement2_put_ondragleave(IHTMLElement2 *iface, VARIANT v)
213 HTMLElement *This = HTMLELEM2_THIS(iface);
214 FIXME("(%p)->()\n", This);
218 static HRESULT WINAPI HTMLElement2_get_ondragleave(IHTMLElement2 *iface, VARIANT *p)
220 HTMLElement *This = HTMLELEM2_THIS(iface);
221 FIXME("(%p)->(%p)\n", This, p);
225 static HRESULT WINAPI HTMLElement2_put_ondrop(IHTMLElement2 *iface, VARIANT v)
227 HTMLElement *This = HTMLELEM2_THIS(iface);
228 FIXME("(%p)->()\n", This);
232 static HRESULT WINAPI HTMLElement2_get_ondrop(IHTMLElement2 *iface, VARIANT *p)
234 HTMLElement *This = HTMLELEM2_THIS(iface);
235 FIXME("(%p)->(%p)\n", This, p);
239 static HRESULT WINAPI HTMLElement2_put_onbeforecut(IHTMLElement2 *iface, VARIANT v)
241 HTMLElement *This = HTMLELEM2_THIS(iface);
242 FIXME("(%p)->()\n", This);
246 static HRESULT WINAPI HTMLElement2_get_onbeforecut(IHTMLElement2 *iface, VARIANT *p)
248 HTMLElement *This = HTMLELEM2_THIS(iface);
249 FIXME("(%p)->(%p)\n", This, p);
253 static HRESULT WINAPI HTMLElement2_put_oncut(IHTMLElement2 *iface, VARIANT v)
255 HTMLElement *This = HTMLELEM2_THIS(iface);
256 FIXME("(%p)->()\n", This);
260 static HRESULT WINAPI HTMLElement2_get_oncut(IHTMLElement2 *iface, VARIANT *p)
262 HTMLElement *This = HTMLELEM2_THIS(iface);
263 FIXME("(%p)->(%p)\n", This, p);
267 static HRESULT WINAPI HTMLElement2_put_onbeforecopy(IHTMLElement2 *iface, VARIANT v)
269 HTMLElement *This = HTMLELEM2_THIS(iface);
270 FIXME("(%p)->()\n", This);
274 static HRESULT WINAPI HTMLElement2_get_onbeforecopy(IHTMLElement2 *iface, VARIANT *p)
276 HTMLElement *This = HTMLELEM2_THIS(iface);
277 FIXME("(%p)->(%p)\n", This, p);
281 static HRESULT WINAPI HTMLElement2_put_oncopy(IHTMLElement2 *iface, VARIANT v)
283 HTMLElement *This = HTMLELEM2_THIS(iface);
284 FIXME("(%p)->()\n", This);
288 static HRESULT WINAPI HTMLElement2_get_oncopy(IHTMLElement2 *iface, VARIANT *p)
290 HTMLElement *This = HTMLELEM2_THIS(iface);
291 FIXME("(%p)->(%p)\n", This, p);
295 static HRESULT WINAPI HTMLElement2_put_onbeforepaste(IHTMLElement2 *iface, VARIANT v)
297 HTMLElement *This = HTMLELEM2_THIS(iface);
298 FIXME("(%p)->()\n", This);
302 static HRESULT WINAPI HTMLElement2_get_onbeforepaste(IHTMLElement2 *iface, VARIANT *p)
304 HTMLElement *This = HTMLELEM2_THIS(iface);
305 FIXME("(%p)->(%p)\n", This, p);
309 static HRESULT WINAPI HTMLElement2_put_onpaste(IHTMLElement2 *iface, VARIANT v)
311 HTMLElement *This = HTMLELEM2_THIS(iface);
313 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
315 return set_node_event(&This->node, EVENTID_PASTE, &v);
318 static HRESULT WINAPI HTMLElement2_get_onpaste(IHTMLElement2 *iface, VARIANT *p)
320 HTMLElement *This = HTMLELEM2_THIS(iface);
322 TRACE("(%p)->(%p)\n", This, p);
324 return get_node_event(&This->node, EVENTID_PASTE, p);
327 static HRESULT WINAPI HTMLElement2_get_currentStyle(IHTMLElement2 *iface, IHTMLCurrentStyle **p)
329 HTMLElement *This = HTMLELEM2_THIS(iface);
331 TRACE("(%p)->(%p)\n", This, p);
333 return HTMLCurrentStyle_Create(This, p);
336 static HRESULT WINAPI HTMLElement2_put_onpropertychange(IHTMLElement2 *iface, VARIANT v)
338 HTMLElement *This = HTMLELEM2_THIS(iface);
339 FIXME("(%p)->()\n", This);
343 static HRESULT WINAPI HTMLElement2_get_onpropertychange(IHTMLElement2 *iface, VARIANT *p)
345 HTMLElement *This = HTMLELEM2_THIS(iface);
346 FIXME("(%p)->(%p)\n", This, p);
350 static HRESULT WINAPI HTMLElement2_getClientRects(IHTMLElement2 *iface, IHTMLRectCollection **pRectCol)
352 HTMLElement *This = HTMLELEM2_THIS(iface);
353 FIXME("(%p)->(%p)\n", This, pRectCol);
357 static HRESULT WINAPI HTMLElement2_getBoundingClientRect(IHTMLElement2 *iface, IHTMLRect **pRect)
359 HTMLElement *This = HTMLELEM2_THIS(iface);
360 FIXME("(%p)->(%p)\n", This, pRect);
364 static HRESULT WINAPI HTMLElement2_setExpression(IHTMLElement2 *iface, BSTR propname,
365 BSTR expression, BSTR language)
367 HTMLElement *This = HTMLELEM2_THIS(iface);
368 FIXME("(%p)->(%s %s %s)\n", This, debugstr_w(propname), debugstr_w(expression),
369 debugstr_w(language));
373 static HRESULT WINAPI HTMLElement2_getExpression(IHTMLElement2 *iface, BSTR propname,
376 HTMLElement *This = HTMLELEM2_THIS(iface);
377 FIXME("(%p)->(%s %p)\n", This, debugstr_w(propname), expression);
381 static HRESULT WINAPI HTMLElement2_removeExpression(IHTMLElement2 *iface, BSTR propname,
382 VARIANT_BOOL *pfSuccess)
384 HTMLElement *This = HTMLELEM2_THIS(iface);
385 FIXME("(%p)->(%s %p)\n", This, debugstr_w(propname), pfSuccess);
389 static HRESULT WINAPI HTMLElement2_put_tabIndex(IHTMLElement2 *iface, short v)
391 HTMLElement *This = HTMLELEM2_THIS(iface);
392 nsIDOMNSHTMLElement *nselem;
395 TRACE("(%p)->(%d)\n", This, v);
397 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSHTMLElement, (void**)&nselem);
398 if(NS_FAILED(nsres)) {
399 ERR("Could not get nsIDOMHTMLNSElement: %08x\n", nsres);
403 nsres = nsIDOMNSHTMLElement_SetTabIndex(nselem, v);
404 nsIDOMNSHTMLElement_Release(nselem);
406 ERR("GetTabIndex failed: %08x\n", nsres);
411 static HRESULT WINAPI HTMLElement2_get_tabIndex(IHTMLElement2 *iface, short *p)
413 HTMLElement *This = HTMLELEM2_THIS(iface);
414 nsIDOMNSHTMLElement *nselem;
418 TRACE("(%p)->(%p)\n", This, p);
420 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSHTMLElement, (void**)&nselem);
421 if(NS_FAILED(nsres)) {
422 ERR("Could not get nsIDOMHTMLNSElement: %08x\n", nsres);
426 nsres = nsIDOMNSHTMLElement_GetTabIndex(nselem, &index);
427 nsIDOMNSHTMLElement_Release(nselem);
428 if(NS_FAILED(nsres)) {
429 ERR("GetTabIndex failed: %08x\n", nsres);
437 static HRESULT WINAPI HTMLElement2_focus(IHTMLElement2 *iface)
439 HTMLElement *This = HTMLELEM2_THIS(iface);
440 nsIDOMNSHTMLElement *nselem;
443 TRACE("(%p)\n", This);
445 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSHTMLElement, (void**)&nselem);
446 if(NS_SUCCEEDED(nsres)) {
447 nsIDOMNSHTMLElement_focus(nselem);
448 nsIDOMNSHTMLElement_Release(nselem);
450 ERR("Could not get nsIDOMHTMLNSElement: %08x\n", nsres);
456 static HRESULT WINAPI HTMLElement2_put_accessKey(IHTMLElement2 *iface, BSTR v)
458 HTMLElement *This = HTMLELEM2_THIS(iface);
461 static WCHAR accessKeyW[] = {'a','c','c','e','s','s','K','e','y',0};
463 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
465 V_VT(&var) = VT_BSTR;
467 return IHTMLElement_setAttribute(HTMLELEM(This), accessKeyW, var, 0);
470 static HRESULT WINAPI HTMLElement2_get_accessKey(IHTMLElement2 *iface, BSTR *p)
472 HTMLElement *This = HTMLELEM2_THIS(iface);
473 FIXME("(%p)->(%p)\n", This, p);
477 static HRESULT WINAPI HTMLElement2_put_onblur(IHTMLElement2 *iface, VARIANT v)
479 HTMLElement *This = HTMLELEM2_THIS(iface);
481 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
483 return set_node_event(&This->node, EVENTID_BLUR, &v);
486 static HRESULT WINAPI HTMLElement2_get_onblur(IHTMLElement2 *iface, VARIANT *p)
488 HTMLElement *This = HTMLELEM2_THIS(iface);
490 TRACE("(%p)->(%p)\n", This, p);
492 return get_node_event(&This->node, EVENTID_BLUR, p);
495 static HRESULT WINAPI HTMLElement2_put_onfocus(IHTMLElement2 *iface, VARIANT v)
497 HTMLElement *This = HTMLELEM2_THIS(iface);
499 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
501 return set_node_event(&This->node, EVENTID_FOCUS, &v);
504 static HRESULT WINAPI HTMLElement2_get_onfocus(IHTMLElement2 *iface, VARIANT *p)
506 HTMLElement *This = HTMLELEM2_THIS(iface);
508 TRACE("(%p)->(%p)\n", This, p);
510 return get_node_event(&This->node, EVENTID_FOCUS, p);
513 static HRESULT WINAPI HTMLElement2_put_onresize(IHTMLElement2 *iface, VARIANT v)
515 HTMLElement *This = HTMLELEM2_THIS(iface);
516 FIXME("(%p)->()\n", This);
520 static HRESULT WINAPI HTMLElement2_get_onresize(IHTMLElement2 *iface, VARIANT *p)
522 HTMLElement *This = HTMLELEM2_THIS(iface);
523 FIXME("(%p)->(%p)\n", This, p);
527 static HRESULT WINAPI HTMLElement2_blur(IHTMLElement2 *iface)
529 HTMLElement *This = HTMLELEM2_THIS(iface);
530 FIXME("(%p)\n", This);
534 static HRESULT WINAPI HTMLElement2_addFilter(IHTMLElement2 *iface, IUnknown *pUnk)
536 HTMLElement *This = HTMLELEM2_THIS(iface);
537 FIXME("(%p)->(%p)\n", This, pUnk);
541 static HRESULT WINAPI HTMLElement2_removeFilter(IHTMLElement2 *iface, IUnknown *pUnk)
543 HTMLElement *This = HTMLELEM2_THIS(iface);
544 FIXME("(%p)->(%p)\n", This, pUnk);
548 static HRESULT WINAPI HTMLElement2_get_clientHeight(IHTMLElement2 *iface, LONG *p)
550 HTMLElement *This = HTMLELEM2_THIS(iface);
551 nsIDOMNSElement *nselem;
555 TRACE("(%p)->(%p)\n", This, p);
557 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
558 if(NS_SUCCEEDED(nsres)) {
559 nsIDOMNSElement_GetClientHeight(nselem, &height);
560 nsIDOMNSElement_Release(nselem);
562 ERR("Could not get nsIDOMNSElement: %08x\n", nsres);
569 static HRESULT WINAPI HTMLElement2_get_clientWidth(IHTMLElement2 *iface, LONG *p)
571 HTMLElement *This = HTMLELEM2_THIS(iface);
572 nsIDOMNSElement *nselem;
576 TRACE("(%p)->(%p)\n", This, p);
578 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
579 if(NS_SUCCEEDED(nsres)) {
580 nsIDOMNSElement_GetClientWidth(nselem, &width);
581 nsIDOMNSElement_Release(nselem);
583 ERR("Could not get nsIDOMNSElement: %08x\n", nsres);
590 static HRESULT WINAPI HTMLElement2_get_clientTop(IHTMLElement2 *iface, LONG *p)
592 HTMLElement *This = HTMLELEM2_THIS(iface);
593 nsIDOMNSElement *nselem;
594 PRInt32 client_top = 0;
597 TRACE("(%p)->(%p)\n", This, p);
599 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
600 if(NS_SUCCEEDED(nsres)) {
601 nsres = nsIDOMNSElement_GetClientTop(nselem, &client_top);
602 nsIDOMNSElement_Release(nselem);
604 ERR("GetScrollHeight failed: %08x\n", nsres);
606 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
610 TRACE("*p = %d\n", *p);
614 static HRESULT WINAPI HTMLElement2_get_clientLeft(IHTMLElement2 *iface, LONG *p)
616 HTMLElement *This = HTMLELEM2_THIS(iface);
617 nsIDOMNSElement *nselem;
618 PRInt32 client_left = 0;
621 TRACE("(%p)->(%p)\n", This, p);
623 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
624 if(NS_SUCCEEDED(nsres)) {
625 nsres = nsIDOMNSElement_GetClientLeft(nselem, &client_left);
626 nsIDOMNSElement_Release(nselem);
628 ERR("GetScrollHeight failed: %08x\n", nsres);
630 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
634 TRACE("*p = %d\n", *p);
638 static HRESULT WINAPI HTMLElement2_attachEvent(IHTMLElement2 *iface, BSTR event,
639 IDispatch *pDisp, VARIANT_BOOL *pfResult)
641 HTMLElement *This = HTMLELEM2_THIS(iface);
643 TRACE("(%p)->(%s %p %p)\n", This, debugstr_w(event), pDisp, pfResult);
645 return attach_event(get_node_event_target(&This->node), &This->node.doc->basedoc, event, pDisp, pfResult);
648 static HRESULT WINAPI HTMLElement2_detachEvent(IHTMLElement2 *iface, BSTR event, IDispatch *pDisp)
650 HTMLElement *This = HTMLELEM2_THIS(iface);
651 FIXME("(%p)->(%s %p)\n", This, debugstr_w(event), pDisp);
655 static HRESULT WINAPI HTMLElement2_get_readyState(IHTMLElement2 *iface, VARIANT *p)
657 HTMLElement *This = HTMLELEM2_THIS(iface);
658 FIXME("(%p)->(%p)\n", This, p);
662 static HRESULT WINAPI HTMLElement2_put_onreadystatechange(IHTMLElement2 *iface, VARIANT v)
664 HTMLElement *This = HTMLELEM2_THIS(iface);
666 FIXME("(%p)->(%s): semi-stub\n", This, debugstr_variant(&v));
668 return set_node_event(&This->node, EVENTID_READYSTATECHANGE, &v);
671 static HRESULT WINAPI HTMLElement2_get_onreadystatechange(IHTMLElement2 *iface, VARIANT *p)
673 HTMLElement *This = HTMLELEM2_THIS(iface);
675 TRACE("(%p)->(%p)\n", This, p);
677 return get_node_event(&This->node, EVENTID_READYSTATECHANGE, p);
680 static HRESULT WINAPI HTMLElement2_put_onrowsdelete(IHTMLElement2 *iface, VARIANT v)
682 HTMLElement *This = HTMLELEM2_THIS(iface);
683 FIXME("(%p)->()\n", This);
687 static HRESULT WINAPI HTMLElement2_get_onrowsdelete(IHTMLElement2 *iface, VARIANT *p)
689 HTMLElement *This = HTMLELEM2_THIS(iface);
690 FIXME("(%p)->(%p)\n", This, p);
694 static HRESULT WINAPI HTMLElement2_put_onrowsinserted(IHTMLElement2 *iface, VARIANT v)
696 HTMLElement *This = HTMLELEM2_THIS(iface);
697 FIXME("(%p)->()\n", This);
701 static HRESULT WINAPI HTMLElement2_get_onrowsinserted(IHTMLElement2 *iface, VARIANT *p)
703 HTMLElement *This = HTMLELEM2_THIS(iface);
704 FIXME("(%p)->(%p)\n", This, p);
708 static HRESULT WINAPI HTMLElement2_put_oncellchange(IHTMLElement2 *iface, VARIANT v)
710 HTMLElement *This = HTMLELEM2_THIS(iface);
711 FIXME("(%p)->()\n", This);
715 static HRESULT WINAPI HTMLElement2_get_oncellchange(IHTMLElement2 *iface, VARIANT *p)
717 HTMLElement *This = HTMLELEM2_THIS(iface);
718 FIXME("(%p)->(%p)\n", This, p);
722 static HRESULT WINAPI HTMLElement2_put_dir(IHTMLElement2 *iface, BSTR v)
724 HTMLElement *This = HTMLELEM2_THIS(iface);
725 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
729 static HRESULT WINAPI HTMLElement2_get_dir(IHTMLElement2 *iface, BSTR *p)
731 HTMLElement *This = HTMLELEM2_THIS(iface);
733 TRACE("(%p)->(%p)\n", This, p);
741 nsAString_Init(&dir_str, NULL);
743 nsres = nsIDOMHTMLElement_GetDir(This->nselem, &dir_str);
744 if(NS_SUCCEEDED(nsres)) {
745 const PRUnichar *dir;
746 nsAString_GetData(&dir_str, &dir);
748 *p = SysAllocString(dir);
750 ERR("GetDir failed: %08x\n", nsres);
753 nsAString_Finish(&dir_str);
756 TRACE("ret %s\n", debugstr_w(*p));
760 static HRESULT WINAPI HTMLElement2_createControlRange(IHTMLElement2 *iface, IDispatch **range)
762 HTMLElement *This = HTMLELEM2_THIS(iface);
763 FIXME("(%p)->(%p)\n", This, range);
767 static HRESULT WINAPI HTMLElement2_get_scrollHeight(IHTMLElement2 *iface, LONG *p)
769 HTMLElement *This = HTMLELEM2_THIS(iface);
770 nsIDOMNSElement *nselem;
774 TRACE("(%p)->(%p)\n", This, p);
776 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
777 if(NS_SUCCEEDED(nsres)) {
778 nsres = nsIDOMNSElement_GetScrollHeight(nselem, &height);
779 nsIDOMNSElement_Release(nselem);
781 ERR("GetScrollHeight failed: %08x\n", nsres);
783 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
787 TRACE("*p = %d\n", *p);
792 static HRESULT WINAPI HTMLElement2_get_scrollWidth(IHTMLElement2 *iface, LONG *p)
794 HTMLElement *This = HTMLELEM2_THIS(iface);
795 nsIDOMNSElement *nselem;
799 TRACE("(%p)->(%p)\n", This, p);
801 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
802 if(NS_SUCCEEDED(nsres)) {
803 nsres = nsIDOMNSElement_GetScrollWidth(nselem, &width);
804 nsIDOMNSElement_Release(nselem);
806 ERR("GetScrollWidth failed: %08x\n", nsres);
808 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
812 TRACE("*p = %d\n", *p);
817 static HRESULT WINAPI HTMLElement2_put_scrollTop(IHTMLElement2 *iface, LONG v)
819 HTMLElement *This = HTMLELEM2_THIS(iface);
820 nsIDOMNSElement *nselem;
823 TRACE("(%p)->(%d)\n", This, v);
826 FIXME("NULL nselem\n");
830 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
831 if(NS_SUCCEEDED(nsres)) {
832 nsIDOMNSElement_SetScrollTop(nselem, v);
833 nsIDOMNSElement_Release(nselem);
835 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
841 static HRESULT WINAPI HTMLElement2_get_scrollTop(IHTMLElement2 *iface, LONG *p)
843 HTMLElement *This = HTMLELEM2_THIS(iface);
844 nsIDOMNSElement *nselem;
848 TRACE("(%p)->(%p)\n", This, p);
850 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
851 if(NS_SUCCEEDED(nsres)) {
852 nsres = nsIDOMNSElement_GetScrollTop(nselem, &top);
853 nsIDOMNSElement_Release(nselem);
855 ERR("GetScrollTop failed: %08x\n", nsres);
857 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
861 TRACE("*p = %d\n", *p);
866 static HRESULT WINAPI HTMLElement2_put_scrollLeft(IHTMLElement2 *iface, LONG v)
868 HTMLElement *This = HTMLELEM2_THIS(iface);
869 nsIDOMNSElement *nselem;
872 TRACE("(%p)->(%d)\n", This, v);
875 FIXME("NULL nselem\n");
879 nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
880 if(NS_SUCCEEDED(nsres)) {
881 nsIDOMNSElement_SetScrollLeft(nselem, v);
882 nsIDOMNSElement_Release(nselem);
884 ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres);
890 static HRESULT WINAPI HTMLElement2_get_scrollLeft(IHTMLElement2 *iface, LONG *p)
892 HTMLElement *This = HTMLELEM2_THIS(iface);
893 nsIDOMNSElement *nselem;
897 TRACE("(%p)->(%p)\n", This, p);
904 FIXME("NULL nselem\n");
908 nsres = nsIDOMHTMLElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem);
909 if(NS_SUCCEEDED(nsres))
911 nsres = nsIDOMNSElement_GetScrollLeft(nselem, &left);
912 nsIDOMNSElement_Release(nselem);
918 TRACE("*p = %d\n", *p);
923 static HRESULT WINAPI HTMLElement2_clearAttributes(IHTMLElement2 *iface)
925 HTMLElement *This = HTMLELEM2_THIS(iface);
926 FIXME("(%p)\n", This);
930 static HRESULT WINAPI HTMLElement2_mergeAttributes(IHTMLElement2 *iface, IHTMLElement *mergeThis)
932 HTMLElement *This = HTMLELEM2_THIS(iface);
933 FIXME("(%p)->(%p)\n", This, mergeThis);
937 static HRESULT WINAPI HTMLElement2_put_oncontextmenu(IHTMLElement2 *iface, VARIANT v)
939 HTMLElement *This = HTMLELEM2_THIS(iface);
940 FIXME("(%p)->()\n", This);
944 static HRESULT WINAPI HTMLElement2_get_oncontextmenu(IHTMLElement2 *iface, VARIANT *p)
946 HTMLElement *This = HTMLELEM2_THIS(iface);
947 FIXME("(%p)->(%p)\n", This, p);
951 static HRESULT WINAPI HTMLElement2_insertAdjecentElement(IHTMLElement2 *iface, BSTR where,
952 IHTMLElement *insertedElement, IHTMLElement **inserted)
954 HTMLElement *This = HTMLELEM2_THIS(iface);
955 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(where), insertedElement, inserted);
959 static HRESULT WINAPI HTMLElement2_applyElement(IHTMLElement2 *iface, IHTMLElement *apply,
960 BSTR where, IHTMLElement **applied)
962 HTMLElement *This = HTMLELEM2_THIS(iface);
963 FIXME("(%p)->(%p %s %p)\n", This, apply, debugstr_w(where), applied);
967 static HRESULT WINAPI HTMLElement2_getAdjecentText(IHTMLElement2 *iface, BSTR where, BSTR *text)
969 HTMLElement *This = HTMLELEM2_THIS(iface);
970 FIXME("(%p)->(%s %p)\n", This, debugstr_w(where), text);
974 static HRESULT WINAPI HTMLElement2_replaceAdjecentText(IHTMLElement2 *iface, BSTR where,
975 BSTR newText, BSTR *oldText)
977 HTMLElement *This = HTMLELEM2_THIS(iface);
978 FIXME("(%p)->(%s %s %p)\n", This, debugstr_w(where), debugstr_w(newText), oldText);
982 static HRESULT WINAPI HTMLElement2_get_canHandleChildren(IHTMLElement2 *iface, VARIANT_BOOL *p)
984 HTMLElement *This = HTMLELEM2_THIS(iface);
985 FIXME("(%p)->(%p)\n", This, p);
989 static HRESULT WINAPI HTMLElement2_addBehavior(IHTMLElement2 *iface, BSTR bstrUrl,
990 VARIANT *pvarFactory, LONG *pCookie)
992 HTMLElement *This = HTMLELEM2_THIS(iface);
993 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(bstrUrl), pvarFactory, pCookie);
997 static HRESULT WINAPI HTMLElement2_removeBehavior(IHTMLElement2 *iface, LONG cookie,
998 VARIANT_BOOL *pfResult)
1000 HTMLElement *This = HTMLELEM2_THIS(iface);
1001 FIXME("(%p)->(%d %p)\n", This, cookie, pfResult);
1005 static HRESULT WINAPI HTMLElement2_get_runtimeStyle(IHTMLElement2 *iface, IHTMLStyle **p)
1007 HTMLElement *This = HTMLELEM2_THIS(iface);
1008 FIXME("(%p)->(%p)\n", This, p);
1012 static HRESULT WINAPI HTMLElement2_get_behaviorUrns(IHTMLElement2 *iface, IDispatch **p)
1014 HTMLElement *This = HTMLELEM2_THIS(iface);
1015 FIXME("(%p)->(%p)\n", This, p);
1019 static HRESULT WINAPI HTMLElement2_put_tagUrn(IHTMLElement2 *iface, BSTR v)
1021 HTMLElement *This = HTMLELEM2_THIS(iface);
1022 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
1026 static HRESULT WINAPI HTMLElement2_get_tagUrn(IHTMLElement2 *iface, BSTR *p)
1028 HTMLElement *This = HTMLELEM2_THIS(iface);
1029 FIXME("(%p)->(%p)\n", This, p);
1033 static HRESULT WINAPI HTMLElement2_put_onbeforeeditfocus(IHTMLElement2 *iface, VARIANT vv)
1035 HTMLElement *This = HTMLELEM2_THIS(iface);
1036 FIXME("(%p)->()\n", This);
1040 static HRESULT WINAPI HTMLElement2_get_onbeforeeditfocus(IHTMLElement2 *iface, VARIANT *p)
1042 HTMLElement *This = HTMLELEM2_THIS(iface);
1043 FIXME("(%p)->(%p)\n", This, p);
1047 static HRESULT WINAPI HTMLElement2_get_readyStateValue(IHTMLElement2 *iface, LONG *p)
1049 HTMLElement *This = HTMLELEM2_THIS(iface);
1050 FIXME("(%p)->(%p)\n", This, p);
1054 static HRESULT WINAPI HTMLElement2_getElementsByTagName(IHTMLElement2 *iface, BSTR v,
1055 IHTMLElementCollection **pelColl)
1057 HTMLElement *This = HTMLELEM2_THIS(iface);
1058 nsIDOMNodeList *nslist;
1062 TRACE("(%p)->(%s %p)\n", This, debugstr_w(v), pelColl);
1064 nsAString_Init(&tag_str, v);
1065 nsres = nsIDOMHTMLElement_GetElementsByTagName(This->nselem, &tag_str, &nslist);
1066 nsAString_Finish(&tag_str);
1067 if(NS_FAILED(nsres)) {
1068 ERR("GetElementByTagName failed: %08x\n", nsres);
1072 *pelColl = create_collection_from_nodelist(This->node.doc, (IUnknown*)HTMLELEM(This), nslist);
1073 nsIDOMNodeList_Release(nslist);
1077 #undef HTMLELEM2_THIS
1079 static const IHTMLElement2Vtbl HTMLElement2Vtbl = {
1080 HTMLElement2_QueryInterface,
1081 HTMLElement2_AddRef,
1082 HTMLElement2_Release,
1083 HTMLElement2_GetTypeInfoCount,
1084 HTMLElement2_GetTypeInfo,
1085 HTMLElement2_GetIDsOfNames,
1086 HTMLElement2_Invoke,
1087 HTMLElement2_get_scopeName,
1088 HTMLElement2_setCapture,
1089 HTMLElement2_releaseCapture,
1090 HTMLElement2_put_onlosecapture,
1091 HTMLElement2_get_onlosecapture,
1092 HTMLElement2_componentFromPoint,
1093 HTMLElement2_doScroll,
1094 HTMLElement2_put_onscroll,
1095 HTMLElement2_get_onscroll,
1096 HTMLElement2_put_ondrag,
1097 HTMLElement2_get_ondrag,
1098 HTMLElement2_put_ondragend,
1099 HTMLElement2_get_ondragend,
1100 HTMLElement2_put_ondragenter,
1101 HTMLElement2_get_ondragenter,
1102 HTMLElement2_put_ondragover,
1103 HTMLElement2_get_ondragover,
1104 HTMLElement2_put_ondragleave,
1105 HTMLElement2_get_ondragleave,
1106 HTMLElement2_put_ondrop,
1107 HTMLElement2_get_ondrop,
1108 HTMLElement2_put_onbeforecut,
1109 HTMLElement2_get_onbeforecut,
1110 HTMLElement2_put_oncut,
1111 HTMLElement2_get_oncut,
1112 HTMLElement2_put_onbeforecopy,
1113 HTMLElement2_get_onbeforecopy,
1114 HTMLElement2_put_oncopy,
1115 HTMLElement2_get_oncopy,
1116 HTMLElement2_put_onbeforepaste,
1117 HTMLElement2_get_onbeforepaste,
1118 HTMLElement2_put_onpaste,
1119 HTMLElement2_get_onpaste,
1120 HTMLElement2_get_currentStyle,
1121 HTMLElement2_put_onpropertychange,
1122 HTMLElement2_get_onpropertychange,
1123 HTMLElement2_getClientRects,
1124 HTMLElement2_getBoundingClientRect,
1125 HTMLElement2_setExpression,
1126 HTMLElement2_getExpression,
1127 HTMLElement2_removeExpression,
1128 HTMLElement2_put_tabIndex,
1129 HTMLElement2_get_tabIndex,
1131 HTMLElement2_put_accessKey,
1132 HTMLElement2_get_accessKey,
1133 HTMLElement2_put_onblur,
1134 HTMLElement2_get_onblur,
1135 HTMLElement2_put_onfocus,
1136 HTMLElement2_get_onfocus,
1137 HTMLElement2_put_onresize,
1138 HTMLElement2_get_onresize,
1140 HTMLElement2_addFilter,
1141 HTMLElement2_removeFilter,
1142 HTMLElement2_get_clientHeight,
1143 HTMLElement2_get_clientWidth,
1144 HTMLElement2_get_clientTop,
1145 HTMLElement2_get_clientLeft,
1146 HTMLElement2_attachEvent,
1147 HTMLElement2_detachEvent,
1148 HTMLElement2_get_readyState,
1149 HTMLElement2_put_onreadystatechange,
1150 HTMLElement2_get_onreadystatechange,
1151 HTMLElement2_put_onrowsdelete,
1152 HTMLElement2_get_onrowsdelete,
1153 HTMLElement2_put_onrowsinserted,
1154 HTMLElement2_get_onrowsinserted,
1155 HTMLElement2_put_oncellchange,
1156 HTMLElement2_get_oncellchange,
1157 HTMLElement2_put_dir,
1158 HTMLElement2_get_dir,
1159 HTMLElement2_createControlRange,
1160 HTMLElement2_get_scrollHeight,
1161 HTMLElement2_get_scrollWidth,
1162 HTMLElement2_put_scrollTop,
1163 HTMLElement2_get_scrollTop,
1164 HTMLElement2_put_scrollLeft,
1165 HTMLElement2_get_scrollLeft,
1166 HTMLElement2_clearAttributes,
1167 HTMLElement2_mergeAttributes,
1168 HTMLElement2_put_oncontextmenu,
1169 HTMLElement2_get_oncontextmenu,
1170 HTMLElement2_insertAdjecentElement,
1171 HTMLElement2_applyElement,
1172 HTMLElement2_getAdjecentText,
1173 HTMLElement2_replaceAdjecentText,
1174 HTMLElement2_get_canHandleChildren,
1175 HTMLElement2_addBehavior,
1176 HTMLElement2_removeBehavior,
1177 HTMLElement2_get_runtimeStyle,
1178 HTMLElement2_get_behaviorUrns,
1179 HTMLElement2_put_tagUrn,
1180 HTMLElement2_get_tagUrn,
1181 HTMLElement2_put_onbeforeeditfocus,
1182 HTMLElement2_get_onbeforeeditfocus,
1183 HTMLElement2_get_readyStateValue,
1184 HTMLElement2_getElementsByTagName,
1187 void HTMLElement2_Init(HTMLElement *This)
1189 This->lpHTMLElement2Vtbl = &HTMLElement2Vtbl;