2 * Copyright 2010 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
30 #include "wine/debug.h"
32 #include "mshtml_private.h"
33 #include "pluginhost.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
38 HTMLPluginContainer plugin_container
;
40 IHTMLObjectElement IHTMLObjectElement_iface
;
41 IHTMLObjectElement2 IHTMLObjectElement2_iface
;
43 nsIDOMHTMLObjectElement
*nsobject
;
46 static inline HTMLObjectElement
*impl_from_IHTMLObjectElement(IHTMLObjectElement
*iface
)
48 return CONTAINING_RECORD(iface
, HTMLObjectElement
, IHTMLObjectElement_iface
);
51 static HRESULT WINAPI
HTMLObjectElement_QueryInterface(IHTMLObjectElement
*iface
,
52 REFIID riid
, void **ppv
)
54 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
56 return IHTMLDOMNode_QueryInterface(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
,
60 static ULONG WINAPI
HTMLObjectElement_AddRef(IHTMLObjectElement
*iface
)
62 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
64 return IHTMLDOMNode_AddRef(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
);
67 static ULONG WINAPI
HTMLObjectElement_Release(IHTMLObjectElement
*iface
)
69 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
71 return IHTMLDOMNode_Release(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
);
74 static HRESULT WINAPI
HTMLObjectElement_GetTypeInfoCount(IHTMLObjectElement
*iface
, UINT
*pctinfo
)
76 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
77 return IDispatchEx_GetTypeInfoCount(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
81 static HRESULT WINAPI
HTMLObjectElement_GetTypeInfo(IHTMLObjectElement
*iface
, UINT iTInfo
,
82 LCID lcid
, ITypeInfo
**ppTInfo
)
84 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
85 return IDispatchEx_GetTypeInfo(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
86 iTInfo
, lcid
, ppTInfo
);
89 static HRESULT WINAPI
HTMLObjectElement_GetIDsOfNames(IHTMLObjectElement
*iface
, REFIID riid
,
90 LPOLESTR
*rgszNames
, UINT cNames
,
91 LCID lcid
, DISPID
*rgDispId
)
93 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
94 return IDispatchEx_GetIDsOfNames(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
95 riid
, rgszNames
, cNames
, lcid
, rgDispId
);
98 static HRESULT WINAPI
HTMLObjectElement_Invoke(IHTMLObjectElement
*iface
, DISPID dispIdMember
,
99 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
100 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
102 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
103 return IDispatchEx_Invoke(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
104 dispIdMember
, riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
107 static HRESULT WINAPI
HTMLObjectElement_get_object(IHTMLObjectElement
*iface
, IDispatch
**p
)
109 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
111 TRACE("(%p)->(%p)\n", This
, p
);
113 return get_plugin_disp(&This
->plugin_container
, p
);
116 static HRESULT WINAPI
HTMLObjectElement_get_classid(IHTMLObjectElement
*iface
, BSTR
*p
)
118 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
120 TRACE("(%p)->(%p)\n", This
, p
);
122 return IHTMLObjectElement2_get_classid(&This
->IHTMLObjectElement2_iface
, p
);
125 static HRESULT WINAPI
HTMLObjectElement_get_data(IHTMLObjectElement
*iface
, BSTR
*p
)
127 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
129 TRACE("(%p)->(%p)\n", This
, p
);
131 return IHTMLObjectElement2_get_data(&This
->IHTMLObjectElement2_iface
, p
);
134 static HRESULT WINAPI
HTMLObjectElement_put_recordset(IHTMLObjectElement
*iface
, IDispatch
*v
)
136 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
137 FIXME("(%p)->(%p)\n", This
, v
);
141 static HRESULT WINAPI
HTMLObjectElement_get_recordset(IHTMLObjectElement
*iface
, IDispatch
**p
)
143 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
144 FIXME("(%p)->(%p)\n", This
, p
);
148 static HRESULT WINAPI
HTMLObjectElement_put_align(IHTMLObjectElement
*iface
, BSTR v
)
150 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
151 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
155 static HRESULT WINAPI
HTMLObjectElement_get_align(IHTMLObjectElement
*iface
, BSTR
*p
)
157 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
158 FIXME("(%p)->(%p)\n", This
, p
);
162 static HRESULT WINAPI
HTMLObjectElement_put_name(IHTMLObjectElement
*iface
, BSTR v
)
164 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
168 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
170 nsAString_InitDepend(&nsstr
, v
);
171 nsres
= nsIDOMHTMLObjectElement_SetName(This
->nsobject
, &nsstr
);
172 nsAString_Finish(&nsstr
);
173 return NS_SUCCEEDED(nsres
) ? S_OK
: E_FAIL
;
176 static HRESULT WINAPI
HTMLObjectElement_get_name(IHTMLObjectElement
*iface
, BSTR
*p
)
178 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
182 TRACE("(%p)->(%p)\n", This
, p
);
184 nsAString_Init(&nsstr
, NULL
);
185 nsres
= nsIDOMHTMLObjectElement_GetName(This
->nsobject
, &nsstr
);
186 return return_nsstr(nsres
, &nsstr
, p
);
189 static HRESULT WINAPI
HTMLObjectElement_put_codeBase(IHTMLObjectElement
*iface
, BSTR v
)
191 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
192 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
196 static HRESULT WINAPI
HTMLObjectElement_get_codeBase(IHTMLObjectElement
*iface
, BSTR
*p
)
198 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
199 FIXME("(%p)->(%p)\n", This
, p
);
203 static HRESULT WINAPI
HTMLObjectElement_put_codeType(IHTMLObjectElement
*iface
, BSTR v
)
205 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
206 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
210 static HRESULT WINAPI
HTMLObjectElement_get_codeType(IHTMLObjectElement
*iface
, BSTR
*p
)
212 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
213 FIXME("(%p)->(%p)\n", This
, p
);
217 static HRESULT WINAPI
HTMLObjectElement_put_code(IHTMLObjectElement
*iface
, BSTR v
)
219 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
220 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
224 static HRESULT WINAPI
HTMLObjectElement_get_code(IHTMLObjectElement
*iface
, BSTR
*p
)
226 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
227 FIXME("(%p)->(%p)\n", This
, p
);
231 static HRESULT WINAPI
HTMLObjectElement_get_BaseHref(IHTMLObjectElement
*iface
, BSTR
*p
)
233 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
234 FIXME("(%p)->(%p)\n", This
, p
);
238 static HRESULT WINAPI
HTMLObjectElement_put_type(IHTMLObjectElement
*iface
, BSTR v
)
240 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
241 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
245 static HRESULT WINAPI
HTMLObjectElement_get_type(IHTMLObjectElement
*iface
, BSTR
*p
)
247 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
248 FIXME("(%p)->(%p)\n", This
, p
);
252 static HRESULT WINAPI
HTMLObjectElement_get_form(IHTMLObjectElement
*iface
, IHTMLFormElement
**p
)
254 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
255 FIXME("(%p)->(%p)\n", This
, p
);
259 static HRESULT WINAPI
HTMLObjectElement_put_width(IHTMLObjectElement
*iface
, VARIANT v
)
261 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
266 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
270 static const WCHAR formatW
[] = {'%','d',0};
271 sprintfW(buf
, formatW
, V_I4(&v
));
275 FIXME("unimplemented for arg %s\n", debugstr_variant(&v
));
279 nsAString_InitDepend(&width_str
, buf
);
280 nsres
= nsIDOMHTMLObjectElement_SetWidth(This
->nsobject
, &width_str
);
281 nsAString_Finish(&width_str
);
282 if(NS_FAILED(nsres
)) {
283 FIXME("SetWidth failed: %08x\n", nsres
);
287 notif_container_change(&This
->plugin_container
, DISPID_UNKNOWN
);
291 static HRESULT WINAPI
HTMLObjectElement_get_width(IHTMLObjectElement
*iface
, VARIANT
*p
)
293 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
298 TRACE("(%p)->(%p)\n", This
, p
);
300 nsAString_Init(&width_str
, NULL
);
301 nsres
= nsIDOMHTMLObjectElement_GetWidth(This
->nsobject
, &width_str
);
302 if(NS_SUCCEEDED(nsres
)) {
303 const PRUnichar
*width
;
305 nsAString_GetData(&width_str
, &width
);
307 V_BSTR(p
) = SysAllocString(width
);
308 hres
= V_BSTR(p
) ? S_OK
: E_OUTOFMEMORY
;
310 ERR("GetWidth failed: %08x\n", nsres
);
314 nsAString_Finish(&width_str
);
318 static HRESULT WINAPI
HTMLObjectElement_put_height(IHTMLObjectElement
*iface
, VARIANT v
)
320 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
321 nsAString height_str
;
325 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
329 static const WCHAR formatW
[] = {'%','d',0};
330 sprintfW(buf
, formatW
, V_I4(&v
));
334 FIXME("unimplemented for arg %s\n", debugstr_variant(&v
));
338 nsAString_InitDepend(&height_str
, buf
);
339 nsres
= nsIDOMHTMLObjectElement_SetHeight(This
->nsobject
, &height_str
);
340 nsAString_Finish(&height_str
);
341 if(NS_FAILED(nsres
)) {
342 FIXME("SetHeight failed: %08x\n", nsres
);
346 notif_container_change(&This
->plugin_container
, DISPID_UNKNOWN
);
350 static HRESULT WINAPI
HTMLObjectElement_get_height(IHTMLObjectElement
*iface
, VARIANT
*p
)
352 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
353 nsAString height_str
;
357 TRACE("(%p)->(%p)\n", This
, p
);
359 nsAString_Init(&height_str
, NULL
);
360 nsres
= nsIDOMHTMLObjectElement_GetHeight(This
->nsobject
, &height_str
);
361 if(NS_SUCCEEDED(nsres
)) {
362 const PRUnichar
*height
;
364 nsAString_GetData(&height_str
, &height
);
366 V_BSTR(p
) = SysAllocString(height
);
367 hres
= V_BSTR(p
) ? S_OK
: E_OUTOFMEMORY
;
369 ERR("GetHeight failed: %08x\n", nsres
);
373 nsAString_Finish(&height_str
);
377 static HRESULT WINAPI
HTMLObjectElement_get_readyState(IHTMLObjectElement
*iface
, LONG
*p
)
379 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
380 FIXME("(%p)->(%p)\n", This
, p
);
384 static HRESULT WINAPI
HTMLObjectElement_put_onreadystatechange(IHTMLObjectElement
*iface
, VARIANT v
)
386 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
387 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
391 static HRESULT WINAPI
HTMLObjectElement_get_onreadystatechange(IHTMLObjectElement
*iface
, VARIANT
*p
)
393 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
394 FIXME("(%p)->(%p)\n", This
, p
);
398 static HRESULT WINAPI
HTMLObjectElement_put_onerror(IHTMLObjectElement
*iface
, VARIANT v
)
400 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
401 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
405 static HRESULT WINAPI
HTMLObjectElement_get_onerror(IHTMLObjectElement
*iface
, VARIANT
*p
)
407 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
408 FIXME("(%p)->(%p)\n", This
, p
);
412 static HRESULT WINAPI
HTMLObjectElement_put_altHtml(IHTMLObjectElement
*iface
, BSTR v
)
414 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
415 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
419 static HRESULT WINAPI
HTMLObjectElement_get_altHtml(IHTMLObjectElement
*iface
, BSTR
*p
)
421 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
422 FIXME("(%p)->(%p)\n", This
, p
);
426 static HRESULT WINAPI
HTMLObjectElement_put_vspace(IHTMLObjectElement
*iface
, LONG v
)
428 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
429 FIXME("(%p)->(%d)\n", This
, v
);
433 static HRESULT WINAPI
HTMLObjectElement_get_vspace(IHTMLObjectElement
*iface
, LONG
*p
)
435 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
438 TRACE("(%p)->(%p)\n", This
, p
);
440 nsres
= nsIDOMHTMLObjectElement_GetVspace(This
->nsobject
, p
);
441 if(NS_FAILED(nsres
)) {
442 ERR("GetVspace failed: %08x\n", nsres
);
449 static HRESULT WINAPI
HTMLObjectElement_put_hspace(IHTMLObjectElement
*iface
, LONG v
)
451 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
452 FIXME("(%p)->(%d)\n", This
, v
);
456 static HRESULT WINAPI
HTMLObjectElement_get_hspace(IHTMLObjectElement
*iface
, LONG
*p
)
458 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement(iface
);
459 FIXME("(%p)->(%p)\n", This
, p
);
463 static const IHTMLObjectElementVtbl HTMLObjectElementVtbl
= {
464 HTMLObjectElement_QueryInterface
,
465 HTMLObjectElement_AddRef
,
466 HTMLObjectElement_Release
,
467 HTMLObjectElement_GetTypeInfoCount
,
468 HTMLObjectElement_GetTypeInfo
,
469 HTMLObjectElement_GetIDsOfNames
,
470 HTMLObjectElement_Invoke
,
471 HTMLObjectElement_get_object
,
472 HTMLObjectElement_get_classid
,
473 HTMLObjectElement_get_data
,
474 HTMLObjectElement_put_recordset
,
475 HTMLObjectElement_get_recordset
,
476 HTMLObjectElement_put_align
,
477 HTMLObjectElement_get_align
,
478 HTMLObjectElement_put_name
,
479 HTMLObjectElement_get_name
,
480 HTMLObjectElement_put_codeBase
,
481 HTMLObjectElement_get_codeBase
,
482 HTMLObjectElement_put_codeType
,
483 HTMLObjectElement_get_codeType
,
484 HTMLObjectElement_put_code
,
485 HTMLObjectElement_get_code
,
486 HTMLObjectElement_get_BaseHref
,
487 HTMLObjectElement_put_type
,
488 HTMLObjectElement_get_type
,
489 HTMLObjectElement_get_form
,
490 HTMLObjectElement_put_width
,
491 HTMLObjectElement_get_width
,
492 HTMLObjectElement_put_height
,
493 HTMLObjectElement_get_height
,
494 HTMLObjectElement_get_readyState
,
495 HTMLObjectElement_put_onreadystatechange
,
496 HTMLObjectElement_get_onreadystatechange
,
497 HTMLObjectElement_put_onerror
,
498 HTMLObjectElement_get_onerror
,
499 HTMLObjectElement_put_altHtml
,
500 HTMLObjectElement_get_altHtml
,
501 HTMLObjectElement_put_vspace
,
502 HTMLObjectElement_get_vspace
,
503 HTMLObjectElement_put_hspace
,
504 HTMLObjectElement_get_hspace
507 static inline HTMLObjectElement
*impl_from_IHTMLObjectElement2(IHTMLObjectElement2
*iface
)
509 return CONTAINING_RECORD(iface
, HTMLObjectElement
, IHTMLObjectElement2_iface
);
512 static HRESULT WINAPI
HTMLObjectElement2_QueryInterface(IHTMLObjectElement2
*iface
,
513 REFIID riid
, void **ppv
)
515 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
517 return IHTMLDOMNode_QueryInterface(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
,
521 static ULONG WINAPI
HTMLObjectElement2_AddRef(IHTMLObjectElement2
*iface
)
523 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
525 return IHTMLDOMNode_AddRef(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
);
528 static ULONG WINAPI
HTMLObjectElement2_Release(IHTMLObjectElement2
*iface
)
530 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
532 return IHTMLDOMNode_Release(&This
->plugin_container
.element
.node
.IHTMLDOMNode_iface
);
535 static HRESULT WINAPI
HTMLObjectElement2_GetTypeInfoCount(IHTMLObjectElement2
*iface
, UINT
*pctinfo
)
537 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
538 return IDispatchEx_GetTypeInfoCount(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
542 static HRESULT WINAPI
HTMLObjectElement2_GetTypeInfo(IHTMLObjectElement2
*iface
, UINT iTInfo
,
543 LCID lcid
, ITypeInfo
**ppTInfo
)
545 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
546 return IDispatchEx_GetTypeInfo(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
547 iTInfo
, lcid
, ppTInfo
);
550 static HRESULT WINAPI
HTMLObjectElement2_GetIDsOfNames(IHTMLObjectElement2
*iface
, REFIID riid
,
551 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
553 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
554 return IDispatchEx_GetIDsOfNames(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
555 riid
, rgszNames
, cNames
, lcid
, rgDispId
);
558 static HRESULT WINAPI
HTMLObjectElement2_Invoke(IHTMLObjectElement2
*iface
, DISPID dispIdMember
,
559 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
,
560 EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
562 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
563 return IDispatchEx_Invoke(&This
->plugin_container
.element
.node
.event_target
.dispex
.IDispatchEx_iface
,
564 dispIdMember
, riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
567 static HRESULT WINAPI
HTMLObjectElement2_namedRecordset(IHTMLObjectElement2
*iface
, BSTR dataMember
,
568 VARIANT
*hierarchy
, IDispatch
**ppRecordset
)
570 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
571 FIXME("(%p)->(%s %p %p)\n", This
, debugstr_w(dataMember
), hierarchy
, ppRecordset
);
575 static HRESULT WINAPI
HTMLObjectElement2_put_classid(IHTMLObjectElement2
*iface
, BSTR v
)
577 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
580 static const WCHAR classidW
[] = {'c','l','a','s','s','i','d',0};
582 FIXME("(%p)->(%s) semi-stub\n", This
, debugstr_w(v
));
584 hres
= elem_string_attr_setter(&This
->plugin_container
.element
, classidW
, v
);
588 if(This
->plugin_container
.plugin_host
) {
589 FIXME("Host already associated.\n");
595 * If the element is not yet in DOM tree, we should embed it as soon as it's added.
596 * However, Gecko for some reason decides not to create NP plugin in this case,
597 * so this won't work.
600 return create_plugin_host(This
->plugin_container
.element
.node
.doc
, &This
->plugin_container
);
603 static HRESULT WINAPI
HTMLObjectElement2_get_classid(IHTMLObjectElement2
*iface
, BSTR
*p
)
605 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
606 FIXME("(%p)->(%p)\n", This
, p
);
610 static HRESULT WINAPI
HTMLObjectElement2_put_data(IHTMLObjectElement2
*iface
, BSTR v
)
612 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
613 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
617 static HRESULT WINAPI
HTMLObjectElement2_get_data(IHTMLObjectElement2
*iface
, BSTR
*p
)
619 HTMLObjectElement
*This
= impl_from_IHTMLObjectElement2(iface
);
620 FIXME("(%p)->(%p)\n", This
, p
);
624 static const IHTMLObjectElement2Vtbl HTMLObjectElement2Vtbl
= {
625 HTMLObjectElement2_QueryInterface
,
626 HTMLObjectElement2_AddRef
,
627 HTMLObjectElement2_Release
,
628 HTMLObjectElement2_GetTypeInfoCount
,
629 HTMLObjectElement2_GetTypeInfo
,
630 HTMLObjectElement2_GetIDsOfNames
,
631 HTMLObjectElement2_Invoke
,
632 HTMLObjectElement2_namedRecordset
,
633 HTMLObjectElement2_put_classid
,
634 HTMLObjectElement2_get_classid
,
635 HTMLObjectElement2_put_data
,
636 HTMLObjectElement2_get_data
639 static inline HTMLObjectElement
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
641 return CONTAINING_RECORD(iface
, HTMLObjectElement
, plugin_container
.element
.node
);
644 static HRESULT
HTMLObjectElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
646 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
648 TRACE("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
650 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
651 *ppv
= &This
->IHTMLObjectElement_iface
;
652 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
653 *ppv
= &This
->IHTMLObjectElement_iface
;
654 }else if(IsEqualGUID(&IID_IHTMLObjectElement
, riid
)) {
655 *ppv
= &This
->IHTMLObjectElement_iface
;
656 }else if(IsEqualGUID(&IID_IHTMLObjectElement2
, riid
)) {
657 *ppv
= &This
->IHTMLObjectElement2_iface
;
658 }else if(IsEqualGUID(&IID_HTMLPluginContainer
, riid
)) {
659 /* Special pseudo-interface returning HTMLPluginContainse struct. */
660 *ppv
= &This
->plugin_container
;
661 node_addref(&This
->plugin_container
.element
.node
);
666 hres
= HTMLElement_QI(&This
->plugin_container
.element
.node
, riid
, ppv
);
667 if(hres
== E_NOINTERFACE
&& This
->plugin_container
.plugin_host
&& This
->plugin_container
.plugin_host
->plugin_unk
) {
668 IUnknown
*plugin_iface
, *ret
;
670 hres
= IUnknown_QueryInterface(This
->plugin_container
.plugin_host
->plugin_unk
, riid
, (void**)&plugin_iface
);
672 hres
= wrap_iface(plugin_iface
, (IUnknown
*)&This
->IHTMLObjectElement_iface
, &ret
);
673 IUnknown_Release(plugin_iface
);
677 TRACE("returning plugin iface %p wrapped to %p\n", plugin_iface
, ret
);
686 IUnknown_AddRef((IUnknown
*)*ppv
);
690 static void HTMLObjectElement_destructor(HTMLDOMNode
*iface
)
692 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
694 if(This
->plugin_container
.plugin_host
)
695 detach_plugin_host(This
->plugin_container
.plugin_host
);
697 HTMLElement_destructor(&This
->plugin_container
.element
.node
);
700 static HRESULT
HTMLObjectElement_get_readystate(HTMLDOMNode
*iface
, BSTR
*p
)
702 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
703 FIXME("(%p)->(%p)\n", This
, p
);
707 static HRESULT
HTMLObjectElement_get_dispid(HTMLDOMNode
*iface
, BSTR name
,
708 DWORD grfdex
, DISPID
*pid
)
710 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
712 TRACE("(%p)->(%s %x %p)\n", This
, debugstr_w(name
), grfdex
, pid
);
714 return get_plugin_dispid(&This
->plugin_container
, name
, pid
);
717 static HRESULT
HTMLObjectElement_invoke(HTMLDOMNode
*iface
, DISPID id
, LCID lcid
,
718 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
, IServiceProvider
*caller
)
720 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
722 TRACE("(%p)->(%d)\n", This
, id
);
724 return invoke_plugin_prop(&This
->plugin_container
, id
, lcid
, flags
, params
, res
, ei
);
727 static void HTMLObjectElement_traverse(HTMLDOMNode
*iface
, nsCycleCollectionTraversalCallback
*cb
)
729 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
732 note_cc_edge((nsISupports
*)This
->nsobject
, "This->nsobject", cb
);
735 static void HTMLObjectElement_unlink(HTMLDOMNode
*iface
)
737 HTMLObjectElement
*This
= impl_from_HTMLDOMNode(iface
);
740 nsIDOMHTMLObjectElement
*nsobject
= This
->nsobject
;
742 This
->nsobject
= NULL
;
743 nsIDOMHTMLObjectElement_Release(nsobject
);
747 static const NodeImplVtbl HTMLObjectElementImplVtbl
= {
748 HTMLObjectElement_QI
,
749 HTMLObjectElement_destructor
,
752 HTMLElement_handle_event
,
753 HTMLElement_get_attr_col
,
759 HTMLObjectElement_get_readystate
,
760 HTMLObjectElement_get_dispid
,
761 HTMLObjectElement_invoke
,
763 HTMLObjectElement_traverse
,
764 HTMLObjectElement_unlink
767 static const tid_t HTMLObjectElement_iface_tids
[] = {
768 IHTMLObjectElement2_tid
,
769 IHTMLObjectElement_tid
,
773 static dispex_static_data_t HTMLObjectElement_dispex
= {
775 DispHTMLObjectElement_tid
,
777 HTMLObjectElement_iface_tids
780 HRESULT
HTMLObjectElement_Create(HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, HTMLElement
**elem
)
782 HTMLObjectElement
*ret
;
785 ret
= heap_alloc_zero(sizeof(*ret
));
787 return E_OUTOFMEMORY
;
789 ret
->IHTMLObjectElement_iface
.lpVtbl
= &HTMLObjectElementVtbl
;
790 ret
->IHTMLObjectElement2_iface
.lpVtbl
= &HTMLObjectElement2Vtbl
;
791 ret
->plugin_container
.element
.node
.vtbl
= &HTMLObjectElementImplVtbl
;
793 HTMLElement_Init(&ret
->plugin_container
.element
, doc
, nselem
, &HTMLObjectElement_dispex
);
795 nsres
= nsIDOMHTMLElement_QueryInterface(nselem
, &IID_nsIDOMHTMLObjectElement
, (void**)&ret
->nsobject
);
796 assert(nsres
== NS_OK
);
798 *elem
= &ret
->plugin_container
.element
;