mshtml: Send load event synchronously for img elements that loaded instantly in legac...
[wine.git] / dlls / mshtml / htmllink.c
bloba491cabae02c2149f9bb614515b661bcd69958c0
1 /*
2 * Copyright 2012 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
19 #include <stdarg.h>
21 #define COBJMACROS
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "ole2.h"
28 #include "wine/debug.h"
30 #include "mshtml_private.h"
31 #include "htmlevent.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
35 struct HTMLLinkElement {
36 HTMLElement element;
37 IHTMLLinkElement IHTMLLinkElement_iface;
39 nsIDOMHTMLLinkElement *nslink;
42 static inline HTMLLinkElement *impl_from_IHTMLLinkElement(IHTMLLinkElement *iface)
44 return CONTAINING_RECORD(iface, HTMLLinkElement, IHTMLLinkElement_iface);
47 static HRESULT WINAPI HTMLLinkElement_QueryInterface(IHTMLLinkElement *iface,
48 REFIID riid, void **ppv)
50 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
52 return IHTMLDOMNode_QueryInterface(&This->element.node.IHTMLDOMNode_iface, riid, ppv);
55 static ULONG WINAPI HTMLLinkElement_AddRef(IHTMLLinkElement *iface)
57 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
59 return IHTMLDOMNode_AddRef(&This->element.node.IHTMLDOMNode_iface);
62 static ULONG WINAPI HTMLLinkElement_Release(IHTMLLinkElement *iface)
64 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
66 return IHTMLDOMNode_Release(&This->element.node.IHTMLDOMNode_iface);
69 static HRESULT WINAPI HTMLLinkElement_GetTypeInfoCount(IHTMLLinkElement *iface, UINT *pctinfo)
71 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
73 return IDispatchEx_GetTypeInfoCount(&This->element.node.event_target.dispex.IDispatchEx_iface, pctinfo);
76 static HRESULT WINAPI HTMLLinkElement_GetTypeInfo(IHTMLLinkElement *iface, UINT iTInfo,
77 LCID lcid, ITypeInfo **ppTInfo)
79 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
81 return IDispatchEx_GetTypeInfo(&This->element.node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid,
82 ppTInfo);
85 static HRESULT WINAPI HTMLLinkElement_GetIDsOfNames(IHTMLLinkElement *iface, REFIID riid,
86 LPOLESTR *rgszNames, UINT cNames,
87 LCID lcid, DISPID *rgDispId)
89 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
91 return IDispatchEx_GetIDsOfNames(&This->element.node.event_target.dispex.IDispatchEx_iface, riid, rgszNames,
92 cNames, lcid, rgDispId);
95 static HRESULT WINAPI HTMLLinkElement_Invoke(IHTMLLinkElement *iface, DISPID dispIdMember,
96 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
97 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
99 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
101 return IDispatchEx_Invoke(&This->element.node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid,
102 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
105 static HRESULT WINAPI HTMLLinkElement_put_href(IHTMLLinkElement *iface, BSTR v)
107 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
108 nsAString href_str;
109 nsresult nsres;
111 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
113 nsAString_InitDepend(&href_str, v);
114 nsres = nsIDOMHTMLLinkElement_SetHref(This->nslink, &href_str);
115 nsAString_Finish(&href_str);
117 return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
120 static HRESULT WINAPI HTMLLinkElement_get_href(IHTMLLinkElement *iface, BSTR *p)
122 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
123 nsAString href_str;
124 nsresult nsres;
126 TRACE("(%p)->(%p)\n", This, p);
128 nsAString_Init(&href_str, NULL);
129 nsres = nsIDOMHTMLLinkElement_GetHref(This->nslink, &href_str);
130 return return_nsstr(nsres, &href_str, p);
133 static HRESULT WINAPI HTMLLinkElement_put_rel(IHTMLLinkElement *iface, BSTR v)
135 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
136 nsAString rel_str;
137 nsresult nsres;
139 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
141 nsAString_InitDepend(&rel_str, v);
142 nsres = nsIDOMHTMLLinkElement_SetRel(This->nslink, &rel_str);
143 nsAString_Finish(&rel_str);
145 return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
148 static HRESULT WINAPI HTMLLinkElement_get_rel(IHTMLLinkElement *iface, BSTR *p)
150 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
151 nsAString rel_str;
152 nsresult nsres;
154 TRACE("(%p)->(%p)\n", This, p);
156 nsAString_Init(&rel_str, NULL);
157 nsres = nsIDOMHTMLLinkElement_GetRel(This->nslink, &rel_str);
158 return return_nsstr(nsres, &rel_str, p);
161 static HRESULT WINAPI HTMLLinkElement_put_rev(IHTMLLinkElement *iface, BSTR v)
163 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
164 nsAString nsstr;
165 nsresult nsres;
167 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
169 nsAString_InitDepend(&nsstr, v);
170 nsres = nsIDOMHTMLLinkElement_SetRev(This->nslink, &nsstr);
171 nsAString_Finish(&nsstr);
172 if(NS_FAILED(nsres)) {
173 ERR("SetRev failed: %08lx\n", nsres);
174 return E_FAIL;
177 return S_OK;
180 static HRESULT WINAPI HTMLLinkElement_get_rev(IHTMLLinkElement *iface, BSTR *p)
182 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
183 nsAString nsstr;
184 nsresult nsres;
186 TRACE("(%p)->(%p)\n", This, p);
188 nsAString_Init(&nsstr, NULL);
189 nsres = nsIDOMHTMLLinkElement_GetRev(This->nslink, &nsstr);
190 return return_nsstr(nsres, &nsstr, p);
193 static HRESULT WINAPI HTMLLinkElement_put_type(IHTMLLinkElement *iface, BSTR v)
195 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
196 nsAString type_str;
197 nsresult nsres;
199 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
201 nsAString_InitDepend(&type_str, v);
202 nsres = nsIDOMHTMLLinkElement_SetType(This->nslink, &type_str);
203 nsAString_Finish(&type_str);
205 return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
208 static HRESULT WINAPI HTMLLinkElement_get_type(IHTMLLinkElement *iface, BSTR *p)
210 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
211 nsAString type_str;
212 nsresult nsres;
214 TRACE("(%p)->(%p)\n", This, p);
216 nsAString_Init(&type_str, NULL);
217 nsres = nsIDOMHTMLLinkElement_GetType(This->nslink, &type_str);
218 return return_nsstr(nsres, &type_str, p);
221 static HRESULT WINAPI HTMLLinkElement_get_readyState(IHTMLLinkElement *iface, BSTR *p)
223 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
224 FIXME("(%p)->(%p)\n", This, p);
225 return E_NOTIMPL;
228 static HRESULT WINAPI HTMLLinkElement_put_onreadystatechange(IHTMLLinkElement *iface, VARIANT v)
230 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
231 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
232 return E_NOTIMPL;
235 static HRESULT WINAPI HTMLLinkElement_get_onreadystatechange(IHTMLLinkElement *iface, VARIANT *p)
237 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
238 FIXME("(%p)->(%p)\n", This, p);
239 return E_NOTIMPL;
242 static HRESULT WINAPI HTMLLinkElement_put_onload(IHTMLLinkElement *iface, VARIANT v)
244 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
246 TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
248 return set_node_event(&This->element.node, EVENTID_LOAD, &v);
251 static HRESULT WINAPI HTMLLinkElement_get_onload(IHTMLLinkElement *iface, VARIANT *p)
253 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
255 TRACE("(%p)->(%p)\n", This, p);
257 return get_node_event(&This->element.node, EVENTID_LOAD, p);
260 static HRESULT WINAPI HTMLLinkElement_put_onerror(IHTMLLinkElement *iface, VARIANT v)
262 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
263 FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
264 return E_NOTIMPL;
267 static HRESULT WINAPI HTMLLinkElement_get_onerror(IHTMLLinkElement *iface, VARIANT *p)
269 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
270 FIXME("(%p)->(%p)\n", This, p);
271 return E_NOTIMPL;
274 static HRESULT WINAPI HTMLLinkElement_get_styleSheet(IHTMLLinkElement *iface, IHTMLStyleSheet **p)
276 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
277 FIXME("(%p)->(%p)\n", This, p);
278 return E_NOTIMPL;
281 static HRESULT WINAPI HTMLLinkElement_put_disabled(IHTMLLinkElement *iface, VARIANT_BOOL v)
283 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
284 nsresult nsres;
286 TRACE("(%p)->(%x)\n", This, v);
288 nsres = nsIDOMHTMLLinkElement_SetDisabled(This->nslink, !!v);
289 return SUCCEEDED(nsres) ? S_OK : E_FAIL;
292 static HRESULT WINAPI HTMLLinkElement_get_disabled(IHTMLLinkElement *iface, VARIANT_BOOL *p)
294 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
295 cpp_bool ret;
296 nsresult nsres;
298 TRACE("(%p)->(%p)\n", This, p);
300 nsres = nsIDOMHTMLLinkElement_GetDisabled(This->nslink, &ret);
301 if(NS_FAILED(nsres))
302 return E_FAIL;
304 *p = variant_bool(ret);
305 return S_OK;
308 static HRESULT WINAPI HTMLLinkElement_put_media(IHTMLLinkElement *iface, BSTR v)
310 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
311 nsresult nsres;
312 nsAString str;
314 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
316 nsAString_InitDepend(&str, v);
318 nsres = nsIDOMHTMLLinkElement_SetMedia(This->nslink, &str);
319 nsAString_Finish(&str);
321 if(NS_FAILED(nsres)) {
322 ERR("Set Media(%s) failed: %08lx\n", debugstr_w(v), nsres);
323 return E_FAIL;
325 return S_OK;
328 static HRESULT WINAPI HTMLLinkElement_get_media(IHTMLLinkElement *iface, BSTR *p)
330 HTMLLinkElement *This = impl_from_IHTMLLinkElement(iface);
331 nsresult nsres;
332 nsAString str;
334 TRACE("(%p)->(%p)\n", This, p);
336 nsAString_Init(&str, NULL);
337 nsres = nsIDOMHTMLLinkElement_GetMedia(This->nslink, &str);
339 return return_nsstr(nsres, &str, p);
342 static const IHTMLLinkElementVtbl HTMLLinkElementVtbl = {
343 HTMLLinkElement_QueryInterface,
344 HTMLLinkElement_AddRef,
345 HTMLLinkElement_Release,
346 HTMLLinkElement_GetTypeInfoCount,
347 HTMLLinkElement_GetTypeInfo,
348 HTMLLinkElement_GetIDsOfNames,
349 HTMLLinkElement_Invoke,
350 HTMLLinkElement_put_href,
351 HTMLLinkElement_get_href,
352 HTMLLinkElement_put_rel,
353 HTMLLinkElement_get_rel,
354 HTMLLinkElement_put_rev,
355 HTMLLinkElement_get_rev,
356 HTMLLinkElement_put_type,
357 HTMLLinkElement_get_type,
358 HTMLLinkElement_get_readyState,
359 HTMLLinkElement_put_onreadystatechange,
360 HTMLLinkElement_get_onreadystatechange,
361 HTMLLinkElement_put_onload,
362 HTMLLinkElement_get_onload,
363 HTMLLinkElement_put_onerror,
364 HTMLLinkElement_get_onerror,
365 HTMLLinkElement_get_styleSheet,
366 HTMLLinkElement_put_disabled,
367 HTMLLinkElement_get_disabled,
368 HTMLLinkElement_put_media,
369 HTMLLinkElement_get_media
372 static inline HTMLLinkElement *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
374 return CONTAINING_RECORD(iface, HTMLLinkElement, element.node);
377 static HRESULT HTMLLinkElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
379 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
381 if(IsEqualGUID(&IID_IHTMLLinkElement, riid)) {
382 TRACE("(%p)->(IID_IHTMLLinkElement %p)\n", This, ppv);
383 *ppv = &This->IHTMLLinkElement_iface;
384 }else {
385 return HTMLElement_QI(&This->element.node, riid, ppv);
388 IUnknown_AddRef((IUnknown*)*ppv);
389 return S_OK;
392 static HRESULT HTMLLinkElementImpl_put_disabled(HTMLDOMNode *iface, VARIANT_BOOL v)
394 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
395 return IHTMLLinkElement_put_disabled(&This->IHTMLLinkElement_iface, v);
398 static HRESULT HTMLLinkElementImpl_get_disabled(HTMLDOMNode *iface, VARIANT_BOOL *p)
400 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
401 return IHTMLLinkElement_get_disabled(&This->IHTMLLinkElement_iface, p);
404 static void HTMLLinkElement_traverse(HTMLDOMNode *iface, nsCycleCollectionTraversalCallback *cb)
406 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
408 if(This->nslink)
409 note_cc_edge((nsISupports*)This->nslink, "This->nslink", cb);
412 static void HTMLLinkElement_unlink(HTMLDOMNode *iface)
414 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
416 if(This->nslink) {
417 nsIDOMHTMLLinkElement *nslink = This->nslink;
419 This->nslink = NULL;
420 nsIDOMHTMLLinkElement_Release(nslink);
423 static const NodeImplVtbl HTMLLinkElementImplVtbl = {
424 &CLSID_HTMLLinkElement,
425 HTMLLinkElement_QI,
426 HTMLElement_destructor,
427 HTMLElement_cpc,
428 HTMLElement_clone,
429 HTMLElement_dispatch_nsevent_hook,
430 HTMLElement_handle_event,
431 HTMLElement_get_attr_col,
432 NULL,
433 HTMLLinkElementImpl_put_disabled,
434 HTMLLinkElementImpl_get_disabled,
435 NULL,
436 NULL,
437 NULL,
438 NULL,
439 NULL,
440 NULL,
441 HTMLLinkElement_traverse,
442 HTMLLinkElement_unlink
445 static const tid_t HTMLLinkElement_iface_tids[] = {
446 HTMLELEMENT_TIDS,
447 IHTMLLinkElement_tid,
450 static dispex_static_data_t HTMLLinkElement_dispex = {
451 L"HTMLLinkElement",
452 NULL,
453 DispHTMLLinkElement_tid,
454 HTMLLinkElement_iface_tids,
455 HTMLElement_init_dispex_info
458 HRESULT HTMLLinkElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTMLElement **elem)
460 HTMLLinkElement *ret;
461 nsresult nsres;
463 ret = calloc(1, sizeof(*ret));
464 if(!ret)
465 return E_OUTOFMEMORY;
467 ret->IHTMLLinkElement_iface.lpVtbl = &HTMLLinkElementVtbl;
468 ret->element.node.vtbl = &HTMLLinkElementImplVtbl;
470 HTMLElement_Init(&ret->element, doc, nselem, &HTMLLinkElement_dispex);
472 nsres = nsIDOMElement_QueryInterface(nselem, &IID_nsIDOMHTMLLinkElement, (void**)&ret->nslink);
473 assert(nsres == NS_OK);
475 *elem = &ret->element;
476 return S_OK;