From fdbe3d187020a4d11aa83d69ac2f0a3316845972 Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Fri, 30 Jan 2009 14:27:06 -0600 Subject: [PATCH] msctf: Add ITfDocumentMgr interface. --- dlls/msctf/Makefile.in | 1 + dlls/msctf/documentmgr.c | 167 ++++++++++++++++++++++++++++++++++++++++++++ dlls/msctf/msctf_internal.h | 1 + dlls/msctf/threadmgr.c | 5 +- include/msctf.idl | 36 ++++++++++ 5 files changed, 207 insertions(+), 3 deletions(-) create mode 100644 dlls/msctf/documentmgr.c diff --git a/dlls/msctf/Makefile.in b/dlls/msctf/Makefile.in index 687255109bf..a62955444dd 100644 --- a/dlls/msctf/Makefile.in +++ b/dlls/msctf/Makefile.in @@ -6,6 +6,7 @@ MODULE = msctf.dll IMPORTS = uuid ole32 user32 advapi32 kernel32 ntdll C_SRCS = \ + documentmgr.c \ msctf.c \ regsvr.c \ threadmgr.c diff --git a/dlls/msctf/documentmgr.c b/dlls/msctf/documentmgr.c new file mode 100644 index 00000000000..fe0232055d8 --- /dev/null +++ b/dlls/msctf/documentmgr.c @@ -0,0 +1,167 @@ +/* + * ITfDocumentMgr implementation + * + * Copyright 2009 Aric Stewart, CodeWeavers + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "config.h" + +#include + +#define COBJMACROS + +#include "wine/debug.h" +#include "windef.h" +#include "winbase.h" +#include "winreg.h" +#include "winuser.h" +#include "shlwapi.h" +#include "winerror.h" +#include "objbase.h" + +#include "wine/unicode.h" + +#include "msctf.h" +#include "msctf_internal.h" + +WINE_DEFAULT_DEBUG_CHANNEL(msctf); + +typedef struct tagDocumentMgr { + const ITfDocumentMgrVtbl *DocumentMgrVtbl; + LONG refCount; +} DocumentMgr; + +static void DocumentMgr_Destructor(DocumentMgr *This) +{ + TRACE("destroying %p\n", This); + HeapFree(GetProcessHeap(),0,This); +} + +static HRESULT WINAPI DocumentMgr_QueryInterface(ITfDocumentMgr *iface, REFIID iid, LPVOID *ppvOut) +{ + DocumentMgr *This = (DocumentMgr *)iface; + *ppvOut = NULL; + + if (IsEqualIID(iid, &IID_IUnknown) || IsEqualIID(iid, &IID_ITfDocumentMgr)) + { + *ppvOut = This; + } + + if (*ppvOut) + { + IUnknown_AddRef(iface); + return S_OK; + } + + WARN("unsupported interface: %s\n", debugstr_guid(iid)); + return E_NOINTERFACE; +} + +static ULONG WINAPI DocumentMgr_AddRef(ITfDocumentMgr *iface) +{ + DocumentMgr *This = (DocumentMgr *)iface; + return InterlockedIncrement(&This->refCount); +} + +static ULONG WINAPI DocumentMgr_Release(ITfDocumentMgr *iface) +{ + DocumentMgr *This = (DocumentMgr *)iface; + ULONG ret; + + ret = InterlockedDecrement(&This->refCount); + if (ret == 0) + DocumentMgr_Destructor(This); + return ret; +} + +/***************************************************** + * ITfDocumentMgr functions + *****************************************************/ +static HRESULT WINAPI DocumentMgr_CreateContext(ITfDocumentMgr *iface, + TfClientId tidOwner, + DWORD dwFlags, IUnknown *punk, ITfContext **ppic, + TfEditCookie *pecTextStore) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static HRESULT WINAPI DocumentMgr_Push(ITfDocumentMgr *iface, ITfContext *pic) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static HRESULT WINAPI DocumentMgr_Pop(ITfDocumentMgr *iface, DWORD dwFlags) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static HRESULT WINAPI DocumentMgr_GetTop(ITfDocumentMgr *iface, ITfContext **ppic) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static HRESULT WINAPI DocumentMgr_GetBase(ITfDocumentMgr *iface, ITfContext **ppic) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static HRESULT WINAPI DocumentMgr_EnumContexts(ITfDocumentMgr *iface, IEnumTfContexts **ppEnum) +{ + DocumentMgr *This = (DocumentMgr *)iface; + FIXME("STUB:(%p)\n",This); + return E_NOTIMPL; +} + +static const ITfDocumentMgrVtbl DocumentMgr_DocumentMgrVtbl = +{ + DocumentMgr_QueryInterface, + DocumentMgr_AddRef, + DocumentMgr_Release, + + DocumentMgr_CreateContext, + DocumentMgr_Push, + DocumentMgr_Pop, + DocumentMgr_GetTop, + DocumentMgr_GetBase, + DocumentMgr_EnumContexts +}; + +HRESULT DocumentMgr_Constructor(ITfDocumentMgr **ppOut) +{ + DocumentMgr *This; + + This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DocumentMgr)); + if (This == NULL) + return E_OUTOFMEMORY; + + This->DocumentMgrVtbl= &DocumentMgr_DocumentMgrVtbl; + This->refCount = 1; + + TRACE("returning %p\n", This); + *ppOut = (ITfDocumentMgr*)This; + return S_OK; +} diff --git a/dlls/msctf/msctf_internal.h b/dlls/msctf/msctf_internal.h index b8fd3ba7d21..ee87a506d5c 100644 --- a/dlls/msctf/msctf_internal.h +++ b/dlls/msctf/msctf_internal.h @@ -22,5 +22,6 @@ #define __WINE_MSCTF_I_H extern HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut); +extern HRESULT DocumentMgr_Constructor(ITfDocumentMgr **ppOut); #endif /* __WINE_MSCTF_I_H */ diff --git a/dlls/msctf/threadmgr.c b/dlls/msctf/threadmgr.c index 18675708cb8..75890522e6d 100644 --- a/dlls/msctf/threadmgr.c +++ b/dlls/msctf/threadmgr.c @@ -109,9 +109,8 @@ static HRESULT WINAPI ThreadMgr_fnDeactivate( ITfThreadMgr* iface) static HRESULT WINAPI ThreadMgr_CreateDocumentMgr( ITfThreadMgr* iface, ITfDocumentMgr **ppdim) { - ThreadMgr *This = (ThreadMgr *)iface; - FIXME("STUB:(%p)\n",This); - return E_NOTIMPL; + TRACE("(%p)\n",iface); + return DocumentMgr_Constructor(ppdim); } static HRESULT WINAPI ThreadMgr_EnumDocumentMgrs( ITfThreadMgr* iface, IEnumTfDocumentMgrs diff --git a/include/msctf.idl b/include/msctf.idl index 2ef8b074bfb..620b65f7b92 100644 --- a/include/msctf.idl +++ b/include/msctf.idl @@ -25,10 +25,13 @@ import "comcat.idl"; cpp_quote("EXTERN_C const CLSID CLSID_TF_ThreadMgr;") +typedef [uuid(7213778c-7bb0-4270-b050-6189ee594e97)] DWORD TfEditCookie; typedef [uuid(de403c21-89fd-4f85-8b87-64584d063fbc)] DWORD TfClientId; interface ITfDocumentMgr; +interface ITfContext; interface IEnumTfDocumentMgrs; +interface IEnumTfContexts; interface ITfFunctionProvider; interface IEnumTfFunctionProviders; interface ITfCompartmentMgr; @@ -75,3 +78,36 @@ interface ITfThreadMgr: IUnknown HRESULT GetGlobalCompartment( [out] ITfCompartmentMgr **ppCompMgr); }; + + +[ + object, + uuid(aa80e7f4-2021-11d2-93e0-0060b067b86e), + pointer_default(unique) +] +interface ITfDocumentMgr: IUnknown +{ + HRESULT CreateContext( + [in] TfClientId tidOwner, + [in] DWORD dwFlags, + [in, unique] IUnknown *punk, + [out] ITfContext **ppic, + [out] TfEditCookie *pecTextStore); + + HRESULT Push( + [in] ITfContext *pic); + + const DWORD TF_POPF_ALL = 0x0001; + + HRESULT Pop( + [in] DWORD dwFlags); + + HRESULT GetTop( + [out] ITfContext **ppic); + + HRESULT GetBase( + [out] ITfContext **ppic); + + HRESULT EnumContexts( + [out] IEnumTfContexts **ppEnum); +}; -- 2.11.4.GIT