2 * Copyright 2007 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);
34 struct HTMLOptionElement {
37 const IHTMLOptionElementVtbl *lpHTMLOptionElementVtbl;
39 nsIDOMHTMLOptionElement *nsoption;
42 #define HTMLOPTION(x) (&(x)->lpHTMLOptionElementVtbl)
44 #define HTMLOPTION_THIS(iface) DEFINE_THIS(HTMLOptionElement, HTMLOptionElement, iface)
46 static HRESULT WINAPI HTMLOptionElement_QueryInterface(IHTMLOptionElement *iface,
47 REFIID riid, void **ppv)
49 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
51 return IHTMLDOMNode_QueryInterface(HTMLDOMNODE(&This->element.node), riid, ppv);
54 static ULONG WINAPI HTMLOptionElement_AddRef(IHTMLOptionElement *iface)
56 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
58 return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This->element.node));
61 static ULONG WINAPI HTMLOptionElement_Release(IHTMLOptionElement *iface)
63 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
65 return IHTMLDOMNode_Release(HTMLDOMNODE(&This->element.node));
68 static HRESULT WINAPI HTMLOptionElement_GetTypeInfoCount(IHTMLOptionElement *iface, UINT *pctinfo)
70 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
71 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->element.node.dispex), pctinfo);
74 static HRESULT WINAPI HTMLOptionElement_GetTypeInfo(IHTMLOptionElement *iface, UINT iTInfo,
75 LCID lcid, ITypeInfo **ppTInfo)
77 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
78 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->element.node.dispex), iTInfo, lcid, ppTInfo);
81 static HRESULT WINAPI HTMLOptionElement_GetIDsOfNames(IHTMLOptionElement *iface, REFIID riid,
82 LPOLESTR *rgszNames, UINT cNames,
83 LCID lcid, DISPID *rgDispId)
85 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
86 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->element.node.dispex), riid, rgszNames, cNames, lcid, rgDispId);
89 static HRESULT WINAPI HTMLOptionElement_Invoke(IHTMLOptionElement *iface, DISPID dispIdMember,
90 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
91 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
93 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
94 return IDispatchEx_Invoke(DISPATCHEX(&This->element.node.dispex), dispIdMember, riid, lcid, wFlags, pDispParams,
95 pVarResult, pExcepInfo, puArgErr);
98 static HRESULT WINAPI HTMLOptionElement_put_selected(IHTMLOptionElement *iface, VARIANT_BOOL v)
100 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
103 TRACE("(%p)->(%x)\n", This, v);
105 nsres = nsIDOMHTMLOptionElement_SetSelected(This->nsoption, v != VARIANT_FALSE);
106 if(NS_FAILED(nsres)) {
107 ERR("SetSelected failed: %08x\n", nsres);
114 static HRESULT WINAPI HTMLOptionElement_get_selected(IHTMLOptionElement *iface, VARIANT_BOOL *p)
116 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
120 TRACE("(%p)->(%p)\n", This, p);
122 nsres = nsIDOMHTMLOptionElement_GetSelected(This->nsoption, &selected);
123 if(NS_FAILED(nsres)) {
124 ERR("GetSelected failed: %08x\n", nsres);
128 *p = selected ? VARIANT_TRUE : VARIANT_FALSE;
132 static HRESULT WINAPI HTMLOptionElement_put_value(IHTMLOptionElement *iface, BSTR v)
134 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
138 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
140 nsAString_InitDepend(&value_str, v);
141 nsres = nsIDOMHTMLOptionElement_SetValue(This->nsoption, &value_str);
142 nsAString_Finish(&value_str);
144 ERR("SetValue failed: %08x\n", nsres);
149 static HRESULT WINAPI HTMLOptionElement_get_value(IHTMLOptionElement *iface, BSTR *p)
151 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
153 const PRUnichar *value;
156 TRACE("(%p)->(%p)\n", This, p);
158 nsAString_Init(&value_str, NULL);
159 nsres = nsIDOMHTMLOptionElement_GetValue(This->nsoption, &value_str);
160 if(NS_SUCCEEDED(nsres)) {
161 nsAString_GetData(&value_str, &value);
162 *p = SysAllocString(value);
164 ERR("GetValue failed: %08x\n", nsres);
167 nsAString_Finish(&value_str);
172 static HRESULT WINAPI HTMLOptionElement_put_defaultSelected(IHTMLOptionElement *iface, VARIANT_BOOL v)
174 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
175 FIXME("(%p)->(%x)\n", This, v);
179 static HRESULT WINAPI HTMLOptionElement_get_defaultSelected(IHTMLOptionElement *iface, VARIANT_BOOL *p)
181 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
182 FIXME("(%p)->(%p)\n", This, p);
186 static HRESULT WINAPI HTMLOptionElement_put_index(IHTMLOptionElement *iface, LONG v)
188 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
189 FIXME("(%p)->(%d)\n", This, v);
193 static HRESULT WINAPI HTMLOptionElement_get_index(IHTMLOptionElement *iface, LONG *p)
195 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
196 FIXME("(%p)->(%p)\n", This, p);
200 static HRESULT WINAPI HTMLOptionElement_put_text(IHTMLOptionElement *iface, BSTR v)
202 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
203 nsIDOMText *text_node;
208 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
210 if(!This->element.node.doc->nsdoc) {
211 WARN("NULL nsdoc\n");
218 nsres = nsIDOMHTMLOptionElement_GetFirstChild(This->nsoption, &child);
219 if(NS_FAILED(nsres) || !child)
222 nsres = nsIDOMHTMLOptionElement_RemoveChild(This->nsoption, child, &tmp);
223 nsIDOMNode_Release(child);
224 if(NS_SUCCEEDED(nsres)) {
225 nsIDOMNode_Release(tmp);
227 ERR("RemoveChild failed: %08x\n", nsres);
232 nsAString_InitDepend(&text_str, v);
233 nsres = nsIDOMHTMLDocument_CreateTextNode(This->element.node.doc->nsdoc, &text_str, &text_node);
234 nsAString_Finish(&text_str);
235 if(NS_FAILED(nsres)) {
236 ERR("CreateTextNode failed: %08x\n", nsres);
240 nsres = nsIDOMHTMLOptionElement_AppendChild(This->nsoption, (nsIDOMNode*)text_node, &tmp);
241 if(NS_SUCCEEDED(nsres))
242 nsIDOMNode_Release(tmp);
244 ERR("AppendChild failed: %08x\n", nsres);
249 static HRESULT WINAPI HTMLOptionElement_get_text(IHTMLOptionElement *iface, BSTR *p)
251 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
253 const PRUnichar *text;
256 TRACE("(%p)->(%p)\n", This, p);
258 nsAString_Init(&text_str, NULL);
259 nsres = nsIDOMHTMLOptionElement_GetText(This->nsoption, &text_str);
260 if(NS_SUCCEEDED(nsres)) {
261 nsAString_GetData(&text_str, &text);
262 *p = SysAllocString(text);
264 ERR("GetText failed: %08x\n", nsres);
267 nsAString_Finish(&text_str);
272 static HRESULT WINAPI HTMLOptionElement_get_form(IHTMLOptionElement *iface, IHTMLFormElement **p)
274 HTMLOptionElement *This = HTMLOPTION_THIS(iface);
275 FIXME("(%p)->(%p)\n", This, p);
279 #undef HTMLOPTION_THIS
281 static const IHTMLOptionElementVtbl HTMLOptionElementVtbl = {
282 HTMLOptionElement_QueryInterface,
283 HTMLOptionElement_AddRef,
284 HTMLOptionElement_Release,
285 HTMLOptionElement_GetTypeInfoCount,
286 HTMLOptionElement_GetTypeInfo,
287 HTMLOptionElement_GetIDsOfNames,
288 HTMLOptionElement_Invoke,
289 HTMLOptionElement_put_selected,
290 HTMLOptionElement_get_selected,
291 HTMLOptionElement_put_value,
292 HTMLOptionElement_get_value,
293 HTMLOptionElement_put_defaultSelected,
294 HTMLOptionElement_get_defaultSelected,
295 HTMLOptionElement_put_index,
296 HTMLOptionElement_get_index,
297 HTMLOptionElement_put_text,
298 HTMLOptionElement_get_text,
299 HTMLOptionElement_get_form
302 #define HTMLOPTION_NODE_THIS(iface) DEFINE_THIS2(HTMLOptionElement, element.node, iface)
304 static HRESULT HTMLOptionElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
306 HTMLOptionElement *This = HTMLOPTION_NODE_THIS(iface);
310 if(IsEqualGUID(&IID_IUnknown, riid)) {
311 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
312 *ppv = HTMLOPTION(This);
313 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
314 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
315 *ppv = HTMLOPTION(This);
316 }else if(IsEqualGUID(&IID_IHTMLOptionElement, riid)) {
317 TRACE("(%p)->(IID_IHTMLOptionElement %p)\n", This, ppv);
318 *ppv = HTMLOPTION(This);
322 IUnknown_AddRef((IUnknown*)*ppv);
326 return HTMLElement_QI(&This->element.node, riid, ppv);
329 static void HTMLOptionElement_destructor(HTMLDOMNode *iface)
331 HTMLOptionElement *This = HTMLOPTION_NODE_THIS(iface);
334 nsIDOMHTMLOptionElement_Release(This->nsoption);
336 HTMLElement_destructor(&This->element.node);
339 #undef HTMLOPTION_NODE_THIS
341 static const NodeImplVtbl HTMLOptionElementImplVtbl = {
342 HTMLOptionElement_QI,
343 HTMLOptionElement_destructor,
347 static const tid_t HTMLOptionElement_iface_tids[] = {
349 IHTMLOptionElement_tid,
352 static dispex_static_data_t HTMLOptionElement_dispex = {
354 DispHTMLOptionElement_tid,
356 HTMLOptionElement_iface_tids
359 HTMLElement *HTMLOptionElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem)
361 HTMLOptionElement *ret = heap_alloc_zero(sizeof(HTMLOptionElement));
364 ret->lpHTMLOptionElementVtbl = &HTMLOptionElementVtbl;
365 ret->element.node.vtbl = &HTMLOptionElementImplVtbl;
367 HTMLElement_Init(&ret->element, doc, nselem, &HTMLOptionElement_dispex);
369 nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLOptionElement, (void**)&ret->nsoption);
371 ERR("Could not get nsIDOMHTMLOptionElement interface: %08x\n", nsres);
373 return &ret->element;
376 #define HTMLOPTFACTORY_THIS(iface) DEFINE_THIS(HTMLOptionElementFactory, HTMLOptionElementFactory, iface)
378 static HRESULT WINAPI HTMLOptionElementFactory_QueryInterface(IHTMLOptionElementFactory *iface,
379 REFIID riid, void **ppv)
381 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
385 if(IsEqualGUID(&IID_IUnknown, riid)) {
386 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
387 *ppv = HTMLOPTFACTORY(This);
388 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
389 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
390 *ppv = HTMLOPTFACTORY(This);
391 }else if(IsEqualGUID(&IID_IHTMLOptionElementFactory, riid)) {
392 TRACE("(%p)->(IID_IHTMLOptionElementFactory %p)\n", This, ppv);
393 *ppv = HTMLOPTFACTORY(This);
397 IUnknown_AddRef((IUnknown*)*ppv);
401 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
402 return E_NOINTERFACE;
405 static ULONG WINAPI HTMLOptionElementFactory_AddRef(IHTMLOptionElementFactory *iface)
407 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
408 LONG ref = InterlockedIncrement(&This->ref);
410 TRACE("(%p) ref=%d\n", This, ref);
415 static ULONG WINAPI HTMLOptionElementFactory_Release(IHTMLOptionElementFactory *iface)
417 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
418 LONG ref = InterlockedDecrement(&This->ref);
420 TRACE("(%p) ref=%d\n", This, ref);
428 static HRESULT WINAPI HTMLOptionElementFactory_GetTypeInfoCount(IHTMLOptionElementFactory *iface, UINT *pctinfo)
430 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
431 FIXME("(%p)->(%p)\n", This, pctinfo);
435 static HRESULT WINAPI HTMLOptionElementFactory_GetTypeInfo(IHTMLOptionElementFactory *iface, UINT iTInfo,
436 LCID lcid, ITypeInfo **ppTInfo)
438 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
439 FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
443 static HRESULT WINAPI HTMLOptionElementFactory_GetIDsOfNames(IHTMLOptionElementFactory *iface, REFIID riid,
444 LPOLESTR *rgszNames, UINT cNames,
445 LCID lcid, DISPID *rgDispId)
447 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
448 FIXME("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
453 static HRESULT WINAPI HTMLOptionElementFactory_Invoke(IHTMLOptionElementFactory *iface, DISPID dispIdMember,
454 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
455 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
457 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
458 FIXME("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
459 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
463 static HRESULT WINAPI HTMLOptionElementFactory_create(IHTMLOptionElementFactory *iface,
464 VARIANT text, VARIANT value, VARIANT defaultselected, VARIANT selected,
465 IHTMLOptionElement **optelem)
467 HTMLOptionElementFactory *This = HTMLOPTFACTORY_THIS(iface);
468 nsIDOMHTMLElement *nselem;
471 static const PRUnichar optionW[] = {'O','P','T','I','O','N',0};
473 TRACE("(%p)->(%s %s %s %s %p)\n", This, debugstr_variant(&text), debugstr_variant(&value),
474 debugstr_variant(&defaultselected), debugstr_variant(&selected), optelem);
476 if(!This->window || !This->window->doc) {
483 hres = create_nselem(This->window->doc, optionW, &nselem);
487 hres = IHTMLDOMNode_QueryInterface(HTMLDOMNODE(get_node(This->window->doc, (nsIDOMNode*)nselem, TRUE)),
488 &IID_IHTMLOptionElement, (void**)optelem);
489 nsIDOMHTMLElement_Release(nselem);
491 if(V_VT(&text) == VT_BSTR)
492 IHTMLOptionElement_put_text(*optelem, V_BSTR(&text));
493 else if(V_VT(&text) != VT_EMPTY)
494 FIXME("Unsupported text vt=%d\n", V_VT(&text));
496 if(V_VT(&value) == VT_BSTR)
497 IHTMLOptionElement_put_value(*optelem, V_BSTR(&value));
498 else if(V_VT(&value) != VT_EMPTY)
499 FIXME("Unsupported value vt=%d\n", V_VT(&value));
501 if(V_VT(&defaultselected) != VT_EMPTY)
502 FIXME("Unsupported defaultselected vt=%d\n", V_VT(&defaultselected));
503 if(V_VT(&selected) != VT_EMPTY)
504 FIXME("Unsupported selected vt=%d\n", V_VT(&selected));
509 #undef HTMLOPTFACTORY_THIS
511 static const IHTMLOptionElementFactoryVtbl HTMLOptionElementFactoryVtbl = {
512 HTMLOptionElementFactory_QueryInterface,
513 HTMLOptionElementFactory_AddRef,
514 HTMLOptionElementFactory_Release,
515 HTMLOptionElementFactory_GetTypeInfoCount,
516 HTMLOptionElementFactory_GetTypeInfo,
517 HTMLOptionElementFactory_GetIDsOfNames,
518 HTMLOptionElementFactory_Invoke,
519 HTMLOptionElementFactory_create
522 HTMLOptionElementFactory *HTMLOptionElementFactory_Create(HTMLWindow *window)
524 HTMLOptionElementFactory *ret;
526 ret = heap_alloc(sizeof(HTMLOptionElementFactory));
528 ret->lpHTMLOptionElementFactoryVtbl = &HTMLOptionElementFactoryVtbl;
530 ret->window = window;