2 * Copyright 2008 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"
30 #include "mshtml_private.h"
31 #include "htmlevent.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
35 static inline HTMLElement
*impl_from_IHTMLElement3(IHTMLElement3
*iface
)
37 return CONTAINING_RECORD(iface
, HTMLElement
, IHTMLElement3_iface
);
40 static HRESULT WINAPI
HTMLElement3_QueryInterface(IHTMLElement3
*iface
,
41 REFIID riid
, void **ppv
)
43 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
44 return IHTMLElement_QueryInterface(&This
->IHTMLElement_iface
, riid
, ppv
);
47 static ULONG WINAPI
HTMLElement3_AddRef(IHTMLElement3
*iface
)
49 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
50 return IHTMLElement_AddRef(&This
->IHTMLElement_iface
);
53 static ULONG WINAPI
HTMLElement3_Release(IHTMLElement3
*iface
)
55 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
56 return IHTMLElement_Release(&This
->IHTMLElement_iface
);
59 static HRESULT WINAPI
HTMLElement3_GetTypeInfoCount(IHTMLElement3
*iface
, UINT
*pctinfo
)
61 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
62 return IDispatchEx_GetTypeInfoCount(&This
->node
.dispex
.IDispatchEx_iface
, pctinfo
);
65 static HRESULT WINAPI
HTMLElement3_GetTypeInfo(IHTMLElement3
*iface
, UINT iTInfo
,
66 LCID lcid
, ITypeInfo
**ppTInfo
)
68 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
69 return IDispatchEx_GetTypeInfo(&This
->node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
72 static HRESULT WINAPI
HTMLElement3_GetIDsOfNames(IHTMLElement3
*iface
, REFIID riid
,
73 LPOLESTR
*rgszNames
, UINT cNames
,
74 LCID lcid
, DISPID
*rgDispId
)
76 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
77 return IDispatchEx_GetIDsOfNames(&This
->node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
81 static HRESULT WINAPI
HTMLElement3_Invoke(IHTMLElement3
*iface
, DISPID dispIdMember
,
82 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
83 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
85 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
86 return IDispatchEx_Invoke(&This
->node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
87 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
90 static HRESULT WINAPI
HTMLElement3_mergeAttributes(IHTMLElement3
*iface
, IHTMLElement
*mergeThis
, VARIANT
*pvarFlags
)
92 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
93 FIXME("(%p)->(%p %p)\n", This
, mergeThis
, pvarFlags
);
97 static HRESULT WINAPI
HTMLElement3_get_isMultiLine(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
99 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
100 FIXME("(%p)->(%p)\n", This
, p
);
104 static HRESULT WINAPI
HTMLElement3_get_canHaveHTML(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
106 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
107 FIXME("(%p)->(%p)\n", This
, p
);
111 static HRESULT WINAPI
HTMLElement3_put_onlayoutcomplete(IHTMLElement3
*iface
, VARIANT v
)
113 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
114 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
118 static HRESULT WINAPI
HTMLElement3_get_onlayoutcomplete(IHTMLElement3
*iface
, VARIANT
*p
)
120 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
121 FIXME("(%p)->(%p)\n", This
, p
);
125 static HRESULT WINAPI
HTMLElement3_put_onpage(IHTMLElement3
*iface
, VARIANT v
)
127 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
128 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
132 static HRESULT WINAPI
HTMLElement3_get_onpage(IHTMLElement3
*iface
, VARIANT
*p
)
134 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
135 FIXME("(%p)->(%p)\n", This
, p
);
139 static HRESULT WINAPI
HTMLElement3_put_inflateBlock(IHTMLElement3
*iface
, VARIANT_BOOL v
)
141 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
142 FIXME("(%p)->(%x)\n", This
, v
);
146 static HRESULT WINAPI
HTMLElement3_get_inflateBlock(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
148 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
149 FIXME("(%p)->(%p)\n", This
, p
);
153 static HRESULT WINAPI
HTMLElement3_put_onbeforedeactivate(IHTMLElement3
*iface
, VARIANT v
)
155 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
156 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
160 static HRESULT WINAPI
HTMLElement3_get_onbeforedeactivate(IHTMLElement3
*iface
, VARIANT
*p
)
162 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
163 FIXME("(%p)->(%p)\n", This
, p
);
167 static HRESULT WINAPI
HTMLElement3_setActive(IHTMLElement3
*iface
)
169 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
170 FIXME("(%p)\n", This
);
174 static HRESULT WINAPI
HTMLElement3_put_contentEditable(IHTMLElement3
*iface
, BSTR v
)
176 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
177 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
181 static HRESULT WINAPI
HTMLElement3_get_contentEditable(IHTMLElement3
*iface
, BSTR
*p
)
183 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
184 FIXME("(%p)->(%p)\n", This
, p
);
188 static HRESULT WINAPI
HTMLElement3_get_isContentEditable(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
190 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
191 FIXME("(%p)->(%p)\n", This
, p
);
195 static HRESULT WINAPI
HTMLElement3_put_hideFocus(IHTMLElement3
*iface
, VARIANT_BOOL v
)
197 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
198 FIXME("(%p)->(%x)\n", This
, v
);
202 static HRESULT WINAPI
HTMLElement3_get_hideFocus(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
204 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
205 FIXME("(%p)->(%p)\n", This
, p
);
209 static const WCHAR disabledW
[] = {'d','i','s','a','b','l','e','d',0};
211 static HRESULT WINAPI
HTMLElement3_put_disabled(IHTMLElement3
*iface
, VARIANT_BOOL v
)
213 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
217 TRACE("(%p)->(%x)\n", This
, v
);
219 if(This
->node
.vtbl
->put_disabled
)
220 return This
->node
.vtbl
->put_disabled(&This
->node
, v
);
222 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, disabledW
, TRUE
, &var
);
232 static HRESULT WINAPI
HTMLElement3_get_disabled(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
234 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
238 TRACE("(%p)->(%p)\n", This
, p
);
240 if(This
->node
.vtbl
->get_disabled
)
241 return This
->node
.vtbl
->get_disabled(&This
->node
, p
);
243 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, disabledW
, FALSE
, &var
);
244 if(hres
== DISP_E_UNKNOWNNAME
) {
251 if(V_VT(var
) != VT_BOOL
) {
252 FIXME("vt %d\n", V_VT(var
));
260 static HRESULT WINAPI
HTMLElement3_get_isDisabled(IHTMLElement3
*iface
, VARIANT_BOOL
*p
)
262 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
263 FIXME("(%p)->(%p)\n", This
, p
);
267 static HRESULT WINAPI
HTMLElement3_put_onmove(IHTMLElement3
*iface
, VARIANT v
)
269 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
270 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
274 static HRESULT WINAPI
HTMLElement3_get_onmove(IHTMLElement3
*iface
, VARIANT
*p
)
276 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
277 FIXME("(%p)->(%p)\n", This
, p
);
281 static HRESULT WINAPI
HTMLElement3_put_oncontrolselect(IHTMLElement3
*iface
, VARIANT v
)
283 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
284 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
288 static HRESULT WINAPI
HTMLElement3_get_oncontrolselect(IHTMLElement3
*iface
, VARIANT
*p
)
290 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
291 FIXME("(%p)->(%p)\n", This
, p
);
295 static HRESULT WINAPI
HTMLElement3_fireEvent(IHTMLElement3
*iface
, BSTR bstrEventName
,
296 VARIANT
*pvarEventObject
, VARIANT_BOOL
*pfCancelled
)
298 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
300 TRACE("(%p)->(%s %s %p)\n", This
, debugstr_w(bstrEventName
), debugstr_variant(pvarEventObject
),
303 return dispatch_event(&This
->node
, bstrEventName
, pvarEventObject
, pfCancelled
);
306 static HRESULT WINAPI
HTMLElement3_put_onresizestart(IHTMLElement3
*iface
, VARIANT v
)
308 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
309 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
313 static HRESULT WINAPI
HTMLElement3_get_onresizestart(IHTMLElement3
*iface
, VARIANT
*p
)
315 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
316 FIXME("(%p)->(%p)\n", This
, p
);
320 static HRESULT WINAPI
HTMLElement3_put_onresizeend(IHTMLElement3
*iface
, VARIANT v
)
322 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
323 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
327 static HRESULT WINAPI
HTMLElement3_get_onresizeend(IHTMLElement3
*iface
, VARIANT
*p
)
329 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
330 FIXME("(%p)->(%p)\n", This
, p
);
334 static HRESULT WINAPI
HTMLElement3_put_onmovestart(IHTMLElement3
*iface
, VARIANT v
)
336 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
337 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
341 static HRESULT WINAPI
HTMLElement3_get_onmovestart(IHTMLElement3
*iface
, VARIANT
*p
)
343 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
344 FIXME("(%p)->(%p)\n", This
, p
);
348 static HRESULT WINAPI
HTMLElement3_put_onmoveend(IHTMLElement3
*iface
, VARIANT v
)
350 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
351 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
355 static HRESULT WINAPI
HTMLElement3_get_onmoveend(IHTMLElement3
*iface
, VARIANT
*p
)
357 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
358 FIXME("(%p)->(%p)\n", This
, p
);
362 static HRESULT WINAPI
HTMLElement3_put_onmousecenter(IHTMLElement3
*iface
, VARIANT v
)
364 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
365 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
369 static HRESULT WINAPI
HTMLElement3_get_onmousecenter(IHTMLElement3
*iface
, VARIANT
*p
)
371 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
372 FIXME("(%p)->(%p)\n", This
, p
);
376 static HRESULT WINAPI
HTMLElement3_put_onmouseleave(IHTMLElement3
*iface
, VARIANT v
)
378 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
379 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
383 static HRESULT WINAPI
HTMLElement3_get_onmouseleave(IHTMLElement3
*iface
, VARIANT
*p
)
385 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
386 FIXME("(%p)->(%p)\n", This
, p
);
390 static HRESULT WINAPI
HTMLElement3_put_onactivate(IHTMLElement3
*iface
, VARIANT v
)
392 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
393 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
397 static HRESULT WINAPI
HTMLElement3_get_onactivate(IHTMLElement3
*iface
, VARIANT
*p
)
399 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
400 FIXME("(%p)->(%p)\n", This
, p
);
404 static HRESULT WINAPI
HTMLElement3_put_ondeactivate(IHTMLElement3
*iface
, VARIANT v
)
406 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
407 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
411 static HRESULT WINAPI
HTMLElement3_get_ondeactivate(IHTMLElement3
*iface
, VARIANT
*p
)
413 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
414 FIXME("(%p)->(%p)\n", This
, p
);
418 static HRESULT WINAPI
HTMLElement3_dragDrop(IHTMLElement3
*iface
, VARIANT_BOOL
*pfRet
)
420 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
421 FIXME("(%p)->(%p)\n", This
, pfRet
);
425 static HRESULT WINAPI
HTMLElement3_get_glyphMode(IHTMLElement3
*iface
, LONG
*p
)
427 HTMLElement
*This
= impl_from_IHTMLElement3(iface
);
428 FIXME("(%p)->(%p)\n", This
, p
);
432 static const IHTMLElement3Vtbl HTMLElement3Vtbl
= {
433 HTMLElement3_QueryInterface
,
435 HTMLElement3_Release
,
436 HTMLElement3_GetTypeInfoCount
,
437 HTMLElement3_GetTypeInfo
,
438 HTMLElement3_GetIDsOfNames
,
440 HTMLElement3_mergeAttributes
,
441 HTMLElement3_get_isMultiLine
,
442 HTMLElement3_get_canHaveHTML
,
443 HTMLElement3_put_onlayoutcomplete
,
444 HTMLElement3_get_onlayoutcomplete
,
445 HTMLElement3_put_onpage
,
446 HTMLElement3_get_onpage
,
447 HTMLElement3_put_inflateBlock
,
448 HTMLElement3_get_inflateBlock
,
449 HTMLElement3_put_onbeforedeactivate
,
450 HTMLElement3_get_onbeforedeactivate
,
451 HTMLElement3_setActive
,
452 HTMLElement3_put_contentEditable
,
453 HTMLElement3_get_contentEditable
,
454 HTMLElement3_get_isContentEditable
,
455 HTMLElement3_put_hideFocus
,
456 HTMLElement3_get_hideFocus
,
457 HTMLElement3_put_disabled
,
458 HTMLElement3_get_disabled
,
459 HTMLElement3_get_isDisabled
,
460 HTMLElement3_put_onmove
,
461 HTMLElement3_get_onmove
,
462 HTMLElement3_put_oncontrolselect
,
463 HTMLElement3_get_oncontrolselect
,
464 HTMLElement3_fireEvent
,
465 HTMLElement3_put_onresizestart
,
466 HTMLElement3_get_onresizestart
,
467 HTMLElement3_put_onresizeend
,
468 HTMLElement3_get_onresizeend
,
469 HTMLElement3_put_onmovestart
,
470 HTMLElement3_get_onmovestart
,
471 HTMLElement3_put_onmoveend
,
472 HTMLElement3_get_onmoveend
,
473 HTMLElement3_put_onmousecenter
,
474 HTMLElement3_get_onmousecenter
,
475 HTMLElement3_put_onmouseleave
,
476 HTMLElement3_get_onmouseleave
,
477 HTMLElement3_put_onactivate
,
478 HTMLElement3_get_onactivate
,
479 HTMLElement3_put_ondeactivate
,
480 HTMLElement3_get_ondeactivate
,
481 HTMLElement3_dragDrop
,
482 HTMLElement3_get_glyphMode
485 static inline HTMLElement
*impl_from_IHTMLElement4(IHTMLElement4
*iface
)
487 return CONTAINING_RECORD(iface
, HTMLElement
, IHTMLElement4_iface
);
490 static HRESULT WINAPI
HTMLElement4_QueryInterface(IHTMLElement4
*iface
,
491 REFIID riid
, void **ppv
)
493 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
494 return IHTMLElement_QueryInterface(&This
->IHTMLElement_iface
, riid
, ppv
);
497 static ULONG WINAPI
HTMLElement4_AddRef(IHTMLElement4
*iface
)
499 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
500 return IHTMLElement_AddRef(&This
->IHTMLElement_iface
);
503 static ULONG WINAPI
HTMLElement4_Release(IHTMLElement4
*iface
)
505 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
506 return IHTMLElement_Release(&This
->IHTMLElement_iface
);
509 static HRESULT WINAPI
HTMLElement4_GetTypeInfoCount(IHTMLElement4
*iface
, UINT
*pctinfo
)
511 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
512 return IDispatchEx_GetTypeInfoCount(&This
->node
.dispex
.IDispatchEx_iface
, pctinfo
);
515 static HRESULT WINAPI
HTMLElement4_GetTypeInfo(IHTMLElement4
*iface
, UINT iTInfo
,
516 LCID lcid
, ITypeInfo
**ppTInfo
)
518 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
519 return IDispatchEx_GetTypeInfo(&This
->node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
522 static HRESULT WINAPI
HTMLElement4_GetIDsOfNames(IHTMLElement4
*iface
, REFIID riid
,
523 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
525 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
526 return IDispatchEx_GetIDsOfNames(&This
->node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
530 static HRESULT WINAPI
HTMLElement4_Invoke(IHTMLElement4
*iface
, DISPID dispIdMember
, REFIID riid
,
531 LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
533 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
534 return IDispatchEx_Invoke(&This
->node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
535 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
538 static HRESULT WINAPI
HTMLElement4_put_onmousewheel(IHTMLElement4
*iface
, VARIANT v
)
540 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
541 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
545 static HRESULT WINAPI
HTMLElement4_get_onmousewheel(IHTMLElement4
*iface
, VARIANT
*p
)
547 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
548 FIXME("(%p)->(%p)\n", This
, p
);
552 static HRESULT WINAPI
HTMLElement4_normalize(IHTMLElement4
*iface
)
554 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
555 FIXME("(%p)\n", This
);
559 static HRESULT WINAPI
HTMLElement4_getAttributeNode(IHTMLElement4
*iface
, BSTR bstrname
, IHTMLDOMAttribute
**ppAttribute
)
561 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
562 HTMLAttributeCollection
*attrs
;
565 TRACE("(%p)->(%s %p)\n", This
, debugstr_w(bstrname
), ppAttribute
);
567 hres
= HTMLElement_get_attr_col(&This
->node
, &attrs
);
571 hres
= IHTMLAttributeCollection2_getNamedItem(&attrs
->IHTMLAttributeCollection2_iface
, bstrname
, ppAttribute
);
572 IHTMLAttributeCollection_Release(&attrs
->IHTMLAttributeCollection_iface
);
576 static HRESULT WINAPI
HTMLElement4_setAttributeNode(IHTMLElement4
*iface
, IHTMLDOMAttribute
*pattr
,
577 IHTMLDOMAttribute
**ppretAttribute
)
579 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
580 FIXME("(%p)->(%p %p)\n", This
, pattr
, ppretAttribute
);
584 static HRESULT WINAPI
HTMLElement4_removeAttributeNode(IHTMLElement4
*iface
, IHTMLDOMAttribute
*pattr
,
585 IHTMLDOMAttribute
**ppretAttribute
)
587 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
588 FIXME("(%p)->(%p %p)\n", This
, pattr
, ppretAttribute
);
592 static HRESULT WINAPI
HTMLElement4_put_onbeforeactivate(IHTMLElement4
*iface
, VARIANT v
)
594 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
595 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
599 static HRESULT WINAPI
HTMLElement4_get_onbeforeactivate(IHTMLElement4
*iface
, VARIANT
*p
)
601 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
602 FIXME("(%p)->(%p)\n", This
, p
);
606 static HRESULT WINAPI
HTMLElement4_put_onfocusin(IHTMLElement4
*iface
, VARIANT v
)
608 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
609 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
613 static HRESULT WINAPI
HTMLElement4_get_onfocusin(IHTMLElement4
*iface
, VARIANT
*p
)
615 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
616 FIXME("(%p)->(%p)\n", This
, p
);
620 static HRESULT WINAPI
HTMLElement4_put_onfocusout(IHTMLElement4
*iface
, VARIANT v
)
622 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
623 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
627 static HRESULT WINAPI
HTMLElement4_get_onfocusout(IHTMLElement4
*iface
, VARIANT
*p
)
629 HTMLElement
*This
= impl_from_IHTMLElement4(iface
);
630 FIXME("(%p)->(%p)\n", This
, p
);
634 static const IHTMLElement4Vtbl HTMLElement4Vtbl
= {
635 HTMLElement4_QueryInterface
,
637 HTMLElement4_Release
,
638 HTMLElement4_GetTypeInfoCount
,
639 HTMLElement4_GetTypeInfo
,
640 HTMLElement4_GetIDsOfNames
,
642 HTMLElement4_put_onmousewheel
,
643 HTMLElement4_get_onmousewheel
,
644 HTMLElement4_normalize
,
645 HTMLElement4_getAttributeNode
,
646 HTMLElement4_setAttributeNode
,
647 HTMLElement4_removeAttributeNode
,
648 HTMLElement4_put_onbeforeactivate
,
649 HTMLElement4_get_onbeforeactivate
,
650 HTMLElement4_put_onfocusin
,
651 HTMLElement4_get_onfocusin
,
652 HTMLElement4_put_onfocusout
,
653 HTMLElement4_get_onfocusout
656 void HTMLElement3_Init(HTMLElement
*This
)
658 This
->IHTMLElement3_iface
.lpVtbl
= &HTMLElement3Vtbl
;
659 This
->IHTMLElement4_iface
.lpVtbl
= &HTMLElement4Vtbl
;