|  | /* | 
|  | * Copyright 2005 Jacek Caban | 
|  | * | 
|  | * This library is free software; you can redistribute it and/or | 
|  | * modify it under the terms of the GNU Lesser General Public | 
|  | * License as published by the Free Software Foundation; either | 
|  | * version 2.1 of the License, or (at your option) any later version. | 
|  | * | 
|  | * This library is distributed in the hope that it will be useful, | 
|  | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|  | * Lesser General Public License for more details. | 
|  | * | 
|  | * You should have received a copy of the GNU Lesser General Public | 
|  | * License along with this library; if not, write to the Free Software | 
|  | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | */ | 
|  |  | 
|  | #include "config.h" | 
|  |  | 
|  | #include <stdarg.h> | 
|  | #include <stdio.h> | 
|  |  | 
|  | #define COBJMACROS | 
|  |  | 
|  | #include "windef.h" | 
|  | #include "winbase.h" | 
|  | #include "winuser.h" | 
|  | #include "ole2.h" | 
|  |  | 
|  | #include "wine/debug.h" | 
|  |  | 
|  | #include "mshtml_private.h" | 
|  | #include "resource.h" | 
|  |  | 
|  | WINE_DEFAULT_DEBUG_CHANNEL(mshtml); | 
|  |  | 
|  | /********************************************************** | 
|  | * IOleInPlaceActiveObject implementation | 
|  | */ | 
|  |  | 
|  | #define ACTOBJ_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceActiveObject, iface) | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_QueryInterface(IOleInPlaceActiveObject *iface, REFIID riid, void **ppvObject) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject); | 
|  | } | 
|  |  | 
|  | static ULONG WINAPI OleInPlaceActiveObject_AddRef(IOleInPlaceActiveObject *iface) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | return IHTMLDocument2_AddRef(HTMLDOC(This)); | 
|  | } | 
|  |  | 
|  | static ULONG WINAPI OleInPlaceActiveObject_Release(IOleInPlaceActiveObject *iface) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | return IHTMLDocument2_Release(HTMLDOC(This)); | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_GetWindow(IOleInPlaceActiveObject *iface, HWND *phwnd) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  |  | 
|  | TRACE("(%p)->(%p)\n", This, phwnd); | 
|  |  | 
|  | if(!phwnd) | 
|  | return E_INVALIDARG; | 
|  |  | 
|  | if(!This->in_place_active) { | 
|  | *phwnd = NULL; | 
|  | return E_FAIL; | 
|  | } | 
|  |  | 
|  | *phwnd = This->hwnd; | 
|  | return S_OK; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_ContextSensitiveHelp(IOleInPlaceActiveObject *iface, BOOL fEnterMode) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%x)\n", This, fEnterMode); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_TranslateAccelerator(IOleInPlaceActiveObject *iface, LPMSG lpmsg) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%p)\n", This, lpmsg); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_OnFrameWindowActivate(IOleInPlaceActiveObject *iface, BOOL fActivate) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%x)\n", This, fActivate); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_OnDocWindowActivate(IOleInPlaceActiveObject *iface, BOOL fActivate) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%x)\n", This, fActivate); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_ResizeBorder(IOleInPlaceActiveObject *iface, LPCRECT prcBorder, | 
|  | IOleInPlaceUIWindow *pUIWindow, BOOL fFrameWindow) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%p %p %x)\n", This, prcBorder, pUIWindow, fFrameWindow); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceActiveObject_EnableModeless(IOleInPlaceActiveObject *iface, BOOL fEnable) | 
|  | { | 
|  | HTMLDocument *This = ACTOBJ_THIS(iface); | 
|  | FIXME("(%p)->(%x)\n", This, fEnable); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static const IOleInPlaceActiveObjectVtbl OleInPlaceActiveObjectVtbl = { | 
|  | OleInPlaceActiveObject_QueryInterface, | 
|  | OleInPlaceActiveObject_AddRef, | 
|  | OleInPlaceActiveObject_Release, | 
|  | OleInPlaceActiveObject_GetWindow, | 
|  | OleInPlaceActiveObject_ContextSensitiveHelp, | 
|  | OleInPlaceActiveObject_TranslateAccelerator, | 
|  | OleInPlaceActiveObject_OnFrameWindowActivate, | 
|  | OleInPlaceActiveObject_OnDocWindowActivate, | 
|  | OleInPlaceActiveObject_ResizeBorder, | 
|  | OleInPlaceActiveObject_EnableModeless | 
|  | }; | 
|  |  | 
|  | #undef ACTOBJ_THIS | 
|  |  | 
|  | /********************************************************** | 
|  | * IOleInPlaceObjectWindowless implementation | 
|  | */ | 
|  |  | 
|  | #define OLEINPLACEWND_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceObjectWindowless, iface) | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_QueryInterface(IOleInPlaceObjectWindowless *iface, | 
|  | REFIID riid, void **ppvObject) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject); | 
|  | } | 
|  |  | 
|  | static ULONG WINAPI OleInPlaceObjectWindowless_AddRef(IOleInPlaceObjectWindowless *iface) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | return IHTMLDocument2_AddRef(HTMLDOC(This)); | 
|  | } | 
|  |  | 
|  | static ULONG WINAPI OleInPlaceObjectWindowless_Release(IOleInPlaceObjectWindowless *iface) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | return IHTMLDocument2_Release(HTMLDOC(This)); | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_GetWindow(IOleInPlaceObjectWindowless *iface, | 
|  | HWND *phwnd) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | return IOleWindow_GetWindow(OLEWIN(This), phwnd); | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_ContextSensitiveHelp(IOleInPlaceObjectWindowless *iface, | 
|  | BOOL fEnterMode) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | return IOleWindow_ContextSensitiveHelp(OLEWIN(This), fEnterMode); | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_InPlaceDeactivate(IOleInPlaceObjectWindowless *iface) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  |  | 
|  | TRACE("(%p)\n", This); | 
|  |  | 
|  | if(This->ui_active) | 
|  | IOleDocumentView_UIActivate(DOCVIEW(This), FALSE); | 
|  | This->window_active = FALSE; | 
|  |  | 
|  | if(!This->in_place_active) | 
|  | return S_OK; | 
|  |  | 
|  | if(This->frame) | 
|  | IOleInPlaceFrame_Release(This->frame); | 
|  |  | 
|  | if(This->hwnd) { | 
|  | ShowWindow(This->hwnd, SW_HIDE); | 
|  | SetWindowPos(This->hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE); | 
|  | } | 
|  |  | 
|  | This->in_place_active = FALSE; | 
|  | if(This->ipsite) | 
|  | IOleInPlaceSite_OnInPlaceDeactivate(This->ipsite); | 
|  |  | 
|  | return S_OK; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_UIDeactivate(IOleInPlaceObjectWindowless *iface) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | FIXME("(%p)\n", This); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_SetObjectRects(IOleInPlaceObjectWindowless *iface, | 
|  | LPCRECT lprcPosRect, LPCRECT lprcClipRect) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | FIXME("(%p)->(%p %p)\n", This, lprcPosRect, lprcClipRect); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_ReactivateAndUndo(IOleInPlaceObjectWindowless *iface) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | FIXME("(%p)\n", This); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_OnWindowMessage(IOleInPlaceObjectWindowless *iface, | 
|  | UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *lpResult) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | FIXME("(%p)->(%u %u %lu %p)\n", This, msg, wParam, lParam, lpResult); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static HRESULT WINAPI OleInPlaceObjectWindowless_GetDropTarget(IOleInPlaceObjectWindowless *iface, | 
|  | IDropTarget **ppDropTarget) | 
|  | { | 
|  | HTMLDocument *This = OLEINPLACEWND_THIS(iface); | 
|  | FIXME("(%p)->(%p)\n", This, ppDropTarget); | 
|  | return E_NOTIMPL; | 
|  | } | 
|  |  | 
|  | static const IOleInPlaceObjectWindowlessVtbl OleInPlaceObjectWindowlessVtbl = { | 
|  | OleInPlaceObjectWindowless_QueryInterface, | 
|  | OleInPlaceObjectWindowless_AddRef, | 
|  | OleInPlaceObjectWindowless_Release, | 
|  | OleInPlaceObjectWindowless_GetWindow, | 
|  | OleInPlaceObjectWindowless_ContextSensitiveHelp, | 
|  | OleInPlaceObjectWindowless_InPlaceDeactivate, | 
|  | OleInPlaceObjectWindowless_UIDeactivate, | 
|  | OleInPlaceObjectWindowless_SetObjectRects, | 
|  | OleInPlaceObjectWindowless_ReactivateAndUndo, | 
|  | OleInPlaceObjectWindowless_OnWindowMessage, | 
|  | OleInPlaceObjectWindowless_GetDropTarget | 
|  | }; | 
|  |  | 
|  | #undef INPLACEWIN_THIS | 
|  |  | 
|  | void HTMLDocument_ShowContextMenu(HTMLDocument *This, DWORD dwID, POINT *ppt) | 
|  | { | 
|  | HMENU menu_res, menu; | 
|  | HRESULT hres; | 
|  |  | 
|  | hres = IDocHostUIHandler_ShowContextMenu(This->hostui, dwID, ppt, | 
|  | (IUnknown*)CMDTARGET(This), (IDispatch*)HTMLDOC(This)); | 
|  | if(hres == S_OK) | 
|  | return; | 
|  |  | 
|  | menu_res = LoadMenuW(hInst, MAKEINTRESOURCEW(IDR_BROWSE_CONTEXT_MENU)); | 
|  | menu = GetSubMenu(menu_res, dwID); | 
|  |  | 
|  | TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_RIGHTBUTTON | TPM_RETURNCMD, | 
|  | ppt->x, ppt->y, 0, This->hwnd, NULL); | 
|  |  | 
|  | DestroyMenu(menu_res); | 
|  | } | 
|  |  | 
|  | void HTMLDocument_Window_Init(HTMLDocument *This) | 
|  | { | 
|  | This->lpOleInPlaceActiveObjectVtbl = &OleInPlaceActiveObjectVtbl; | 
|  | This->lpOleInPlaceObjectWindowlessVtbl = &OleInPlaceObjectWindowlessVtbl; | 
|  | } |