mshtml: Added IHTMLElement::put_onmouseover implementation.

This commit is contained in:
Jacek Caban 2008-10-10 15:46:08 -05:00 committed by Alexandre Julliard
parent 9fb81984f5
commit 4a2db7cc9b
3 changed files with 13 additions and 6 deletions

View File

@ -501,8 +501,10 @@ static HRESULT WINAPI HTMLElement_get_onmouseout(IHTMLElement *iface, VARIANT *p
static HRESULT WINAPI HTMLElement_put_onmouseover(IHTMLElement *iface, VARIANT v) static HRESULT WINAPI HTMLElement_put_onmouseover(IHTMLElement *iface, VARIANT v)
{ {
HTMLElement *This = HTMLELEM_THIS(iface); HTMLElement *This = HTMLELEM_THIS(iface);
FIXME("(%p)->()\n", This);
return E_NOTIMPL; TRACE("(%p)->()\n", This);
return set_node_event(&This->node, EVENTID_MOUSEOVER, &v);
} }
static HRESULT WINAPI HTMLElement_get_onmouseover(IHTMLElement *iface, VARIANT *p) static HRESULT WINAPI HTMLElement_get_onmouseover(IHTMLElement *iface, VARIANT *p)

View File

@ -48,6 +48,9 @@ static const WCHAR onkeyupW[] = {'o','n','k','e','y','u','p',0};
static const WCHAR loadW[] = {'l','o','a','d',0}; static const WCHAR loadW[] = {'l','o','a','d',0};
static const WCHAR onloadW[] = {'o','n','l','o','a','d',0}; static const WCHAR onloadW[] = {'o','n','l','o','a','d',0};
static const WCHAR mouseoverW[] = {'m','o','u','s','e','o','v','e','r',0};
static const WCHAR onmouseoverW[] = {'o','n','m','o','u','s','e','o','v','e','r',0};
typedef struct { typedef struct {
LPCWSTR name; LPCWSTR name;
LPCWSTR attr_name; LPCWSTR attr_name;
@ -57,10 +60,11 @@ typedef struct {
#define EVENT_DEFAULTLISTENER 0x0001 #define EVENT_DEFAULTLISTENER 0x0001
static const event_info_t event_info[] = { static const event_info_t event_info[] = {
{changeW, onchangeW, EVENT_DEFAULTLISTENER}, {changeW, onchangeW, EVENT_DEFAULTLISTENER},
{clickW, onclickW, EVENT_DEFAULTLISTENER}, {clickW, onclickW, EVENT_DEFAULTLISTENER},
{keyupW, onkeyupW, EVENT_DEFAULTLISTENER}, {keyupW, onkeyupW, EVENT_DEFAULTLISTENER},
{loadW, onloadW, 0} {loadW, onloadW, 0},
{mouseoverW, onmouseoverW, EVENT_DEFAULTLISTENER}
}; };
eventid_t str_to_eid(LPCWSTR str) eventid_t str_to_eid(LPCWSTR str)

View File

@ -21,6 +21,7 @@ typedef enum {
EVENTID_CLICK, EVENTID_CLICK,
EVENTID_KEYUP, EVENTID_KEYUP,
EVENTID_LOAD, EVENTID_LOAD,
EVENTID_MOUSEOVER,
EVENTID_LAST EVENTID_LAST
} eventid_t; } eventid_t;