2006-03-06 22:37:10 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2006 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-03-06 22:37:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "mshtml_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
|
|
|
typedef struct {
|
2007-09-15 16:07:01 +02:00
|
|
|
HTMLElement element;
|
|
|
|
|
2006-03-06 22:37:10 +01:00
|
|
|
const IHTMLSelectElementVtbl *lpHTMLSelectElementVtbl;
|
|
|
|
|
|
|
|
nsIDOMHTMLSelectElement *nsselect;
|
|
|
|
} HTMLSelectElement;
|
|
|
|
|
2007-10-04 02:08:56 +02:00
|
|
|
#define HTMLSELECT(x) ((IHTMLSelectElement*) &(x)->lpHTMLSelectElementVtbl)
|
2006-03-06 22:37:10 +01:00
|
|
|
|
|
|
|
#define HTMLSELECT_THIS(iface) DEFINE_THIS(HTMLSelectElement, HTMLSelectElement, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_QueryInterface(IHTMLSelectElement *iface,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
|
2007-10-04 02:10:36 +02:00
|
|
|
return IHTMLDOMNode_QueryInterface(HTMLDOMNODE(&This->element.node), riid, ppv);
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLSelectElement_AddRef(IHTMLSelectElement *iface)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
|
2007-09-19 12:40:41 +02:00
|
|
|
return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This->element.node));
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLSelectElement_Release(IHTMLSelectElement *iface)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
|
2007-09-19 12:40:41 +02:00
|
|
|
return IHTMLDOMNode_Release(HTMLDOMNODE(&This->element.node));
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_GetTypeInfoCount(IHTMLSelectElement *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pctinfo);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_GetTypeInfo(IHTMLSelectElement *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
|
2006-03-06 22:37:10 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_GetIDsOfNames(IHTMLSelectElement *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
|
2006-03-06 22:37:10 +01:00
|
|
|
lcid, rgDispId);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_Invoke(IHTMLSelectElement *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
|
2006-03-06 22:37:10 +01:00
|
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_size(IHTMLSelectElement *iface, long v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_size(IHTMLSelectElement *iface, long *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_multiple(IHTMLSelectElement *iface, VARIANT_BOOL v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%x)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_multiple(IHTMLSelectElement *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_name(IHTMLSelectElement *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_name(IHTMLSelectElement *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2006-03-07 23:11:41 +01:00
|
|
|
nsAString name_str;
|
2006-04-08 20:00:09 +02:00
|
|
|
const PRUnichar *name = NULL;
|
2006-03-07 23:11:41 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsAString_Init(&name_str, NULL);
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLSelectElement_GetName(This->nsselect, &name_str);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
2006-10-20 15:38:13 +02:00
|
|
|
static const WCHAR wszGarbage[] = {'g','a','r','b','a','g','e',0};
|
|
|
|
|
2007-12-17 01:38:30 +01:00
|
|
|
nsAString_GetData(&name_str, &name);
|
2006-10-20 15:38:13 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Native never returns empty string here. If an element has no name,
|
|
|
|
* name of previous element or ramdom data is returned.
|
|
|
|
*/
|
|
|
|
*p = SysAllocString(*name ? name : wszGarbage);
|
2006-03-07 23:11:41 +01:00
|
|
|
}else {
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("GetName failed: %08x\n", nsres);
|
2006-03-07 23:11:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Finish(&name_str);
|
|
|
|
|
2006-10-19 23:26:46 +02:00
|
|
|
TRACE("name=%s\n", debugstr_w(*p));
|
2006-03-07 23:11:41 +01:00
|
|
|
return S_OK;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_options(IHTMLSelectElement *iface, IDispatch **p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_onchange(IHTMLSelectElement *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_onchange(IHTMLSelectElement *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_selectedIndex(IHTMLSelectElement *iface, long v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2007-10-14 00:11:48 +02:00
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%ld)\n", This, v);
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLSelectElement_SetSelectedIndex(This->nsselect, v);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("SetSelectedIndex failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_selectedIndex(IHTMLSelectElement *iface, long *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2007-10-14 00:11:48 +02:00
|
|
|
PRInt32 idx = 0;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLSelectElement_GetSelectedIndex(This->nsselect, &idx);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("GetSelectedIndex failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
*p = idx;
|
|
|
|
return S_OK;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_type(IHTMLSelectElement *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_value(IHTMLSelectElement *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_value(IHTMLSelectElement *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2006-03-07 23:11:41 +01:00
|
|
|
nsAString value_str;
|
2006-04-08 20:00:09 +02:00
|
|
|
const PRUnichar *value = NULL;
|
2006-03-07 23:11:41 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsAString_Init(&value_str, NULL);
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLSelectElement_GetValue(This->nsselect, &value_str);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
2007-12-17 01:38:30 +01:00
|
|
|
nsAString_GetData(&value_str, &value);
|
2006-03-07 23:11:41 +01:00
|
|
|
*p = SysAllocString(value);
|
|
|
|
}else {
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("GetValue failed: %08x\n", nsres);
|
2006-03-07 23:11:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Finish(&value_str);
|
|
|
|
|
2006-10-19 23:26:46 +02:00
|
|
|
TRACE("value=%s\n", debugstr_w(*p));
|
2006-03-07 23:11:41 +01:00
|
|
|
return S_OK;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_disabled(IHTMLSelectElement *iface, VARIANT_BOOL v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%x)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_disabled(IHTMLSelectElement *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_form(IHTMLSelectElement *iface, IHTMLFormElement **p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_add(IHTMLSelectElement *iface, IHTMLElement *element,
|
|
|
|
VARIANT before)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p v)\n", This, element);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_remove(IHTMLSelectElement *iface, long index)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, index);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_put_length(IHTMLSelectElement *iface, long v)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get_length(IHTMLSelectElement *iface, long *p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
2007-10-04 02:15:09 +02:00
|
|
|
PRUint32 length = 0;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLSelectElement_GetLength(This->nsselect, &length);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("GetLength failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
*p = length;
|
|
|
|
|
|
|
|
TRACE("ret %ld\n", *p);
|
|
|
|
return S_OK;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_get__newEnum(IHTMLSelectElement *iface, IUnknown **p)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_item(IHTMLSelectElement *iface, VARIANT name,
|
|
|
|
VARIANT index, IDispatch **pdisp)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(v v %p)\n", This, pdisp);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLSelectElement_tags(IHTMLSelectElement *iface, VARIANT tagName,
|
|
|
|
IDispatch **pdisp)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_THIS(iface);
|
|
|
|
FIXME("(%p)->(v %p)\n", This, pdisp);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2007-10-04 02:08:56 +02:00
|
|
|
#undef HTMLSELECT_THIS
|
2006-03-06 22:37:10 +01:00
|
|
|
|
|
|
|
static const IHTMLSelectElementVtbl HTMLSelectElementVtbl = {
|
|
|
|
HTMLSelectElement_QueryInterface,
|
|
|
|
HTMLSelectElement_AddRef,
|
|
|
|
HTMLSelectElement_Release,
|
|
|
|
HTMLSelectElement_GetTypeInfoCount,
|
|
|
|
HTMLSelectElement_GetTypeInfo,
|
|
|
|
HTMLSelectElement_GetIDsOfNames,
|
|
|
|
HTMLSelectElement_Invoke,
|
|
|
|
HTMLSelectElement_put_size,
|
|
|
|
HTMLSelectElement_get_size,
|
|
|
|
HTMLSelectElement_put_multiple,
|
|
|
|
HTMLSelectElement_get_multiple,
|
|
|
|
HTMLSelectElement_put_name,
|
|
|
|
HTMLSelectElement_get_name,
|
|
|
|
HTMLSelectElement_get_options,
|
|
|
|
HTMLSelectElement_put_onchange,
|
|
|
|
HTMLSelectElement_get_onchange,
|
|
|
|
HTMLSelectElement_put_selectedIndex,
|
|
|
|
HTMLSelectElement_get_selectedIndex,
|
|
|
|
HTMLSelectElement_get_type,
|
|
|
|
HTMLSelectElement_put_value,
|
|
|
|
HTMLSelectElement_get_value,
|
|
|
|
HTMLSelectElement_put_disabled,
|
|
|
|
HTMLSelectElement_get_disabled,
|
|
|
|
HTMLSelectElement_get_form,
|
|
|
|
HTMLSelectElement_add,
|
|
|
|
HTMLSelectElement_remove,
|
|
|
|
HTMLSelectElement_put_length,
|
|
|
|
HTMLSelectElement_get_length,
|
|
|
|
HTMLSelectElement_get__newEnum,
|
|
|
|
HTMLSelectElement_item,
|
|
|
|
HTMLSelectElement_tags
|
|
|
|
};
|
|
|
|
|
2007-10-04 02:08:56 +02:00
|
|
|
#define HTMLSELECT_NODE_THIS(iface) DEFINE_THIS2(HTMLSelectElement, element.node, iface)
|
|
|
|
|
2007-10-04 02:10:36 +02:00
|
|
|
static HRESULT HTMLSelectElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_NODE_THIS(iface);
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
|
|
|
*ppv = HTMLSELECT(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IDispatch, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
|
|
|
|
*ppv = HTMLSELECT(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IHTMLSelectElement, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLSelectElement %p)\n", This, ppv);
|
|
|
|
*ppv = HTMLSELECT(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppv) {
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return HTMLElement_QI(&This->element.node, riid, ppv);
|
|
|
|
}
|
|
|
|
|
2007-10-04 02:08:56 +02:00
|
|
|
static void HTMLSelectElement_destructor(HTMLDOMNode *iface)
|
|
|
|
{
|
|
|
|
HTMLSelectElement *This = HTMLSELECT_NODE_THIS(iface);
|
|
|
|
|
|
|
|
nsIDOMHTMLSelectElement_Release(This->nsselect);
|
2007-10-04 02:09:48 +02:00
|
|
|
|
|
|
|
HTMLElement_destructor(&This->element.node);
|
2007-10-04 02:08:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef HTMLSELECT_NODE_THIS
|
|
|
|
|
2007-10-04 02:09:48 +02:00
|
|
|
static const NodeImplVtbl HTMLSelectElementImplVtbl = {
|
2007-10-04 02:10:36 +02:00
|
|
|
HTMLSelectElement_QI,
|
2007-10-04 02:09:48 +02:00
|
|
|
HTMLSelectElement_destructor
|
|
|
|
};
|
|
|
|
|
2007-09-15 16:07:01 +02:00
|
|
|
HTMLElement *HTMLSelectElement_Create(nsIDOMHTMLElement *nselem)
|
2006-03-06 22:37:10 +01:00
|
|
|
{
|
2007-12-05 21:52:31 +01:00
|
|
|
HTMLSelectElement *ret = heap_alloc(sizeof(HTMLSelectElement));
|
2006-03-06 22:37:10 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
2007-12-04 13:37:00 +01:00
|
|
|
HTMLElement_Init(&ret->element);
|
|
|
|
|
2006-03-06 22:37:10 +01:00
|
|
|
ret->lpHTMLSelectElementVtbl = &HTMLSelectElementVtbl;
|
2007-10-04 02:09:48 +02:00
|
|
|
ret->element.node.vtbl = &HTMLSelectElementImplVtbl;
|
2006-03-06 22:37:10 +01:00
|
|
|
|
2007-09-15 16:07:01 +02:00
|
|
|
nsres = nsIDOMHTMLElement_QueryInterface(nselem, &IID_nsIDOMHTMLSelectElement,
|
2006-03-06 22:37:10 +01:00
|
|
|
(void**)&ret->nsselect);
|
|
|
|
if(NS_FAILED(nsres))
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("Could not get nsIDOMHTMLSelectElement interfce: %08x\n", nsres);
|
2006-03-06 22:37:10 +01:00
|
|
|
|
2007-09-15 16:07:01 +02:00
|
|
|
return &ret->element;
|
2006-03-06 22:37:10 +01:00
|
|
|
}
|