explorer: add a navbar to explorer
[wine/gsoc_explorer.git] / dlls / mshtml / htmlobject.c
blobdce6c8c53ffb52d76f709c9114ebe19ceaac98cc
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>
21 #define COBJMACROS
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "winreg.h"
27 #include "ole2.h"
29 #include "wine/debug.h"
31 #include "mshtml_private.h"
32 #include "pluginhost.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36 typedef struct {
37 HTMLPluginContainer plugin_container;
39 IHTMLObjectElement IHTMLObjectElement_iface;
41 nsIDOMHTMLObjectElement *nsobject;
42 } HTMLObjectElement;
44 static inline HTMLObjectElement *impl_from_IHTMLObjectElement(IHTMLObjectElement *iface)
46 return CONTAINING_RECORD(iface, HTMLObjectElement, IHTMLObjectElement_iface);
49 static HRESULT WINAPI HTMLObjectElement_QueryInterface(IHTMLObjectElement *iface,
50 REFIID riid, void **ppv)
52 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
54 return IHTMLDOMNode_QueryInterface(&This->plugin_container.element.node.IHTMLDOMNode_iface,
55 riid, ppv);
58 static ULONG WINAPI HTMLObjectElement_AddRef(IHTMLObjectElement *iface)
60 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
62 return IHTMLDOMNode_AddRef(&This->plugin_container.element.node.IHTMLDOMNode_iface);
65 static ULONG WINAPI HTMLObjectElement_Release(IHTMLObjectElement *iface)
67 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
69 return IHTMLDOMNode_Release(&This->plugin_container.element.node.IHTMLDOMNode_iface);
72 static HRESULT WINAPI HTMLObjectElement_GetTypeInfoCount(IHTMLObjectElement *iface, UINT *pctinfo)
74 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
75 return IDispatchEx_GetTypeInfoCount(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
76 pctinfo);
79 static HRESULT WINAPI HTMLObjectElement_GetTypeInfo(IHTMLObjectElement *iface, UINT iTInfo,
80 LCID lcid, ITypeInfo **ppTInfo)
82 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
83 return IDispatchEx_GetTypeInfo(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
84 iTInfo, lcid, ppTInfo);
87 static HRESULT WINAPI HTMLObjectElement_GetIDsOfNames(IHTMLObjectElement *iface, REFIID riid,
88 LPOLESTR *rgszNames, UINT cNames,
89 LCID lcid, DISPID *rgDispId)
91 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
92 return IDispatchEx_GetIDsOfNames(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
93 riid, rgszNames, cNames, lcid, rgDispId);
96 static HRESULT WINAPI HTMLObjectElement_Invoke(IHTMLObjectElement *iface, DISPID dispIdMember,
97 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
98 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
100 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
101 return IDispatchEx_Invoke(&This->plugin_container.element.node.dispex.IDispatchEx_iface,
102 dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
105 static HRESULT WINAPI HTMLObjectElement_get_object(IHTMLObjectElement *iface, IDispatch **p)
107 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
109 TRACE("(%p)->(%p)\n", This, p);
111 return get_plugin_disp(&This->plugin_container, p);
114 static HRESULT WINAPI HTMLObjectElement_get_classid(IHTMLObjectElement *iface, BSTR *p)
116 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
117 FIXME("(%p)->(%p)\n", This, p);
118 return E_NOTIMPL;
121 static HRESULT WINAPI HTMLObjectElement_get_data(IHTMLObjectElement *iface, BSTR *p)
123 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
124 FIXME("(%p)->(%p)\n", This, p);
125 return E_NOTIMPL;
128 static HRESULT WINAPI HTMLObjectElement_put_recordset(IHTMLObjectElement *iface, IDispatch *v)
130 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
131 FIXME("(%p)->(%p)\n", This, v);
132 return E_NOTIMPL;
135 static HRESULT WINAPI HTMLObjectElement_get_recordset(IHTMLObjectElement *iface, IDispatch **p)
137 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
138 FIXME("(%p)->(%p)\n", This, p);
139 return E_NOTIMPL;
142 static HRESULT WINAPI HTMLObjectElement_put_align(IHTMLObjectElement *iface, BSTR v)
144 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
145 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
146 return E_NOTIMPL;
149 static HRESULT WINAPI HTMLObjectElement_get_align(IHTMLObjectElement *iface, BSTR *p)
151 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
152 FIXME("(%p)->(%p)\n", This, p);
153 return E_NOTIMPL;
156 static HRESULT WINAPI HTMLObjectElement_put_name(IHTMLObjectElement *iface, BSTR v)
158 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
159 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
160 return E_NOTIMPL;
163 static HRESULT WINAPI HTMLObjectElement_get_name(IHTMLObjectElement *iface, BSTR *p)
165 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
166 FIXME("(%p)->(%p)\n", This, p);
167 return E_NOTIMPL;
170 static HRESULT WINAPI HTMLObjectElement_put_codeBase(IHTMLObjectElement *iface, BSTR v)
172 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
173 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
174 return E_NOTIMPL;
177 static HRESULT WINAPI HTMLObjectElement_get_codeBase(IHTMLObjectElement *iface, BSTR *p)
179 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
180 FIXME("(%p)->(%p)\n", This, p);
181 return E_NOTIMPL;
184 static HRESULT WINAPI HTMLObjectElement_put_codeType(IHTMLObjectElement *iface, BSTR v)
186 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
187 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
188 return E_NOTIMPL;
191 static HRESULT WINAPI HTMLObjectElement_get_codeType(IHTMLObjectElement *iface, BSTR *p)
193 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
194 FIXME("(%p)->(%p)\n", This, p);
195 return E_NOTIMPL;
198 static HRESULT WINAPI HTMLObjectElement_put_code(IHTMLObjectElement *iface, BSTR v)
200 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
201 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
202 return E_NOTIMPL;
205 static HRESULT WINAPI HTMLObjectElement_get_code(IHTMLObjectElement *iface, BSTR *p)
207 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
208 FIXME("(%p)->(%p)\n", This, p);
209 return E_NOTIMPL;
212 static HRESULT WINAPI HTMLObjectElement_get_BaseHref(IHTMLObjectElement *iface, BSTR *p)
214 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
215 FIXME("(%p)->(%p)\n", This, p);
216 return E_NOTIMPL;
219 static HRESULT WINAPI HTMLObjectElement_put_type(IHTMLObjectElement *iface, BSTR v)
221 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
222 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
223 return E_NOTIMPL;
226 static HRESULT WINAPI HTMLObjectElement_get_type(IHTMLObjectElement *iface, BSTR *p)
228 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
229 FIXME("(%p)->(%p)\n", This, p);
230 return E_NOTIMPL;
233 static HRESULT WINAPI HTMLObjectElement_get_form(IHTMLObjectElement *iface, IHTMLFormElement **p)
235 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
236 FIXME("(%p)->(%p)\n", This, p);
237 return E_NOTIMPL;
240 static HRESULT WINAPI HTMLObjectElement_put_width(IHTMLObjectElement *iface, VARIANT v)
242 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
243 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
244 return E_NOTIMPL;
247 static HRESULT WINAPI HTMLObjectElement_get_width(IHTMLObjectElement *iface, VARIANT *p)
249 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
250 FIXME("(%p)->(%p)\n", This, p);
251 return E_NOTIMPL;
254 static HRESULT WINAPI HTMLObjectElement_put_height(IHTMLObjectElement *iface, VARIANT v)
256 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
257 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
258 return E_NOTIMPL;
261 static HRESULT WINAPI HTMLObjectElement_get_height(IHTMLObjectElement *iface, VARIANT *p)
263 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
264 FIXME("(%p)->(%p)\n", This, p);
265 return E_NOTIMPL;
268 static HRESULT WINAPI HTMLObjectElement_get_readyState(IHTMLObjectElement *iface, LONG *p)
270 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
271 FIXME("(%p)->(%p)\n", This, p);
272 return E_NOTIMPL;
275 static HRESULT WINAPI HTMLObjectElement_put_onreadystatechange(IHTMLObjectElement *iface, VARIANT v)
277 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
278 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
279 return E_NOTIMPL;
282 static HRESULT WINAPI HTMLObjectElement_get_onreadystatechange(IHTMLObjectElement *iface, VARIANT *p)
284 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
285 FIXME("(%p)->(%p)\n", This, p);
286 return E_NOTIMPL;
289 static HRESULT WINAPI HTMLObjectElement_put_onerror(IHTMLObjectElement *iface, VARIANT v)
291 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
292 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
293 return E_NOTIMPL;
296 static HRESULT WINAPI HTMLObjectElement_get_onerror(IHTMLObjectElement *iface, VARIANT *p)
298 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
299 FIXME("(%p)->(%p)\n", This, p);
300 return E_NOTIMPL;
303 static HRESULT WINAPI HTMLObjectElement_put_altHtml(IHTMLObjectElement *iface, BSTR v)
305 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
306 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
307 return E_NOTIMPL;
310 static HRESULT WINAPI HTMLObjectElement_get_altHtml(IHTMLObjectElement *iface, BSTR *p)
312 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
313 FIXME("(%p)->(%p)\n", This, p);
314 return E_NOTIMPL;
317 static HRESULT WINAPI HTMLObjectElement_put_vspace(IHTMLObjectElement *iface, LONG v)
319 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
320 FIXME("(%p)->(%d)\n", This, v);
321 return E_NOTIMPL;
324 static HRESULT WINAPI HTMLObjectElement_get_vspace(IHTMLObjectElement *iface, LONG *p)
326 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
327 PRInt32 vspace;
328 nsresult nsres;
330 TRACE("(%p)->(%p)\n", This, p);
332 nsres = nsIDOMHTMLObjectElement_GetVspace(This->nsobject, &vspace);
333 if(NS_FAILED(nsres)) {
334 ERR("GetVspace failed: %08x\n", nsres);
335 return E_FAIL;
338 *p = vspace;
339 return S_OK;
342 static HRESULT WINAPI HTMLObjectElement_put_hspace(IHTMLObjectElement *iface, LONG v)
344 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
345 FIXME("(%p)->(%d)\n", This, v);
346 return E_NOTIMPL;
349 static HRESULT WINAPI HTMLObjectElement_get_hspace(IHTMLObjectElement *iface, LONG *p)
351 HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
352 FIXME("(%p)->(%p)\n", This, p);
353 return E_NOTIMPL;
356 static const IHTMLObjectElementVtbl HTMLObjectElementVtbl = {
357 HTMLObjectElement_QueryInterface,
358 HTMLObjectElement_AddRef,
359 HTMLObjectElement_Release,
360 HTMLObjectElement_GetTypeInfoCount,
361 HTMLObjectElement_GetTypeInfo,
362 HTMLObjectElement_GetIDsOfNames,
363 HTMLObjectElement_Invoke,
364 HTMLObjectElement_get_object,
365 HTMLObjectElement_get_classid,
366 HTMLObjectElement_get_data,
367 HTMLObjectElement_put_recordset,
368 HTMLObjectElement_get_recordset,
369 HTMLObjectElement_put_align,
370 HTMLObjectElement_get_align,
371 HTMLObjectElement_put_name,
372 HTMLObjectElement_get_name,
373 HTMLObjectElement_put_codeBase,
374 HTMLObjectElement_get_codeBase,
375 HTMLObjectElement_put_codeType,
376 HTMLObjectElement_get_codeType,
377 HTMLObjectElement_put_code,
378 HTMLObjectElement_get_code,
379 HTMLObjectElement_get_BaseHref,
380 HTMLObjectElement_put_type,
381 HTMLObjectElement_get_type,
382 HTMLObjectElement_get_form,
383 HTMLObjectElement_put_width,
384 HTMLObjectElement_get_width,
385 HTMLObjectElement_put_height,
386 HTMLObjectElement_get_height,
387 HTMLObjectElement_get_readyState,
388 HTMLObjectElement_put_onreadystatechange,
389 HTMLObjectElement_get_onreadystatechange,
390 HTMLObjectElement_put_onerror,
391 HTMLObjectElement_get_onerror,
392 HTMLObjectElement_put_altHtml,
393 HTMLObjectElement_get_altHtml,
394 HTMLObjectElement_put_vspace,
395 HTMLObjectElement_get_vspace,
396 HTMLObjectElement_put_hspace,
397 HTMLObjectElement_get_hspace
400 static inline HTMLObjectElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
402 return CONTAINING_RECORD(iface, HTMLObjectElement, plugin_container.element.node);
405 static HRESULT HTMLObjectElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
407 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
409 if(IsEqualGUID(&IID_IUnknown, riid)) {
410 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
411 *ppv = &This->IHTMLObjectElement_iface;
412 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
413 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
414 *ppv = &This->IHTMLObjectElement_iface;
415 }else if(IsEqualGUID(&IID_IHTMLObjectElement, riid)) {
416 TRACE("(%p)->(IID_IHTMLObjectElement %p)\n", This, ppv);
417 *ppv = &This->IHTMLObjectElement_iface;
418 }else if(IsEqualGUID(&IID_HTMLPluginContainer, riid)) {
419 TRACE("(%p)->(IID_HTMLPluginContainer %p)\n", This, ppv);
420 *ppv = &This->plugin_container;
421 return S_OK;
422 }else {
423 return HTMLElement_QI(&This->plugin_container.element.node, riid, ppv);
426 IUnknown_AddRef((IUnknown*)*ppv);
427 return S_OK;
430 static void HTMLObjectElement_destructor(HTMLDOMNode *iface)
432 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
434 if(This->plugin_container.plugin_host)
435 detach_plugin_host(This->plugin_container.plugin_host);
436 if(This->nsobject)
437 nsIDOMHTMLObjectElement_Release(This->nsobject);
439 HTMLElement_destructor(&This->plugin_container.element.node);
442 static HRESULT HTMLObjectElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
444 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
445 FIXME("(%p)->(%p)\n", This, p);
446 return E_NOTIMPL;
449 static HRESULT HTMLObjectElement_get_dispid(HTMLDOMNode *iface, BSTR name,
450 DWORD grfdex, DISPID *pid)
452 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
454 TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(name), grfdex, pid);
456 return get_plugin_dispid(&This->plugin_container, name, pid);
459 static HRESULT HTMLObjectElement_invoke(HTMLDOMNode *iface, DISPID id, LCID lcid,
460 WORD flags, DISPPARAMS *params, VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
462 HTMLObjectElement *This = impl_from_HTMLDOMNode(iface);
464 TRACE("(%p)->(%d)\n", This, id);
466 return invoke_plugin_prop(&This->plugin_container, id, lcid, flags, params, res, ei);
469 static const NodeImplVtbl HTMLObjectElementImplVtbl = {
470 HTMLObjectElement_QI,
471 HTMLObjectElement_destructor,
472 HTMLElement_clone,
473 NULL,
474 NULL,
475 NULL,
476 NULL,
477 NULL,
478 HTMLObjectElement_get_readystate,
479 HTMLObjectElement_get_dispid,
480 HTMLObjectElement_invoke
483 static const tid_t HTMLObjectElement_iface_tids[] = {
484 HTMLELEMENT_TIDS,
485 IHTMLObjectElement_tid,
488 static dispex_static_data_t HTMLObjectElement_dispex = {
489 NULL,
490 DispHTMLObjectElement_tid,
491 NULL,
492 HTMLObjectElement_iface_tids
495 HRESULT HTMLObjectElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLElement **elem)
497 HTMLObjectElement *ret;
498 nsresult nsres;
500 ret = heap_alloc_zero(sizeof(*ret));
501 if(!ret)
502 return E_OUTOFMEMORY;
504 ret->IHTMLObjectElement_iface.lpVtbl = &HTMLObjectElementVtbl;
505 ret->plugin_container.element.node.vtbl = &HTMLObjectElementImplVtbl;
507 nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLObjectElement, (void**)&ret->nsobject);
508 if(NS_FAILED(nsres)) {
509 ERR("Could not get nsIDOMHTMLObjectElement iface: %08x\n", nsres);
510 heap_free(ret);
511 return E_FAIL;
514 HTMLElement_Init(&ret->plugin_container.element, doc, nselem, &HTMLObjectElement_dispex);
516 *elem = &ret->plugin_container.element;
517 return S_OK;