ws2_32/tests: Avoid races.
[wine.git] / dlls / mshtml / htmlobject.c
blob34c42d51e5ce2b72ef52c4988cfee00557c5179a
1 /*
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
19 #include <stdarg.h>
20 #include <assert.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "winreg.h"
28 #include "ole2.h"
30 #include "wine/debug.h"
32 #include "mshtml_private.h"
33 #include "pluginhost.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
37 typedef struct {
38 HTMLPluginContainer plugin_container;
40 IHTMLObjectElement IHTMLObjectElement_iface;
41 IHTMLObjectElement2 IHTMLObjectElement2_iface;
43 nsIDOMHTMLObjectElement *nsobject;
44 } HTMLObjectElement;
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,
57 riid, ppv);
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,
78 pctinfo);
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);
138 return E_NOTIMPL;
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);
145 return E_NOTIMPL;
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));
152 return E_NOTIMPL;
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);
159 return E_NOTIMPL;
162 static HRESULT WINAPI HTMLObjectElement_put_name(IHTMLObjectElement *iface, BSTR v)
164 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
165 nsAString nsstr;
166 nsresult nsres;
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);
179 nsAString nsstr;
180 nsresult nsres;
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));
193 return E_NOTIMPL;
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);
200 return E_NOTIMPL;
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));
207 return E_NOTIMPL;
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);
214 return E_NOTIMPL;
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));
221 return E_NOTIMPL;
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);
228 return E_NOTIMPL;
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);
235 return E_NOTIMPL;
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));
242 return E_NOTIMPL;
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);
249 return E_NOTIMPL;
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);
256 return E_NOTIMPL;
259 static HRESULT WINAPI HTMLObjectElement_put_width(IHTMLObjectElement *iface, VARIANT v)
261 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
262 nsAString width_str;
263 PRUnichar buf[12];
264 nsresult nsres;
266 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
268 switch(V_VT(&v)) {
269 case VT_I4: {
270 static const WCHAR formatW[] = {'%','d',0};
271 sprintfW(buf, formatW, V_I4(&v));
272 break;
274 default:
275 FIXME("unimplemented for arg %s\n", debugstr_variant(&v));
276 return E_NOTIMPL;
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);
284 return E_FAIL;
287 notif_container_change(&This->plugin_container, DISPID_UNKNOWN);
288 return S_OK;
291 static HRESULT WINAPI HTMLObjectElement_get_width(IHTMLObjectElement *iface, VARIANT *p)
293 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
294 nsAString width_str;
295 nsresult nsres;
296 HRESULT hres;
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);
306 V_VT(p) = VT_BSTR;
307 V_BSTR(p) = SysAllocString(width);
308 hres = V_BSTR(p) ? S_OK : E_OUTOFMEMORY;
309 }else {
310 ERR("GetWidth failed: %08x\n", nsres);
311 hres = E_FAIL;
314 nsAString_Finish(&width_str);
315 return hres;
318 static HRESULT WINAPI HTMLObjectElement_put_height(IHTMLObjectElement *iface, VARIANT v)
320 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
321 nsAString height_str;
322 PRUnichar buf[12];
323 nsresult nsres;
325 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
327 switch(V_VT(&v)) {
328 case VT_I4: {
329 static const WCHAR formatW[] = {'%','d',0};
330 sprintfW(buf, formatW, V_I4(&v));
331 break;
333 default:
334 FIXME("unimplemented for arg %s\n", debugstr_variant(&v));
335 return E_NOTIMPL;
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);
343 return E_FAIL;
346 notif_container_change(&This->plugin_container, DISPID_UNKNOWN);
347 return S_OK;
350 static HRESULT WINAPI HTMLObjectElement_get_height(IHTMLObjectElement *iface, VARIANT *p)
352 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
353 nsAString height_str;
354 nsresult nsres;
355 HRESULT hres;
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);
365 V_VT(p) = VT_BSTR;
366 V_BSTR(p) = SysAllocString(height);
367 hres = V_BSTR(p) ? S_OK : E_OUTOFMEMORY;
368 }else {
369 ERR("GetHeight failed: %08x\n", nsres);
370 hres = E_FAIL;
373 nsAString_Finish(&height_str);
374 return hres;
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);
381 return E_NOTIMPL;
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));
388 return E_NOTIMPL;
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);
395 return E_NOTIMPL;
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));
402 return E_NOTIMPL;
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);
409 return E_NOTIMPL;
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));
416 return E_NOTIMPL;
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);
423 return E_NOTIMPL;
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);
430 return E_NOTIMPL;
433 static HRESULT WINAPI HTMLObjectElement_get_vspace(IHTMLObjectElement *iface, LONG *p)
435 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
436 nsresult nsres;
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);
443 return E_FAIL;
446 return S_OK;
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);
453 return E_NOTIMPL;
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);
460 return E_NOTIMPL;
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,
518 riid, ppv);
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.dispex.IDispatchEx_iface,
539 pctinfo);
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.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.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.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);
572 return E_NOTIMPL;
575 static HRESULT WINAPI HTMLObjectElement2_put_classid(IHTMLObjectElement2 *iface, BSTR v)
577 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
578 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
579 return E_NOTIMPL;
582 static HRESULT WINAPI HTMLObjectElement2_get_classid(IHTMLObjectElement2 *iface, BSTR *p)
584 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
585 FIXME("(%p)->(%p)\n", This, p);
586 return E_NOTIMPL;
589 static HRESULT WINAPI HTMLObjectElement2_put_data(IHTMLObjectElement2 *iface, BSTR v)
591 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
592 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
593 return E_NOTIMPL;
596 static HRESULT WINAPI HTMLObjectElement2_get_data(IHTMLObjectElement2 *iface, BSTR *p)
598 HTMLObjectElement *This = impl_from_IHTMLObjectElement2(iface);
599 FIXME("(%p)->(%p)\n", This, p);
600 return E_NOTIMPL;
603 static const IHTMLObjectElement2Vtbl HTMLObjectElement2Vtbl = {
604 HTMLObjectElement2_QueryInterface,
605 HTMLObjectElement2_AddRef,
606 HTMLObjectElement2_Release,
607 HTMLObjectElement2_GetTypeInfoCount,
608 HTMLObjectElement2_GetTypeInfo,
609 HTMLObjectElement2_GetIDsOfNames,
610 HTMLObjectElement2_Invoke,
611 HTMLObjectElement2_namedRecordset,
612 HTMLObjectElement2_put_classid,
613 HTMLObjectElement2_get_classid,
614 HTMLObjectElement2_put_data,
615 HTMLObjectElement2_get_data
618 static inline HTMLObjectElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
620 return CONTAINING_RECORD(iface, HTMLObjectElement, plugin_container.element.node);
623 static HRESULT HTMLObjectElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
625 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
627 if(IsEqualGUID(&IID_IUnknown, riid)) {
628 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
629 *ppv = &This->IHTMLObjectElement_iface;
630 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
631 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
632 *ppv = &This->IHTMLObjectElement_iface;
633 }else if(IsEqualGUID(&IID_IHTMLObjectElement, riid)) {
634 TRACE("(%p)->(IID_IHTMLObjectElement %p)\n", This, ppv);
635 *ppv = &This->IHTMLObjectElement_iface;
636 }else if(IsEqualGUID(&IID_IHTMLObjectElement2, riid)) {
637 TRACE("(%p)->(IID_IHTMLObjectElement2 %p)\n", This, ppv);
638 *ppv = &This->IHTMLObjectElement2_iface;
639 }else if(IsEqualGUID(&IID_HTMLPluginContainer, riid)) {
640 TRACE("(%p)->(IID_HTMLPluginContainer %p)\n", This, ppv);
641 *ppv = &This->plugin_container;
642 return S_OK;
643 }else {
644 HRESULT hres;
646 hres = HTMLElement_QI(&This->plugin_container.element.node, riid, ppv);
647 if(hres == E_NOINTERFACE && This->plugin_container.plugin_host && This->plugin_container.plugin_host->plugin_unk) {
648 IUnknown *plugin_iface, *ret;
650 hres = IUnknown_QueryInterface(This->plugin_container.plugin_host->plugin_unk, riid, (void**)&plugin_iface);
651 if(hres == S_OK) {
652 hres = wrap_iface(plugin_iface, (IUnknown*)&This->IHTMLObjectElement_iface, &ret);
653 IUnknown_Release(plugin_iface);
654 if(FAILED(hres))
655 return hres;
657 TRACE("returning plugin iface %p wrapped to %p\n", plugin_iface, ret);
658 *ppv = ret;
659 return S_OK;
663 return hres;
666 IUnknown_AddRef((IUnknown*)*ppv);
667 return S_OK;
670 static void HTMLObjectElement_destructor(HTMLDOMNode *iface)
672 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
674 if(This->plugin_container.plugin_host)
675 detach_plugin_host(This->plugin_container.plugin_host);
677 HTMLElement_destructor(&This->plugin_container.element.node);
680 static HRESULT HTMLObjectElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
682 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
683 FIXME("(%p)->(%p)\n", This, p);
684 return E_NOTIMPL;
687 static HRESULT HTMLObjectElement_get_dispid(HTMLDOMNode *iface, BSTR name,
688 DWORD grfdex, DISPID *pid)
690 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
692 TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(name), grfdex, pid);
694 return get_plugin_dispid(&This->plugin_container, name, pid);
697 static HRESULT HTMLObjectElement_invoke(HTMLDOMNode *iface, DISPID id, LCID lcid,
698 WORD flags, DISPPARAMS *params, VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
700 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
702 TRACE("(%p)->(%d)\n", This, id);
704 return invoke_plugin_prop(&This->plugin_container, id, lcid, flags, params, res, ei);
707 static const NodeImplVtbl HTMLObjectElementImplVtbl = {
708 HTMLObjectElement_QI,
709 HTMLObjectElement_destructor,
710 HTMLElement_cpc,
711 HTMLElement_clone,
712 HTMLElement_handle_event,
713 HTMLElement_get_attr_col,
714 NULL,
715 NULL,
716 NULL,
717 NULL,
718 NULL,
719 HTMLObjectElement_get_readystate,
720 HTMLObjectElement_get_dispid,
721 HTMLObjectElement_invoke
724 static const tid_t HTMLObjectElement_iface_tids[] = {
725 HTMLELEMENT_TIDS,
726 IHTMLObjectElement_tid,
727 IHTMLObjectElement2_tid,
730 static dispex_static_data_t HTMLObjectElement_dispex = {
731 NULL,
732 DispHTMLObjectElement_tid,
733 NULL,
734 HTMLObjectElement_iface_tids
737 HRESULT HTMLObjectElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLElement **elem)
739 HTMLObjectElement *ret;
740 nsresult nsres;
742 ret = heap_alloc_zero(sizeof(*ret));
743 if(!ret)
744 return E_OUTOFMEMORY;
746 ret->IHTMLObjectElement_iface.lpVtbl = &HTMLObjectElementVtbl;
747 ret->IHTMLObjectElement2_iface.lpVtbl = &HTMLObjectElement2Vtbl;
748 ret->plugin_container.element.node.vtbl = &HTMLObjectElementImplVtbl;
750 HTMLElement_Init(&ret->plugin_container.element, doc, nselem, &HTMLObjectElement_dispex);
752 nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLObjectElement, (void**)&ret->nsobject);
754 /* Share nsobject reference with nsnode */
755 assert(nsres == NS_OK && (nsIDOMNode*)ret->nsobject == ret->plugin_container.element.node.nsnode);
756 nsIDOMNode_Release(ret->plugin_container.element.node.nsnode);
758 *elem = &ret->plugin_container.element;
759 return S_OK;