mshtml: Added IHTMLElement4::focusin semi-stub implementation.
This commit is contained in:
parent
e41f435c47
commit
347842a6a1
|
@ -3690,15 +3690,19 @@ static HRESULT WINAPI HTMLElement4_get_onbeforeactivate(IHTMLElement4 *iface, VA
|
|||
static HRESULT WINAPI HTMLElement4_put_onfocusin(IHTMLElement4 *iface, VARIANT v)
|
||||
{
|
||||
HTMLElement *This = impl_from_IHTMLElement4(iface);
|
||||
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
||||
return E_NOTIMPL;
|
||||
|
||||
FIXME("(%p)->(%s) semi-stub\n", This, debugstr_variant(&v));
|
||||
|
||||
return set_node_event(&This->node, EVENTID_FOCUSIN, &v);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLElement4_get_onfocusin(IHTMLElement4 *iface, VARIANT *p)
|
||||
{
|
||||
HTMLElement *This = impl_from_IHTMLElement4(iface);
|
||||
FIXME("(%p)->(%p)\n", This, p);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, p);
|
||||
|
||||
return get_node_event(&This->node, EVENTID_FOCUSIN, p);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLElement4_put_onfocusout(IHTMLElement4 *iface, VARIANT v)
|
||||
|
|
|
@ -81,6 +81,9 @@ static const WCHAR onerrorW[] = {'o','n','e','r','r','o','r',0};
|
|||
static const WCHAR focusW[] = {'f','o','c','u','s',0};
|
||||
static const WCHAR onfocusW[] = {'o','n','f','o','c','u','s',0};
|
||||
|
||||
static const WCHAR focusinW[] = {'f','o','c','u','s','i','n',0};
|
||||
static const WCHAR onfocusinW[] = {'o','n','f','o','c','u','s','i','n',0};
|
||||
|
||||
static const WCHAR helpW[] = {'h','e','l','p',0};
|
||||
static const WCHAR onhelpW[] = {'o','n','h','e','l','p',0};
|
||||
|
||||
|
@ -190,6 +193,8 @@ static const event_info_t event_info[] = {
|
|||
EVENT_BIND_TO_BODY},
|
||||
{focusW, onfocusW, EVENTT_HTML, DISPID_EVMETH_ONFOCUS,
|
||||
EVENT_DEFAULTLISTENER},
|
||||
{focusinW, onfocusinW, EVENTT_HTML, DISPID_EVMETH_ONFOCUSIN,
|
||||
EVENT_BUBBLE},
|
||||
{helpW, onhelpW, EVENTT_KEY, DISPID_EVMETH_ONHELP,
|
||||
EVENT_BUBBLE|EVENT_CANCELABLE},
|
||||
{keydownW, onkeydownW, EVENTT_KEY, DISPID_EVMETH_ONKEYDOWN,
|
||||
|
|
|
@ -29,6 +29,7 @@ typedef enum {
|
|||
EVENTID_DRAGSTART,
|
||||
EVENTID_ERROR,
|
||||
EVENTID_FOCUS,
|
||||
EVENTID_FOCUSIN,
|
||||
EVENTID_HELP,
|
||||
EVENTID_KEYDOWN,
|
||||
EVENTID_KEYPRESS,
|
||||
|
|
Loading…
Reference in New Issue