Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
86cb9f3d
Commit
86cb9f3d
authored
Jun 10, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Call update_doc in editor commands.
parent
88178a75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
editor.c
dlls/mshtml/editor.c
+23
-1
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+4
-0
No files found.
dlls/mshtml/editor.c
View file @
86cb9f3d
...
...
@@ -585,8 +585,10 @@ static HRESULT exec_fontname(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
{
TRACE
(
"(%p)->(%p %p)
\n
"
,
This
,
in
,
out
);
if
(
!
This
->
nscontainer
)
if
(
!
This
->
nscontainer
)
{
update_doc
(
This
,
UPDATE_UI
);
return
E_FAIL
;
}
if
(
in
)
{
char
*
stra
;
...
...
@@ -658,6 +660,8 @@ static HRESULT exec_forecolor(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
}
else
{
FIXME
(
"unsupported in vt=%d
\n
"
,
V_VT
(
in
));
}
update_doc
(
This
,
UPDATE_UI
);
}
if
(
out
)
{
...
...
@@ -704,6 +708,8 @@ static HRESULT exec_fontsize(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
default:
FIXME
(
"unsupported vt %d
\n
"
,
V_VT
(
in
));
}
update_doc
(
This
,
UPDATE_UI
);
}
return
S_OK
;
...
...
@@ -719,6 +725,7 @@ static HRESULT exec_bold(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, VARI
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_BOLD
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -732,6 +739,7 @@ static HRESULT exec_italic(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, VA
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_ITALIC
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -767,6 +775,7 @@ static HRESULT exec_justifycenter(HTMLDocument *This, DWORD cmdexecopt, VARIANT
FIXME
(
"unsupported args
\n
"
);
set_ns_align
(
This
,
NSALIGN_CENTER
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -778,13 +787,19 @@ static HRESULT exec_justifyleft(HTMLDocument *This, DWORD cmdexecopt, VARIANT *i
FIXME
(
"unsupported args
\n
"
);
set_ns_align
(
This
,
NSALIGN_LEFT
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
static
HRESULT
exec_justifyright
(
HTMLDocument
*
This
,
DWORD
cmdexecopt
,
VARIANT
*
in
,
VARIANT
*
out
)
{
TRACE
(
"(%p)
\n
"
,
This
);
if
(
in
||
out
)
FIXME
(
"unsupported args
\n
"
);
set_ns_align
(
This
,
NSALIGN_RIGHT
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -798,6 +813,7 @@ static HRESULT exec_underline(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_UNDERLINE
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -811,6 +827,7 @@ static HRESULT exec_horizontalline(HTMLDocument *This, DWORD cmdexecopt, VARIANT
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_INSERTHR
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -824,6 +841,7 @@ static HRESULT exec_orderlist(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_OL
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -837,6 +855,7 @@ static HRESULT exec_unorderlist(HTMLDocument *This, DWORD cmdexecopt, VARIANT *i
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_UL
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -850,6 +869,7 @@ static HRESULT exec_indent(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, VA
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_INDENT
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -863,6 +883,7 @@ static HRESULT exec_outdent(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, V
if
(
This
->
nscontainer
)
do_ns_command
(
This
->
nscontainer
,
NSCMD_OUTDENT
,
NULL
);
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
@@ -875,6 +896,7 @@ static HRESULT exec_composesettings(HTMLDocument *This, DWORD cmdexecopt, VARIAN
FIXME
(
"%s
\n
"
,
debugstr_w
(
V_BSTR
(
in
)));
update_doc
(
This
,
UPDATE_UI
);
return
S_OK
;
}
...
...
dlls/mshtml/tests/htmldoc.c
View file @
86cb9f3d
...
...
@@ -3335,14 +3335,17 @@ static void test_editing_mode(void)
test_exec_fontname
(
unk
,
NULL
,
wszTimesNewRoman
);
test_exec_fontname
(
unk
,
wszArial
,
wszTimesNewRoman
);
test_timer
(
EXPECT_UPDATEUI
);
test_exec_fontname
(
unk
,
NULL
,
wszArial
);
test_exec_noargs
(
unk
,
IDM_JUSTIFYRIGHT
);
test_timer
(
EXPECT_UPDATEUI
);
if
(
!
nogecko
)
test_QueryStatus
(
unk
,
&
CGID_MSHTML
,
IDM_JUSTIFYRIGHT
,
OLECMDF_SUPPORTED
|
OLECMDF_ENABLED
|
OLECMDF_LATCHED
);
test_exec_noargs
(
unk
,
IDM_JUSTIFYCENTER
);
test_timer
(
EXPECT_UPDATEUI
);
test_QueryStatus
(
unk
,
&
CGID_MSHTML
,
IDM_JUSTIFYRIGHT
,
OLECMDF_SUPPORTED
|
OLECMDF_ENABLED
);
if
(
!
nogecko
)
...
...
@@ -3350,6 +3353,7 @@ static void test_editing_mode(void)
OLECMDF_SUPPORTED
|
OLECMDF_ENABLED
|
OLECMDF_LATCHED
);
test_exec_noargs
(
unk
,
IDM_HORIZONTALLINE
);
test_timer
(
EXPECT_UPDATEUI
);
test_QueryStatus
(
unk
,
&
CGID_MSHTML
,
IDM_HORIZONTALLINE
,
OLECMDF_SUPPORTED
|
OLECMDF_ENABLED
);
...
...
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