mshtml: Send load event synchronously for img elements that loaded instantly in legac...
[wine.git] / dlls / mshtml / htmlcomment.c
blobdd4c83cc77c6db42e5b0dbd10a59ed2432af5c5f
1 /*
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
20 #include <stdarg.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "ole2.h"
29 #include "mshtml_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
35 struct HTMLCommentElement {
36 HTMLElement element;
37 IHTMLCommentElement IHTMLCommentElement_iface;
40 static inline HTMLCommentElement *impl_from_IHTMLCommentElement(IHTMLCommentElement *iface)
42 return CONTAINING_RECORD(iface, HTMLCommentElement, IHTMLCommentElement_iface);
45 static HRESULT WINAPI HTMLCommentElement_QueryInterface(IHTMLCommentElement *iface,
46 REFIID riid, void **ppv)
48 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
50 return IHTMLDOMNode_QueryInterface(&This->element.node.IHTMLDOMNode_iface, riid, ppv);
53 static ULONG WINAPI HTMLCommentElement_AddRef(IHTMLCommentElement *iface)
55 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
57 return IHTMLDOMNode_AddRef(&This->element.node.IHTMLDOMNode_iface);
60 static ULONG WINAPI HTMLCommentElement_Release(IHTMLCommentElement *iface)
62 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
64 return IHTMLDOMNode_Release(&This->element.node.IHTMLDOMNode_iface);
67 static HRESULT WINAPI HTMLCommentElement_GetTypeInfoCount(IHTMLCommentElement *iface, UINT *pctinfo)
69 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
70 return IDispatchEx_GetTypeInfoCount(&This->element.node.event_target.dispex.IDispatchEx_iface, pctinfo);
73 static HRESULT WINAPI HTMLCommentElement_GetTypeInfo(IHTMLCommentElement *iface, UINT iTInfo,
74 LCID lcid, ITypeInfo **ppTInfo)
76 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
77 return IDispatchEx_GetTypeInfo(&This->element.node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid,
78 ppTInfo);
81 static HRESULT WINAPI HTMLCommentElement_GetIDsOfNames(IHTMLCommentElement *iface, REFIID riid,
82 LPOLESTR *rgszNames, UINT cNames,
83 LCID lcid, DISPID *rgDispId)
85 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
86 return IDispatchEx_GetIDsOfNames(&This->element.node.event_target.dispex.IDispatchEx_iface, riid, rgszNames,
87 cNames, lcid, rgDispId);
90 static HRESULT WINAPI HTMLCommentElement_Invoke(IHTMLCommentElement *iface, DISPID dispIdMember,
91 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
92 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
94 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
95 return IDispatchEx_Invoke(&This->element.node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid,
96 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
99 static HRESULT WINAPI HTMLCommentElement_put_text(IHTMLCommentElement *iface, BSTR v)
101 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
102 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
103 return E_NOTIMPL;
106 static HRESULT WINAPI HTMLCommentElement_get_text(IHTMLCommentElement *iface, BSTR *p)
108 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
110 TRACE("(%p)->(%p)\n", This, p);
112 return IHTMLElement_get_outerHTML(&This->element.IHTMLElement_iface, p);
115 static HRESULT WINAPI HTMLCommentElement_put_atomic(IHTMLCommentElement *iface, LONG v)
117 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
118 FIXME("(%p)->(%ld)\n", This, v);
119 return E_NOTIMPL;
122 static HRESULT WINAPI HTMLCommentElement_get_atomic(IHTMLCommentElement *iface, LONG *p)
124 HTMLCommentElement *This = impl_from_IHTMLCommentElement(iface);
125 FIXME("(%p)->(%p)\n", This, p);
126 return E_NOTIMPL;
129 static const IHTMLCommentElementVtbl HTMLCommentElementVtbl = {
130 HTMLCommentElement_QueryInterface,
131 HTMLCommentElement_AddRef,
132 HTMLCommentElement_Release,
133 HTMLCommentElement_GetTypeInfoCount,
134 HTMLCommentElement_GetTypeInfo,
135 HTMLCommentElement_GetIDsOfNames,
136 HTMLCommentElement_Invoke,
137 HTMLCommentElement_put_text,
138 HTMLCommentElement_get_text,
139 HTMLCommentElement_put_atomic,
140 HTMLCommentElement_get_atomic
143 static inline HTMLCommentElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
145 return CONTAINING_RECORD(iface, HTMLCommentElement, element.node);
148 static HRESULT HTMLCommentElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
150 HTMLCommentElement *This = impl_from_HTMLDOMNode(iface);
152 *ppv = NULL;
154 if(IsEqualGUID(&IID_IHTMLCommentElement, riid)) {
155 TRACE("(%p)->(IID_IHTMLCommentElement %p)\n", This, ppv);
156 *ppv = &This->IHTMLCommentElement_iface;
157 }else {
158 return HTMLElement_QI(&This->element.node, riid, ppv);
161 IUnknown_AddRef((IUnknown*)*ppv);
162 return S_OK;
165 static void HTMLCommentElement_destructor(HTMLDOMNode *iface)
167 HTMLCommentElement *This = impl_from_HTMLDOMNode(iface);
169 HTMLElement_destructor(&This->element.node);
172 static HRESULT HTMLCommentElement_clone(HTMLDOMNode *iface, nsIDOMNode *nsnode, HTMLDOMNode **ret)
174 HTMLCommentElement *This = impl_from_HTMLDOMNode(iface);
175 HTMLElement *new_elem;
176 HRESULT hres;
178 hres = HTMLCommentElement_Create(This->element.node.doc, nsnode, &new_elem);
179 if(FAILED(hres))
180 return hres;
182 *ret = &new_elem->node;
183 return S_OK;
186 static const NodeImplVtbl HTMLCommentElementImplVtbl = {
187 &CLSID_HTMLCommentElement,
188 HTMLCommentElement_QI,
189 HTMLCommentElement_destructor,
190 HTMLElement_cpc,
191 HTMLCommentElement_clone,
192 HTMLElement_dispatch_nsevent_hook,
193 HTMLElement_handle_event,
194 HTMLElement_get_attr_col
197 static const tid_t HTMLCommentElement_iface_tids[] = {
198 HTMLELEMENT_TIDS,
199 IHTMLCommentElement_tid,
202 static dispex_static_data_t HTMLCommentElement_dispex = {
203 L"Comment",
204 NULL,
205 DispHTMLCommentElement_tid,
206 HTMLCommentElement_iface_tids,
207 HTMLElement_init_dispex_info
210 HRESULT HTMLCommentElement_Create(HTMLDocumentNode *doc, nsIDOMNode *nsnode, HTMLElement **elem)
212 HTMLCommentElement *ret;
214 ret = calloc(1, sizeof(*ret));
215 if(!ret)
216 return E_OUTOFMEMORY;
218 ret->element.node.vtbl = &HTMLCommentElementImplVtbl;
219 ret->IHTMLCommentElement_iface.lpVtbl = &HTMLCommentElementVtbl;
221 HTMLElement_Init(&ret->element, doc, NULL, &HTMLCommentElement_dispex);
222 HTMLDOMNode_Init(doc, &ret->element.node, nsnode, &HTMLCommentElement_dispex);
224 *elem = &ret->element;
225 return S_OK;