Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0848cc97
Commit
0848cc97
authored
Jun 23, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added keyup event support.
parent
7057d7a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
htmlevent.c
dlls/mshtml/htmlevent.c
+4
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
No files found.
dlls/mshtml/htmlevent.c
View file @
0848cc97
...
...
@@ -38,6 +38,9 @@ struct event_target_t {
static
const
WCHAR
clickW
[]
=
{
'c'
,
'l'
,
'i'
,
'c'
,
'k'
,
0
};
static
const
WCHAR
onclickW
[]
=
{
'o'
,
'n'
,
'c'
,
'l'
,
'i'
,
'c'
,
'k'
,
0
};
static
const
WCHAR
keyupW
[]
=
{
'k'
,
'e'
,
'y'
,
'u'
,
'p'
,
0
};
static
const
WCHAR
onkeyupW
[]
=
{
'o'
,
'n'
,
'k'
,
'e'
,
'y'
,
'u'
,
'p'
,
0
};
static
const
WCHAR
loadW
[]
=
{
'l'
,
'o'
,
'a'
,
'd'
,
0
};
static
const
WCHAR
onloadW
[]
=
{
'o'
,
'n'
,
'l'
,
'o'
,
'a'
,
'd'
,
0
};
...
...
@@ -51,6 +54,7 @@ typedef struct {
static
const
event_info_t
event_info
[]
=
{
{
clickW
,
onclickW
,
EVENT_DEFAULTLISTENER
},
{
keyupW
,
onkeyupW
,
EVENT_DEFAULTLISTENER
},
{
loadW
,
onloadW
,
0
}
};
...
...
dlls/mshtml/mshtml_private.h
View file @
0848cc97
...
...
@@ -100,6 +100,7 @@ typedef enum {
typedef
enum
{
EVENTID_CLICK
,
EVENTID_KEYUP
,
EVENTID_LOAD
,
EVENTID_LAST
}
eventid_t
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment