msctf: Add ITfDocumentMgr interface.
This commit is contained in:
parent
edbea606f9
commit
fdbe3d1870
|
@ -6,6 +6,7 @@ MODULE = msctf.dll
|
||||||
IMPORTS = uuid ole32 user32 advapi32 kernel32 ntdll
|
IMPORTS = uuid ole32 user32 advapi32 kernel32 ntdll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
documentmgr.c \
|
||||||
msctf.c \
|
msctf.c \
|
||||||
regsvr.c \
|
regsvr.c \
|
||||||
threadmgr.c
|
threadmgr.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 <stdarg.h>
|
||||||
|
|
||||||
|
#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;
|
||||||
|
}
|
|
@ -22,5 +22,6 @@
|
||||||
#define __WINE_MSCTF_I_H
|
#define __WINE_MSCTF_I_H
|
||||||
|
|
||||||
extern HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut);
|
extern HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut);
|
||||||
|
extern HRESULT DocumentMgr_Constructor(ITfDocumentMgr **ppOut);
|
||||||
|
|
||||||
#endif /* __WINE_MSCTF_I_H */
|
#endif /* __WINE_MSCTF_I_H */
|
||||||
|
|
|
@ -109,9 +109,8 @@ static HRESULT WINAPI ThreadMgr_fnDeactivate( ITfThreadMgr* iface)
|
||||||
static HRESULT WINAPI ThreadMgr_CreateDocumentMgr( ITfThreadMgr* iface, ITfDocumentMgr
|
static HRESULT WINAPI ThreadMgr_CreateDocumentMgr( ITfThreadMgr* iface, ITfDocumentMgr
|
||||||
**ppdim)
|
**ppdim)
|
||||||
{
|
{
|
||||||
ThreadMgr *This = (ThreadMgr *)iface;
|
TRACE("(%p)\n",iface);
|
||||||
FIXME("STUB:(%p)\n",This);
|
return DocumentMgr_Constructor(ppdim);
|
||||||
return E_NOTIMPL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI ThreadMgr_EnumDocumentMgrs( ITfThreadMgr* iface, IEnumTfDocumentMgrs
|
static HRESULT WINAPI ThreadMgr_EnumDocumentMgrs( ITfThreadMgr* iface, IEnumTfDocumentMgrs
|
||||||
|
|
|
@ -25,10 +25,13 @@ import "comcat.idl";
|
||||||
|
|
||||||
cpp_quote("EXTERN_C const CLSID CLSID_TF_ThreadMgr;")
|
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;
|
typedef [uuid(de403c21-89fd-4f85-8b87-64584d063fbc)] DWORD TfClientId;
|
||||||
|
|
||||||
interface ITfDocumentMgr;
|
interface ITfDocumentMgr;
|
||||||
|
interface ITfContext;
|
||||||
interface IEnumTfDocumentMgrs;
|
interface IEnumTfDocumentMgrs;
|
||||||
|
interface IEnumTfContexts;
|
||||||
interface ITfFunctionProvider;
|
interface ITfFunctionProvider;
|
||||||
interface IEnumTfFunctionProviders;
|
interface IEnumTfFunctionProviders;
|
||||||
interface ITfCompartmentMgr;
|
interface ITfCompartmentMgr;
|
||||||
|
@ -75,3 +78,36 @@ interface ITfThreadMgr: IUnknown
|
||||||
HRESULT GetGlobalCompartment(
|
HRESULT GetGlobalCompartment(
|
||||||
[out] ITfCompartmentMgr **ppCompMgr);
|
[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);
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue