2 * Copyright 2005-2006 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(ieframe
);
30 DEFINE_OLEGUID(CGID_DocHostCmdPriv
, 0x000214D4L
, 0, 0);
32 #define DOCHOST_DOCCANNAVIGATE 0
34 /* Undocumented notification, see mshtml tests */
35 #define CMDID_EXPLORER_UPDATEHISTORY 38
37 static ATOM doc_view_atom
= 0;
39 void push_dochost_task(DocHost
*This
, task_header_t
*task
, task_proc_t proc
, task_destr_t destr
, BOOL send
)
46 is_empty
= list_empty(&This
->task_queue
);
47 list_add_tail(&This
->task_queue
, &task
->entry
);
50 SendMessageW(This
->frame_hwnd
, WM_DOCHOSTTASK
, 0, 0);
52 PostMessageW(This
->frame_hwnd
, WM_DOCHOSTTASK
, 0, 0);
55 LRESULT
process_dochost_tasks(DocHost
*This
)
59 while(!list_empty(&This
->task_queue
)) {
60 task
= LIST_ENTRY(This
->task_queue
.next
, task_header_t
, entry
);
61 list_remove(&task
->entry
);
63 task
->proc(This
, task
);
70 void abort_dochost_tasks(DocHost
*This
, task_proc_t proc
)
72 task_header_t
*task
, *cursor
;
74 LIST_FOR_EACH_ENTRY_SAFE(task
, cursor
, &This
->task_queue
, task_header_t
, entry
) {
75 if(proc
&& proc
!= task
->proc
)
78 list_remove(&task
->entry
);
83 static void notif_complete(DocHost
*This
, DISPID dispid
)
85 DISPPARAMS dispparams
;
90 dispparams
.cNamedArgs
= 0;
91 dispparams
.rgdispidNamedArgs
= NULL
;
92 dispparams
.rgvarg
= params
;
94 V_VT(params
) = (VT_BYREF
|VT_VARIANT
);
95 V_BYREF(params
) = &url
;
97 V_VT(params
+1) = VT_DISPATCH
;
98 V_DISPATCH(params
+1) = (IDispatch
*)This
->wb
;
100 V_VT(&url
) = VT_BSTR
;
101 V_BSTR(&url
) = SysAllocString(This
->url
);
103 TRACE("%d >>>\n", dispid
);
104 call_sink(This
->cps
.wbe2
, dispid
, &dispparams
);
105 TRACE("%d <<<\n", dispid
);
107 SysFreeString(V_BSTR(&url
));
108 This
->busy
= VARIANT_FALSE
;
111 static void object_available(DocHost
*This
)
116 TRACE("(%p)\n", This
);
118 if(!This
->document
) {
119 WARN("document == NULL\n");
123 hres
= IUnknown_QueryInterface(This
->document
, &IID_IHlinkTarget
, (void**)&hlink
);
124 if(SUCCEEDED(hres
)) {
125 hres
= IHlinkTarget_Navigate(hlink
, 0, NULL
);
126 IHlinkTarget_Release(hlink
);
128 FIXME("Navigate failed\n");
130 IOleObject
*ole_object
;
133 TRACE("No IHlink iface\n");
135 hres
= IUnknown_QueryInterface(This
->document
, &IID_IOleObject
, (void**)&ole_object
);
137 FIXME("Could not get IOleObject iface: %08x\n", hres
);
141 GetClientRect(This
->hwnd
, &rect
);
142 hres
= IOleObject_DoVerb(ole_object
, OLEIVERB_SHOW
, NULL
, &This
->IOleClientSite_iface
, -1, This
->hwnd
, &rect
);
143 IOleObject_Release(ole_object
);
145 FIXME("DoVerb failed: %08x\n", hres
);
149 static HRESULT
get_doc_ready_state(DocHost
*This
, READYSTATE
*ret
)
151 DISPPARAMS dp
= {NULL
,NULL
,0,0};
157 hres
= IUnknown_QueryInterface(This
->document
, &IID_IDispatch
, (void**)&disp
);
161 hres
= IDispatch_Invoke(disp
, DISPID_READYSTATE
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
, DISPATCH_PROPERTYGET
,
162 &dp
, &var
, &ei
, NULL
);
163 IDispatch_Release(disp
);
165 WARN("Invoke(DISPID_READYSTATE failed: %08x\n", hres
);
169 if(V_VT(&var
) != VT_I4
) {
170 WARN("V_VT(var) = %d\n", V_VT(&var
));
179 static void advise_prop_notif(DocHost
*This
, BOOL set
)
181 IConnectionPointContainer
*cp_container
;
182 IConnectionPoint
*cp
;
185 hres
= IUnknown_QueryInterface(This
->document
, &IID_IConnectionPointContainer
, (void**)&cp_container
);
189 hres
= IConnectionPointContainer_FindConnectionPoint(cp_container
, &IID_IPropertyNotifySink
, &cp
);
190 IConnectionPointContainer_Release(cp_container
);
195 hres
= IConnectionPoint_Advise(cp
, (IUnknown
*)&This
->IPropertyNotifySink_iface
, &This
->prop_notif_cookie
);
197 hres
= IConnectionPoint_Unadvise(cp
, This
->prop_notif_cookie
);
198 IConnectionPoint_Release(cp
);
201 This
->is_prop_notif
= set
;
204 void set_doc_state(DocHost
*This
, READYSTATE doc_state
)
206 This
->doc_state
= doc_state
;
207 if(doc_state
> This
->ready_state
)
208 This
->ready_state
= doc_state
;
211 static void update_ready_state(DocHost
*This
, READYSTATE ready_state
)
213 if(ready_state
> READYSTATE_LOADING
&& This
->travellog
.loading_pos
!= -1) {
214 WARN("histupdate not notified\n");
215 This
->travellog
.position
= This
->travellog
.loading_pos
;
216 This
->travellog
.loading_pos
= -1;
219 if(ready_state
> READYSTATE_LOADING
&& This
->doc_state
<= READYSTATE_LOADING
&& !This
->browser_service
/* FIXME */)
220 notif_complete(This
, DISPID_NAVIGATECOMPLETE2
);
222 if(ready_state
== READYSTATE_COMPLETE
&& This
->doc_state
< READYSTATE_COMPLETE
) {
223 set_doc_state(This
, READYSTATE_COMPLETE
);
224 if(!This
->browser_service
) /* FIXME: Not fully correct */
225 notif_complete(This
, DISPID_DOCUMENTCOMPLETE
);
227 set_doc_state(This
, ready_state
);
232 task_header_t header
;
234 READYSTATE ready_state
;
235 } ready_state_task_t
;
237 static void ready_state_task_destr(task_header_t
*_task
)
239 ready_state_task_t
*task
= (ready_state_task_t
*)_task
;
241 IUnknown_Release(task
->doc
);
245 static void ready_state_proc(DocHost
*This
, task_header_t
*_task
)
247 ready_state_task_t
*task
= (ready_state_task_t
*)_task
;
249 if(task
->doc
== This
->document
)
250 update_ready_state(This
, task
->ready_state
);
253 static void push_ready_state_task(DocHost
*This
, READYSTATE ready_state
)
255 ready_state_task_t
*task
= heap_alloc(sizeof(ready_state_task_t
));
257 IUnknown_AddRef(This
->document
);
258 task
->doc
= This
->document
;
259 task
->ready_state
= ready_state
;
261 push_dochost_task(This
, &task
->header
, ready_state_proc
, ready_state_task_destr
, FALSE
);
264 static void object_available_task_destr(task_header_t
*task
)
269 static void object_available_proc(DocHost
*This
, task_header_t
*task
)
271 object_available(This
);
274 HRESULT
dochost_object_available(DocHost
*This
, IUnknown
*doc
)
276 READYSTATE ready_state
;
281 IUnknown_AddRef(doc
);
282 This
->document
= doc
;
284 hres
= IUnknown_QueryInterface(doc
, &IID_IOleObject
, (void**)&oleobj
);
285 if(SUCCEEDED(hres
)) {
288 hres
= IOleObject_GetUserClassID(oleobj
, &clsid
);
290 TRACE("Got clsid %s\n",
291 IsEqualGUID(&clsid
, &CLSID_HTMLDocument
) ? "CLSID_HTMLDocument" : debugstr_guid(&clsid
));
293 hres
= IOleObject_SetClientSite(oleobj
, &This
->IOleClientSite_iface
);
295 FIXME("SetClientSite failed: %08x\n", hres
);
297 IOleObject_Release(oleobj
);
299 FIXME("Could not get IOleObject iface: %08x\n", hres
);
302 /* FIXME: Call SetAdvise */
304 task
= heap_alloc(sizeof(*task
));
305 push_dochost_task(This
, task
, object_available_proc
, object_available_task_destr
, FALSE
);
307 hres
= get_doc_ready_state(This
, &ready_state
);
308 if(SUCCEEDED(hres
)) {
309 if(ready_state
== READYSTATE_COMPLETE
)
310 push_ready_state_task(This
, READYSTATE_COMPLETE
);
311 if(ready_state
!= READYSTATE_COMPLETE
|| This
->doc_navigate
)
312 advise_prop_notif(This
, TRUE
);
313 }else if(!This
->doc_navigate
) {
314 /* If we can't get document's ready state, there is not much we can do.
315 * Assume that document is complete at this point. */
316 push_ready_state_task(This
, READYSTATE_COMPLETE
);
322 static LRESULT
resize_document(DocHost
*This
, LONG width
, LONG height
)
324 RECT rect
= {0, 0, width
, height
};
326 TRACE("(%p)->(%d %d)\n", This
, width
, height
);
329 IOleDocumentView_SetRect(This
->view
, &rect
);
334 static LRESULT WINAPI
doc_view_proc(HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
338 static const WCHAR wszTHIS
[] = {'T','H','I','S',0};
340 if(msg
== WM_CREATE
) {
341 This
= *(DocHost
**)lParam
;
342 SetPropW(hwnd
, wszTHIS
, This
);
344 This
= GetPropW(hwnd
, wszTHIS
);
349 return resize_document(This
, LOWORD(lParam
), HIWORD(lParam
));
352 return DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
355 static void free_travellog_entry(travellog_entry_t
*entry
)
358 IStream_Release(entry
->stream
);
359 heap_free(entry
->url
);
362 static IStream
*get_travellog_stream(DocHost
*This
)
364 IPersistHistory
*persist_history
;
368 hres
= IUnknown_QueryInterface(This
->document
, &IID_IPersistHistory
, (void**)&persist_history
);
372 hres
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
374 hres
= IPersistHistory_SaveHistory(persist_history
, stream
);
375 IPersistHistory_Release(persist_history
);
377 IStream_Release(stream
);
384 static void dump_travellog(DocHost
*This
)
388 for(i
=0; i
< This
->travellog
.length
; i
++)
389 TRACE("%d: %s %s\n", i
, i
== This
->travellog
.position
? "=>" : " ", debugstr_w(This
->travellog
.log
[i
].url
));
390 if(i
== This
->travellog
.position
)
391 TRACE("%d: =>\n", i
);
394 static void update_travellog(DocHost
*This
)
396 travellog_entry_t
*new_entry
;
398 if(This
->travellog
.loading_pos
== -1) {
399 /* Clear forward history. */
400 if(!This
->travellog
.log
) {
401 This
->travellog
.log
= heap_alloc(4 * sizeof(*This
->travellog
.log
));
402 if(!This
->travellog
.log
)
405 This
->travellog
.size
= 4;
406 }else if(This
->travellog
.size
< This
->travellog
.position
+1) {
407 travellog_entry_t
*new_travellog
;
409 new_travellog
= heap_realloc(This
->travellog
.log
, This
->travellog
.size
*2*sizeof(*This
->travellog
.log
));
413 This
->travellog
.log
= new_travellog
;
414 This
->travellog
.size
*= 2;
417 while(This
->travellog
.length
> This
->travellog
.position
)
418 free_travellog_entry(This
->travellog
.log
+ --This
->travellog
.length
);
421 new_entry
= This
->travellog
.log
+ This
->travellog
.position
;
423 new_entry
->url
= heap_strdupW(This
->url
);
424 TRACE("Adding %s at %d\n", debugstr_w(This
->url
), This
->travellog
.position
);
428 new_entry
->stream
= get_travellog_stream(This
);
430 if(This
->travellog
.loading_pos
== -1) {
431 This
->travellog
.position
++;
433 This
->travellog
.position
= This
->travellog
.loading_pos
;
434 This
->travellog
.loading_pos
= -1;
436 if(This
->travellog
.position
> This
->travellog
.length
)
437 This
->travellog
.length
= This
->travellog
.position
;
439 dump_travellog(This
);
442 void create_doc_view_hwnd(DocHost
*This
)
446 static const WCHAR wszShell_DocObject_View
[] =
447 {'S','h','e','l','l',' ','D','o','c','O','b','j','e','c','t',' ','V','i','e','w',0};
450 static WNDCLASSEXW wndclass
= {
454 0, 0 /* native uses 4*/, NULL
, NULL
, NULL
,
455 (HBRUSH
)(COLOR_WINDOW
+ 1), NULL
,
456 wszShell_DocObject_View
,
460 wndclass
.hInstance
= ieframe_instance
;
462 doc_view_atom
= RegisterClassExW(&wndclass
);
465 This
->container_vtbl
->GetDocObjRect(This
, &rect
);
466 This
->hwnd
= CreateWindowExW(0, wszShell_DocObject_View
,
467 wszShell_DocObject_View
,
468 WS_CHILD
| WS_VISIBLE
| WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| WS_TABSTOP
,
469 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
, This
->frame_hwnd
,
470 NULL
, ieframe_instance
, This
);
473 void deactivate_document(DocHost
*This
)
475 IOleInPlaceObjectWindowless
*winobj
;
476 IOleObject
*oleobj
= NULL
;
477 IHlinkTarget
*hlink
= NULL
;
480 if(!This
->document
) return;
482 if(This
->doc_navigate
) {
483 IUnknown_Release(This
->doc_navigate
);
484 This
->doc_navigate
= NULL
;
487 if(This
->is_prop_notif
)
488 advise_prop_notif(This
, FALSE
);
491 IOleDocumentView_UIActivate(This
->view
, FALSE
);
493 hres
= IUnknown_QueryInterface(This
->document
, &IID_IOleInPlaceObjectWindowless
,
495 if(SUCCEEDED(hres
)) {
496 IOleInPlaceObjectWindowless_InPlaceDeactivate(winobj
);
497 IOleInPlaceObjectWindowless_Release(winobj
);
501 IOleDocumentView_Show(This
->view
, FALSE
);
502 IOleDocumentView_CloseView(This
->view
, 0);
503 IOleDocumentView_SetInPlaceSite(This
->view
, NULL
);
504 IOleDocumentView_Release(This
->view
);
508 hres
= IUnknown_QueryInterface(This
->document
, &IID_IOleObject
, (void**)&oleobj
);
510 IOleObject_Close(oleobj
, OLECLOSE_NOSAVE
);
512 hres
= IUnknown_QueryInterface(This
->document
, &IID_IHlinkTarget
, (void**)&hlink
);
513 if(SUCCEEDED(hres
)) {
514 IHlinkTarget_SetBrowseContext(hlink
, NULL
);
515 IHlinkTarget_Release(hlink
);
519 IOleClientSite
*client_site
= NULL
;
521 IOleObject_GetClientSite(oleobj
, &client_site
);
523 if(client_site
== &This
->IOleClientSite_iface
)
524 IOleObject_SetClientSite(oleobj
, NULL
);
525 IOleClientSite_Release(client_site
);
528 IOleObject_Release(oleobj
);
531 IUnknown_Release(This
->document
);
532 This
->document
= NULL
;
535 HRESULT
refresh_document(DocHost
*This
)
537 IOleCommandTarget
*cmdtrg
;
541 if(!This
->document
) {
542 FIXME("no document\n");
546 hres
= IUnknown_QueryInterface(This
->document
, &IID_IOleCommandTarget
, (void**)&cmdtrg
);
550 V_VT(&vin
) = VT_EMPTY
;
551 V_VT(&vout
) = VT_EMPTY
;
552 hres
= IOleCommandTarget_Exec(cmdtrg
, NULL
, OLECMDID_REFRESH
, OLECMDEXECOPT_PROMPTUSER
, &vin
, &vout
);
553 IOleCommandTarget_Release(cmdtrg
);
561 void release_dochost_client(DocHost
*This
)
564 DestroyWindow(This
->hwnd
);
569 IDocHostUIHandler_Release(This
->hostui
);
573 if(This
->client_disp
) {
574 IDispatch_Release(This
->client_disp
);
575 This
->client_disp
= NULL
;
579 IOleInPlaceFrame_Release(This
->frame
);
584 static inline DocHost
*impl_from_IOleCommandTarget(IOleCommandTarget
*iface
)
586 return CONTAINING_RECORD(iface
, DocHost
, IOleCommandTarget_iface
);
589 static HRESULT WINAPI
ClOleCommandTarget_QueryInterface(IOleCommandTarget
*iface
,
590 REFIID riid
, void **ppv
)
592 DocHost
*This
= impl_from_IOleCommandTarget(iface
);
593 return IOleClientSite_QueryInterface(&This
->IOleClientSite_iface
, riid
, ppv
);
596 static ULONG WINAPI
ClOleCommandTarget_AddRef(IOleCommandTarget
*iface
)
598 DocHost
*This
= impl_from_IOleCommandTarget(iface
);
599 return IOleClientSite_AddRef(&This
->IOleClientSite_iface
);
602 static ULONG WINAPI
ClOleCommandTarget_Release(IOleCommandTarget
*iface
)
604 DocHost
*This
= impl_from_IOleCommandTarget(iface
);
605 return IOleClientSite_Release(&This
->IOleClientSite_iface
);
608 static HRESULT WINAPI
ClOleCommandTarget_QueryStatus(IOleCommandTarget
*iface
,
609 const GUID
*pguidCmdGroup
, ULONG cCmds
, OLECMD prgCmds
[], OLECMDTEXT
*pCmdText
)
611 DocHost
*This
= impl_from_IOleCommandTarget(iface
);
613 FIXME("(%p)->(%s %u %p %p)\n", This
, debugstr_guid(pguidCmdGroup
), cCmds
, prgCmds
,
615 while (prgCmds
&& (cCmds
> i
)) {
616 FIXME("command_%u: %u, 0x%x\n", i
, prgCmds
[i
].cmdID
, prgCmds
[i
].cmdf
);
622 static HRESULT WINAPI
ClOleCommandTarget_Exec(IOleCommandTarget
*iface
,
623 const GUID
*pguidCmdGroup
, DWORD nCmdID
, DWORD nCmdexecopt
, VARIANT
*pvaIn
,
626 DocHost
*This
= impl_from_IOleCommandTarget(iface
);
628 TRACE("(%p)->(%s %d %d %s %s)\n", This
, debugstr_guid(pguidCmdGroup
), nCmdID
, nCmdexecopt
,
629 debugstr_variant(pvaIn
), debugstr_variant(pvaOut
));
633 case OLECMDID_UPDATECOMMANDS
:
634 case OLECMDID_SETDOWNLOADSTATE
:
635 return This
->container_vtbl
->exec(This
, pguidCmdGroup
, nCmdID
, nCmdexecopt
, pvaIn
, pvaOut
);
637 FIXME("Unimplemented cmdid %d\n", nCmdID
);
642 if(IsEqualGUID(pguidCmdGroup
, &CGID_DocHostCmdPriv
)) {
644 case DOCHOST_DOCCANNAVIGATE
:
645 if(!pvaIn
|| V_VT(pvaIn
) != VT_UNKNOWN
)
648 if(This
->doc_navigate
)
649 IUnknown_Release(This
->doc_navigate
);
650 IUnknown_AddRef(V_UNKNOWN(pvaIn
));
651 This
->doc_navigate
= V_UNKNOWN(pvaIn
);
656 SAFEARRAY
*sa
= V_ARRAY(pvaIn
);
657 VARIANT status_code
, url
, htmlwindow
;
661 if(V_VT(pvaIn
) != VT_ARRAY
|| !sa
|| (SafeArrayGetDim(sa
) != 1))
665 hres
= SafeArrayGetElement(sa
, &ind
, &status_code
);
666 if(FAILED(hres
) || V_VT(&status_code
)!=VT_I4
)
670 hres
= SafeArrayGetElement(sa
, &ind
, &url
);
671 if(FAILED(hres
) || V_VT(&url
)!=VT_BSTR
)
675 hres
= SafeArrayGetElement(sa
, &ind
, &htmlwindow
);
676 if(FAILED(hres
) || V_VT(&htmlwindow
)!=VT_UNKNOWN
|| !V_UNKNOWN(&htmlwindow
))
679 hres
= IUnknown_QueryInterface(V_UNKNOWN(&htmlwindow
), &IID_IHTMLWindow2
, (void**)&win2
);
683 handle_navigation_error(This
, V_I4(&status_code
), V_BSTR(&url
), win2
);
684 IHTMLWindow2_Release(win2
);
689 FIXME("unsupported command %d of CGID_DocHostCmdPriv\n", nCmdID
);
694 if(IsEqualGUID(pguidCmdGroup
, &CGID_Explorer
)) {
696 case CMDID_EXPLORER_UPDATEHISTORY
:
697 update_travellog(This
);
701 FIXME("Unimplemented cmdid %d of CGID_Explorer\n", nCmdID
);
706 if(IsEqualGUID(pguidCmdGroup
, &CGID_ShellDocView
)) {
709 FIXME("Unimplemented cmdid %d of CGID_ShellDocView\n", nCmdID
);
714 if(IsEqualGUID(&CGID_DocHostCommandHandler
, pguidCmdGroup
))
715 return This
->container_vtbl
->exec(This
, pguidCmdGroup
, nCmdID
, nCmdexecopt
, pvaIn
, pvaOut
);
717 FIXME("Unimplemented cmdid %d of group %s\n", nCmdID
, debugstr_guid(pguidCmdGroup
));
721 static const IOleCommandTargetVtbl OleCommandTargetVtbl
= {
722 ClOleCommandTarget_QueryInterface
,
723 ClOleCommandTarget_AddRef
,
724 ClOleCommandTarget_Release
,
725 ClOleCommandTarget_QueryStatus
,
726 ClOleCommandTarget_Exec
729 static inline DocHost
*impl_from_IDocHostUIHandler2(IDocHostUIHandler2
*iface
)
731 return CONTAINING_RECORD(iface
, DocHost
, IDocHostUIHandler2_iface
);
734 static HRESULT WINAPI
DocHostUIHandler_QueryInterface(IDocHostUIHandler2
*iface
,
735 REFIID riid
, void **ppv
)
737 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
738 return IOleClientSite_QueryInterface(&This
->IOleClientSite_iface
, riid
, ppv
);
741 static ULONG WINAPI
DocHostUIHandler_AddRef(IDocHostUIHandler2
*iface
)
743 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
744 return IOleClientSite_AddRef(&This
->IOleClientSite_iface
);
747 static ULONG WINAPI
DocHostUIHandler_Release(IDocHostUIHandler2
*iface
)
749 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
750 return IOleClientSite_Release(&This
->IOleClientSite_iface
);
753 static HRESULT WINAPI
DocHostUIHandler_ShowContextMenu(IDocHostUIHandler2
*iface
,
754 DWORD dwID
, POINT
*ppt
, IUnknown
*pcmdtReserved
, IDispatch
*pdispReserved
)
756 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
759 TRACE("(%p)->(%d %p %p %p)\n", This
, dwID
, ppt
, pcmdtReserved
, pdispReserved
);
762 hres
= IDocHostUIHandler_ShowContextMenu(This
->hostui
, dwID
, ppt
, pcmdtReserved
,
768 FIXME("default action not implemented\n");
772 static HRESULT WINAPI
DocHostUIHandler_GetHostInfo(IDocHostUIHandler2
*iface
,
773 DOCHOSTUIINFO
*pInfo
)
775 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
778 TRACE("(%p)->(%p)\n", This
, pInfo
);
781 hres
= IDocHostUIHandler_GetHostInfo(This
->hostui
, pInfo
);
786 pInfo
->dwFlags
= DOCHOSTUIFLAG_DISABLE_HELP_MENU
| DOCHOSTUIFLAG_OPENNEWWIN
787 | DOCHOSTUIFLAG_URL_ENCODING_ENABLE_UTF8
| DOCHOSTUIFLAG_ENABLE_INPLACE_NAVIGATION
788 | DOCHOSTUIFLAG_IME_ENABLE_RECONVERSION
;
792 static HRESULT WINAPI
DocHostUIHandler_ShowUI(IDocHostUIHandler2
*iface
, DWORD dwID
,
793 IOleInPlaceActiveObject
*pActiveObject
, IOleCommandTarget
*pCommandTarget
,
794 IOleInPlaceFrame
*pFrame
, IOleInPlaceUIWindow
*pDoc
)
796 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
797 FIXME("(%p)->(%d %p %p %p %p)\n", This
, dwID
, pActiveObject
, pCommandTarget
,
802 static HRESULT WINAPI
DocHostUIHandler_HideUI(IDocHostUIHandler2
*iface
)
804 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
805 FIXME("(%p)\n", This
);
809 static HRESULT WINAPI
DocHostUIHandler_UpdateUI(IDocHostUIHandler2
*iface
)
811 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
813 TRACE("(%p)\n", This
);
818 return IDocHostUIHandler_UpdateUI(This
->hostui
);
821 static HRESULT WINAPI
DocHostUIHandler_EnableModeless(IDocHostUIHandler2
*iface
,
824 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
825 FIXME("(%p)->(%x)\n", This
, fEnable
);
829 static HRESULT WINAPI
DocHostUIHandler_OnDocWindowActivate(IDocHostUIHandler2
*iface
,
832 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
833 FIXME("(%p)->(%x)\n", This
, fActivate
);
837 static HRESULT WINAPI
DocHostUIHandler_OnFrameWindowActivate(IDocHostUIHandler2
*iface
,
840 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
841 FIXME("(%p)->(%x)\n", This
, fActivate
);
845 static HRESULT WINAPI
DocHostUIHandler_ResizeBorder(IDocHostUIHandler2
*iface
,
846 LPCRECT prcBorder
, IOleInPlaceUIWindow
*pUIWindow
, BOOL fRameWindow
)
848 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
849 FIXME("(%p)->(%p %p %X)\n", This
, prcBorder
, pUIWindow
, fRameWindow
);
853 static HRESULT WINAPI
DocHostUIHandler_TranslateAccelerator(IDocHostUIHandler2
*iface
,
854 LPMSG lpMsg
, const GUID
*pguidCmdGroup
, DWORD nCmdID
)
856 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
857 HRESULT hr
= S_FALSE
;
858 TRACE("(%p)->(%p %p %d)\n", This
, lpMsg
, pguidCmdGroup
, nCmdID
);
861 hr
= IDocHostUIHandler_TranslateAccelerator(This
->hostui
, lpMsg
, pguidCmdGroup
, nCmdID
);
866 static HRESULT WINAPI
DocHostUIHandler_GetOptionKeyPath(IDocHostUIHandler2
*iface
,
867 LPOLESTR
*pchKey
, DWORD dw
)
869 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
871 TRACE("(%p)->(%p %d)\n", This
, pchKey
, dw
);
874 return IDocHostUIHandler_GetOptionKeyPath(This
->hostui
, pchKey
, dw
);
879 static HRESULT WINAPI
DocHostUIHandler_GetDropTarget(IDocHostUIHandler2
*iface
,
880 IDropTarget
*pDropTarget
, IDropTarget
**ppDropTarget
)
882 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
883 FIXME("(%p)\n", This
);
887 static HRESULT WINAPI
DocHostUIHandler_GetExternal(IDocHostUIHandler2
*iface
,
888 IDispatch
**ppDispatch
)
890 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
892 TRACE("(%p)->(%p)\n", This
, ppDispatch
);
895 return IDocHostUIHandler_GetExternal(This
->hostui
, ppDispatch
);
897 if(!This
->shell_ui_helper
) {
900 hres
= create_shell_ui_helper(&This
->shell_ui_helper
);
905 *ppDispatch
= (IDispatch
*)This
->shell_ui_helper
;
906 IDispatch_AddRef(*ppDispatch
);
910 static HRESULT WINAPI
DocHostUIHandler_TranslateUrl(IDocHostUIHandler2
*iface
,
911 DWORD dwTranslate
, OLECHAR
*pchURLIn
, OLECHAR
**ppchURLOut
)
913 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
915 TRACE("(%p)->(%d %s %p)\n", This
, dwTranslate
, debugstr_w(pchURLIn
), ppchURLOut
);
918 return IDocHostUIHandler_TranslateUrl(This
->hostui
, dwTranslate
,
919 pchURLIn
, ppchURLOut
);
924 static HRESULT WINAPI
DocHostUIHandler_FilterDataObject(IDocHostUIHandler2
*iface
,
925 IDataObject
*pDO
, IDataObject
**ppDORet
)
927 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
928 FIXME("(%p)->(%p %p)\n", This
, pDO
, ppDORet
);
932 static HRESULT WINAPI
DocHostUIHandler_GetOverrideKeyPath(IDocHostUIHandler2
*iface
,
933 LPOLESTR
*pchKey
, DWORD dw
)
935 DocHost
*This
= impl_from_IDocHostUIHandler2(iface
);
936 IDocHostUIHandler2
*handler
;
939 TRACE("(%p)->(%p %d)\n", This
, pchKey
, dw
);
944 hres
= IDocHostUIHandler_QueryInterface(This
->hostui
, &IID_IDocHostUIHandler2
,
946 if(SUCCEEDED(hres
)) {
947 hres
= IDocHostUIHandler2_GetOverrideKeyPath(handler
, pchKey
, dw
);
948 IDocHostUIHandler2_Release(handler
);
955 static const IDocHostUIHandler2Vtbl DocHostUIHandler2Vtbl
= {
956 DocHostUIHandler_QueryInterface
,
957 DocHostUIHandler_AddRef
,
958 DocHostUIHandler_Release
,
959 DocHostUIHandler_ShowContextMenu
,
960 DocHostUIHandler_GetHostInfo
,
961 DocHostUIHandler_ShowUI
,
962 DocHostUIHandler_HideUI
,
963 DocHostUIHandler_UpdateUI
,
964 DocHostUIHandler_EnableModeless
,
965 DocHostUIHandler_OnDocWindowActivate
,
966 DocHostUIHandler_OnFrameWindowActivate
,
967 DocHostUIHandler_ResizeBorder
,
968 DocHostUIHandler_TranslateAccelerator
,
969 DocHostUIHandler_GetOptionKeyPath
,
970 DocHostUIHandler_GetDropTarget
,
971 DocHostUIHandler_GetExternal
,
972 DocHostUIHandler_TranslateUrl
,
973 DocHostUIHandler_FilterDataObject
,
974 DocHostUIHandler_GetOverrideKeyPath
977 static inline DocHost
*impl_from_IPropertyNotifySink(IPropertyNotifySink
*iface
)
979 return CONTAINING_RECORD(iface
, DocHost
, IPropertyNotifySink_iface
);
982 static HRESULT WINAPI
PropertyNotifySink_QueryInterface(IPropertyNotifySink
*iface
,
983 REFIID riid
, void **ppv
)
985 DocHost
*This
= impl_from_IPropertyNotifySink(iface
);
986 return IOleClientSite_QueryInterface(&This
->IOleClientSite_iface
, riid
, ppv
);
989 static ULONG WINAPI
PropertyNotifySink_AddRef(IPropertyNotifySink
*iface
)
991 DocHost
*This
= impl_from_IPropertyNotifySink(iface
);
992 return IOleClientSite_AddRef(&This
->IOleClientSite_iface
);
995 static ULONG WINAPI
PropertyNotifySink_Release(IPropertyNotifySink
*iface
)
997 DocHost
*This
= impl_from_IPropertyNotifySink(iface
);
998 return IOleClientSite_Release(&This
->IOleClientSite_iface
);
1001 static HRESULT WINAPI
PropertyNotifySink_OnChanged(IPropertyNotifySink
*iface
, DISPID dispID
)
1003 DocHost
*This
= impl_from_IPropertyNotifySink(iface
);
1005 TRACE("(%p)->(%d)\n", This
, dispID
);
1008 case DISPID_READYSTATE
: {
1009 READYSTATE ready_state
;
1012 hres
= get_doc_ready_state(This
, &ready_state
);
1016 if(ready_state
== READYSTATE_COMPLETE
&& !This
->doc_navigate
)
1017 advise_prop_notif(This
, FALSE
);
1019 update_ready_state(This
, ready_state
);
1023 FIXME("unimplemented dispid %d\n", dispID
);
1030 static HRESULT WINAPI
PropertyNotifySink_OnRequestEdit(IPropertyNotifySink
*iface
, DISPID dispID
)
1032 DocHost
*This
= impl_from_IPropertyNotifySink(iface
);
1033 FIXME("(%p)->(%d)\n", This
, dispID
);
1037 static const IPropertyNotifySinkVtbl PropertyNotifySinkVtbl
= {
1038 PropertyNotifySink_QueryInterface
,
1039 PropertyNotifySink_AddRef
,
1040 PropertyNotifySink_Release
,
1041 PropertyNotifySink_OnChanged
,
1042 PropertyNotifySink_OnRequestEdit
1045 void DocHost_Init(DocHost
*This
, IWebBrowser2
*wb
, const IDocHostContainerVtbl
* container
)
1047 This
->IDocHostUIHandler2_iface
.lpVtbl
= &DocHostUIHandler2Vtbl
;
1048 This
->IOleCommandTarget_iface
.lpVtbl
= &OleCommandTargetVtbl
;
1049 This
->IPropertyNotifySink_iface
.lpVtbl
= &PropertyNotifySinkVtbl
;
1052 This
->container_vtbl
= container
;
1054 This
->ready_state
= READYSTATE_UNINITIALIZED
;
1055 list_init(&This
->task_queue
);
1057 This
->travellog
.loading_pos
= -1;
1059 DocHost_ClientSite_Init(This
);
1060 DocHost_Frame_Init(This
);
1062 ConnectionPointContainer_Init(&This
->cps
, (IUnknown
*)wb
);
1063 IEHTMLWindow_Init(This
);
1064 NewWindowManager_Init(This
);
1067 void DocHost_Release(DocHost
*This
)
1069 if(This
->shell_ui_helper
)
1070 IShellUIHelper2_Release(This
->shell_ui_helper
);
1072 abort_dochost_tasks(This
, NULL
);
1073 release_dochost_client(This
);
1074 DocHost_ClientSite_Release(This
);
1076 ConnectionPointContainer_Destroy(&This
->cps
);
1078 while(This
->travellog
.length
)
1079 free_travellog_entry(This
->travellog
.log
+ --This
->travellog
.length
);
1080 heap_free(This
->travellog
.log
);
1082 heap_free(This
->url
);