gdi32: Fix leak in GdiDeleteSpoolFileHandle.
[wine.git] / dlls / mshtml / htmllink.c
blob83e3b876fccdceb758b2ccab99c139c773762573
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 HTMLLinkElementImpl_put_disabled(HTMLDOMNode *iface, VARIANT_BOOL v)
379 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
380 return IHTMLLinkElement_put_disabled(&This->IHTMLLinkElement_iface, v);
383 static HRESULT HTMLLinkElementImpl_get_disabled(HTMLDOMNode *iface, VARIANT_BOOL *p)
385 HTMLLinkElement *This = impl_from_HTMLDOMNode(iface);
386 return IHTMLLinkElement_get_disabled(&This->IHTMLLinkElement_iface, p);
389 static inline HTMLLinkElement *impl_from_DispatchEx(DispatchEx *iface)
391 return CONTAINING_RECORD(iface, HTMLLinkElement, element.node.event_target.dispex);
394 static void *HTMLLinkElement_query_interface(DispatchEx *dispex, REFIID riid)
396 HTMLLinkElement *This = impl_from_DispatchEx(dispex);
398 if(IsEqualGUID(&IID_IHTMLLinkElement, riid))
399 return &This->IHTMLLinkElement_iface;
401 return HTMLElement_query_interface(&This->element.node.event_target.dispex, riid);
404 static void HTMLLinkElement_traverse(DispatchEx *dispex, nsCycleCollectionTraversalCallback *cb)
406 HTMLLinkElement *This = impl_from_DispatchEx(dispex);
407 HTMLDOMNode_traverse(dispex, cb);
409 if(This->nslink)
410 note_cc_edge((nsISupports*)This->nslink, "nslink", cb);
413 static void HTMLLinkElement_unlink(DispatchEx *dispex)
415 HTMLLinkElement *This = impl_from_DispatchEx(dispex);
416 HTMLDOMNode_unlink(dispex);
417 unlink_ref(&This->nslink);
419 static const NodeImplVtbl HTMLLinkElementImplVtbl = {
420 .clsid = &CLSID_HTMLLinkElement,
421 .cpc_entries = HTMLElement_cpc,
422 .clone = HTMLElement_clone,
423 .get_attr_col = HTMLElement_get_attr_col,
424 .put_disabled = HTMLLinkElementImpl_put_disabled,
425 .get_disabled = HTMLLinkElementImpl_get_disabled,
428 static const event_target_vtbl_t HTMLLinkElement_event_target_vtbl = {
430 HTMLELEMENT_DISPEX_VTBL_ENTRIES,
431 .query_interface= HTMLLinkElement_query_interface,
432 .destructor = HTMLElement_destructor,
433 .traverse = HTMLLinkElement_traverse,
434 .unlink = HTMLLinkElement_unlink
436 HTMLELEMENT_EVENT_TARGET_VTBL_ENTRIES,
437 .handle_event = HTMLElement_handle_event
440 static const tid_t HTMLLinkElement_iface_tids[] = {
441 HTMLELEMENT_TIDS,
442 IHTMLLinkElement_tid,
445 static dispex_static_data_t HTMLLinkElement_dispex = {
446 "HTMLLinkElement",
447 &HTMLLinkElement_event_target_vtbl.dispex_vtbl,
448 DispHTMLLinkElement_tid,
449 HTMLLinkElement_iface_tids,
450 HTMLElement_init_dispex_info
453 HRESULT HTMLLinkElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTMLElement **elem)
455 HTMLLinkElement *ret;
456 nsresult nsres;
458 ret = calloc(1, sizeof(*ret));
459 if(!ret)
460 return E_OUTOFMEMORY;
462 ret->IHTMLLinkElement_iface.lpVtbl = &HTMLLinkElementVtbl;
463 ret->element.node.vtbl = &HTMLLinkElementImplVtbl;
465 HTMLElement_Init(&ret->element, doc, nselem, &HTMLLinkElement_dispex);
467 nsres = nsIDOMElement_QueryInterface(nselem, &IID_nsIDOMHTMLLinkElement, (void**)&ret->nslink);
468 assert(nsres == NS_OK);
470 *elem = &ret->element;
471 return S_OK;