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
29 #include "wine/debug.h"
31 #include "mshtml_private.h"
32 #include "htmlevent.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
39 IHTMLImgElement IHTMLImgElement_iface
;
41 nsIDOMHTMLImageElement
*nsimg
;
44 static inline HTMLImg
*impl_from_IHTMLImgElement(IHTMLImgElement
*iface
)
46 return CONTAINING_RECORD(iface
, HTMLImg
, IHTMLImgElement_iface
);
49 static HRESULT WINAPI
HTMLImgElement_QueryInterface(IHTMLImgElement
*iface
, REFIID riid
, void **ppv
)
51 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
53 return IHTMLDOMNode_QueryInterface(&This
->element
.node
.IHTMLDOMNode_iface
, riid
, ppv
);
56 static ULONG WINAPI
HTMLImgElement_AddRef(IHTMLImgElement
*iface
)
58 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
60 return IHTMLDOMNode_AddRef(&This
->element
.node
.IHTMLDOMNode_iface
);
63 static ULONG WINAPI
HTMLImgElement_Release(IHTMLImgElement
*iface
)
65 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
67 return IHTMLDOMNode_Release(&This
->element
.node
.IHTMLDOMNode_iface
);
70 static HRESULT WINAPI
HTMLImgElement_GetTypeInfoCount(IHTMLImgElement
*iface
, UINT
*pctinfo
)
72 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
73 return IDispatchEx_GetTypeInfoCount(&This
->element
.node
.event_target
.dispex
.IDispatchEx_iface
, pctinfo
);
76 static HRESULT WINAPI
HTMLImgElement_GetTypeInfo(IHTMLImgElement
*iface
, UINT iTInfo
,
77 LCID lcid
, ITypeInfo
**ppTInfo
)
79 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
80 return IDispatchEx_GetTypeInfo(&This
->element
.node
.event_target
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
,
84 static HRESULT WINAPI
HTMLImgElement_GetIDsOfNames(IHTMLImgElement
*iface
, REFIID riid
,
85 LPOLESTR
*rgszNames
, UINT cNames
,
86 LCID lcid
, DISPID
*rgDispId
)
88 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
89 return IDispatchEx_GetIDsOfNames(&This
->element
.node
.event_target
.dispex
.IDispatchEx_iface
, riid
, rgszNames
,
90 cNames
, lcid
, rgDispId
);
93 static HRESULT WINAPI
HTMLImgElement_Invoke(IHTMLImgElement
*iface
, DISPID dispIdMember
,
94 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
95 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
97 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
98 return IDispatchEx_Invoke(&This
->element
.node
.event_target
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
,
99 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
102 static HRESULT WINAPI
HTMLImgElement_put_isMap(IHTMLImgElement
*iface
, VARIANT_BOOL v
)
104 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
107 TRACE("(%p)->(%x)\n", This
, v
);
109 nsres
= nsIDOMHTMLImageElement_SetIsMap(This
->nsimg
, v
!= VARIANT_FALSE
);
110 if (NS_FAILED(nsres
)) {
111 ERR("Set IsMap failed: %08x\n", nsres
);
118 static HRESULT WINAPI
HTMLImgElement_get_isMap(IHTMLImgElement
*iface
, VARIANT_BOOL
*p
)
120 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
124 TRACE("(%p)->(%p)\n", This
, p
);
129 nsres
= nsIDOMHTMLImageElement_GetIsMap(This
->nsimg
, &b
);
130 if (NS_FAILED(nsres
)) {
131 ERR("Get IsMap failed: %08x\n", nsres
);
134 *p
= b
? VARIANT_TRUE
: VARIANT_FALSE
;
138 static HRESULT WINAPI
HTMLImgElement_put_useMap(IHTMLImgElement
*iface
, BSTR v
)
140 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
141 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
145 static HRESULT WINAPI
HTMLImgElement_get_useMap(IHTMLImgElement
*iface
, BSTR
*p
)
147 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
148 FIXME("(%p)->(%p)\n", This
, p
);
152 static HRESULT WINAPI
HTMLImgElement_get_mimeType(IHTMLImgElement
*iface
, BSTR
*p
)
154 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
155 FIXME("(%p)->(%p)\n", This
, p
);
159 static HRESULT WINAPI
HTMLImgElement_get_fileSize(IHTMLImgElement
*iface
, BSTR
*p
)
161 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
162 FIXME("(%p)->(%p)\n", This
, p
);
166 static HRESULT WINAPI
HTMLImgElement_get_fileCreatedDate(IHTMLImgElement
*iface
, BSTR
*p
)
168 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
169 FIXME("(%p)->(%p)\n", This
, p
);
173 static HRESULT WINAPI
HTMLImgElement_get_fileModifiedDate(IHTMLImgElement
*iface
, BSTR
*p
)
175 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
176 FIXME("(%p)->(%p)\n", This
, p
);
180 static HRESULT WINAPI
HTMLImgElement_get_fileUpdatedDate(IHTMLImgElement
*iface
, BSTR
*p
)
182 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
183 FIXME("(%p)->(%p)\n", This
, p
);
187 static HRESULT WINAPI
HTMLImgElement_get_protocol(IHTMLImgElement
*iface
, BSTR
*p
)
189 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
190 FIXME("(%p)->(%p)\n", This
, p
);
194 static HRESULT WINAPI
HTMLImgElement_get_href(IHTMLImgElement
*iface
, BSTR
*p
)
196 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
197 FIXME("(%p)->(%p)\n", This
, p
);
201 static HRESULT WINAPI
HTMLImgElement_get_nameProp(IHTMLImgElement
*iface
, BSTR
*p
)
203 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
204 FIXME("(%p)->(%p)\n", This
, p
);
208 static HRESULT WINAPI
HTMLImgElement_put_border(IHTMLImgElement
*iface
, VARIANT v
)
210 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
211 FIXME("(%p)->()\n", This
);
215 static HRESULT WINAPI
HTMLImgElement_get_border(IHTMLImgElement
*iface
, VARIANT
*p
)
217 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
218 FIXME("(%p)->(%p)\n", This
, p
);
222 static HRESULT WINAPI
HTMLImgElement_put_vspace(IHTMLImgElement
*iface
, LONG v
)
224 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
225 FIXME("(%p)->(%d)\n", This
, v
);
229 static HRESULT WINAPI
HTMLImgElement_get_vspace(IHTMLImgElement
*iface
, LONG
*p
)
231 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
232 FIXME("(%p)->(%p)\n", This
, p
);
236 static HRESULT WINAPI
HTMLImgElement_put_hspace(IHTMLImgElement
*iface
, LONG v
)
238 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
239 FIXME("(%p)->(%d)\n", This
, v
);
243 static HRESULT WINAPI
HTMLImgElement_get_hspace(IHTMLImgElement
*iface
, LONG
*p
)
245 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
246 FIXME("(%p)->(%p)\n", This
, p
);
250 static HRESULT WINAPI
HTMLImgElement_put_alt(IHTMLImgElement
*iface
, BSTR v
)
252 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
256 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
258 nsAString_InitDepend(&alt_str
, v
);
259 nsres
= nsIDOMHTMLImageElement_SetAlt(This
->nsimg
, &alt_str
);
260 nsAString_Finish(&alt_str
);
262 ERR("SetAlt failed: %08x\n", nsres
);
267 static HRESULT WINAPI
HTMLImgElement_get_alt(IHTMLImgElement
*iface
, BSTR
*p
)
269 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
273 TRACE("(%p)->(%p)\n", This
, p
);
275 nsAString_Init(&alt_str
, NULL
);
276 nsres
= nsIDOMHTMLImageElement_GetAlt(This
->nsimg
, &alt_str
);
277 return return_nsstr(nsres
, &alt_str
, p
);
280 static HRESULT WINAPI
HTMLImgElement_put_src(IHTMLImgElement
*iface
, BSTR v
)
282 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
286 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
288 nsAString_InitDepend(&src_str
, v
);
289 nsres
= nsIDOMHTMLImageElement_SetSrc(This
->nsimg
, &src_str
);
290 nsAString_Finish(&src_str
);
292 ERR("SetSrc failed: %08x\n", nsres
);
297 static HRESULT WINAPI
HTMLImgElement_get_src(IHTMLImgElement
*iface
, BSTR
*p
)
299 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
300 const PRUnichar
*src
;
305 static const WCHAR blockedW
[] = {'B','L','O','C','K','E','D',':',':',0};
307 TRACE("(%p)->(%p)\n", This
, p
);
309 nsAString_Init(&src_str
, NULL
);
310 nsres
= nsIDOMHTMLImageElement_GetSrc(This
->nsimg
, &src_str
);
311 if(NS_SUCCEEDED(nsres
)) {
312 nsAString_GetData(&src_str
, &src
);
314 if(!strncmpiW(src
, blockedW
, sizeof(blockedW
)/sizeof(WCHAR
)-1)) {
315 TRACE("returning BLOCKED::\n");
316 *p
= SysAllocString(blockedW
);
318 hres
= E_OUTOFMEMORY
;
320 hres
= nsuri_to_url(src
, TRUE
, p
);
323 ERR("GetSrc failed: %08x\n", nsres
);
327 nsAString_Finish(&src_str
);
331 static HRESULT WINAPI
HTMLImgElement_put_lowsrc(IHTMLImgElement
*iface
, BSTR v
)
333 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
334 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
338 static HRESULT WINAPI
HTMLImgElement_get_lowsrc(IHTMLImgElement
*iface
, BSTR
*p
)
340 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
341 FIXME("(%p)->(%p)\n", This
, p
);
345 static HRESULT WINAPI
HTMLImgElement_put_vrml(IHTMLImgElement
*iface
, BSTR v
)
347 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
348 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
352 static HRESULT WINAPI
HTMLImgElement_get_vrml(IHTMLImgElement
*iface
, BSTR
*p
)
354 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
355 FIXME("(%p)->(%p)\n", This
, p
);
359 static HRESULT WINAPI
HTMLImgElement_put_dynsrc(IHTMLImgElement
*iface
, BSTR v
)
361 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
362 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
366 static HRESULT WINAPI
HTMLImgElement_get_dynsrc(IHTMLImgElement
*iface
, BSTR
*p
)
368 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
369 FIXME("(%p)->(%p)\n", This
, p
);
373 static HRESULT WINAPI
HTMLImgElement_get_readyState(IHTMLImgElement
*iface
, BSTR
*p
)
375 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
376 FIXME("(%p)->(%p)\n", This
, p
);
380 static HRESULT WINAPI
HTMLImgElement_get_complete(IHTMLImgElement
*iface
, VARIANT_BOOL
*p
)
382 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
386 TRACE("(%p)->(%p)\n", This
, p
);
388 nsres
= nsIDOMHTMLImageElement_GetComplete(This
->nsimg
, &complete
);
389 if(NS_FAILED(nsres
)) {
390 ERR("GetComplete failed: %08x\n", nsres
);
394 *p
= complete
? VARIANT_TRUE
: VARIANT_FALSE
;
398 static HRESULT WINAPI
HTMLImgElement_put_loop(IHTMLImgElement
*iface
, VARIANT v
)
400 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
401 FIXME("(%p)->()\n", This
);
405 static HRESULT WINAPI
HTMLImgElement_get_loop(IHTMLImgElement
*iface
, VARIANT
*p
)
407 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
408 FIXME("(%p)->(%p)\n", This
, p
);
412 static HRESULT WINAPI
HTMLImgElement_put_align(IHTMLImgElement
*iface
, BSTR v
)
414 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
418 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
420 nsAString_InitDepend(&str
, v
);
422 nsres
= nsIDOMHTMLImageElement_SetAlign(This
->nsimg
, &str
);
423 nsAString_Finish(&str
);
424 if (NS_FAILED(nsres
)){
425 ERR("Set Align(%s) failed: %08x\n", debugstr_w(v
), nsres
);
432 static HRESULT WINAPI
HTMLImgElement_get_align(IHTMLImgElement
*iface
, BSTR
*p
)
434 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
438 TRACE("(%p)->(%p)\n", This
, p
);
440 nsAString_Init(&str
, NULL
);
441 nsres
= nsIDOMHTMLImageElement_GetAlign(This
->nsimg
, &str
);
443 return return_nsstr(nsres
, &str
, p
);
446 static HRESULT WINAPI
HTMLImgElement_put_onload(IHTMLImgElement
*iface
, VARIANT v
)
448 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
450 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
452 return set_node_event(&This
->element
.node
, EVENTID_LOAD
, &v
);
455 static HRESULT WINAPI
HTMLImgElement_get_onload(IHTMLImgElement
*iface
, VARIANT
*p
)
457 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
459 TRACE("(%p)->(%p)\n", This
, p
);
461 return get_node_event(&This
->element
.node
, EVENTID_LOAD
, p
);
464 static HRESULT WINAPI
HTMLImgElement_put_onerror(IHTMLImgElement
*iface
, VARIANT v
)
466 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
468 TRACE("(%p)->()\n", This
);
470 return set_node_event(&This
->element
.node
, EVENTID_ERROR
, &v
);
473 static HRESULT WINAPI
HTMLImgElement_get_onerror(IHTMLImgElement
*iface
, VARIANT
*p
)
475 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
477 TRACE("(%p)->(%p)\n", This
, p
);
479 return get_node_event(&This
->element
.node
, EVENTID_ERROR
, p
);
482 static HRESULT WINAPI
HTMLImgElement_put_onabort(IHTMLImgElement
*iface
, VARIANT v
)
484 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
486 TRACE("(%p)->()\n", This
);
488 return set_node_event(&This
->element
.node
, EVENTID_ABORT
, &v
);
491 static HRESULT WINAPI
HTMLImgElement_get_onabort(IHTMLImgElement
*iface
, VARIANT
*p
)
493 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
495 TRACE("(%p)->(%p)\n", This
, p
);
497 return get_node_event(&This
->element
.node
, EVENTID_ABORT
, p
);
500 static HRESULT WINAPI
HTMLImgElement_put_name(IHTMLImgElement
*iface
, BSTR v
)
502 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
503 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
507 static HRESULT WINAPI
HTMLImgElement_get_name(IHTMLImgElement
*iface
, BSTR
*p
)
509 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
513 TRACE("(%p)->(%p)\n", This
, p
);
515 nsAString_Init(&name
, NULL
);
516 nsres
= nsIDOMHTMLImageElement_GetName(This
->nsimg
, &name
);
517 return return_nsstr(nsres
, &name
, p
);
520 static HRESULT WINAPI
HTMLImgElement_put_width(IHTMLImgElement
*iface
, LONG v
)
522 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
525 TRACE("(%p)->(%d)\n", This
, v
);
527 nsres
= nsIDOMHTMLImageElement_SetWidth(This
->nsimg
, v
);
528 if(NS_FAILED(nsres
)) {
529 ERR("SetWidth failed: %08x\n", nsres
);
536 static HRESULT WINAPI
HTMLImgElement_get_width(IHTMLImgElement
*iface
, LONG
*p
)
538 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
542 TRACE("(%p)->(%p)\n", This
, p
);
544 nsres
= nsIDOMHTMLImageElement_GetWidth(This
->nsimg
, &width
);
545 if(NS_FAILED(nsres
)) {
546 ERR("GetWidth failed: %08x\n", nsres
);
554 static HRESULT WINAPI
HTMLImgElement_put_height(IHTMLImgElement
*iface
, LONG v
)
556 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
559 TRACE("(%p)->(%d)\n", This
, v
);
561 nsres
= nsIDOMHTMLImageElement_SetHeight(This
->nsimg
, v
);
562 if(NS_FAILED(nsres
)) {
563 ERR("SetHeight failed: %08x\n", nsres
);
570 static HRESULT WINAPI
HTMLImgElement_get_height(IHTMLImgElement
*iface
, LONG
*p
)
572 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
576 TRACE("(%p)->(%p)\n", This
, p
);
578 nsres
= nsIDOMHTMLImageElement_GetHeight(This
->nsimg
, &height
);
579 if(NS_FAILED(nsres
)) {
580 ERR("GetHeight failed: %08x\n", nsres
);
588 static HRESULT WINAPI
HTMLImgElement_put_start(IHTMLImgElement
*iface
, BSTR v
)
590 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
591 FIXME("(%p)->()\n", This
);
595 static HRESULT WINAPI
HTMLImgElement_get_start(IHTMLImgElement
*iface
, BSTR
*p
)
597 HTMLImg
*This
= impl_from_IHTMLImgElement(iface
);
598 FIXME("(%p)->(%p)\n", This
, p
);
602 static const IHTMLImgElementVtbl HTMLImgElementVtbl
= {
603 HTMLImgElement_QueryInterface
,
604 HTMLImgElement_AddRef
,
605 HTMLImgElement_Release
,
606 HTMLImgElement_GetTypeInfoCount
,
607 HTMLImgElement_GetTypeInfo
,
608 HTMLImgElement_GetIDsOfNames
,
609 HTMLImgElement_Invoke
,
610 HTMLImgElement_put_isMap
,
611 HTMLImgElement_get_isMap
,
612 HTMLImgElement_put_useMap
,
613 HTMLImgElement_get_useMap
,
614 HTMLImgElement_get_mimeType
,
615 HTMLImgElement_get_fileSize
,
616 HTMLImgElement_get_fileCreatedDate
,
617 HTMLImgElement_get_fileModifiedDate
,
618 HTMLImgElement_get_fileUpdatedDate
,
619 HTMLImgElement_get_protocol
,
620 HTMLImgElement_get_href
,
621 HTMLImgElement_get_nameProp
,
622 HTMLImgElement_put_border
,
623 HTMLImgElement_get_border
,
624 HTMLImgElement_put_vspace
,
625 HTMLImgElement_get_vspace
,
626 HTMLImgElement_put_hspace
,
627 HTMLImgElement_get_hspace
,
628 HTMLImgElement_put_alt
,
629 HTMLImgElement_get_alt
,
630 HTMLImgElement_put_src
,
631 HTMLImgElement_get_src
,
632 HTMLImgElement_put_lowsrc
,
633 HTMLImgElement_get_lowsrc
,
634 HTMLImgElement_put_vrml
,
635 HTMLImgElement_get_vrml
,
636 HTMLImgElement_put_dynsrc
,
637 HTMLImgElement_get_dynsrc
,
638 HTMLImgElement_get_readyState
,
639 HTMLImgElement_get_complete
,
640 HTMLImgElement_put_loop
,
641 HTMLImgElement_get_loop
,
642 HTMLImgElement_put_align
,
643 HTMLImgElement_get_align
,
644 HTMLImgElement_put_onload
,
645 HTMLImgElement_get_onload
,
646 HTMLImgElement_put_onerror
,
647 HTMLImgElement_get_onerror
,
648 HTMLImgElement_put_onabort
,
649 HTMLImgElement_get_onabort
,
650 HTMLImgElement_put_name
,
651 HTMLImgElement_get_name
,
652 HTMLImgElement_put_width
,
653 HTMLImgElement_get_width
,
654 HTMLImgElement_put_height
,
655 HTMLImgElement_get_height
,
656 HTMLImgElement_put_start
,
657 HTMLImgElement_get_start
660 static inline HTMLImg
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
662 return CONTAINING_RECORD(iface
, HTMLImg
, element
.node
);
665 static HRESULT
HTMLImgElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
667 HTMLImg
*This
= impl_from_HTMLDOMNode(iface
);
671 if(IsEqualGUID(&IID_IHTMLImgElement
, riid
)) {
672 TRACE("(%p)->(IID_IHTMLImgElement %p)\n", This
, ppv
);
673 *ppv
= &This
->IHTMLImgElement_iface
;
675 return HTMLElement_QI(&This
->element
.node
, riid
, ppv
);
678 IUnknown_AddRef((IUnknown
*)*ppv
);
682 static HRESULT
HTMLImgElement_get_readystate(HTMLDOMNode
*iface
, BSTR
*p
)
684 HTMLImg
*This
= impl_from_HTMLDOMNode(iface
);
686 return IHTMLImgElement_get_readyState(&This
->IHTMLImgElement_iface
, p
);
689 static void HTMLImgElement_traverse(HTMLDOMNode
*iface
, nsCycleCollectionTraversalCallback
*cb
)
691 HTMLImg
*This
= impl_from_HTMLDOMNode(iface
);
694 note_cc_edge((nsISupports
*)This
->nsimg
, "This->nsimg", cb
);
697 static void HTMLImgElement_unlink(HTMLDOMNode
*iface
)
699 HTMLImg
*This
= impl_from_HTMLDOMNode(iface
);
702 nsIDOMHTMLImageElement
*nsimg
= This
->nsimg
;
705 nsIDOMHTMLImageElement_Release(nsimg
);
709 static const NodeImplVtbl HTMLImgElementImplVtbl
= {
712 HTMLElement_destructor
,
715 HTMLElement_handle_event
,
716 HTMLElement_get_attr_col
,
722 HTMLImgElement_get_readystate
,
726 HTMLImgElement_traverse
,
727 HTMLImgElement_unlink
730 static const tid_t HTMLImgElement_iface_tids
[] = {
735 static dispex_static_data_t HTMLImgElement_dispex
= {
738 HTMLImgElement_iface_tids
,
739 HTMLElement_init_dispex_info
742 HRESULT
HTMLImgElement_Create(HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, HTMLElement
**elem
)
747 ret
= heap_alloc_zero(sizeof(HTMLImg
));
749 return E_OUTOFMEMORY
;
751 ret
->IHTMLImgElement_iface
.lpVtbl
= &HTMLImgElementVtbl
;
752 ret
->element
.node
.vtbl
= &HTMLImgElementImplVtbl
;
754 HTMLElement_Init(&ret
->element
, doc
, nselem
, &HTMLImgElement_dispex
);
756 nsres
= nsIDOMHTMLElement_QueryInterface(nselem
, &IID_nsIDOMHTMLImageElement
, (void**)&ret
->nsimg
);
757 assert(nsres
== NS_OK
);
759 *elem
= &ret
->element
;
763 static inline HTMLImageElementFactory
*impl_from_IHTMLImageElementFactory(IHTMLImageElementFactory
*iface
)
765 return CONTAINING_RECORD(iface
, HTMLImageElementFactory
, IHTMLImageElementFactory_iface
);
768 static HRESULT WINAPI
HTMLImageElementFactory_QueryInterface(IHTMLImageElementFactory
*iface
,
769 REFIID riid
, void **ppv
)
771 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
773 TRACE("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
775 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
776 *ppv
= &This
->IHTMLImageElementFactory_iface
;
777 }else if(IsEqualGUID(&IID_IHTMLImageElementFactory
, riid
)) {
778 *ppv
= &This
->IHTMLImageElementFactory_iface
;
779 }else if(dispex_query_interface(&This
->dispex
, riid
, ppv
)) {
780 return *ppv
? S_OK
: E_NOINTERFACE
;
783 WARN("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
784 return E_NOINTERFACE
;
787 IUnknown_AddRef((IUnknown
*)*ppv
);
791 static ULONG WINAPI
HTMLImageElementFactory_AddRef(IHTMLImageElementFactory
*iface
)
793 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
794 LONG ref
= InterlockedIncrement(&This
->ref
);
796 TRACE("(%p) ref=%d\n", This
, ref
);
801 static ULONG WINAPI
HTMLImageElementFactory_Release(IHTMLImageElementFactory
*iface
)
803 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
804 LONG ref
= InterlockedDecrement(&This
->ref
);
806 TRACE("(%p) ref=%d\n", This
, ref
);
814 static HRESULT WINAPI
HTMLImageElementFactory_GetTypeInfoCount(IHTMLImageElementFactory
*iface
,
817 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
818 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
821 static HRESULT WINAPI
HTMLImageElementFactory_GetTypeInfo(IHTMLImageElementFactory
*iface
,
822 UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
824 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
825 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
828 static HRESULT WINAPI
HTMLImageElementFactory_GetIDsOfNames(IHTMLImageElementFactory
*iface
,
829 REFIID riid
, LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
,
832 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
833 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
, lcid
, rgDispId
);
836 static HRESULT WINAPI
HTMLImageElementFactory_Invoke(IHTMLImageElementFactory
*iface
,
837 DISPID dispIdMember
, REFIID riid
, LCID lcid
, WORD wFlags
,
838 DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
,
841 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
842 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
, wFlags
,
843 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
846 static LONG
var_to_size(const VARIANT
*v
)
857 hres
= VarI4FromStr(V_BSTR(v
), 0, 0, &ret
);
859 FIXME("VarI4FromStr failed: %08x\n", hres
);
865 FIXME("unsupported size %s\n", debugstr_variant(v
));
870 static HRESULT WINAPI
HTMLImageElementFactory_create(IHTMLImageElementFactory
*iface
,
871 VARIANT width
, VARIANT height
, IHTMLImgElement
**img_elem
)
873 HTMLImageElementFactory
*This
= impl_from_IHTMLImageElementFactory(iface
);
874 HTMLDocumentNode
*doc
;
875 IHTMLImgElement
*img
;
877 nsIDOMHTMLElement
*nselem
;
881 static const PRUnichar imgW
[] = {'I','M','G',0};
883 TRACE("(%p)->(%s %s %p)\n", This
, debugstr_variant(&width
),
884 debugstr_variant(&height
), img_elem
);
886 if(!This
->window
|| !This
->window
->doc
) {
891 doc
= This
->window
->doc
;
895 hres
= create_nselem(doc
, imgW
, &nselem
);
899 hres
= HTMLElement_Create(doc
, (nsIDOMNode
*)nselem
, FALSE
, &elem
);
900 nsIDOMHTMLElement_Release(nselem
);
902 ERR("HTMLElement_Create failed\n");
906 hres
= IHTMLElement_QueryInterface(&elem
->IHTMLElement_iface
, &IID_IHTMLImgElement
,
908 IHTMLElement_Release(&elem
->IHTMLElement_iface
);
910 ERR("IHTMLElement_QueryInterface failed: 0x%08x\n", hres
);
914 l
= var_to_size(&width
);
916 IHTMLImgElement_put_width(img
, l
);
917 l
= var_to_size(&height
);
919 IHTMLImgElement_put_height(img
, l
);
925 static const IHTMLImageElementFactoryVtbl HTMLImageElementFactoryVtbl
= {
926 HTMLImageElementFactory_QueryInterface
,
927 HTMLImageElementFactory_AddRef
,
928 HTMLImageElementFactory_Release
,
929 HTMLImageElementFactory_GetTypeInfoCount
,
930 HTMLImageElementFactory_GetTypeInfo
,
931 HTMLImageElementFactory_GetIDsOfNames
,
932 HTMLImageElementFactory_Invoke
,
933 HTMLImageElementFactory_create
936 static inline HTMLImageElementFactory
*impl_from_DispatchEx(DispatchEx
*iface
)
938 return CONTAINING_RECORD(iface
, HTMLImageElementFactory
, dispex
);
941 static HRESULT
HTMLImageElementFactory_value(DispatchEx
*dispex
, LCID lcid
,
942 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
,
943 IServiceProvider
*caller
)
945 HTMLImageElementFactory
*This
= impl_from_DispatchEx(dispex
);
946 IHTMLImgElement
*img
;
947 VARIANT empty
, *width
, *height
;
949 int argc
= params
->cArgs
- params
->cNamedArgs
;
953 V_VT(&empty
) = VT_EMPTY
;
955 width
= argc
>= 1 ? params
->rgvarg
+ (params
->cArgs
- 1) : &empty
;
956 height
= argc
>= 2 ? params
->rgvarg
+ (params
->cArgs
- 2) : &empty
;
958 hres
= IHTMLImageElementFactory_create(&This
->IHTMLImageElementFactory_iface
, *width
, *height
,
963 V_VT(res
) = VT_DISPATCH
;
964 V_DISPATCH(res
) = (IDispatch
*)img
;
969 static const tid_t HTMLImageElementFactory_iface_tids
[] = {
970 IHTMLImageElementFactory_tid
,
974 static const dispex_static_data_vtbl_t HTMLImageElementFactory_dispex_vtbl
= {
975 HTMLImageElementFactory_value
,
981 static dispex_static_data_t HTMLImageElementFactory_dispex
= {
982 &HTMLImageElementFactory_dispex_vtbl
,
983 IHTMLImageElementFactory_tid
,
984 HTMLImageElementFactory_iface_tids
987 HRESULT
HTMLImageElementFactory_Create(HTMLInnerWindow
*window
, HTMLImageElementFactory
**ret_val
)
989 HTMLImageElementFactory
*ret
;
991 ret
= heap_alloc(sizeof(HTMLImageElementFactory
));
993 return E_OUTOFMEMORY
;
995 ret
->IHTMLImageElementFactory_iface
.lpVtbl
= &HTMLImageElementFactoryVtbl
;
997 ret
->window
= window
;
999 init_dispex(&ret
->dispex
, (IUnknown
*)&ret
->IHTMLImageElementFactory_iface
,
1000 &HTMLImageElementFactory_dispex
);