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.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.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.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.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);
439 TRACE("(%p)->(%p)\n", This, p);
441 nsres = nsIDOMHTMLObjectElement_GetVspace(This->nsobject, &vspace);
442 if(NS_FAILED(nsres)) {
443 ERR("GetVspace failed: %08x\n", nsres);
451 static HRESULT WINAPI HTMLObjectElement_put_hspace(IHTMLObjectElement *iface, LONG v)
453 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
454 FIXME("(%p)->(%d)\n", This, v);
458 static HRESULT WINAPI HTMLObjectElement_get_hspace(IHTMLObjectElement *iface, LONG *p)
460 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
461 FIXME("(%p)->(%p)\n", This, p);
465 static const IHTMLObjectElementVtbl HTMLObjectElementVtbl = {
466 HTMLObjectElement_QueryInterface,
467 HTMLObjectElement_AddRef,
468 HTMLObjectElement_Release,
469 HTMLObjectElement_GetTypeInfoCount,
470 HTMLObjectElement_GetTypeInfo,
471 HTMLObjectElement_GetIDsOfNames,
472 HTMLObjectElement_Invoke,
473 HTMLObjectElement_get_object,
474 HTMLObjectElement_get_classid,
475 HTMLObjectElement_get_data,
476 HTMLObjectElement_put_recordset,
477 HTMLObjectElement_get_recordset,
478 HTMLObjectElement_put_align,
479 HTMLObjectElement_get_align,
480 HTMLObjectElement_put_name,
481 HTMLObjectElement_get_name,
482 HTMLObjectElement_put_codeBase,
483 HTMLObjectElement_get_codeBase,
484 HTMLObjectElement_put_codeType,
485 HTMLObjectElement_get_codeType,
486 HTMLObjectElement_put_code,
487 HTMLObjectElement_get_code,
488 HTMLObjectElement_get_BaseHref,
489 HTMLObjectElement_put_type,
490 HTMLObjectElement_get_type,
491 HTMLObjectElement_get_form,
492 HTMLObjectElement_put_width,
493 HTMLObjectElement_get_width,
494 HTMLObjectElement_put_height,
495 HTMLObjectElement_get_height,
496 HTMLObjectElement_get_readyState,
497 HTMLObjectElement_put_onreadystatechange,
498 HTMLObjectElement_get_onreadystatechange,
499 HTMLObjectElement_put_onerror,
500 HTMLObjectElement_get_onerror,
501 HTMLObjectElement_put_altHtml,
502 HTMLObjectElement_get_altHtml,
503 HTMLObjectElement_put_vspace,
504 HTMLObjectElement_get_vspace,
505 HTMLObjectElement_put_hspace,
506 HTMLObjectElement_get_hspace
509 static inline HTMLObjectElement *impl_from_IHTMLObjectElement2(IHTMLObjectElement2 *iface)
511 return CONTAINING_RECORD(iface, HTMLObjectElement, IHTMLObjectElement2_iface);
514 static HRESULT WINAPI HTMLObjectElement2_QueryInterface(IHTMLObjectElement2 *iface,
515 REFIID riid, void **ppv)
517 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
519 return IHTMLDOMNode_QueryInterface(&This->plugin_container.element.node.IHTMLDOMNode_iface,
523 static ULONG WINAPI HTMLObjectElement2_AddRef(IHTMLObjectElement2 *iface)
525 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
527 return IHTMLDOMNode_AddRef(&This->plugin_container.element.node.IHTMLDOMNode_iface);
530 static ULONG WINAPI HTMLObjectElement2_Release(IHTMLObjectElement2 *iface)
532 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
534 return IHTMLDOMNode_Release(&This->plugin_container.element.node.IHTMLDOMNode_iface);
537 static HRESULT WINAPI HTMLObjectElement2_GetTypeInfoCount(IHTMLObjectElement2 *iface, UINT *pctinfo)
539 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
540 return IDispatchEx_GetTypeInfoCount(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
544 static HRESULT WINAPI HTMLObjectElement2_GetTypeInfo(IHTMLObjectElement2 *iface, UINT iTInfo,
545 LCID lcid, ITypeInfo **ppTInfo)
547 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
548 return IDispatchEx_GetTypeInfo(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
549 iTInfo, lcid, ppTInfo);
552 static HRESULT WINAPI HTMLObjectElement2_GetIDsOfNames(IHTMLObjectElement2 *iface, REFIID riid,
553 LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
555 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
556 return IDispatchEx_GetIDsOfNames(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
557 riid, rgszNames, cNames, lcid, rgDispId);
560 static HRESULT WINAPI HTMLObjectElement2_Invoke(IHTMLObjectElement2 *iface, DISPID dispIdMember,
561 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
562 EXCEPINFO *pExcepInfo, UINT *puArgErr)
564 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
565 return IDispatchEx_Invoke(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
566 dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
569 static HRESULT WINAPI HTMLObjectElement2_namedRecordset(IHTMLObjectElement2 *iface, BSTR dataMember,
570 VARIANT *hierarchy, IDispatch **ppRecordset)
572 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
573 FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(dataMember), hierarchy, ppRecordset);
577 static HRESULT WINAPI HTMLObjectElement2_put_classid(IHTMLObjectElement2 *iface, BSTR v)
579 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
580 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
584 static HRESULT WINAPI HTMLObjectElement2_get_classid(IHTMLObjectElement2 *iface, BSTR *p)
586 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
587 FIXME("(%p)->(%p)\n", This, p);
591 static HRESULT WINAPI HTMLObjectElement2_put_data(IHTMLObjectElement2 *iface, BSTR v)
593 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
594 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
598 static HRESULT WINAPI HTMLObjectElement2_get_data(IHTMLObjectElement2 *iface, BSTR *p)
600 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
601 FIXME("(%p)->(%p)\n", This, p);
605 static const IHTMLObjectElement2Vtbl HTMLObjectElement2Vtbl = {
606 HTMLObjectElement2_QueryInterface,
607 HTMLObjectElement2_AddRef,
608 HTMLObjectElement2_Release,
609 HTMLObjectElement2_GetTypeInfoCount,
610 HTMLObjectElement2_GetTypeInfo,
611 HTMLObjectElement2_GetIDsOfNames,
612 HTMLObjectElement2_Invoke,
613 HTMLObjectElement2_namedRecordset,
614 HTMLObjectElement2_put_classid,
615 HTMLObjectElement2_get_classid,
616 HTMLObjectElement2_put_data,
617 HTMLObjectElement2_get_data
620 static inline HTMLObjectElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
622 return CONTAINING_RECORD(iface, HTMLObjectElement, plugin_container.element.node);
625 static HRESULT HTMLObjectElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
627 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
629 if(IsEqualGUID(&IID_IUnknown, riid)) {
630 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
631 *ppv = &This->IHTMLObjectElement_iface;
632 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
633 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
634 *ppv = &This->IHTMLObjectElement_iface;
635 }else if(IsEqualGUID(&IID_IHTMLObjectElement, riid)) {
636 TRACE("(%p)->(IID_IHTMLObjectElement %p)\n", This, ppv);
637 *ppv = &This->IHTMLObjectElement_iface;
638 }else if(IsEqualGUID(&IID_IHTMLObjectElement2, riid)) {
639 TRACE("(%p)->(IID_IHTMLObjectElement2 %p)\n", This, ppv);
640 *ppv = &This->IHTMLObjectElement2_iface;
641 }else if(IsEqualGUID(&IID_HTMLPluginContainer, riid)) {
642 TRACE("(%p)->(IID_HTMLPluginContainer %p)\n", This, ppv);
643 *ppv = &This->plugin_container;
648 hres = HTMLElement_QI(&This->plugin_container.element.node, riid, ppv);
649 if(hres == E_NOINTERFACE && This->plugin_container.plugin_host && This->plugin_container.plugin_host->plugin_unk) {
650 IUnknown *plugin_iface, *ret;
652 hres = IUnknown_QueryInterface(This->plugin_container.plugin_host->plugin_unk, riid, (void**)&plugin_iface);
654 hres = wrap_iface(plugin_iface, (IUnknown*)&This->IHTMLObjectElement_iface, &ret);
655 IUnknown_Release(plugin_iface);
659 TRACE("returning plugin iface %p wrapped to %p\n", plugin_iface, ret);
668 IUnknown_AddRef((IUnknown*)*ppv);
672 static void HTMLObjectElement_destructor(HTMLDOMNode *iface)
674 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
676 if(This->plugin_container.plugin_host)
677 detach_plugin_host(This->plugin_container.plugin_host);
679 HTMLElement_destructor(&This->plugin_container.element.node);
682 static HRESULT HTMLObjectElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
684 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
685 FIXME("(%p)->(%p)\n", This, p);
689 static HRESULT HTMLObjectElement_get_dispid(HTMLDOMNode *iface, BSTR name,
690 DWORD grfdex, DISPID *pid)
692 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
694 TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(name), grfdex, pid);
696 return get_plugin_dispid(&This->plugin_container, name, pid);
699 static HRESULT HTMLObjectElement_invoke(HTMLDOMNode *iface, DISPID id, LCID lcid,
700 WORD flags, DISPPARAMS *params, VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
702 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
704 TRACE("(%p)->(%d)\n", This, id);
706 return invoke_plugin_prop(&This->plugin_container, id, lcid, flags, params, res, ei);
709 static const NodeImplVtbl HTMLObjectElementImplVtbl = {
710 HTMLObjectElement_QI,
711 HTMLObjectElement_destructor,
713 HTMLElement_handle_event,
714 HTMLElement_get_attr_col,
720 HTMLObjectElement_get_readystate,
721 HTMLObjectElement_get_dispid,
722 HTMLObjectElement_invoke
725 static const tid_t HTMLObjectElement_iface_tids[] = {
727 IHTMLObjectElement_tid,
728 IHTMLObjectElement2_tid,
731 static dispex_static_data_t HTMLObjectElement_dispex = {
733 DispHTMLObjectElement_tid,
735 HTMLObjectElement_iface_tids
738 HRESULT HTMLObjectElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLElement **elem)
740 HTMLObjectElement *ret;
743 ret = heap_alloc_zero(sizeof(*ret));
745 return E_OUTOFMEMORY;
747 ret->IHTMLObjectElement_iface.lpVtbl = &HTMLObjectElementVtbl;
748 ret->IHTMLObjectElement2_iface.lpVtbl = &HTMLObjectElement2Vtbl;
749 ret->plugin_container.element.node.vtbl = &HTMLObjectElementImplVtbl;
751 HTMLElement_Init(&ret->plugin_container.element, doc, nselem, &HTMLObjectElement_dispex);
753 nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLObjectElement, (void**)&ret->nsobject);
755 /* Share nsobject reference with nsnode */
756 assert(nsres == NS_OK && (nsIDOMNode*)ret->nsobject == ret->plugin_container.element.node.nsnode);
757 nsIDOMNode_Release(ret->plugin_container.element.node.nsnode);
759 *elem = &ret->plugin_container.element;