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(HTMLDOMNODE(&This->textcont.element.node), riid, ppv);
209 static ULONG WINAPI HTMLBodyElement_AddRef(IHTMLBodyElement *iface)
211 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
213 return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This->textcont.element.node));
216 static ULONG WINAPI HTMLBodyElement_Release(IHTMLBodyElement *iface)
218 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
220 return IHTMLDOMNode_Release(HTMLDOMNODE(&This->textcont.element.node));
223 static HRESULT WINAPI HTMLBodyElement_GetTypeInfoCount(IHTMLBodyElement *iface, UINT *pctinfo)
225 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
226 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->textcont.element.node.dispex), pctinfo);
229 static HRESULT WINAPI HTMLBodyElement_GetTypeInfo(IHTMLBodyElement *iface, UINT iTInfo,
230 LCID lcid, ITypeInfo **ppTInfo)
232 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
233 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->textcont.element.node.dispex), iTInfo, lcid, ppTInfo);
236 static HRESULT WINAPI HTMLBodyElement_GetIDsOfNames(IHTMLBodyElement *iface, REFIID riid,
237 LPOLESTR *rgszNames, UINT cNames,
238 LCID lcid, DISPID *rgDispId)
240 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
241 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->textcont.element.node.dispex), riid, rgszNames, cNames, lcid, rgDispId);
244 static HRESULT WINAPI HTMLBodyElement_Invoke(IHTMLBodyElement *iface, DISPID dispIdMember,
245 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
246 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
248 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
249 return IDispatchEx_Invoke(DISPATCHEX(&This->textcont.element.node.dispex), dispIdMember, riid, lcid,
250 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
253 static HRESULT WINAPI HTMLBodyElement_put_background(IHTMLBodyElement *iface, BSTR v)
255 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
259 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
261 nsAString_InitDepend(&nsstr, v);
262 nsres = nsIDOMHTMLBodyElement_SetBackground(This->nsbody, &nsstr);
263 nsAString_Finish(&nsstr);
270 static HRESULT WINAPI HTMLBodyElement_get_background(IHTMLBodyElement *iface, BSTR *p)
272 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
273 nsAString background_str;
276 TRACE("(%p)->(%p)\n", This, p);
278 nsAString_Init(&background_str, NULL);
280 nsres = nsIDOMHTMLBodyElement_GetBackground(This->nsbody, &background_str);
281 if(NS_SUCCEEDED(nsres)) {
282 const PRUnichar *background;
283 nsAString_GetData(&background_str, &background);
284 *p = *background ? SysAllocString(background) : NULL;
286 ERR("GetBackground failed: %08x\n", nsres);
290 nsAString_Finish(&background_str);
292 TRACE("*p = %s\n", debugstr_w(*p));
296 static HRESULT WINAPI HTMLBodyElement_put_bgProperties(IHTMLBodyElement *iface, BSTR v)
298 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
299 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
303 static HRESULT WINAPI HTMLBodyElement_get_bgProperties(IHTMLBodyElement *iface, BSTR *p)
305 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
306 FIXME("(%p)->(%p)\n", This, p);
310 static HRESULT WINAPI HTMLBodyElement_put_leftMargin(IHTMLBodyElement *iface, VARIANT v)
312 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
313 FIXME("(%p)->()\n", This);
317 static HRESULT WINAPI HTMLBodyElement_get_leftMargin(IHTMLBodyElement *iface, VARIANT *p)
319 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
320 FIXME("(%p)->(%p)\n", This, p);
324 static HRESULT WINAPI HTMLBodyElement_put_topMargin(IHTMLBodyElement *iface, VARIANT v)
326 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
327 FIXME("(%p)->()\n", This);
331 static HRESULT WINAPI HTMLBodyElement_get_topMargin(IHTMLBodyElement *iface, VARIANT *p)
333 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
334 FIXME("(%p)->(%p)\n", This, p);
338 static HRESULT WINAPI HTMLBodyElement_put_rightMargin(IHTMLBodyElement *iface, VARIANT v)
340 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
341 FIXME("(%p)->()\n", This);
345 static HRESULT WINAPI HTMLBodyElement_get_rightMargin(IHTMLBodyElement *iface, VARIANT *p)
347 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
348 FIXME("(%p)->(%p)\n", This, p);
352 static HRESULT WINAPI HTMLBodyElement_put_bottomMargin(IHTMLBodyElement *iface, VARIANT v)
354 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
355 FIXME("(%p)->()\n", This);
359 static HRESULT WINAPI HTMLBodyElement_get_bottomMargin(IHTMLBodyElement *iface, VARIANT *p)
361 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
362 FIXME("(%p)->(%p)\n", This, p);
366 static HRESULT WINAPI HTMLBodyElement_put_noWrap(IHTMLBodyElement *iface, VARIANT_BOOL v)
368 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
369 FIXME("(%p)->(%x)\n", This, v);
373 static HRESULT WINAPI HTMLBodyElement_get_noWrap(IHTMLBodyElement *iface, VARIANT_BOOL *p)
375 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
376 FIXME("(%p)->(%p)\n", This, p);
380 static HRESULT WINAPI HTMLBodyElement_put_bgColor(IHTMLBodyElement *iface, VARIANT v)
382 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
386 TRACE("(%p)->()\n", This);
388 if(!variant_to_nscolor(&v, &strColor))
391 nsres = nsIDOMHTMLBodyElement_SetBgColor(This->nsbody, &strColor);
392 nsAString_Finish(&strColor);
394 ERR("SetBgColor failed: %08x\n", nsres);
399 static HRESULT WINAPI HTMLBodyElement_get_bgColor(IHTMLBodyElement *iface, VARIANT *p)
401 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
406 TRACE("(%p)->(%p)\n", This, p);
408 nsAString_Init(&strColor, NULL);
409 nsres = nsIDOMHTMLBodyElement_GetBgColor(This->nsbody, &strColor);
410 if(NS_SUCCEEDED(nsres)) {
411 const PRUnichar *color;
413 nsAString_GetData(&strColor, &color);
415 hres = nscolor_to_str(color, &V_BSTR(p));
417 ERR("SetBgColor failed: %08x\n", nsres);
421 nsAString_Finish(&strColor);
425 static HRESULT WINAPI HTMLBodyElement_put_text(IHTMLBodyElement *iface, VARIANT v)
427 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
431 TRACE("(%p)->(v%d)\n", This, V_VT(&v));
433 if(!variant_to_nscolor(&v, &text))
436 nsres = nsIDOMHTMLBodyElement_SetText(This->nsbody, &text);
437 nsAString_Finish(&text);
438 if(NS_FAILED(nsres)) {
439 ERR("SetText failed: %08x\n", nsres);
446 static HRESULT WINAPI HTMLBodyElement_get_text(IHTMLBodyElement *iface, VARIANT *p)
448 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
453 TRACE("(%p)->(%p)\n", This, p);
455 nsAString_Init(&text, NULL);
456 nsres = nsIDOMHTMLBodyElement_GetText(This->nsbody, &text);
457 if(NS_SUCCEEDED(nsres)) {
458 const PRUnichar *color;
460 nsAString_GetData(&text, &color);
462 hres = nscolor_to_str(color, &V_BSTR(p));
464 ERR("GetText failed: %08x\n", nsres);
468 nsAString_Finish(&text);
473 static HRESULT WINAPI HTMLBodyElement_put_link(IHTMLBodyElement *iface, VARIANT v)
475 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
479 TRACE("(%p)->(v%d)\n", This, V_VT(&v));
481 if(!variant_to_nscolor(&v, &link_str))
484 nsres = nsIDOMHTMLBodyElement_SetLink(This->nsbody, &link_str);
485 nsAString_Finish(&link_str);
487 ERR("SetLink failed: %08x\n", nsres);
492 static HRESULT WINAPI HTMLBodyElement_get_link(IHTMLBodyElement *iface, VARIANT *p)
494 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
498 TRACE("(%p)->(%p)\n", This, p);
500 nsAString_Init(&link_str, NULL);
501 nsres = nsIDOMHTMLBodyElement_GetLink(This->nsbody, &link_str);
503 ERR("GetLink failed: %08x\n", nsres);
505 nscolor_to_variant(&link_str, p);
506 nsAString_Finish(&link_str);
511 static HRESULT WINAPI HTMLBodyElement_put_vLink(IHTMLBodyElement *iface, VARIANT v)
513 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
517 TRACE("(%p)->(v%d)\n", This, V_VT(&v));
519 if(!variant_to_nscolor(&v, &vlink_str))
522 nsres = nsIDOMHTMLBodyElement_SetVLink(This->nsbody, &vlink_str);
523 nsAString_Finish(&vlink_str);
525 ERR("SetLink failed: %08x\n", nsres);
530 static HRESULT WINAPI HTMLBodyElement_get_vLink(IHTMLBodyElement *iface, VARIANT *p)
532 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
536 TRACE("(%p)->(%p)\n", This, p);
538 nsAString_Init(&vlink_str, NULL);
539 nsres = nsIDOMHTMLBodyElement_GetVLink(This->nsbody, &vlink_str);
541 ERR("GetLink failed: %08x\n", nsres);
543 nscolor_to_variant(&vlink_str, p);
544 nsAString_Finish(&vlink_str);
549 static HRESULT WINAPI HTMLBodyElement_put_aLink(IHTMLBodyElement *iface, VARIANT v)
551 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
555 TRACE("(%p)->(v%d)\n", This, V_VT(&v));
557 if(!variant_to_nscolor(&v, &alink_str))
560 nsres = nsIDOMHTMLBodyElement_SetALink(This->nsbody, &alink_str);
561 nsAString_Finish(&alink_str);
563 ERR("SetALink failed: %08x\n", nsres);
568 static HRESULT WINAPI HTMLBodyElement_get_aLink(IHTMLBodyElement *iface, VARIANT *p)
570 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
574 TRACE("(%p)->(%p)\n", This, p);
576 nsAString_Init(&alink_str, NULL);
577 nsres = nsIDOMHTMLBodyElement_GetALink(This->nsbody, &alink_str);
579 ERR("GetALink failed: %08x\n", nsres);
581 nscolor_to_variant(&alink_str, p);
582 nsAString_Finish(&alink_str);
587 static HRESULT WINAPI HTMLBodyElement_put_onload(IHTMLBodyElement *iface, VARIANT v)
589 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
590 FIXME("(%p)->()\n", This);
594 static HRESULT WINAPI HTMLBodyElement_get_onload(IHTMLBodyElement *iface, VARIANT *p)
596 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
597 FIXME("(%p)->(%p)\n", This, p);
601 static HRESULT WINAPI HTMLBodyElement_put_onunload(IHTMLBodyElement *iface, VARIANT v)
603 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
604 FIXME("(%p)->()\n", This);
608 static HRESULT WINAPI HTMLBodyElement_get_onunload(IHTMLBodyElement *iface, VARIANT *p)
610 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
611 FIXME("(%p)->(%p)\n", This, p);
615 static HRESULT WINAPI HTMLBodyElement_put_scroll(IHTMLBodyElement *iface, BSTR v)
617 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
618 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
622 static HRESULT WINAPI HTMLBodyElement_get_scroll(IHTMLBodyElement *iface, BSTR *p)
624 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
625 FIXME("(%p)->(%p)\n", This, p);
629 static HRESULT WINAPI HTMLBodyElement_put_onselect(IHTMLBodyElement *iface, VARIANT v)
631 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
632 FIXME("(%p)->()\n", This);
636 static HRESULT WINAPI HTMLBodyElement_get_onselect(IHTMLBodyElement *iface, VARIANT *p)
638 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
639 FIXME("(%p)->(%p)\n", This, p);
643 static HRESULT WINAPI HTMLBodyElement_put_onbeforeunload(IHTMLBodyElement *iface, VARIANT v)
645 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
646 FIXME("(%p)->()\n", This);
650 static HRESULT WINAPI HTMLBodyElement_get_onbeforeunload(IHTMLBodyElement *iface, VARIANT *p)
652 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
653 FIXME("(%p)->(%p)\n", This, p);
657 static HRESULT WINAPI HTMLBodyElement_createTextRange(IHTMLBodyElement *iface, IHTMLTxtRange **range)
659 HTMLBodyElement *This = impl_from_IHTMLBodyElement(iface);
660 nsIDOMDocumentRange *nsdocrange;
661 nsIDOMRange *nsrange = NULL;
665 TRACE("(%p)->(%p)\n", This, range);
667 if(!This->textcont.element.node.doc->nsdoc) {
672 nsres = nsIDOMDocument_QueryInterface(This->textcont.element.node.doc->nsdoc, &IID_nsIDOMDocumentRange,
673 (void**)&nsdocrange);
674 if(NS_FAILED(nsres)) {
675 ERR("Could not get nsIDOMDocumentRabge iface: %08x\n", nsres);
679 nsres = nsIDOMDocumentRange_CreateRange(nsdocrange, &nsrange);
680 if(NS_SUCCEEDED(nsres)) {
681 nsres = nsIDOMRange_SelectNodeContents(nsrange, This->textcont.element.node.nsnode);
683 ERR("SelectNodeContents failed: %08x\n", nsres);
685 ERR("CreateRange failed: %08x\n", nsres);
688 nsIDOMDocumentRange_Release(nsdocrange);
690 hres = HTMLTxtRange_Create(This->textcont.element.node.doc->basedoc.doc_node, nsrange, range);
692 nsIDOMRange_Release(nsrange);
696 static const IHTMLBodyElementVtbl HTMLBodyElementVtbl = {
697 HTMLBodyElement_QueryInterface,
698 HTMLBodyElement_AddRef,
699 HTMLBodyElement_Release,
700 HTMLBodyElement_GetTypeInfoCount,
701 HTMLBodyElement_GetTypeInfo,
702 HTMLBodyElement_GetIDsOfNames,
703 HTMLBodyElement_Invoke,
704 HTMLBodyElement_put_background,
705 HTMLBodyElement_get_background,
706 HTMLBodyElement_put_bgProperties,
707 HTMLBodyElement_get_bgProperties,
708 HTMLBodyElement_put_leftMargin,
709 HTMLBodyElement_get_leftMargin,
710 HTMLBodyElement_put_topMargin,
711 HTMLBodyElement_get_topMargin,
712 HTMLBodyElement_put_rightMargin,
713 HTMLBodyElement_get_rightMargin,
714 HTMLBodyElement_put_bottomMargin,
715 HTMLBodyElement_get_bottomMargin,
716 HTMLBodyElement_put_noWrap,
717 HTMLBodyElement_get_noWrap,
718 HTMLBodyElement_put_bgColor,
719 HTMLBodyElement_get_bgColor,
720 HTMLBodyElement_put_text,
721 HTMLBodyElement_get_text,
722 HTMLBodyElement_put_link,
723 HTMLBodyElement_get_link,
724 HTMLBodyElement_put_vLink,
725 HTMLBodyElement_get_vLink,
726 HTMLBodyElement_put_aLink,
727 HTMLBodyElement_get_aLink,
728 HTMLBodyElement_put_onload,
729 HTMLBodyElement_get_onload,
730 HTMLBodyElement_put_onunload,
731 HTMLBodyElement_get_onunload,
732 HTMLBodyElement_put_scroll,
733 HTMLBodyElement_get_scroll,
734 HTMLBodyElement_put_onselect,
735 HTMLBodyElement_get_onselect,
736 HTMLBodyElement_put_onbeforeunload,
737 HTMLBodyElement_get_onbeforeunload,
738 HTMLBodyElement_createTextRange
741 #define HTMLBODY_NODE_THIS(iface) DEFINE_THIS2(HTMLBodyElement, textcont.element.node, iface)
743 static HRESULT HTMLBodyElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
745 HTMLBodyElement *This = HTMLBODY_NODE_THIS(iface);
749 if(IsEqualGUID(&IID_IUnknown, riid)) {
750 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
751 *ppv = &This->IHTMLBodyElement_iface;
752 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
753 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
754 *ppv = &This->IHTMLBodyElement_iface;
755 }else if(IsEqualGUID(&IID_IHTMLBodyElement, riid)) {
756 TRACE("(%p)->(IID_IHTMLBodyElement %p)\n", This, ppv);
757 *ppv = &This->IHTMLBodyElement_iface;
758 }else if(IsEqualGUID(&IID_IHTMLTextContainer, riid)) {
759 TRACE("(%p)->(IID_IHTMLTextContainer %p)\n", &This->textcont, ppv);
760 *ppv = HTMLTEXTCONT(&This->textcont);
764 IUnknown_AddRef((IUnknown*)*ppv);
768 return HTMLElement_QI(&This->textcont.element.node, riid, ppv);
771 static void HTMLBodyElement_destructor(HTMLDOMNode *iface)
773 HTMLBodyElement *This = HTMLBODY_NODE_THIS(iface);
775 nsIDOMHTMLBodyElement_Release(This->nsbody);
777 HTMLElement_destructor(&This->textcont.element.node);
780 static event_target_t **HTMLBodyElement_get_event_target(HTMLDOMNode *iface)
782 HTMLBodyElement *This = HTMLBODY_NODE_THIS(iface);
784 return This->textcont.element.node.doc
785 ? &This->textcont.element.node.doc->body_event_target
786 : &This->textcont.element.node.event_target;
789 #undef HTMLBODY_NODE_THIS
791 static const NodeImplVtbl HTMLBodyElementImplVtbl = {
793 HTMLBodyElement_destructor,
795 HTMLBodyElement_get_event_target
798 static const tid_t HTMLBodyElement_iface_tids[] = {
799 IHTMLBodyElement_tid,
800 IHTMLBodyElement2_tid,
802 IHTMLTextContainer_tid,
807 static dispex_static_data_t HTMLBodyElement_dispex = {
811 HTMLBodyElement_iface_tids
814 HRESULT HTMLBodyElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLElement **elem)
816 HTMLBodyElement *ret;
819 ret = heap_alloc_zero(sizeof(HTMLBodyElement));
821 return E_OUTOFMEMORY;
823 ret->IHTMLBodyElement_iface.lpVtbl = &HTMLBodyElementVtbl;
824 ret->textcont.element.node.vtbl = &HTMLBodyElementImplVtbl;
826 nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLBodyElement, (void**)&ret->nsbody);
827 if(NS_FAILED(nsres)) {
828 ERR("Could not get nsDOMHTMLBodyElement: %08x\n", nsres);
830 return E_OUTOFMEMORY;
833 HTMLTextContainer_Init(&ret->textcont, doc, nselem, &HTMLBodyElement_dispex);
835 ConnectionPoint_Init(&ret->cp_propnotif, &ret->textcont.element.cp_container, &IID_IPropertyNotifySink, NULL);
837 *elem = &ret->textcont.element;