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
7c7603ca
Commit
7c7603ca
authored
May 17, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
May 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Move connection points to the new ConnectionPointContainer struct.
parent
6137e1b6
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
25 deletions
+27
-25
dochost.c
dlls/shdocvw/dochost.c
+2
-2
events.c
dlls/shdocvw/events.c
+12
-12
navigate.c
dlls/shdocvw/navigate.c
+1
-1
shdocvw.h
dlls/shdocvw/shdocvw.h
+7
-5
webbrowser.c
dlls/shdocvw/webbrowser.c
+5
-5
No files found.
dlls/shdocvw/dochost.c
View file @
7c7603ca
...
...
@@ -51,8 +51,8 @@ static void navigate_complete(DocHost *This)
V_VT
(
&
url
)
=
VT_BSTR
;
V_BSTR
(
&
url
)
=
This
->
url
;
call_sink
(
This
->
cp
_
wbe2
,
DISPID_NAVIGATECOMPLETE2
,
&
dispparams
);
call_sink
(
This
->
cp
_
wbe2
,
DISPID_DOCUMENTCOMPLETE
,
&
dispparams
);
call_sink
(
This
->
cp
s
.
wbe2
,
DISPID_NAVIGATECOMPLETE2
,
&
dispparams
);
call_sink
(
This
->
cp
s
.
wbe2
,
DISPID_DOCUMENTCOMPLETE
,
&
dispparams
);
if
(
disp
)
IDispatch_Release
(
disp
);
...
...
dlls/shdocvw/events.c
View file @
7c7603ca
...
...
@@ -88,13 +88,13 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
if
(
IsEqualGUID
(
&
DIID_DWebBrowserEvents2
,
riid
))
{
TRACE
(
"(%p)->(DIID_DWebBrowserEvents2 %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
_
wbe2
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
s
.
wbe2
);
}
else
if
(
IsEqualGUID
(
&
DIID_DWebBrowserEvents
,
riid
))
{
TRACE
(
"(%p)->(DIID_DWebBrowserEvents %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
_
wbe
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
s
.
wbe
);
}
else
if
(
IsEqualGUID
(
&
IID_IPropertyNotifySink
,
riid
))
{
TRACE
(
"(%p)->(IID_IPropertyNotifySink %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
_
pns
);
*
ppCP
=
CONPOINT
(
This
->
doc_host
.
cp
s
.
pns
);
}
if
(
*
ppCP
)
{
...
...
@@ -299,23 +299,23 @@ static void ConnectionPoint_Destroy(ConnectionPoint *This)
void
DocHost_Events_Init
(
DocHost
*
This
)
{
ConnectionPoint_Create
(
This
,
&
DIID_DWebBrowserEvents2
,
&
This
->
cp
_
wbe2
);
ConnectionPoint_Create
(
This
,
&
DIID_DWebBrowserEvents
,
&
This
->
cp
_
wbe
);
ConnectionPoint_Create
(
This
,
&
IID_IPropertyNotifySink
,
&
This
->
cp
_
pns
);
ConnectionPoint_Create
(
This
,
&
DIID_DWebBrowserEvents2
,
&
This
->
cp
s
.
wbe2
);
ConnectionPoint_Create
(
This
,
&
DIID_DWebBrowserEvents
,
&
This
->
cp
s
.
wbe
);
ConnectionPoint_Create
(
This
,
&
IID_IPropertyNotifySink
,
&
This
->
cp
s
.
pns
);
}
void
DocHost_Events_Release
(
DocHost
*
This
)
{
ConnectionPoint_Destroy
(
This
->
cp
_
wbe2
);
ConnectionPoint_Destroy
(
This
->
cp
_
wbe
);
ConnectionPoint_Destroy
(
This
->
cp
_
pns
);
ConnectionPoint_Destroy
(
This
->
cp
s
.
wbe2
);
ConnectionPoint_Destroy
(
This
->
cp
s
.
wbe
);
ConnectionPoint_Destroy
(
This
->
cp
s
.
pns
);
}
void
WebBrowser_Events_Init
(
WebBrowser
*
This
)
{
This
->
lpConnectionPointContainerVtbl
=
&
ConnectionPointContainerVtbl
;
This
->
doc_host
.
cp
_
wbe2
->
container
=
CONPTCONT
(
This
);
This
->
doc_host
.
cp
_
wbe
->
container
=
CONPTCONT
(
This
);
This
->
doc_host
.
cp
_
pns
->
container
=
CONPTCONT
(
This
);
This
->
doc_host
.
cp
s
.
wbe2
->
container
=
CONPTCONT
(
This
);
This
->
doc_host
.
cp
s
.
wbe
->
container
=
CONPTCONT
(
This
);
This
->
doc_host
.
cp
s
.
pns
->
container
=
CONPTCONT
(
This
);
}
dlls/shdocvw/navigate.c
View file @
7c7603ca
...
...
@@ -373,7 +373,7 @@ static void on_before_navigate2(DocHost *This, LPWSTR url, PBYTE post_data, ULON
V_VT
(
params
+
6
)
=
(
VT_DISPATCH
);
V_DISPATCH
(
params
+
6
)
=
This
->
disp
;
call_sink
(
This
->
cp
_
wbe2
,
DISPID_BEFORENAVIGATE2
,
&
dispparams
);
call_sink
(
This
->
cp
s
.
wbe2
,
DISPID_BEFORENAVIGATE2
,
&
dispparams
);
SysFreeString
(
V_BSTR
(
&
var_url
));
if
(
post_data_len
)
...
...
dlls/shdocvw/shdocvw.h
View file @
7c7603ca
...
...
@@ -52,6 +52,12 @@ extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid,
typedef
struct
ConnectionPoint
ConnectionPoint
;
typedef
struct
{
ConnectionPoint
*
wbe2
;
ConnectionPoint
*
wbe
;
ConnectionPoint
*
pns
;
}
ConnectionPointContainer
;
typedef
struct
{
const
IOleClientSiteVtbl
*
lpOleClientSiteVtbl
;
const
IOleInPlaceSiteVtbl
*
lpOleInPlaceSiteVtbl
;
const
IDocHostUIHandler2Vtbl
*
lpDocHostUIHandlerVtbl
;
...
...
@@ -74,11 +80,7 @@ typedef struct {
LPOLESTR
url
;
/* Connection points */
ConnectionPoint
*
cp_wbe2
;
ConnectionPoint
*
cp_wbe
;
ConnectionPoint
*
cp_pns
;
ConnectionPointContainer
cps
;
}
DocHost
;
typedef
struct
{
...
...
dlls/shdocvw/webbrowser.c
View file @
7c7603ca
...
...
@@ -518,7 +518,7 @@ static HRESULT WINAPI WebBrowser_put_Visible(IWebBrowser2 *iface, VARIANT_BOOL V
V_VT
(
&
arg
)
=
VT_BOOL
;
V_BOOL
(
&
arg
)
=
Value
;
call_sink
(
This
->
doc_host
.
cp
_
wbe2
,
DISPID_ONVISIBLE
,
&
dispparams
);
call_sink
(
This
->
doc_host
.
cp
s
.
wbe2
,
DISPID_ONVISIBLE
,
&
dispparams
);
return
S_OK
;
}
...
...
@@ -548,7 +548,7 @@ static HRESULT WINAPI WebBrowser_put_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL
V_VT
(
&
arg
)
=
VT_BOOL
;
V_BOOL
(
&
arg
)
=
Value
;
call_sink
(
This
->
doc_host
.
cp
_
wbe2
,
DISPID_ONSTATUSBAR
,
&
dispparams
);
call_sink
(
This
->
doc_host
.
cp
s
.
wbe2
,
DISPID_ONSTATUSBAR
,
&
dispparams
);
return
S_OK
;
}
...
...
@@ -592,7 +592,7 @@ static HRESULT WINAPI WebBrowser_put_ToolBar(IWebBrowser2 *iface, int Value)
V_VT
(
&
arg
)
=
VT_BOOL
;
V_BOOL
(
&
arg
)
=
Value
;
call_sink
(
This
->
doc_host
.
cp
_
wbe2
,
DISPID_ONTOOLBAR
,
&
dispparams
);
call_sink
(
This
->
doc_host
.
cp
s
.
wbe2
,
DISPID_ONTOOLBAR
,
&
dispparams
);
return
S_OK
;
}
...
...
@@ -622,7 +622,7 @@ static HRESULT WINAPI WebBrowser_put_MenuBar(IWebBrowser2 *iface, VARIANT_BOOL V
V_VT
(
&
arg
)
=
VT_BOOL
;
V_BOOL
(
&
arg
)
=
Value
;
call_sink
(
This
->
doc_host
.
cp
_
wbe2
,
DISPID_ONMENUBAR
,
&
dispparams
);
call_sink
(
This
->
doc_host
.
cp
s
.
wbe2
,
DISPID_ONMENUBAR
,
&
dispparams
);
return
S_OK
;
}
...
...
@@ -822,7 +822,7 @@ static HRESULT WINAPI WebBrowser_put_AddressBar(IWebBrowser2 *iface, VARIANT_BOO
V_VT
(
&
arg
)
=
VT_BOOL
;
V_BOOL
(
&
arg
)
=
Value
;
call_sink
(
This
->
doc_host
.
cp
_
wbe2
,
DISPID_ONADDRESSBAR
,
&
dispparams
);
call_sink
(
This
->
doc_host
.
cp
s
.
wbe2
,
DISPID_ONADDRESSBAR
,
&
dispparams
);
return
S_OK
;
}
...
...
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