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
d98225ff
Commit
d98225ff
authored
Aug 16, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLObjectElement::put_width implementation.
parent
31201da6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
2 deletions
+45
-2
htmlobject.c
dlls/mshtml/htmlobject.c
+27
-2
pluginhost.c
dlls/mshtml/pluginhost.c
+17
-0
pluginhost.h
dlls/mshtml/pluginhost.h
+1
-0
No files found.
dlls/mshtml/htmlobject.c
View file @
d98225ff
...
@@ -246,8 +246,33 @@ static HRESULT WINAPI HTMLObjectElement_get_form(IHTMLObjectElement *iface, IHTM
...
@@ -246,8 +246,33 @@ static HRESULT WINAPI HTMLObjectElement_get_form(IHTMLObjectElement *iface, IHTM
static
HRESULT
WINAPI
HTMLObjectElement_put_width
(
IHTMLObjectElement
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLObjectElement_put_width
(
IHTMLObjectElement
*
iface
,
VARIANT
v
)
{
{
HTMLObjectElement
*
This
=
impl_from_IHTMLObjectElement
(
iface
);
HTMLObjectElement
*
This
=
impl_from_IHTMLObjectElement
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
nsAString
width_str
;
return
E_NOTIMPL
;
PRUnichar
buf
[
12
];
nsresult
nsres
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
switch
(
V_VT
(
&
v
))
{
case
VT_I4
:
{
static
const
WCHAR
formatW
[]
=
{
'%'
,
'd'
,
0
};
sprintfW
(
buf
,
formatW
,
V_I4
(
&
v
));
break
;
}
default:
FIXME
(
"unimplemented for arg %s
\n
"
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
}
nsAString_InitDepend
(
&
width_str
,
buf
);
nsres
=
nsIDOMHTMLObjectElement_SetWidth
(
This
->
nsobject
,
&
width_str
);
nsAString_Finish
(
&
width_str
);
if
(
NS_FAILED
(
nsres
))
{
FIXME
(
"SetWidth failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
notif_container_change
(
&
This
->
plugin_container
,
DISPID_UNKNOWN
);
return
S_OK
;
}
}
static
HRESULT
WINAPI
HTMLObjectElement_get_width
(
IHTMLObjectElement
*
iface
,
VARIANT
*
p
)
static
HRESULT
WINAPI
HTMLObjectElement_get_width
(
IHTMLObjectElement
*
iface
,
VARIANT
*
p
)
...
...
dlls/mshtml/pluginhost.c
View file @
d98225ff
...
@@ -352,6 +352,23 @@ static void notif_enabled(PluginHost *plugin_host)
...
@@ -352,6 +352,23 @@ static void notif_enabled(PluginHost *plugin_host)
}
}
}
}
void
notif_container_change
(
HTMLPluginContainer
*
plugin_container
,
DISPID
dispid
)
{
IOleControl
*
ole_control
;
HRESULT
hres
;
if
(
!
plugin_container
->
plugin_host
||
!
plugin_container
->
plugin_host
->
plugin_unk
)
return
;
notif_enabled
(
plugin_container
->
plugin_host
);
hres
=
IUnknown_QueryInterface
(
plugin_container
->
plugin_host
->
plugin_unk
,
&
IID_IOleControl
,
(
void
**
)
&
ole_control
);
if
(
SUCCEEDED
(
hres
))
{
IOleControl_OnAmbientPropertyChange
(
ole_control
,
dispid
);
IOleControl_Release
(
ole_control
);
}
}
HRESULT
get_plugin_disp
(
HTMLPluginContainer
*
plugin_container
,
IDispatch
**
ret
)
HRESULT
get_plugin_disp
(
HTMLPluginContainer
*
plugin_container
,
IDispatch
**
ret
)
{
{
PluginHost
*
host
;
PluginHost
*
host
;
...
...
dlls/mshtml/pluginhost.h
View file @
d98225ff
...
@@ -70,3 +70,4 @@ HRESULT create_ip_frame(IOleInPlaceFrame**) DECLSPEC_HIDDEN;
...
@@ -70,3 +70,4 @@ HRESULT create_ip_frame(IOleInPlaceFrame**) DECLSPEC_HIDDEN;
HRESULT
get_plugin_disp
(
HTMLPluginContainer
*
,
IDispatch
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_plugin_disp
(
HTMLPluginContainer
*
,
IDispatch
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_plugin_dispid
(
HTMLPluginContainer
*
,
WCHAR
*
,
DISPID
*
)
DECLSPEC_HIDDEN
;
HRESULT
get_plugin_dispid
(
HTMLPluginContainer
*
,
WCHAR
*
,
DISPID
*
)
DECLSPEC_HIDDEN
;
HRESULT
invoke_plugin_prop
(
HTMLPluginContainer
*
,
DISPID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
)
DECLSPEC_HIDDEN
;
HRESULT
invoke_plugin_prop
(
HTMLPluginContainer
*
,
DISPID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
)
DECLSPEC_HIDDEN
;
void
notif_container_change
(
HTMLPluginContainer
*
,
DISPID
);
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