2 * Copyright 2011 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
28 #include "wine/debug.h"
30 #include "mshtml_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
37 IHTMLTitleElement IHTMLTitleElement_iface
;
40 static inline HTMLTitleElement
*impl_from_IHTMLTitleElement(IHTMLTitleElement
*iface
)
42 return CONTAINING_RECORD(iface
, HTMLTitleElement
, IHTMLTitleElement_iface
);
45 static HRESULT WINAPI
HTMLTitleElement_QueryInterface(IHTMLTitleElement
*iface
,
46 REFIID riid
, void **ppv
)
48 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
50 return IHTMLDOMNode_QueryInterface(&This
->element
.node
.IHTMLDOMNode_iface
, riid
, ppv
);
53 static ULONG WINAPI
HTMLTitleElement_AddRef(IHTMLTitleElement
*iface
)
55 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
57 return IHTMLDOMNode_AddRef(&This
->element
.node
.IHTMLDOMNode_iface
);
60 static ULONG WINAPI
HTMLTitleElement_Release(IHTMLTitleElement
*iface
)
62 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
64 return IHTMLDOMNode_Release(&This
->element
.node
.IHTMLDOMNode_iface
);
67 static HRESULT WINAPI
HTMLTitleElement_GetTypeInfoCount(IHTMLTitleElement
*iface
, UINT
*pctinfo
)
69 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
71 return IDispatchEx_GetTypeInfoCount(&This
->element
.node
.dispex
.IDispatchEx_iface
, pctinfo
);
74 static HRESULT WINAPI
HTMLTitleElement_GetTypeInfo(IHTMLTitleElement
*iface
, UINT iTInfo
,
75 LCID lcid
, ITypeInfo
**ppTInfo
)
77 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
79 return IDispatchEx_GetTypeInfo(&This
->element
.node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
,
83 static HRESULT WINAPI
HTMLTitleElement_GetIDsOfNames(IHTMLTitleElement
*iface
, REFIID riid
,
84 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
86 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
88 return IDispatchEx_GetIDsOfNames(&This
->element
.node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
,
89 cNames
, lcid
, rgDispId
);
92 static HRESULT WINAPI
HTMLTitleElement_Invoke(IHTMLTitleElement
*iface
, DISPID dispIdMember
,
93 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
94 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
96 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
98 return IDispatchEx_Invoke(&This
->element
.node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
,
99 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
102 static HRESULT WINAPI
HTMLTitleElement_put_text(IHTMLTitleElement
*iface
, BSTR v
)
104 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
105 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
109 static HRESULT WINAPI
HTMLTitleElement_get_text(IHTMLTitleElement
*iface
, BSTR
*p
)
111 HTMLTitleElement
*This
= impl_from_IHTMLTitleElement(iface
);
112 FIXME("(%p)->(%p)\n", This
, p
);
116 static const IHTMLTitleElementVtbl HTMLTitleElementVtbl
= {
117 HTMLTitleElement_QueryInterface
,
118 HTMLTitleElement_AddRef
,
119 HTMLTitleElement_Release
,
120 HTMLTitleElement_GetTypeInfoCount
,
121 HTMLTitleElement_GetTypeInfo
,
122 HTMLTitleElement_GetIDsOfNames
,
123 HTMLTitleElement_Invoke
,
124 HTMLTitleElement_put_text
,
125 HTMLTitleElement_get_text
128 static inline HTMLTitleElement
*HTMLTitleElement_from_HTMLDOMNode(HTMLDOMNode
*iface
)
130 return CONTAINING_RECORD(iface
, HTMLTitleElement
, element
.node
);
133 static HRESULT
HTMLTitleElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
135 HTMLTitleElement
*This
= HTMLTitleElement_from_HTMLDOMNode(iface
);
137 TRACE("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
139 if(IsEqualGUID(&IID_IHTMLTitleElement
, riid
))
140 *ppv
= &This
->IHTMLTitleElement_iface
;
142 return HTMLElement_QI(&This
->element
.node
, riid
, ppv
);
144 IUnknown_AddRef((IUnknown
*)*ppv
);
148 static void HTMLTitleElement_destructor(HTMLDOMNode
*iface
)
150 HTMLTitleElement
*This
= HTMLTitleElement_from_HTMLDOMNode(iface
);
152 HTMLElement_destructor(&This
->element
.node
);
155 static const NodeImplVtbl HTMLTitleElementImplVtbl
= {
157 HTMLTitleElement_destructor
,
160 HTMLElement_handle_event
,
161 HTMLElement_get_attr_col
164 static const tid_t HTMLTitleElement_iface_tids
[] = {
166 IHTMLTitleElement_tid
,
169 static dispex_static_data_t HTMLTitleElement_dispex
= {
171 DispHTMLTitleElement_tid
,
173 HTMLTitleElement_iface_tids
176 HRESULT
HTMLTitleElement_Create(HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, HTMLElement
**elem
)
178 HTMLTitleElement
*ret
;
180 ret
= heap_alloc_zero(sizeof(*ret
));
182 return E_OUTOFMEMORY
;
184 ret
->IHTMLTitleElement_iface
.lpVtbl
= &HTMLTitleElementVtbl
;
185 ret
->element
.node
.vtbl
= &HTMLTitleElementImplVtbl
;
187 HTMLElement_Init(&ret
->element
, doc
, nselem
, &HTMLTitleElement_dispex
);
189 *elem
= &ret
->element
;
196 IHTMLHeadElement IHTMLHeadElement_iface
;
199 static inline HTMLHeadElement
*impl_from_IHTMLHeadElement(IHTMLHeadElement
*iface
)
201 return CONTAINING_RECORD(iface
, HTMLHeadElement
, IHTMLHeadElement_iface
);
204 static HRESULT WINAPI
HTMLHeadElement_QueryInterface(IHTMLHeadElement
*iface
,
205 REFIID riid
, void **ppv
)
207 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
209 return IHTMLDOMNode_QueryInterface(&This
->element
.node
.IHTMLDOMNode_iface
, riid
, ppv
);
212 static ULONG WINAPI
HTMLHeadElement_AddRef(IHTMLHeadElement
*iface
)
214 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
216 return IHTMLDOMNode_AddRef(&This
->element
.node
.IHTMLDOMNode_iface
);
219 static ULONG WINAPI
HTMLHeadElement_Release(IHTMLHeadElement
*iface
)
221 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
223 return IHTMLDOMNode_Release(&This
->element
.node
.IHTMLDOMNode_iface
);
226 static HRESULT WINAPI
HTMLHeadElement_GetTypeInfoCount(IHTMLHeadElement
*iface
, UINT
*pctinfo
)
228 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
230 return IDispatchEx_GetTypeInfoCount(&This
->element
.node
.dispex
.IDispatchEx_iface
, pctinfo
);
233 static HRESULT WINAPI
HTMLHeadElement_GetTypeInfo(IHTMLHeadElement
*iface
, UINT iTInfo
,
234 LCID lcid
, ITypeInfo
**ppTInfo
)
236 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
238 return IDispatchEx_GetTypeInfo(&This
->element
.node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
,
242 static HRESULT WINAPI
HTMLHeadElement_GetIDsOfNames(IHTMLHeadElement
*iface
, REFIID riid
,
243 LPOLESTR
*rgszNames
, UINT cNames
,
244 LCID lcid
, DISPID
*rgDispId
)
246 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
248 return IDispatchEx_GetIDsOfNames(&This
->element
.node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
,
249 cNames
, lcid
, rgDispId
);
252 static HRESULT WINAPI
HTMLHeadElement_Invoke(IHTMLHeadElement
*iface
, DISPID dispIdMember
,
253 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
254 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
256 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
258 return IDispatchEx_Invoke(&This
->element
.node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
,
259 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
262 static HRESULT WINAPI
HTMLHeadElement_put_profile(IHTMLHeadElement
*iface
, BSTR v
)
264 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
265 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
269 static HRESULT WINAPI
HTMLHeadElement_get_profile(IHTMLHeadElement
*iface
, BSTR
*p
)
271 HTMLHeadElement
*This
= impl_from_IHTMLHeadElement(iface
);
272 FIXME("(%p)->(%p)\n", This
, p
);
276 static const IHTMLHeadElementVtbl HTMLHeadElementVtbl
= {
277 HTMLHeadElement_QueryInterface
,
278 HTMLHeadElement_AddRef
,
279 HTMLHeadElement_Release
,
280 HTMLHeadElement_GetTypeInfoCount
,
281 HTMLHeadElement_GetTypeInfo
,
282 HTMLHeadElement_GetIDsOfNames
,
283 HTMLHeadElement_Invoke
,
284 HTMLHeadElement_put_profile
,
285 HTMLHeadElement_get_profile
288 static inline HTMLHeadElement
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
290 return CONTAINING_RECORD(iface
, HTMLHeadElement
, element
.node
);
293 static HRESULT
HTMLHeadElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
295 HTMLHeadElement
*This
= impl_from_HTMLDOMNode(iface
);
297 TRACE("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
299 if(IsEqualGUID(&IID_IHTMLHeadElement
, riid
))
300 *ppv
= &This
->IHTMLHeadElement_iface
;
302 return HTMLElement_QI(&This
->element
.node
, riid
, ppv
);
304 IUnknown_AddRef((IUnknown
*)*ppv
);
308 static void HTMLHeadElement_destructor(HTMLDOMNode
*iface
)
310 HTMLHeadElement
*This
= impl_from_HTMLDOMNode(iface
);
312 HTMLElement_destructor(&This
->element
.node
);
315 static const NodeImplVtbl HTMLHeadElementImplVtbl
= {
317 HTMLHeadElement_destructor
,
320 HTMLElement_handle_event
,
321 HTMLElement_get_attr_col
324 static const tid_t HTMLHeadElement_iface_tids
[] = {
326 IHTMLHeadElement_tid
,
329 static dispex_static_data_t HTMLHeadElement_dispex
= {
331 DispHTMLHeadElement_tid
,
333 HTMLHeadElement_iface_tids
336 HRESULT
HTMLHeadElement_Create(HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, HTMLElement
**elem
)
338 HTMLHeadElement
*ret
;
340 ret
= heap_alloc_zero(sizeof(*ret
));
342 return E_OUTOFMEMORY
;
344 ret
->IHTMLHeadElement_iface
.lpVtbl
= &HTMLHeadElementVtbl
;
345 ret
->element
.node
.vtbl
= &HTMLHeadElementImplVtbl
;
347 HTMLElement_Init(&ret
->element
, doc
, nselem
, &HTMLHeadElement_dispex
);
349 *elem
= &ret
->element
;