2005-06-28 12:53:42 +02:00
|
|
|
/*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-06-28 12:53:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
2005-08-26 10:46:37 +02:00
|
|
|
#include "resource.h"
|
2005-06-28 12:53:42 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
|
|
|
/**********************************************************
|
|
|
|
* IOleInPlaceActiveObject implementation
|
|
|
|
*/
|
|
|
|
|
2005-07-13 13:29:53 +02:00
|
|
|
#define ACTOBJ_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceActiveObject, iface)
|
2005-06-28 12:53:42 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_QueryInterface(IOleInPlaceActiveObject *iface, REFIID riid, void **ppvObject)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleInPlaceActiveObject_AddRef(IOleInPlaceActiveObject *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleInPlaceActiveObject_Release(IOleInPlaceActiveObject *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_GetWindow(IOleInPlaceActiveObject *iface, HWND *phwnd)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
|
|
|
|
2005-06-28 12:53:42 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, phwnd);
|
|
|
|
|
|
|
|
if(!phwnd)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
if(!This->doc_obj->in_place_active) {
|
2005-07-18 11:13:32 +02:00
|
|
|
*phwnd = NULL;
|
2005-07-14 12:14:33 +02:00
|
|
|
return E_FAIL;
|
2005-07-18 11:13:32 +02:00
|
|
|
}
|
2005-07-14 12:14:33 +02:00
|
|
|
|
2009-09-16 22:10:47 +02:00
|
|
|
*phwnd = This->doc_obj->hwnd;
|
2005-06-28 12:53:42 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_ContextSensitiveHelp(IOleInPlaceActiveObject *iface, BOOL fEnterMode)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%x)\n", This, fEnterMode);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_TranslateAccelerator(IOleInPlaceActiveObject *iface, LPMSG lpmsg)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, lpmsg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-07-08 16:11:25 +02:00
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_OnFrameWindowActivate(IOleInPlaceActiveObject *iface,
|
|
|
|
BOOL fActivate)
|
2005-06-28 12:53:42 +02:00
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2006-07-08 16:11:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, fActivate);
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->hostui)
|
|
|
|
IDocHostUIHandler_OnFrameWindowActivate(This->doc_obj->hostui, fActivate);
|
2006-07-08 16:11:25 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2005-06-28 12:53:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_OnDocWindowActivate(IOleInPlaceActiveObject *iface, BOOL fActivate)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%x)\n", This, fActivate);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_ResizeBorder(IOleInPlaceActiveObject *iface, LPCRECT prcBorder,
|
|
|
|
IOleInPlaceUIWindow *pUIWindow, BOOL fFrameWindow)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%p %p %x)\n", This, prcBorder, pUIWindow, fFrameWindow);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceActiveObject_EnableModeless(IOleInPlaceActiveObject *iface, BOOL fEnable)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = ACTOBJ_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2005-07-13 13:29:53 +02:00
|
|
|
#define OLEINPLACEWND_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceObjectWindowless, iface)
|
2005-06-28 12:53:42 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_QueryInterface(IOleInPlaceObjectWindowless *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleInPlaceObjectWindowless_AddRef(IOleInPlaceObjectWindowless *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleInPlaceObjectWindowless_Release(IOleInPlaceObjectWindowless *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IHTMLDocument2_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_GetWindow(IOleInPlaceObjectWindowless *iface,
|
|
|
|
HWND *phwnd)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IOleWindow_GetWindow(OLEWIN(This), phwnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_ContextSensitiveHelp(IOleInPlaceObjectWindowless *iface,
|
|
|
|
BOOL fEnterMode)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
return IOleWindow_ContextSensitiveHelp(OLEWIN(This), fEnterMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_InPlaceDeactivate(IOleInPlaceObjectWindowless *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-07-14 12:14:33 +02:00
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
if(This->doc_obj->ui_active)
|
2005-08-16 13:13:01 +02:00
|
|
|
IOleDocumentView_UIActivate(DOCVIEW(This), FALSE);
|
2009-09-16 22:11:26 +02:00
|
|
|
This->doc_obj->window_active = FALSE;
|
2005-08-16 13:13:01 +02:00
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
if(!This->doc_obj->in_place_active)
|
2005-07-14 12:14:33 +02:00
|
|
|
return S_OK;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->frame)
|
|
|
|
IOleInPlaceFrame_Release(This->doc_obj->frame);
|
2005-07-14 12:14:33 +02:00
|
|
|
|
2009-09-16 22:10:47 +02:00
|
|
|
if(This->doc_obj->hwnd) {
|
|
|
|
ShowWindow(This->doc_obj->hwnd, SW_HIDE);
|
|
|
|
SetWindowPos(This->doc_obj->hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
|
2005-07-14 12:14:33 +02:00
|
|
|
}
|
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
This->doc_obj->focus = FALSE;
|
2009-09-16 22:10:03 +02:00
|
|
|
notif_focus(This->doc_obj);
|
2007-06-22 23:33:41 +02:00
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
This->doc_obj->in_place_active = FALSE;
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->ipsite) {
|
2007-06-14 21:10:07 +02:00
|
|
|
IOleInPlaceSiteEx *ipsiteex;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = IOleInPlaceSite_QueryInterface(This->doc_obj->ipsite, &IID_IOleInPlaceSiteEx, (void**)&ipsiteex);
|
2007-06-14 21:10:07 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
IOleInPlaceSiteEx_OnInPlaceDeactivateEx(ipsiteex, TRUE);
|
|
|
|
IOleInPlaceSiteEx_Release(ipsiteex);
|
|
|
|
}else {
|
2009-09-16 22:10:03 +02:00
|
|
|
IOleInPlaceSite_OnInPlaceDeactivate(This->doc_obj->ipsite);
|
2007-06-14 21:10:07 +02:00
|
|
|
}
|
|
|
|
}
|
2005-07-14 12:14:33 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2005-06-28 12:53:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_UIDeactivate(IOleInPlaceObjectWindowless *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_SetObjectRects(IOleInPlaceObjectWindowless *iface,
|
|
|
|
LPCRECT lprcPosRect, LPCRECT lprcClipRect)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%p %p)\n", This, lprcPosRect, lprcClipRect);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_ReactivateAndUndo(IOleInPlaceObjectWindowless *iface)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_OnWindowMessage(IOleInPlaceObjectWindowless *iface,
|
|
|
|
UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *lpResult)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2007-05-24 16:41:17 +02:00
|
|
|
FIXME("(%p)->(%u %lu %lu %p)\n", This, msg, wParam, lParam, lpResult);
|
2005-06-28 12:53:42 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleInPlaceObjectWindowless_GetDropTarget(IOleInPlaceObjectWindowless *iface,
|
|
|
|
IDropTarget **ppDropTarget)
|
|
|
|
{
|
2005-07-13 13:29:53 +02:00
|
|
|
HTMLDocument *This = OLEINPLACEWND_THIS(iface);
|
2005-06-28 12:53:42 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, ppDropTarget);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2005-09-02 13:18:17 +02:00
|
|
|
static const IOleInPlaceObjectWindowlessVtbl OleInPlaceObjectWindowlessVtbl = {
|
2005-06-28 12:53:42 +02:00
|
|
|
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_Window_Init(HTMLDocument *This)
|
|
|
|
{
|
|
|
|
This->lpOleInPlaceActiveObjectVtbl = &OleInPlaceActiveObjectVtbl;
|
|
|
|
This->lpOleInPlaceObjectWindowlessVtbl = &OleInPlaceObjectWindowlessVtbl;
|
|
|
|
}
|