ReactOS 0.4.15-dev-7834-g00c4b3d
msctf_internal.h
Go to the documentation of this file.
1/*
2 * Internal header for msctf.dll
3 *
4 * Copyright 2008 Aric Stewart, CodeWeavers
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#ifndef __WINE_MSCTF_I_H
22#define __WINE_MSCTF_I_H
23
24#include "wine/list.h"
25
26#define COOKIE_MAGIC_TMSINK 0x0010
27#define COOKIE_MAGIC_CONTEXTSINK 0x0020
28#define COOKIE_MAGIC_GUIDATOM 0x0030
29#define COOKIE_MAGIC_IPPSINK 0x0040
30#define COOKIE_MAGIC_EDITCOOKIE 0x0050
31#define COOKIE_MAGIC_COMPARTMENTSINK 0x0060
32#define COOKIE_MAGIC_DMSINK 0x0070
33#define COOKIE_MAGIC_THREADFOCUSSINK 0x0080
34#define COOKIE_MAGIC_KEYTRACESINK 0x0090
35#define COOKIE_MAGIC_UIELEMENTSINK 0x00a0
36#define COOKIE_MAGIC_INPUTPROCESSORPROFILEACTIVATIONSINK 0x00b0
37#define COOKIE_MAGIC_ACTIVELANGSINK 0x00c0
38
42
45extern HRESULT Context_Constructor(TfClientId tidOwner, IUnknown *punk, ITfDocumentMgr *mgr, ITfContext **ppOut, TfEditCookie *pecTextStore) DECLSPEC_HIDDEN;
48extern HRESULT Range_Constructor(ITfContext *context, ITextStoreACP *textstore, DWORD lockType, DWORD anchorStart, DWORD anchorEnd, ITfRange **ppOut) DECLSPEC_HIDDEN;
53
58
59/* cookie function */
65
66/* activated text services functions */
71
75
76typedef struct {
77 struct list entry;
78 union {
85 } interfaces;
86} Sink;
87
88#define SINK_ENTRY(cursor,type) (LIST_ENTRY(cursor,Sink,entry)->interfaces.p##type)
89#define SINK_FOR_EACH(cursor,list,type,elem) \
90 for ((cursor) = (list)->next, elem = SINK_ENTRY(cursor,type); \
91 (cursor) != (list); \
92 (cursor) = (cursor)->next, elem = SINK_ENTRY(cursor,type))
93
94HRESULT advise_sink(struct list *sink_list, REFIID riid, DWORD cookie_magic, IUnknown *unk, DWORD *cookie) DECLSPEC_HIDDEN;
96void free_sinks(struct list *sink_list) DECLSPEC_HIDDEN;
97
100
101#endif /* __WINE_MSCTF_I_H */
Definition: list.h:37
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
GLuint index
Definition: glext.h:6031
GLsizei GLenum GLboolean sink
Definition: glext.h:5672
HFONT tf
Definition: icontest.c:17
REFIID riid
Definition: atlbase.h:39
uint32_t entry
Definition: isohybrid.c:63
static TfClientId tid
ITfCompartmentMgr * globalCompartmentMgr
Definition: msctf.c:74
TfClientId processId
Definition: msctf.c:73
const WCHAR szwSystemCTFKey[]
Definition: msctf.c:77
const WCHAR szwSystemTIPKey[]
Definition: msctf.c:76
DWORD tlsIndex
Definition: msctf.c:72
DWORD TfClientId
Definition: msctf.idl:105
DWORD TfEditCookie
Definition: msctf.idl:104
DWORD tlsIndex DECLSPEC_HIDDEN
BOOL get_active_textservice(REFCLSID rclsid, TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN
Definition: msctf.c:459
HRESULT Context_Initialize(ITfContext *cxt, ITfDocumentMgr *manager) DECLSPEC_HIDDEN
Definition: context.c:1109
HRESULT Context_Uninitialize(ITfContext *cxt) DECLSPEC_HIDDEN
Definition: context.c:1121
HRESULT advise_sink(struct list *sink_list, REFIID riid, DWORD cookie_magic, IUnknown *unk, DWORD *cookie) DECLSPEC_HIDDEN
Definition: msctf.c:285
LPVOID get_Cookie_data(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:246
DWORD get_Cookie_magic(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:233
void free_sinks(struct list *sink_list) DECLSPEC_HIDDEN
Definition: msctf.c:324
HRESULT CategoryMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: categorymgr.c:413
HRESULT Range_Constructor(ITfContext *context, ITextStoreACP *textstore, DWORD lockType, DWORD anchorStart, DWORD anchorEnd, ITfRange **ppOut) DECLSPEC_HIDDEN
Definition: range.c:325
CLSID get_textservice_clsid(TfClientId tid) DECLSPEC_HIDDEN
Definition: msctf.c:507
HRESULT unadvise_sink(DWORD cookie) DECLSPEC_HIDDEN
Definition: msctf.c:312
HRESULT get_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown **sink) DECLSPEC_HIDDEN
Definition: msctf.c:517
LPVOID remove_Cookie(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:259
DWORD enumerate_Cookie(DWORD magic, DWORD *index) DECLSPEC_HIDDEN
Definition: msctf.c:273
HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN
Definition: msctf.c:395
HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: threadmgr.c:1342
HRESULT LangBarMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: langbarmgr.c:182
HRESULT activate_textservices(ITfThreadMgrEx *tm) DECLSPEC_HIDDEN
Definition: msctf.c:475
HRESULT set_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown *sink) DECLSPEC_HIDDEN
Definition: msctf.c:534
HRESULT deactivate_textservices(void) DECLSPEC_HIDDEN
Definition: msctf.c:493
HRESULT CompartmentMgr_Destructor(ITfCompartmentMgr *This) DECLSPEC_HIDDEN
HRESULT DisplayAttributeMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
HRESULT DocumentMgr_Constructor(ITfThreadMgrEventSink *, ITfDocumentMgr **ppOut) DECLSPEC_HIDDEN
Definition: documentmgr.c:342
HRESULT TF_SELECTION_to_TS_SELECTION_ACP(const TF_SELECTION *tf, TS_SELECTION_ACP *tsAcp) DECLSPEC_HIDDEN
Definition: range.c:351
DWORD generate_Cookie(DWORD magic, LPVOID data) DECLSPEC_HIDDEN
Definition: msctf.c:189
HRESULT InputProcessorProfiles_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
HRESULT Context_Constructor(TfClientId tidOwner, IUnknown *punk, ITfDocumentMgr *mgr, ITfContext **ppOut, TfEditCookie *pecTextStore) DECLSPEC_HIDDEN
Definition: context.c:1047
void ThreadMgr_OnDocumentMgrDestruction(ITfThreadMgr *tm, ITfDocumentMgr *mgr) DECLSPEC_HIDDEN
Definition: threadmgr.c:1537
HRESULT CompartmentMgr_Constructor(IUnknown *pUnkOuter, REFIID riid, IUnknown **ppOut) DECLSPEC_HIDDEN
u32_t magic(void)
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
ITfTextEditSink * pITfTextEditSink
ITfThreadMgrEventSink * pITfThreadMgrEventSink
IUnknown * pIUnknown
ITfTransitoryExtensionSink * pITfTransitoryExtensionSink
ITfLanguageProfileNotifySink * pITfLanguageProfileNotifySink
ITfCompartmentEventSink * pITfCompartmentEventSink
Definition: http.c:7252
Definition: cookie.c:34
Definition: time.h:68
__wchar_t WCHAR
Definition: xmlstorage.h:180