dmusic: Replace debugstr_DMUS_OBJECTDESC by a specific dump function to avoid debug...
[wine] / dlls / mshtml / htmlimg.c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include <stdarg.h>
20
21 #define COBJMACROS
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "ole2.h"
27
28 #include "wine/debug.h"
29
30 #include "mshtml_private.h"
31 #include "htmlevent.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
34
35 typedef struct {
36     HTMLElement element;
37
38     IHTMLImgElement IHTMLImgElement_iface;
39
40     nsIDOMHTMLImageElement *nsimg;
41 } HTMLImgElement;
42
43 static inline HTMLImgElement *impl_from_IHTMLImgElement(IHTMLImgElement *iface)
44 {
45     return CONTAINING_RECORD(iface, HTMLImgElement, IHTMLImgElement_iface);
46 }
47
48 static HRESULT WINAPI HTMLImgElement_QueryInterface(IHTMLImgElement *iface, REFIID riid, void **ppv)
49 {
50     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
51
52     return IHTMLDOMNode_QueryInterface(&This->element.node.IHTMLDOMNode_iface, riid, ppv);
53 }
54
55 static ULONG WINAPI HTMLImgElement_AddRef(IHTMLImgElement *iface)
56 {
57     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
58
59     return IHTMLDOMNode_AddRef(&This->element.node.IHTMLDOMNode_iface);
60 }
61
62 static ULONG WINAPI HTMLImgElement_Release(IHTMLImgElement *iface)
63 {
64     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
65
66     return IHTMLDOMNode_Release(&This->element.node.IHTMLDOMNode_iface);
67 }
68
69 static HRESULT WINAPI HTMLImgElement_GetTypeInfoCount(IHTMLImgElement *iface, UINT *pctinfo)
70 {
71     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
72     return IDispatchEx_GetTypeInfoCount(&This->element.node.dispex.IDispatchEx_iface, pctinfo);
73 }
74
75 static HRESULT WINAPI HTMLImgElement_GetTypeInfo(IHTMLImgElement *iface, UINT iTInfo,
76                                               LCID lcid, ITypeInfo **ppTInfo)
77 {
78     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
79     return IDispatchEx_GetTypeInfo(&This->element.node.dispex.IDispatchEx_iface, iTInfo, lcid,
80             ppTInfo);
81 }
82
83 static HRESULT WINAPI HTMLImgElement_GetIDsOfNames(IHTMLImgElement *iface, REFIID riid,
84                                                 LPOLESTR *rgszNames, UINT cNames,
85                                                 LCID lcid, DISPID *rgDispId)
86 {
87     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
88     return IDispatchEx_GetIDsOfNames(&This->element.node.dispex.IDispatchEx_iface, riid, rgszNames,
89             cNames, lcid, rgDispId);
90 }
91
92 static HRESULT WINAPI HTMLImgElement_Invoke(IHTMLImgElement *iface, DISPID dispIdMember,
93                             REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
94                             VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
95 {
96     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
97     return IDispatchEx_Invoke(&This->element.node.dispex.IDispatchEx_iface, dispIdMember, riid,
98             lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
99 }
100
101 static HRESULT WINAPI HTMLImgElement_put_isMap(IHTMLImgElement *iface, VARIANT_BOOL v)
102 {
103     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
104     FIXME("(%p)->(%x)\n", This, v);
105     return E_NOTIMPL;
106 }
107
108 static HRESULT WINAPI HTMLImgElement_get_isMap(IHTMLImgElement *iface, VARIANT_BOOL *p)
109 {
110     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
111     FIXME("(%p)->(%p)\n", This, p);
112     return E_NOTIMPL;
113 }
114
115 static HRESULT WINAPI HTMLImgElement_put_useMap(IHTMLImgElement *iface, BSTR v)
116 {
117     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
118     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
119     return E_NOTIMPL;
120 }
121
122 static HRESULT WINAPI HTMLImgElement_get_useMap(IHTMLImgElement *iface, BSTR *p)
123 {
124     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
125     FIXME("(%p)->(%p)\n", This, p);
126     return E_NOTIMPL;
127 }
128
129 static HRESULT WINAPI HTMLImgElement_get_mimeType(IHTMLImgElement *iface, BSTR *p)
130 {
131     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
132     FIXME("(%p)->(%p)\n", This, p);
133     return E_NOTIMPL;
134 }
135
136 static HRESULT WINAPI HTMLImgElement_get_fileSize(IHTMLImgElement *iface, BSTR *p)
137 {
138     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
139     FIXME("(%p)->(%p)\n", This, p);
140     return E_NOTIMPL;
141 }
142
143 static HRESULT WINAPI HTMLImgElement_get_fileCreatedDate(IHTMLImgElement *iface, BSTR *p)
144 {
145     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
146     FIXME("(%p)->(%p)\n", This, p);
147     return E_NOTIMPL;
148 }
149
150 static HRESULT WINAPI HTMLImgElement_get_fileModifiedDate(IHTMLImgElement *iface, BSTR *p)
151 {
152     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
153     FIXME("(%p)->(%p)\n", This, p);
154     return E_NOTIMPL;
155 }
156
157 static HRESULT WINAPI HTMLImgElement_get_fileUpdatedDate(IHTMLImgElement *iface, BSTR *p)
158 {
159     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
160     FIXME("(%p)->(%p)\n", This, p);
161     return E_NOTIMPL;
162 }
163
164 static HRESULT WINAPI HTMLImgElement_get_protocol(IHTMLImgElement *iface, BSTR *p)
165 {
166     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
167     FIXME("(%p)->(%p)\n", This, p);
168     return E_NOTIMPL;
169 }
170
171 static HRESULT WINAPI HTMLImgElement_get_href(IHTMLImgElement *iface, BSTR *p)
172 {
173     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
174     FIXME("(%p)->(%p)\n", This, p);
175     return E_NOTIMPL;
176 }
177
178 static HRESULT WINAPI HTMLImgElement_get_nameProp(IHTMLImgElement *iface, BSTR *p)
179 {
180     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
181     FIXME("(%p)->(%p)\n", This, p);
182     return E_NOTIMPL;
183 }
184
185 static HRESULT WINAPI HTMLImgElement_put_border(IHTMLImgElement *iface, VARIANT v)
186 {
187     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
188     FIXME("(%p)->()\n", This);
189     return E_NOTIMPL;
190 }
191
192 static HRESULT WINAPI HTMLImgElement_get_border(IHTMLImgElement *iface, VARIANT *p)
193 {
194     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
195     FIXME("(%p)->(%p)\n", This, p);
196     return E_NOTIMPL;
197 }
198
199 static HRESULT WINAPI HTMLImgElement_put_vspace(IHTMLImgElement *iface, LONG v)
200 {
201     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
202     FIXME("(%p)->(%d)\n", This, v);
203     return E_NOTIMPL;
204 }
205
206 static HRESULT WINAPI HTMLImgElement_get_vspace(IHTMLImgElement *iface, LONG *p)
207 {
208     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
209     FIXME("(%p)->(%p)\n", This, p);
210     return E_NOTIMPL;
211 }
212
213 static HRESULT WINAPI HTMLImgElement_put_hspace(IHTMLImgElement *iface, LONG v)
214 {
215     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
216     FIXME("(%p)->(%d)\n", This, v);
217     return E_NOTIMPL;
218 }
219
220 static HRESULT WINAPI HTMLImgElement_get_hspace(IHTMLImgElement *iface, LONG *p)
221 {
222     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
223     FIXME("(%p)->(%p)\n", This, p);
224     return E_NOTIMPL;
225 }
226
227 static HRESULT WINAPI HTMLImgElement_put_alt(IHTMLImgElement *iface, BSTR v)
228 {
229     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
230     nsAString alt_str;
231     nsresult nsres;
232
233     TRACE("(%p)->(%s)\n", This, debugstr_w(v));
234
235     nsAString_InitDepend(&alt_str, v);
236     nsres = nsIDOMHTMLImageElement_SetAlt(This->nsimg, &alt_str);
237     nsAString_Finish(&alt_str);
238     if(NS_FAILED(nsres))
239         ERR("SetAlt failed: %08x\n", nsres);
240
241     return S_OK;
242 }
243
244 static HRESULT WINAPI HTMLImgElement_get_alt(IHTMLImgElement *iface, BSTR *p)
245 {
246     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
247     nsAString alt_str;
248     nsresult nsres;
249
250     TRACE("(%p)->(%p)\n", This, p);
251
252     nsAString_Init(&alt_str, NULL);
253     nsres = nsIDOMHTMLImageElement_GetAlt(This->nsimg, &alt_str);
254     if(NS_SUCCEEDED(nsres)) {
255         const PRUnichar *alt;
256
257         nsAString_GetData(&alt_str, &alt);
258         *p = *alt ? SysAllocString(alt) : NULL;
259     }else {
260         ERR("GetAlt failed: %08x\n", nsres);
261     }
262     nsAString_Finish(&alt_str);
263
264     return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
265 }
266
267 static HRESULT WINAPI HTMLImgElement_put_src(IHTMLImgElement *iface, BSTR v)
268 {
269     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
270     nsAString src_str;
271     nsresult nsres;
272
273     TRACE("(%p)->(%s)\n", This, debugstr_w(v));
274
275     nsAString_InitDepend(&src_str, v);
276     nsres = nsIDOMHTMLImageElement_SetSrc(This->nsimg, &src_str);
277     nsAString_Finish(&src_str);
278     if(NS_FAILED(nsres))
279         ERR("SetSrc failed: %08x\n", nsres);
280
281     return NS_OK;
282 }
283
284 static HRESULT WINAPI HTMLImgElement_get_src(IHTMLImgElement *iface, BSTR *p)
285 {
286     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
287     const PRUnichar *src;
288     nsAString src_str;
289     nsresult nsres;
290     HRESULT hres = S_OK;
291
292     static const WCHAR blockedW[] = {'B','L','O','C','K','E','D',':',':',0};
293
294     TRACE("(%p)->(%p)\n", This, p);
295
296     nsAString_Init(&src_str, NULL);
297     nsres = nsIDOMHTMLImageElement_GetSrc(This->nsimg, &src_str);
298     if(NS_SUCCEEDED(nsres)) {
299         nsAString_GetData(&src_str, &src);
300
301         if(!strncmpiW(src, blockedW, sizeof(blockedW)/sizeof(WCHAR)-1)) {
302             TRACE("returning BLOCKED::\n");
303             *p = SysAllocString(blockedW);
304             if(!*p)
305                 hres = E_OUTOFMEMORY;
306         }else {
307             hres = nsuri_to_url(src, TRUE, p);
308         }
309     }else {
310         ERR("GetSrc failed: %08x\n", nsres);
311         hres = E_FAIL;
312     }
313
314     nsAString_Finish(&src_str);
315     return hres;
316 }
317
318 static HRESULT WINAPI HTMLImgElement_put_lowsrc(IHTMLImgElement *iface, BSTR v)
319 {
320     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
321     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
322     return E_NOTIMPL;
323 }
324
325 static HRESULT WINAPI HTMLImgElement_get_lowsrc(IHTMLImgElement *iface, BSTR *p)
326 {
327     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
328     FIXME("(%p)->(%p)\n", This, p);
329     return E_NOTIMPL;
330 }
331
332 static HRESULT WINAPI HTMLImgElement_put_vrml(IHTMLImgElement *iface, BSTR v)
333 {
334     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
335     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
336     return E_NOTIMPL;
337 }
338
339 static HRESULT WINAPI HTMLImgElement_get_vrml(IHTMLImgElement *iface, BSTR *p)
340 {
341     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
342     FIXME("(%p)->(%p)\n", This, p);
343     return E_NOTIMPL;
344 }
345
346 static HRESULT WINAPI HTMLImgElement_put_dynsrc(IHTMLImgElement *iface, BSTR v)
347 {
348     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
349     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
350     return E_NOTIMPL;
351 }
352
353 static HRESULT WINAPI HTMLImgElement_get_dynsrc(IHTMLImgElement *iface, BSTR *p)
354 {
355     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
356     FIXME("(%p)->(%p)\n", This, p);
357     return E_NOTIMPL;
358 }
359
360 static HRESULT WINAPI HTMLImgElement_get_readyState(IHTMLImgElement *iface, BSTR *p)
361 {
362     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
363     FIXME("(%p)->(%p)\n", This, p);
364     return E_NOTIMPL;
365 }
366
367 static HRESULT WINAPI HTMLImgElement_get_complete(IHTMLImgElement *iface, VARIANT_BOOL *p)
368 {
369     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
370     FIXME("(%p)->(%p)\n", This, p);
371     return E_NOTIMPL;
372 }
373
374 static HRESULT WINAPI HTMLImgElement_put_loop(IHTMLImgElement *iface, VARIANT v)
375 {
376     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
377     FIXME("(%p)->()\n", This);
378     return E_NOTIMPL;
379 }
380
381 static HRESULT WINAPI HTMLImgElement_get_loop(IHTMLImgElement *iface, VARIANT *p)
382 {
383     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
384     FIXME("(%p)->(%p)\n", This, p);
385     return E_NOTIMPL;
386 }
387
388 static HRESULT WINAPI HTMLImgElement_put_align(IHTMLImgElement *iface, BSTR v)
389 {
390     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
391     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
392     return E_NOTIMPL;
393 }
394
395 static HRESULT WINAPI HTMLImgElement_get_align(IHTMLImgElement *iface, BSTR *p)
396 {
397     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
398     FIXME("(%p)->(%p)\n", This, p);
399     return E_NOTIMPL;
400 }
401
402 static HRESULT WINAPI HTMLImgElement_put_onload(IHTMLImgElement *iface, VARIANT v)
403 {
404     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
405
406     TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
407
408     return set_node_event(&This->element.node, EVENTID_LOAD, &v);
409 }
410
411 static HRESULT WINAPI HTMLImgElement_get_onload(IHTMLImgElement *iface, VARIANT *p)
412 {
413     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
414
415     TRACE("(%p)->(%p)\n", This, p);
416
417     return get_node_event(&This->element.node, EVENTID_LOAD, p);
418 }
419
420 static HRESULT WINAPI HTMLImgElement_put_onerror(IHTMLImgElement *iface, VARIANT v)
421 {
422     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
423
424     TRACE("(%p)->()\n", This);
425
426     return set_node_event(&This->element.node, EVENTID_ERROR, &v);
427 }
428
429 static HRESULT WINAPI HTMLImgElement_get_onerror(IHTMLImgElement *iface, VARIANT *p)
430 {
431     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
432
433     TRACE("(%p)->(%p)\n", This, p);
434
435     return get_node_event(&This->element.node, EVENTID_ERROR, p);
436 }
437
438 static HRESULT WINAPI HTMLImgElement_put_onabort(IHTMLImgElement *iface, VARIANT v)
439 {
440     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
441     FIXME("(%p)->()\n", This);
442     return E_NOTIMPL;
443 }
444
445 static HRESULT WINAPI HTMLImgElement_get_onabort(IHTMLImgElement *iface, VARIANT *p)
446 {
447     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
448     FIXME("(%p)->(%p)\n", This, p);
449     return E_NOTIMPL;
450 }
451
452 static HRESULT WINAPI HTMLImgElement_put_name(IHTMLImgElement *iface, BSTR v)
453 {
454     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
455     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
456     return E_NOTIMPL;
457 }
458
459 static HRESULT WINAPI HTMLImgElement_get_name(IHTMLImgElement *iface, BSTR *p)
460 {
461     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
462     nsAString strName;
463     nsresult nsres;
464
465     TRACE("(%p)->(%p)\n", This, p);
466
467     nsAString_Init(&strName, NULL);
468     nsres = nsIDOMHTMLImageElement_GetName(This->nsimg, &strName);
469     if(NS_SUCCEEDED(nsres)) {
470         const PRUnichar *str;
471
472         nsAString_GetData(&strName, &str);
473         *p = *str ? SysAllocString(str) : NULL;
474     }else {
475         ERR("GetName failed: %08x\n", nsres);
476     }
477     nsAString_Finish(&strName);
478
479     return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
480 }
481
482 static HRESULT WINAPI HTMLImgElement_put_width(IHTMLImgElement *iface, LONG v)
483 {
484     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
485     nsresult nsres;
486
487     TRACE("(%p)->(%d)\n", This, v);
488
489     nsres = nsIDOMHTMLImageElement_SetWidth(This->nsimg, v);
490     if(NS_FAILED(nsres)) {
491         ERR("SetWidth failed: %08x\n", nsres);
492         return E_FAIL;
493     }
494
495     return S_OK;
496 }
497
498 static HRESULT WINAPI HTMLImgElement_get_width(IHTMLImgElement *iface, LONG *p)
499 {
500     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
501     PRUint32 width;
502     nsresult nsres;
503
504     TRACE("(%p)->(%p)\n", This, p);
505
506     nsres = nsIDOMHTMLImageElement_GetWidth(This->nsimg, &width);
507     if(NS_FAILED(nsres)) {
508         ERR("GetWidth failed: %08x\n", nsres);
509         return E_FAIL;
510     }
511
512     *p = width;
513     return S_OK;
514 }
515
516 static HRESULT WINAPI HTMLImgElement_put_height(IHTMLImgElement *iface, LONG v)
517 {
518     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
519     nsresult nsres;
520
521     TRACE("(%p)->(%d)\n", This, v);
522
523     nsres = nsIDOMHTMLImageElement_SetHeight(This->nsimg, v);
524     if(NS_FAILED(nsres)) {
525         ERR("SetHeight failed: %08x\n", nsres);
526         return E_FAIL;
527     }
528
529     return S_OK;
530 }
531
532 static HRESULT WINAPI HTMLImgElement_get_height(IHTMLImgElement *iface, LONG *p)
533 {
534     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
535     PRUint32 height;
536     nsresult nsres;
537
538     TRACE("(%p)->(%p)\n", This, p);
539
540     nsres = nsIDOMHTMLImageElement_GetHeight(This->nsimg, &height);
541     if(NS_FAILED(nsres)) {
542         ERR("GetHeight failed: %08x\n", nsres);
543         return E_FAIL;
544     }
545
546     *p = height;
547     return S_OK;
548 }
549
550 static HRESULT WINAPI HTMLImgElement_put_start(IHTMLImgElement *iface, BSTR v)
551 {
552     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
553     FIXME("(%p)->()\n", This);
554     return E_NOTIMPL;
555 }
556
557 static HRESULT WINAPI HTMLImgElement_get_start(IHTMLImgElement *iface, BSTR *p)
558 {
559     HTMLImgElement *This = impl_from_IHTMLImgElement(iface);
560     FIXME("(%p)->(%p)\n", This, p);
561     return E_NOTIMPL;
562 }
563
564 static const IHTMLImgElementVtbl HTMLImgElementVtbl = {
565     HTMLImgElement_QueryInterface,
566     HTMLImgElement_AddRef,
567     HTMLImgElement_Release,
568     HTMLImgElement_GetTypeInfoCount,
569     HTMLImgElement_GetTypeInfo,
570     HTMLImgElement_GetIDsOfNames,
571     HTMLImgElement_Invoke,
572     HTMLImgElement_put_isMap,
573     HTMLImgElement_get_isMap,
574     HTMLImgElement_put_useMap,
575     HTMLImgElement_get_useMap,
576     HTMLImgElement_get_mimeType,
577     HTMLImgElement_get_fileSize,
578     HTMLImgElement_get_fileCreatedDate,
579     HTMLImgElement_get_fileModifiedDate,
580     HTMLImgElement_get_fileUpdatedDate,
581     HTMLImgElement_get_protocol,
582     HTMLImgElement_get_href,
583     HTMLImgElement_get_nameProp,
584     HTMLImgElement_put_border,
585     HTMLImgElement_get_border,
586     HTMLImgElement_put_vspace,
587     HTMLImgElement_get_vspace,
588     HTMLImgElement_put_hspace,
589     HTMLImgElement_get_hspace,
590     HTMLImgElement_put_alt,
591     HTMLImgElement_get_alt,
592     HTMLImgElement_put_src,
593     HTMLImgElement_get_src,
594     HTMLImgElement_put_lowsrc,
595     HTMLImgElement_get_lowsrc,
596     HTMLImgElement_put_vrml,
597     HTMLImgElement_get_vrml,
598     HTMLImgElement_put_dynsrc,
599     HTMLImgElement_get_dynsrc,
600     HTMLImgElement_get_readyState,
601     HTMLImgElement_get_complete,
602     HTMLImgElement_put_loop,
603     HTMLImgElement_get_loop,
604     HTMLImgElement_put_align,
605     HTMLImgElement_get_align,
606     HTMLImgElement_put_onload,
607     HTMLImgElement_get_onload,
608     HTMLImgElement_put_onerror,
609     HTMLImgElement_get_onerror,
610     HTMLImgElement_put_onabort,
611     HTMLImgElement_get_onabort,
612     HTMLImgElement_put_name,
613     HTMLImgElement_get_name,
614     HTMLImgElement_put_width,
615     HTMLImgElement_get_width,
616     HTMLImgElement_put_height,
617     HTMLImgElement_get_height,
618     HTMLImgElement_put_start,
619     HTMLImgElement_get_start
620 };
621
622 static inline HTMLImgElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
623 {
624     return CONTAINING_RECORD(iface, HTMLImgElement, element.node);
625 }
626
627 static HRESULT HTMLImgElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
628 {
629     HTMLImgElement *This = impl_from_HTMLDOMNode(iface);
630
631     *ppv = NULL;
632
633     if(IsEqualGUID(&IID_IHTMLImgElement, riid)) {
634         TRACE("(%p)->(IID_IHTMLImgElement %p)\n", This, ppv);
635         *ppv = &This->IHTMLImgElement_iface;
636     }else {
637         return HTMLElement_QI(&This->element.node, riid, ppv);
638     }
639
640     IUnknown_AddRef((IUnknown*)*ppv);
641     return S_OK;
642 }
643
644 static void HTMLImgElement_destructor(HTMLDOMNode *iface)
645 {
646     HTMLImgElement *This = impl_from_HTMLDOMNode(iface);
647
648     if(This->nsimg)
649         nsIDOMHTMLImageElement_Release(This->nsimg);
650
651     HTMLElement_destructor(&This->element.node);
652 }
653
654 static HRESULT HTMLImgElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
655 {
656     HTMLImgElement *This = impl_from_HTMLDOMNode(iface);
657
658     return IHTMLImgElement_get_readyState(&This->IHTMLImgElement_iface, p);
659 }
660
661 static const NodeImplVtbl HTMLImgElementImplVtbl = {
662     HTMLImgElement_QI,
663     HTMLImgElement_destructor,
664     HTMLElement_clone,
665     HTMLElement_get_attr_col,
666     NULL,
667     NULL,
668     NULL,
669     NULL,
670     NULL,
671     NULL,
672     HTMLImgElement_get_readystate
673 };
674
675 static const tid_t HTMLImgElement_iface_tids[] = {
676     HTMLELEMENT_TIDS,
677     IHTMLImgElement_tid,
678     0
679 };
680 static dispex_static_data_t HTMLImgElement_dispex = {
681     NULL,
682     DispHTMLImg_tid,
683     NULL,
684     HTMLImgElement_iface_tids
685 };
686
687 HRESULT HTMLImgElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLElement **elem)
688 {
689     HTMLImgElement *ret;
690     nsresult nsres;
691
692     ret = heap_alloc_zero(sizeof(HTMLImgElement));
693     if(!ret)
694         return E_OUTOFMEMORY;
695
696     ret->IHTMLImgElement_iface.lpVtbl = &HTMLImgElementVtbl;
697     ret->element.node.vtbl = &HTMLImgElementImplVtbl;
698
699     nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLImageElement, (void**)&ret->nsimg);
700     if(NS_FAILED(nsres)) {
701         ERR("Could not get nsIDOMHTMLImageElement: %08x\n", nsres);
702         heap_free(ret);
703         return E_FAIL;
704     }
705
706     HTMLElement_Init(&ret->element, doc, nselem, &HTMLImgElement_dispex);
707
708     *elem = &ret->element;
709     return S_OK;
710 }
711
712 static inline HTMLImageElementFactory *impl_from_IHTMLImageElementFactory(IHTMLImageElementFactory *iface)
713 {
714     return CONTAINING_RECORD(iface, HTMLImageElementFactory, IHTMLImageElementFactory_iface);
715 }
716
717 static HRESULT WINAPI HTMLImageElementFactory_QueryInterface(IHTMLImageElementFactory *iface,
718         REFIID riid, void **ppv)
719 {
720     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
721
722     *ppv = NULL;
723
724     if(IsEqualGUID(&IID_IUnknown, riid)) {
725         TRACE("(%p)->(IID_Unknown %p)\n", This, ppv);
726         *ppv = &This->IHTMLImageElementFactory_iface;
727     }else if(IsEqualGUID(&IID_IHTMLImageElementFactory, riid)) {
728         TRACE("(%p)->(IID_IHTMLImageElementFactory %p)\n", This, ppv);
729         *ppv = &This->IHTMLImageElementFactory_iface;
730     }else if(dispex_query_interface(&This->dispex, riid, ppv))
731         return *ppv ? S_OK : E_NOINTERFACE;
732
733     if(*ppv) {
734         IUnknown_AddRef((IUnknown*)*ppv);
735         return S_OK;
736     }
737
738     WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
739     return E_NOINTERFACE;
740 }
741
742 static ULONG WINAPI HTMLImageElementFactory_AddRef(IHTMLImageElementFactory *iface)
743 {
744     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
745     LONG ref = InterlockedIncrement(&This->ref);
746
747     TRACE("(%p) ref=%d\n", This, ref);
748
749     return ref;
750 }
751
752 static ULONG WINAPI HTMLImageElementFactory_Release(IHTMLImageElementFactory *iface)
753 {
754     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
755     LONG ref = InterlockedDecrement(&This->ref);
756
757     TRACE("(%p) ref=%d\n", This, ref);
758
759     if(!ref)
760         heap_free(This);
761
762     return ref;
763 }
764
765 static HRESULT WINAPI HTMLImageElementFactory_GetTypeInfoCount(IHTMLImageElementFactory *iface,
766         UINT *pctinfo)
767 {
768     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
769     FIXME("(%p)->(%p)\n", This, pctinfo);
770     return E_NOTIMPL;
771 }
772
773 static HRESULT WINAPI HTMLImageElementFactory_GetTypeInfo(IHTMLImageElementFactory *iface,
774         UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)
775 {
776     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
777     FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
778     return E_NOTIMPL;
779 }
780
781 static HRESULT WINAPI HTMLImageElementFactory_GetIDsOfNames(IHTMLImageElementFactory *iface,
782         REFIID riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid,
783         DISPID *rgDispId)
784 {
785     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
786     FIXME("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames,
787             cNames, lcid, rgDispId);
788     return E_NOTIMPL;
789 }
790
791 static HRESULT WINAPI HTMLImageElementFactory_Invoke(IHTMLImageElementFactory *iface,
792         DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags,
793         DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo,
794         UINT *puArgErr)
795 {
796     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
797     FIXME("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
798             lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
799     return E_NOTIMPL;
800 }
801
802 static LONG var_to_size(const VARIANT *v)
803 {
804     switch(V_VT(v)) {
805     case VT_EMPTY:
806         return 0;
807     case VT_I4:
808         return V_I4(v);
809     case VT_BSTR: {
810         LONG ret;
811         HRESULT hres;
812
813         hres = VarI4FromStr(V_BSTR(v), 0, 0, &ret);
814         if(FAILED(hres)) {
815             FIXME("VarI4FromStr failed: %08x\n", hres);
816             return 0;
817         }
818         return ret;
819     }
820     default:
821         FIXME("unsupported size %s\n", debugstr_variant(v));
822     }
823     return 0;
824 }
825
826 static HRESULT WINAPI HTMLImageElementFactory_create(IHTMLImageElementFactory *iface,
827         VARIANT width, VARIANT height, IHTMLImgElement **img_elem)
828 {
829     HTMLImageElementFactory *This = impl_from_IHTMLImageElementFactory(iface);
830     IHTMLImgElement *img;
831     HTMLElement *elem;
832     nsIDOMHTMLElement *nselem;
833     LONG l;
834     HRESULT hres;
835
836     static const PRUnichar imgW[] = {'I','M','G',0};
837
838     TRACE("(%p)->(%s %s %p)\n", This, debugstr_variant(&width),
839             debugstr_variant(&height), img_elem);
840
841     if(!This->window || !This->window->doc) {
842         WARN("NULL doc\n");
843         return E_UNEXPECTED;
844     }
845
846     *img_elem = NULL;
847
848     hres = create_nselem(This->window->doc, imgW, &nselem);
849     if(FAILED(hres))
850         return hres;
851
852     hres = HTMLElement_Create(This->window->doc, (nsIDOMNode*)nselem, FALSE, &elem);
853     nsIDOMHTMLElement_Release(nselem);
854     if(FAILED(hres)) {
855         ERR("HTMLElement_Create failed\n");
856         return hres;
857     }
858
859     hres = IHTMLElement_QueryInterface(&elem->IHTMLElement_iface, &IID_IHTMLImgElement,
860             (void**)&img);
861     if(FAILED(hres)) {
862         ERR("IHTMLElement_QueryInterface failed: 0x%08x\n", hres);
863         return hres;
864     }
865
866     l = var_to_size(&width);
867     if(l)
868         IHTMLImgElement_put_width(img, l);
869     l = var_to_size(&height);
870     if(l)
871         IHTMLImgElement_put_height(img, l);
872
873     *img_elem = img;
874     return S_OK;
875 }
876
877 static const IHTMLImageElementFactoryVtbl HTMLImageElementFactoryVtbl = {
878     HTMLImageElementFactory_QueryInterface,
879     HTMLImageElementFactory_AddRef,
880     HTMLImageElementFactory_Release,
881     HTMLImageElementFactory_GetTypeInfoCount,
882     HTMLImageElementFactory_GetTypeInfo,
883     HTMLImageElementFactory_GetIDsOfNames,
884     HTMLImageElementFactory_Invoke,
885     HTMLImageElementFactory_create
886 };
887
888 static inline HTMLImageElementFactory *impl_from_DispatchEx(DispatchEx *iface)
889 {
890     return CONTAINING_RECORD(iface, HTMLImageElementFactory, dispex);
891 }
892
893 static HRESULT HTMLImageElementFactory_value(DispatchEx *dispex, LCID lcid,
894         WORD flags, DISPPARAMS *params, VARIANT *res, EXCEPINFO *ei,
895         IServiceProvider *caller)
896 {
897     HTMLImageElementFactory *This = impl_from_DispatchEx(dispex);
898     IHTMLImgElement *img;
899     VARIANT empty, *width, *height;
900     HRESULT hres;
901     int argc = params->cArgs - params->cNamedArgs;
902
903     V_VT(res) = VT_NULL;
904
905     V_VT(&empty) = VT_EMPTY;
906
907     width = argc >= 1 ? params->rgvarg + (params->cArgs - 1) : &empty;
908     height = argc >= 2 ? params->rgvarg + (params->cArgs - 2) : &empty;
909
910     hres = IHTMLImageElementFactory_create(&This->IHTMLImageElementFactory_iface, *width, *height,
911             &img);
912     if(FAILED(hres))
913         return hres;
914
915     V_VT(res) = VT_DISPATCH;
916     V_DISPATCH(res) = (IDispatch*)img;
917
918     return S_OK;
919 }
920
921 static const tid_t HTMLImageElementFactory_iface_tids[] = {
922     IHTMLImageElementFactory_tid,
923     0
924 };
925
926 static const dispex_static_data_vtbl_t HTMLImageElementFactory_dispex_vtbl = {
927     HTMLImageElementFactory_value,
928     NULL,
929     NULL,
930     NULL
931 };
932
933 static dispex_static_data_t HTMLImageElementFactory_dispex = {
934     &HTMLImageElementFactory_dispex_vtbl,
935     IHTMLImageElementFactory_tid,
936     NULL,
937     HTMLImageElementFactory_iface_tids
938 };
939
940 HTMLImageElementFactory *HTMLImageElementFactory_Create(HTMLWindow *window)
941 {
942     HTMLImageElementFactory *ret;
943
944     ret = heap_alloc(sizeof(HTMLImageElementFactory));
945
946     ret->IHTMLImageElementFactory_iface.lpVtbl = &HTMLImageElementFactoryVtbl;
947     ret->ref = 1;
948     ret->window = window;
949
950     init_dispex(&ret->dispex, (IUnknown*)&ret->IHTMLImageElementFactory_iface,
951             &HTMLImageElementFactory_dispex);
952
953     return ret;
954 }