2005-07-03 13:22:23 +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-07-03 13:22:23 +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"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2007-09-09 20:17:30 +02:00
|
|
|
typedef struct {
|
2010-12-06 23:32:21 +01:00
|
|
|
IOleUndoManager IOleUndoManager_iface;
|
2007-09-09 20:17:30 +02:00
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
} UndoManager;
|
|
|
|
|
2010-12-06 23:32:21 +01:00
|
|
|
static inline UndoManager *impl_from_IOleUndoManager(IOleUndoManager *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, UndoManager, IOleUndoManager_iface);
|
|
|
|
}
|
2007-09-09 20:17:30 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_QueryInterface(IOleUndoManager *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
|
|
|
|
if(IsEqualGUID(riid, &IID_IUnknown)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
2010-12-06 23:32:21 +01:00
|
|
|
*ppv = &This->IOleUndoManager_iface;
|
2007-09-09 20:17:30 +02:00
|
|
|
}else if(IsEqualGUID(riid, &IID_IOleUndoManager)) {
|
|
|
|
TRACE("(%p)->(IID_IOleUndoManager %p)\n", This, ppv);
|
2010-12-06 23:32:21 +01:00
|
|
|
*ppv = &This->IOleUndoManager_iface;
|
2010-12-20 19:09:34 +01:00
|
|
|
}else {
|
|
|
|
*ppv = NULL;
|
|
|
|
FIXME("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
|
|
|
|
return E_NOINTERFACE;
|
2007-09-09 20:17:30 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 19:09:34 +01:00
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
2007-09-09 20:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleUndoManager_AddRef(IOleUndoManager *iface)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleUndoManager_Release(IOleUndoManager *iface)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if(!ref)
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This);
|
2007-09-09 20:17:30 +02:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_Open(IOleUndoManager *iface, IOleParentUndoUnit *pPUU)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pPUU);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_Close(IOleUndoManager *iface, IOleParentUndoUnit *pPUU,
|
|
|
|
BOOL fCommit)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p %x)\n", This, pPUU, fCommit);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_Add(IOleUndoManager *iface, IOleUndoUnit *pUU)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pUU);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_GetOpenParentState(IOleUndoManager *iface, DWORD *pdwState)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pdwState);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_DiscardFrom(IOleUndoManager *iface, IOleUndoUnit *pUU)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pUU);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_UndoTo(IOleUndoManager *iface, IOleUndoUnit *pUU)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pUU);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_RedoTo(IOleUndoManager *iface, IOleUndoUnit *pUU)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pUU);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_EnumUndoable(IOleUndoManager *iface,
|
|
|
|
IEnumOleUndoUnits **ppEnum)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, ppEnum);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_EnumRedoable(IOleUndoManager *iface,
|
|
|
|
IEnumOleUndoUnits **ppEnum)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, ppEnum);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_GetLastUndoDescription(IOleUndoManager *iface, BSTR *pBstr)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pBstr);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_GetLastRedoDescription(IOleUndoManager *iface, BSTR *pBstr)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pBstr);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleUndoManager_Enable(IOleUndoManager *iface, BOOL fEnable)
|
|
|
|
{
|
2010-12-06 23:32:21 +01:00
|
|
|
UndoManager *This = impl_from_IOleUndoManager(iface);
|
2007-09-09 20:17:30 +02:00
|
|
|
FIXME("(%p)->(%x)\n", This, fEnable);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IOleUndoManagerVtbl OleUndoManagerVtbl = {
|
|
|
|
OleUndoManager_QueryInterface,
|
|
|
|
OleUndoManager_AddRef,
|
|
|
|
OleUndoManager_Release,
|
|
|
|
OleUndoManager_Open,
|
|
|
|
OleUndoManager_Close,
|
|
|
|
OleUndoManager_Add,
|
|
|
|
OleUndoManager_GetOpenParentState,
|
|
|
|
OleUndoManager_DiscardFrom,
|
|
|
|
OleUndoManager_UndoTo,
|
|
|
|
OleUndoManager_RedoTo,
|
|
|
|
OleUndoManager_EnumUndoable,
|
|
|
|
OleUndoManager_EnumRedoable,
|
|
|
|
OleUndoManager_GetLastUndoDescription,
|
|
|
|
OleUndoManager_GetLastRedoDescription,
|
|
|
|
OleUndoManager_Enable
|
|
|
|
};
|
|
|
|
|
|
|
|
static IOleUndoManager *create_undomgr(void)
|
|
|
|
{
|
2007-12-05 21:52:31 +01:00
|
|
|
UndoManager *ret = heap_alloc(sizeof(UndoManager));
|
2007-09-09 20:17:30 +02:00
|
|
|
|
2010-12-06 23:32:21 +01:00
|
|
|
ret->IOleUndoManager_iface.lpVtbl = &OleUndoManagerVtbl;
|
2007-09-09 20:17:30 +02:00
|
|
|
ret->ref = 1;
|
|
|
|
|
2010-12-06 23:32:21 +01:00
|
|
|
return &ret->IOleUndoManager_iface;
|
2007-09-09 20:17:30 +02:00
|
|
|
}
|
|
|
|
|
2005-07-03 13:22:23 +02:00
|
|
|
/**********************************************************
|
2008-04-04 21:23:01 +02:00
|
|
|
* IServiceProvider implementation
|
2005-07-03 13:22:23 +02:00
|
|
|
*/
|
|
|
|
|
2010-12-27 01:43:10 +01:00
|
|
|
static inline HTMLDocument *impl_from_IServiceProvider(IServiceProvider *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLDocument, IServiceProvider_iface);
|
|
|
|
}
|
2005-07-03 13:22:23 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI ServiceProvider_QueryInterface(IServiceProvider *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLDocument *This = impl_from_IServiceProvider(iface);
|
2010-12-16 14:59:51 +01:00
|
|
|
return htmldoc_query_interface(This, riid, ppv);
|
2005-07-03 13:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ServiceProvider_AddRef(IServiceProvider *iface)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLDocument *This = impl_from_IServiceProvider(iface);
|
2010-12-16 14:59:51 +01:00
|
|
|
return htmldoc_addref(This);
|
2005-07-03 13:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ServiceProvider_Release(IServiceProvider *iface)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLDocument *This = impl_from_IServiceProvider(iface);
|
2010-12-16 14:59:51 +01:00
|
|
|
return htmldoc_release(This);
|
2005-07-03 13:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ServiceProvider_QueryService(IServiceProvider *iface, REFGUID guidService,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLDocument *This = impl_from_IServiceProvider(iface);
|
|
|
|
|
2006-05-24 17:58:27 +02:00
|
|
|
if(IsEqualGUID(&CLSID_CMarkup, guidService)) {
|
|
|
|
FIXME("(%p)->(CLSID_CMarkup %s %p)\n", This, debugstr_guid(riid), ppv);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
2005-07-03 13:22:23 +02:00
|
|
|
|
2010-11-04 13:08:10 +01:00
|
|
|
if(IsEqualGUID(&SID_SOleUndoManager, guidService)) {
|
|
|
|
TRACE("SID_SOleUndoManager\n");
|
2007-09-09 20:17:30 +02:00
|
|
|
|
2009-09-16 22:10:30 +02:00
|
|
|
if(!This->doc_obj->undomgr)
|
|
|
|
This->doc_obj->undomgr = create_undomgr();
|
2007-09-09 20:17:30 +02:00
|
|
|
|
2010-11-04 13:08:10 +01:00
|
|
|
return IOleUndoManager_QueryInterface(This->doc_obj->undomgr, riid, ppv);
|
2007-09-09 20:17:30 +02:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:12:13 +01:00
|
|
|
if(IsEqualGUID(&SID_SContainerDispatch, guidService)) {
|
|
|
|
TRACE("SID_SContainerDispatch\n");
|
|
|
|
return IHTMLDocument2_QueryInterface(&This->IHTMLDocument2_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
2012-05-30 15:49:15 +02:00
|
|
|
if(IsEqualGUID(&IID_IWindowForBindingUI, guidService)) {
|
|
|
|
TRACE("IID_IWindowForBindingUI\n");
|
|
|
|
return IWindowForBindingUI_QueryInterface(&This->doc_obj->IWindowForBindingUI_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
2010-12-17 03:38:44 +01:00
|
|
|
TRACE("(%p)->(%s %s %p)\n", This, debugstr_guid(guidService), debugstr_guid(riid), ppv);
|
|
|
|
|
2009-12-28 20:08:46 +01:00
|
|
|
if(This->doc_obj->client) {
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-01-05 18:30:46 +01:00
|
|
|
hres = do_query_service((IUnknown*)This->doc_obj->client, guidService, riid, ppv);
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
return hres;
|
2009-12-28 20:08:46 +01:00
|
|
|
}
|
|
|
|
|
2010-12-17 03:38:44 +01:00
|
|
|
FIXME("unknown service %s\n", debugstr_guid(guidService));
|
2009-12-28 20:08:46 +01:00
|
|
|
return E_NOINTERFACE;
|
2005-07-03 13:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IServiceProviderVtbl ServiceProviderVtbl = {
|
|
|
|
ServiceProvider_QueryInterface,
|
|
|
|
ServiceProvider_AddRef,
|
|
|
|
ServiceProvider_Release,
|
|
|
|
ServiceProvider_QueryService
|
|
|
|
};
|
|
|
|
|
|
|
|
void HTMLDocument_Service_Init(HTMLDocument *This)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
This->IServiceProvider_iface.lpVtbl = &ServiceProviderVtbl;
|
2005-07-03 13:22:23 +02:00
|
|
|
}
|