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
6b463d85
Commit
6b463d85
authored
Dec 10, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 10, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added support for copy, paste and cut commands in execCommand.
parent
55ce76c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
htmldoc.c
dlls/mshtml/htmldoc.c
+9
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
6b463d85
...
...
@@ -1096,6 +1096,10 @@ static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
return
S_OK
;
}
static
const
WCHAR
copyW
[]
=
{
'c'
,
'o'
,
'p'
,
'y'
,
0
};
static
const
WCHAR
cutW
[]
=
{
'c'
,
'u'
,
't'
,
0
};
static
const
WCHAR
fontnameW
[]
=
{
'f'
,
'o'
,
'n'
,
't'
,
'n'
,
'a'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
indentW
[]
=
...
...
@@ -1106,6 +1110,8 @@ static const WCHAR insertunorderedlistW[] =
{
'i'
,
'n'
,
's'
,
'e'
,
'r'
,
't'
,
'u'
,
'n'
,
'o'
,
'r'
,
'd'
,
'e'
,
'r'
,
'e'
,
'd'
,
'l'
,
'i'
,
's'
,
't'
,
0
};
static
const
WCHAR
outdentW
[]
=
{
'o'
,
'u'
,
't'
,
'd'
,
'e'
,
'n'
,
't'
,
0
};
static
const
WCHAR
pasteW
[]
=
{
'p'
,
'a'
,
's'
,
't'
,
'e'
,
0
};
static
const
WCHAR
respectvisibilityindesignW
[]
=
{
'r'
,
'e'
,
's'
,
'p'
,
'e'
,
'c'
,
't'
,
'v'
,
'i'
,
's'
,
'i'
,
'b'
,
'i'
,
'l'
,
'i'
,
't'
,
'y'
,
'i'
,
'n'
,
'd'
,
'e'
,
's'
,
'i'
,
'g'
,
'n'
,
0
};
...
...
@@ -1113,11 +1119,14 @@ static const struct {
const
WCHAR
*
name
;
OLECMDID
id
;
}
command_names
[]
=
{
{
copyW
,
IDM_COPY
},
{
cutW
,
IDM_CUT
},
{
fontnameW
,
IDM_FONTNAME
},
{
indentW
,
IDM_INDENT
},
{
insertorderedlistW
,
IDM_ORDERLIST
},
{
insertunorderedlistW
,
IDM_UNORDERLIST
},
{
outdentW
,
IDM_OUTDENT
},
{
pasteW
,
IDM_PASTE
},
{
respectvisibilityindesignW
,
IDM_RESPECTVISIBILITY_INDESIGN
}
};
...
...
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