2 * Copyright 2006 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"
33 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
36 HTMLTextContainer textcont
;
38 IHTMLBodyElement IHTMLBodyElement_iface
;
40 ConnectionPoint cp_propnotif
;
42 nsIDOMHTMLBodyElement
*nsbody
;
45 static const WCHAR aquaW
[] = {'a','q','u','a',0};
46 static const WCHAR blackW
[] = {'b','l','a','c','k',0};
47 static const WCHAR blueW
[] = {'b','l','u','e',0};
48 static const WCHAR fuchsiaW
[] = {'f','u','s','h','s','i','a',0};
49 static const WCHAR grayW
[] = {'g','r','a','y',0};
50 static const WCHAR greenW
[] = {'g','r','e','e','n',0};
51 static const WCHAR limeW
[] = {'l','i','m','e',0};
52 static const WCHAR maroonW
[] = {'m','a','r','o','o','n',0};
53 static const WCHAR navyW
[] = {'n','a','v','y',0};
54 static const WCHAR oliveW
[] = {'o','l','i','v','e',0};
55 static const WCHAR purpleW
[] = {'p','u','r','p','l','e',0};
56 static const WCHAR redW
[] = {'r','e','d',0};
57 static const WCHAR silverW
[] = {'s','i','l','v','e','r',0};
58 static const WCHAR tealW
[] = {'t','e','a','l',0};
59 static const WCHAR whiteW
[] = {'w','h','i','t','e',0};
60 static const WCHAR yellowW
[] = {'y','e','l','l','o','w',0};
84 static int comp_value(const WCHAR
*ptr
, int dpc
)
95 else if(isdigitW(ch
= *ptr
++))
96 ret
= ret
*16 + (ch
-'0');
97 else if('a' <= ch
&& ch
<= 'f')
98 ret
= ret
*16 + (ch
-'a') + 10;
99 else if('A' <= ch
&& ch
<= 'F')
100 ret
= ret
*16 + (ch
-'A') + 10;
108 /* Based on Gecko NS_LooseHexToRGB */
109 static int loose_hex_to_rgb(const WCHAR
*hex
)
121 dpc
= min(len
/3 + (len
%3 ? 1 : 0), 4);
122 return (comp_value(hex
, dpc
) << 16)
123 | (comp_value(hex
+dpc
, dpc
) << 8)
124 | comp_value(hex
+2*dpc
, dpc
);
127 static HRESULT
nscolor_to_str(LPCWSTR color
, BSTR
*ret
)
131 static const WCHAR formatW
[] = {'#','%','0','2','x','%','0','2','x','%','0','2','x',0};
133 if(!color
|| !*color
) {
139 for(i
=0; i
< sizeof(keyword_table
)/sizeof(keyword_table
[0]); i
++) {
140 if(!strcmpiW(color
, keyword_table
[i
].keyword
))
141 rgb
= keyword_table
[i
].rgb
;
145 rgb
= loose_hex_to_rgb(color
);
147 *ret
= SysAllocStringLen(NULL
, 7);
149 return E_OUTOFMEMORY
;
151 sprintfW(*ret
, formatW
, rgb
>>16, (rgb
>>8)&0xff, rgb
&0xff);
153 TRACE("%s -> %s\n", debugstr_w(color
), debugstr_w(*ret
));
157 static BOOL
variant_to_nscolor(const VARIANT
*v
, nsAString
*nsstr
)
161 nsAString_Init(nsstr
, V_BSTR(v
));
166 static const WCHAR formatW
[] = {'#','%','x',0};
168 wsprintfW(buf
, formatW
, V_I4(v
));
169 nsAString_Init(nsstr
, buf
);
174 FIXME("invalid vt=%d\n", V_VT(v
));
181 static void nscolor_to_variant(const nsAString
*nsstr
, VARIANT
*p
)
183 const PRUnichar
*color
;
185 nsAString_GetData(nsstr
, &color
);
189 V_I4(p
) = strtolW(color
+1, NULL
, 16);
192 V_BSTR(p
) = SysAllocString(color
);
196 static inline HTMLBodyElement
*impl_from_IHTMLBodyElement(IHTMLBodyElement
*iface
)
198 return CONTAINING_RECORD(iface
, HTMLBodyElement
, IHTMLBodyElement_iface
);
201 static HRESULT WINAPI
HTMLBodyElement_QueryInterface(IHTMLBodyElement
*iface
,
202 REFIID riid
, void **ppv
)
204 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
206 return IHTMLDOMNode_QueryInterface(&This
->textcont
.element
.node
.IHTMLDOMNode_iface
, riid
, ppv
);
209 static ULONG WINAPI
HTMLBodyElement_AddRef(IHTMLBodyElement
*iface
)
211 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
213 return IHTMLDOMNode_AddRef(&This
->textcont
.element
.node
.IHTMLDOMNode_iface
);
216 static ULONG WINAPI
HTMLBodyElement_Release(IHTMLBodyElement
*iface
)
218 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
220 return IHTMLDOMNode_Release(&This
->textcont
.element
.node
.IHTMLDOMNode_iface
);
223 static HRESULT WINAPI
HTMLBodyElement_GetTypeInfoCount(IHTMLBodyElement
*iface
, UINT
*pctinfo
)
225 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
226 return IDispatchEx_GetTypeInfoCount(&This
->textcont
.element
.node
.dispex
.IDispatchEx_iface
,
230 static HRESULT WINAPI
HTMLBodyElement_GetTypeInfo(IHTMLBodyElement
*iface
, UINT iTInfo
,
231 LCID lcid
, ITypeInfo
**ppTInfo
)
233 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
234 return IDispatchEx_GetTypeInfo(&This
->textcont
.element
.node
.dispex
.IDispatchEx_iface
, iTInfo
,
238 static HRESULT WINAPI
HTMLBodyElement_GetIDsOfNames(IHTMLBodyElement
*iface
, REFIID riid
,
239 LPOLESTR
*rgszNames
, UINT cNames
,
240 LCID lcid
, DISPID
*rgDispId
)
242 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
243 return IDispatchEx_GetIDsOfNames(&This
->textcont
.element
.node
.dispex
.IDispatchEx_iface
, riid
,
244 rgszNames
, cNames
, lcid
, rgDispId
);
247 static HRESULT WINAPI
HTMLBodyElement_Invoke(IHTMLBodyElement
*iface
, DISPID dispIdMember
,
248 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
249 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
251 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
252 return IDispatchEx_Invoke(&This
->textcont
.element
.node
.dispex
.IDispatchEx_iface
, dispIdMember
,
253 riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
256 static HRESULT WINAPI
HTMLBodyElement_put_background(IHTMLBodyElement
*iface
, BSTR v
)
258 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
262 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
264 nsAString_InitDepend(&nsstr
, v
);
265 nsres
= nsIDOMHTMLBodyElement_SetBackground(This
->nsbody
, &nsstr
);
266 nsAString_Finish(&nsstr
);
273 static HRESULT WINAPI
HTMLBodyElement_get_background(IHTMLBodyElement
*iface
, BSTR
*p
)
275 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
276 nsAString background_str
;
279 TRACE("(%p)->(%p)\n", This
, p
);
281 nsAString_Init(&background_str
, NULL
);
283 nsres
= nsIDOMHTMLBodyElement_GetBackground(This
->nsbody
, &background_str
);
284 if(NS_SUCCEEDED(nsres
)) {
285 const PRUnichar
*background
;
286 nsAString_GetData(&background_str
, &background
);
287 *p
= *background
? SysAllocString(background
) : NULL
;
289 ERR("GetBackground failed: %08x\n", nsres
);
293 nsAString_Finish(&background_str
);
295 TRACE("*p = %s\n", debugstr_w(*p
));
299 static HRESULT WINAPI
HTMLBodyElement_put_bgProperties(IHTMLBodyElement
*iface
, BSTR v
)
301 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
302 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
306 static HRESULT WINAPI
HTMLBodyElement_get_bgProperties(IHTMLBodyElement
*iface
, BSTR
*p
)
308 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
309 FIXME("(%p)->(%p)\n", This
, p
);
313 static HRESULT WINAPI
HTMLBodyElement_put_leftMargin(IHTMLBodyElement
*iface
, VARIANT v
)
315 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
316 FIXME("(%p)->()\n", This
);
320 static HRESULT WINAPI
HTMLBodyElement_get_leftMargin(IHTMLBodyElement
*iface
, VARIANT
*p
)
322 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
323 FIXME("(%p)->(%p)\n", This
, p
);
327 static HRESULT WINAPI
HTMLBodyElement_put_topMargin(IHTMLBodyElement
*iface
, VARIANT v
)
329 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
330 FIXME("(%p)->()\n", This
);
334 static HRESULT WINAPI
HTMLBodyElement_get_topMargin(IHTMLBodyElement
*iface
, VARIANT
*p
)
336 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
337 FIXME("(%p)->(%p)\n", This
, p
);
341 static HRESULT WINAPI
HTMLBodyElement_put_rightMargin(IHTMLBodyElement
*iface
, VARIANT v
)
343 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
344 FIXME("(%p)->()\n", This
);
348 static HRESULT WINAPI
HTMLBodyElement_get_rightMargin(IHTMLBodyElement
*iface
, VARIANT
*p
)
350 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
351 FIXME("(%p)->(%p)\n", This
, p
);
355 static HRESULT WINAPI
HTMLBodyElement_put_bottomMargin(IHTMLBodyElement
*iface
, VARIANT v
)
357 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
358 FIXME("(%p)->()\n", This
);
362 static HRESULT WINAPI
HTMLBodyElement_get_bottomMargin(IHTMLBodyElement
*iface
, VARIANT
*p
)
364 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
365 FIXME("(%p)->(%p)\n", This
, p
);
369 static HRESULT WINAPI
HTMLBodyElement_put_noWrap(IHTMLBodyElement
*iface
, VARIANT_BOOL v
)
371 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
372 FIXME("(%p)->(%x)\n", This
, v
);
376 static HRESULT WINAPI
HTMLBodyElement_get_noWrap(IHTMLBodyElement
*iface
, VARIANT_BOOL
*p
)
378 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
379 FIXME("(%p)->(%p)\n", This
, p
);
383 static HRESULT WINAPI
HTMLBodyElement_put_bgColor(IHTMLBodyElement
*iface
, VARIANT v
)
385 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
389 TRACE("(%p)->()\n", This
);
391 if(!variant_to_nscolor(&v
, &strColor
))
394 nsres
= nsIDOMHTMLBodyElement_SetBgColor(This
->nsbody
, &strColor
);
395 nsAString_Finish(&strColor
);
397 ERR("SetBgColor failed: %08x\n", nsres
);
402 static HRESULT WINAPI
HTMLBodyElement_get_bgColor(IHTMLBodyElement
*iface
, VARIANT
*p
)
404 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
409 TRACE("(%p)->(%p)\n", This
, p
);
411 nsAString_Init(&strColor
, NULL
);
412 nsres
= nsIDOMHTMLBodyElement_GetBgColor(This
->nsbody
, &strColor
);
413 if(NS_SUCCEEDED(nsres
)) {
414 const PRUnichar
*color
;
416 nsAString_GetData(&strColor
, &color
);
418 hres
= nscolor_to_str(color
, &V_BSTR(p
));
420 ERR("SetBgColor failed: %08x\n", nsres
);
424 nsAString_Finish(&strColor
);
428 static HRESULT WINAPI
HTMLBodyElement_put_text(IHTMLBodyElement
*iface
, VARIANT v
)
430 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
434 TRACE("(%p)->(v%d)\n", This
, V_VT(&v
));
436 if(!variant_to_nscolor(&v
, &text
))
439 nsres
= nsIDOMHTMLBodyElement_SetText(This
->nsbody
, &text
);
440 nsAString_Finish(&text
);
441 if(NS_FAILED(nsres
)) {
442 ERR("SetText failed: %08x\n", nsres
);
449 static HRESULT WINAPI
HTMLBodyElement_get_text(IHTMLBodyElement
*iface
, VARIANT
*p
)
451 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
456 TRACE("(%p)->(%p)\n", This
, p
);
458 nsAString_Init(&text
, NULL
);
459 nsres
= nsIDOMHTMLBodyElement_GetText(This
->nsbody
, &text
);
460 if(NS_SUCCEEDED(nsres
)) {
461 const PRUnichar
*color
;
463 nsAString_GetData(&text
, &color
);
465 hres
= nscolor_to_str(color
, &V_BSTR(p
));
467 ERR("GetText failed: %08x\n", nsres
);
471 nsAString_Finish(&text
);
476 static HRESULT WINAPI
HTMLBodyElement_put_link(IHTMLBodyElement
*iface
, VARIANT v
)
478 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
482 TRACE("(%p)->(v%d)\n", This
, V_VT(&v
));
484 if(!variant_to_nscolor(&v
, &link_str
))
487 nsres
= nsIDOMHTMLBodyElement_SetLink(This
->nsbody
, &link_str
);
488 nsAString_Finish(&link_str
);
490 ERR("SetLink failed: %08x\n", nsres
);
495 static HRESULT WINAPI
HTMLBodyElement_get_link(IHTMLBodyElement
*iface
, VARIANT
*p
)
497 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
501 TRACE("(%p)->(%p)\n", This
, p
);
503 nsAString_Init(&link_str
, NULL
);
504 nsres
= nsIDOMHTMLBodyElement_GetLink(This
->nsbody
, &link_str
);
506 ERR("GetLink failed: %08x\n", nsres
);
508 nscolor_to_variant(&link_str
, p
);
509 nsAString_Finish(&link_str
);
514 static HRESULT WINAPI
HTMLBodyElement_put_vLink(IHTMLBodyElement
*iface
, VARIANT v
)
516 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
520 TRACE("(%p)->(v%d)\n", This
, V_VT(&v
));
522 if(!variant_to_nscolor(&v
, &vlink_str
))
525 nsres
= nsIDOMHTMLBodyElement_SetVLink(This
->nsbody
, &vlink_str
);
526 nsAString_Finish(&vlink_str
);
528 ERR("SetLink failed: %08x\n", nsres
);
533 static HRESULT WINAPI
HTMLBodyElement_get_vLink(IHTMLBodyElement
*iface
, VARIANT
*p
)
535 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
539 TRACE("(%p)->(%p)\n", This
, p
);
541 nsAString_Init(&vlink_str
, NULL
);
542 nsres
= nsIDOMHTMLBodyElement_GetVLink(This
->nsbody
, &vlink_str
);
544 ERR("GetLink failed: %08x\n", nsres
);
546 nscolor_to_variant(&vlink_str
, p
);
547 nsAString_Finish(&vlink_str
);
552 static HRESULT WINAPI
HTMLBodyElement_put_aLink(IHTMLBodyElement
*iface
, VARIANT v
)
554 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
558 TRACE("(%p)->(v%d)\n", This
, V_VT(&v
));
560 if(!variant_to_nscolor(&v
, &alink_str
))
563 nsres
= nsIDOMHTMLBodyElement_SetALink(This
->nsbody
, &alink_str
);
564 nsAString_Finish(&alink_str
);
566 ERR("SetALink failed: %08x\n", nsres
);
571 static HRESULT WINAPI
HTMLBodyElement_get_aLink(IHTMLBodyElement
*iface
, VARIANT
*p
)
573 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
577 TRACE("(%p)->(%p)\n", This
, p
);
579 nsAString_Init(&alink_str
, NULL
);
580 nsres
= nsIDOMHTMLBodyElement_GetALink(This
->nsbody
, &alink_str
);
582 ERR("GetALink failed: %08x\n", nsres
);
584 nscolor_to_variant(&alink_str
, p
);
585 nsAString_Finish(&alink_str
);
590 static HRESULT WINAPI
HTMLBodyElement_put_onload(IHTMLBodyElement
*iface
, VARIANT v
)
592 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
593 FIXME("(%p)->()\n", This
);
597 static HRESULT WINAPI
HTMLBodyElement_get_onload(IHTMLBodyElement
*iface
, VARIANT
*p
)
599 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
600 FIXME("(%p)->(%p)\n", This
, p
);
604 static HRESULT WINAPI
HTMLBodyElement_put_onunload(IHTMLBodyElement
*iface
, VARIANT v
)
606 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
607 FIXME("(%p)->()\n", This
);
611 static HRESULT WINAPI
HTMLBodyElement_get_onunload(IHTMLBodyElement
*iface
, VARIANT
*p
)
613 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
614 FIXME("(%p)->(%p)\n", This
, p
);
618 static HRESULT WINAPI
HTMLBodyElement_put_scroll(IHTMLBodyElement
*iface
, BSTR v
)
620 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
621 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
625 static HRESULT WINAPI
HTMLBodyElement_get_scroll(IHTMLBodyElement
*iface
, BSTR
*p
)
627 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
628 FIXME("(%p)->(%p)\n", This
, p
);
632 static HRESULT WINAPI
HTMLBodyElement_put_onselect(IHTMLBodyElement
*iface
, VARIANT v
)
634 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
635 FIXME("(%p)->()\n", This
);
639 static HRESULT WINAPI
HTMLBodyElement_get_onselect(IHTMLBodyElement
*iface
, VARIANT
*p
)
641 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
642 FIXME("(%p)->(%p)\n", This
, p
);
646 static HRESULT WINAPI
HTMLBodyElement_put_onbeforeunload(IHTMLBodyElement
*iface
, VARIANT v
)
648 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
649 FIXME("(%p)->()\n", This
);
653 static HRESULT WINAPI
HTMLBodyElement_get_onbeforeunload(IHTMLBodyElement
*iface
, VARIANT
*p
)
655 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
656 FIXME("(%p)->(%p)\n", This
, p
);
660 static HRESULT WINAPI
HTMLBodyElement_createTextRange(IHTMLBodyElement
*iface
, IHTMLTxtRange
**range
)
662 HTMLBodyElement
*This
= impl_from_IHTMLBodyElement(iface
);
663 nsIDOMRange
*nsrange
= NULL
;
667 TRACE("(%p)->(%p)\n", This
, range
);
669 if(!This
->textcont
.element
.node
.doc
->nsdoc
) {
674 nsres
= nsIDOMHTMLDocument_CreateRange(This
->textcont
.element
.node
.doc
->nsdoc
, &nsrange
);
675 if(NS_SUCCEEDED(nsres
)) {
676 nsres
= nsIDOMRange_SelectNodeContents(nsrange
, This
->textcont
.element
.node
.nsnode
);
678 ERR("SelectNodeContents failed: %08x\n", nsres
);
680 ERR("CreateRange failed: %08x\n", nsres
);
683 hres
= HTMLTxtRange_Create(This
->textcont
.element
.node
.doc
->basedoc
.doc_node
, nsrange
, range
);
685 nsIDOMRange_Release(nsrange
);
689 static const IHTMLBodyElementVtbl HTMLBodyElementVtbl
= {
690 HTMLBodyElement_QueryInterface
,
691 HTMLBodyElement_AddRef
,
692 HTMLBodyElement_Release
,
693 HTMLBodyElement_GetTypeInfoCount
,
694 HTMLBodyElement_GetTypeInfo
,
695 HTMLBodyElement_GetIDsOfNames
,
696 HTMLBodyElement_Invoke
,
697 HTMLBodyElement_put_background
,
698 HTMLBodyElement_get_background
,
699 HTMLBodyElement_put_bgProperties
,
700 HTMLBodyElement_get_bgProperties
,
701 HTMLBodyElement_put_leftMargin
,
702 HTMLBodyElement_get_leftMargin
,
703 HTMLBodyElement_put_topMargin
,
704 HTMLBodyElement_get_topMargin
,
705 HTMLBodyElement_put_rightMargin
,
706 HTMLBodyElement_get_rightMargin
,
707 HTMLBodyElement_put_bottomMargin
,
708 HTMLBodyElement_get_bottomMargin
,
709 HTMLBodyElement_put_noWrap
,
710 HTMLBodyElement_get_noWrap
,
711 HTMLBodyElement_put_bgColor
,
712 HTMLBodyElement_get_bgColor
,
713 HTMLBodyElement_put_text
,
714 HTMLBodyElement_get_text
,
715 HTMLBodyElement_put_link
,
716 HTMLBodyElement_get_link
,
717 HTMLBodyElement_put_vLink
,
718 HTMLBodyElement_get_vLink
,
719 HTMLBodyElement_put_aLink
,
720 HTMLBodyElement_get_aLink
,
721 HTMLBodyElement_put_onload
,
722 HTMLBodyElement_get_onload
,
723 HTMLBodyElement_put_onunload
,
724 HTMLBodyElement_get_onunload
,
725 HTMLBodyElement_put_scroll
,
726 HTMLBodyElement_get_scroll
,
727 HTMLBodyElement_put_onselect
,
728 HTMLBodyElement_get_onselect
,
729 HTMLBodyElement_put_onbeforeunload
,
730 HTMLBodyElement_get_onbeforeunload
,
731 HTMLBodyElement_createTextRange
734 static inline HTMLBodyElement
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
736 return CONTAINING_RECORD(iface
, HTMLBodyElement
, textcont
.element
.node
);
739 static HRESULT
HTMLBodyElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
741 HTMLBodyElement
*This
= impl_from_HTMLDOMNode(iface
);
745 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
746 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
747 *ppv
= &This
->IHTMLBodyElement_iface
;
748 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
749 TRACE("(%p)->(IID_IDispatch %p)\n", This
, ppv
);
750 *ppv
= &This
->IHTMLBodyElement_iface
;
751 }else if(IsEqualGUID(&IID_IHTMLBodyElement
, riid
)) {
752 TRACE("(%p)->(IID_IHTMLBodyElement %p)\n", This
, ppv
);
753 *ppv
= &This
->IHTMLBodyElement_iface
;
754 }else if(IsEqualGUID(&IID_IHTMLTextContainer
, riid
)) {
755 TRACE("(%p)->(IID_IHTMLTextContainer %p)\n", &This
->textcont
, ppv
);
756 *ppv
= &This
->textcont
.IHTMLTextContainer_iface
;
760 IUnknown_AddRef((IUnknown
*)*ppv
);
764 return HTMLElement_QI(&This
->textcont
.element
.node
, riid
, ppv
);
767 static void HTMLBodyElement_destructor(HTMLDOMNode
*iface
)
769 HTMLBodyElement
*This
= impl_from_HTMLDOMNode(iface
);
771 nsIDOMHTMLBodyElement_Release(This
->nsbody
);
773 HTMLElement_destructor(&This
->textcont
.element
.node
);
776 static event_target_t
**HTMLBodyElement_get_event_target(HTMLDOMNode
*iface
)
778 HTMLBodyElement
*This
= impl_from_HTMLDOMNode(iface
);
780 return This
->textcont
.element
.node
.doc
781 ? &This
->textcont
.element
.node
.doc
->body_event_target
782 : &This
->textcont
.element
.node
.event_target
;
785 static const NodeImplVtbl HTMLBodyElementImplVtbl
= {
787 HTMLBodyElement_destructor
,
789 HTMLElement_get_attr_col
,
790 HTMLBodyElement_get_event_target
793 static const tid_t HTMLBodyElement_iface_tids
[] = {
794 IHTMLBodyElement_tid
,
795 IHTMLBodyElement2_tid
,
797 IHTMLTextContainer_tid
,
802 static dispex_static_data_t HTMLBodyElement_dispex
= {
806 HTMLBodyElement_iface_tids
809 HRESULT
HTMLBodyElement_Create(HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, HTMLElement
**elem
)
811 HTMLBodyElement
*ret
;
814 ret
= heap_alloc_zero(sizeof(HTMLBodyElement
));
816 return E_OUTOFMEMORY
;
818 ret
->IHTMLBodyElement_iface
.lpVtbl
= &HTMLBodyElementVtbl
;
819 ret
->textcont
.element
.node
.vtbl
= &HTMLBodyElementImplVtbl
;
821 nsres
= nsIDOMHTMLElement_QueryInterface(nselem
, &IID_nsIDOMHTMLBodyElement
, (void**)&ret
->nsbody
);
822 if(NS_FAILED(nsres
)) {
823 ERR("Could not get nsDOMHTMLBodyElement: %08x\n", nsres
);
825 return E_OUTOFMEMORY
;
828 HTMLTextContainer_Init(&ret
->textcont
, doc
, nselem
, &HTMLBodyElement_dispex
);
830 ConnectionPoint_Init(&ret
->cp_propnotif
, &ret
->textcont
.element
.cp_container
, &IID_IPropertyNotifySink
, NULL
);
832 *elem
= &ret
->textcont
.element
;