488 lines
14 KiB
C
488 lines
14 KiB
C
/*
|
|
* Copyright 2008 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winuser.h"
|
|
#include "ole2.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "wine/unicode.h"
|
|
|
|
#include "mshtml_private.h"
|
|
#include "htmlevent.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
#define HTMLELEM3_THIS(iface) DEFINE_THIS(HTMLElement, HTMLElement3, iface)
|
|
|
|
static HRESULT WINAPI HTMLElement3_QueryInterface(IHTMLElement3 *iface,
|
|
REFIID riid, void **ppv)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IHTMLElement_QueryInterface(HTMLELEM(This), riid, ppv);
|
|
}
|
|
|
|
static ULONG WINAPI HTMLElement3_AddRef(IHTMLElement3 *iface)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IHTMLElement_AddRef(HTMLELEM(This));
|
|
}
|
|
|
|
static ULONG WINAPI HTMLElement3_Release(IHTMLElement3 *iface)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IHTMLElement_Release(HTMLELEM(This));
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_GetTypeInfoCount(IHTMLElement3 *iface, UINT *pctinfo)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->node.dispex), pctinfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_GetTypeInfo(IHTMLElement3 *iface, UINT iTInfo,
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->node.dispex), iTInfo, lcid, ppTInfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_GetIDsOfNames(IHTMLElement3 *iface, REFIID riid,
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
LCID lcid, DISPID *rgDispId)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->node.dispex), riid, rgszNames, cNames, lcid, rgDispId);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_Invoke(IHTMLElement3 *iface, DISPID dispIdMember,
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
return IDispatchEx_Invoke(DISPATCHEX(&This->node.dispex), dispIdMember, riid, lcid,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_mergeAttributes(IHTMLElement3 *iface, IHTMLElement *mergeThis, VARIANT *pvarFlags)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p %p)\n", This, mergeThis, pvarFlags);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_isMultiLine(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_canHaveHTML(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onlayoutcomplete(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onlayoutcomplete(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onpage(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onpage(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_inflateBlock(IHTMLElement3 *iface, VARIANT_BOOL v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%x)\n", This, v);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_inflateBlock(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onbeforedeactivate(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onbeforedeactivate(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_setActive(IHTMLElement3 *iface)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)\n", This);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_contentEditable(IHTMLElement3 *iface, BSTR v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_contentEditable(IHTMLElement3 *iface, BSTR *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_isContentEditable(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_hideFocus(IHTMLElement3 *iface, VARIANT_BOOL v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%x)\n", This, v);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_hideFocus(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const WCHAR disabledW[] = {'d','i','s','a','b','l','e','d',0};
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_disabled(IHTMLElement3 *iface, VARIANT_BOOL v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
VARIANT *var;
|
|
HRESULT hres;
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
if(This->node.vtbl->put_disabled)
|
|
return This->node.vtbl->put_disabled(&This->node, v);
|
|
|
|
hres = dispex_get_dprop_ref(&This->node.dispex, disabledW, TRUE, &var);
|
|
if(FAILED(hres))
|
|
return hres;
|
|
|
|
VariantClear(var);
|
|
V_VT(var) = VT_BOOL;
|
|
V_BOOL(var) = v;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_disabled(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
VARIANT *var;
|
|
HRESULT hres;
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
if(This->node.vtbl->get_disabled)
|
|
return This->node.vtbl->get_disabled(&This->node, p);
|
|
|
|
hres = dispex_get_dprop_ref(&This->node.dispex, disabledW, FALSE, &var);
|
|
if(hres == DISP_E_UNKNOWNNAME) {
|
|
*p = VARIANT_FALSE;
|
|
return S_OK;
|
|
}
|
|
if(FAILED(hres))
|
|
return hres;
|
|
|
|
if(V_VT(var) != VT_BOOL) {
|
|
FIXME("vt %d\n", V_VT(var));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
*p = V_BOOL(var);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_isDisabled(IHTMLElement3 *iface, VARIANT_BOOL *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onmove(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onmove(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_oncontrolselect(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_oncontrolselect(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_fireEvent(IHTMLElement3 *iface, BSTR bstrEventName,
|
|
VARIANT *pvarEventObject, VARIANT_BOOL *pfCancelled)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
|
|
TRACE("(%p)->(%s %s %p)\n", This, debugstr_w(bstrEventName), debugstr_variant(pvarEventObject),
|
|
pfCancelled);
|
|
|
|
return dispatch_event(&This->node, bstrEventName, pvarEventObject, pfCancelled);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onresizestart(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onresizestart(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onresizeend(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onresizeend(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onmovestart(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onmovestart(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onmoveend(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onmoveend(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onmousecenter(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onmousecenter(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onmouseleave(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onmouseleave(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_onactivate(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_onactivate(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_put_ondeactivate(IHTMLElement3 *iface, VARIANT v)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_ondeactivate(IHTMLElement3 *iface, VARIANT *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_dragDrop(IHTMLElement3 *iface, VARIANT_BOOL *pfRet)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, pfRet);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLElement3_get_glyphMode(IHTMLElement3 *iface, LONG *p)
|
|
{
|
|
HTMLElement *This = HTMLELEM3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
#undef HTMLELEM2_THIS
|
|
|
|
static const IHTMLElement3Vtbl HTMLElement3Vtbl = {
|
|
HTMLElement3_QueryInterface,
|
|
HTMLElement3_AddRef,
|
|
HTMLElement3_Release,
|
|
HTMLElement3_GetTypeInfoCount,
|
|
HTMLElement3_GetTypeInfo,
|
|
HTMLElement3_GetIDsOfNames,
|
|
HTMLElement3_Invoke,
|
|
HTMLElement3_mergeAttributes,
|
|
HTMLElement3_get_isMultiLine,
|
|
HTMLElement3_get_canHaveHTML,
|
|
HTMLElement3_put_onlayoutcomplete,
|
|
HTMLElement3_get_onlayoutcomplete,
|
|
HTMLElement3_put_onpage,
|
|
HTMLElement3_get_onpage,
|
|
HTMLElement3_put_inflateBlock,
|
|
HTMLElement3_get_inflateBlock,
|
|
HTMLElement3_put_onbeforedeactivate,
|
|
HTMLElement3_get_onbeforedeactivate,
|
|
HTMLElement3_setActive,
|
|
HTMLElement3_put_contentEditable,
|
|
HTMLElement3_get_contentEditable,
|
|
HTMLElement3_get_isContentEditable,
|
|
HTMLElement3_put_hideFocus,
|
|
HTMLElement3_get_hideFocus,
|
|
HTMLElement3_put_disabled,
|
|
HTMLElement3_get_disabled,
|
|
HTMLElement3_get_isDisabled,
|
|
HTMLElement3_put_onmove,
|
|
HTMLElement3_get_onmove,
|
|
HTMLElement3_put_oncontrolselect,
|
|
HTMLElement3_get_oncontrolselect,
|
|
HTMLElement3_fireEvent,
|
|
HTMLElement3_put_onresizestart,
|
|
HTMLElement3_get_onresizestart,
|
|
HTMLElement3_put_onresizeend,
|
|
HTMLElement3_get_onresizeend,
|
|
HTMLElement3_put_onmovestart,
|
|
HTMLElement3_get_onmovestart,
|
|
HTMLElement3_put_onmoveend,
|
|
HTMLElement3_get_onmoveend,
|
|
HTMLElement3_put_onmousecenter,
|
|
HTMLElement3_get_onmousecenter,
|
|
HTMLElement3_put_onmouseleave,
|
|
HTMLElement3_get_onmouseleave,
|
|
HTMLElement3_put_onactivate,
|
|
HTMLElement3_get_onactivate,
|
|
HTMLElement3_put_ondeactivate,
|
|
HTMLElement3_get_ondeactivate,
|
|
HTMLElement3_dragDrop,
|
|
HTMLElement3_get_glyphMode
|
|
};
|
|
|
|
void HTMLElement3_Init(HTMLElement *This)
|
|
{
|
|
This->lpHTMLElement3Vtbl = &HTMLElement3Vtbl;
|
|
}
|