forked from jrywu/DIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EndComposition.cpp
102 lines (83 loc) · 2.59 KB
/
EndComposition.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//
//
// Derived from Microsoft Sample IME by Jeremy '13,7,17
//
//
//#define DEBUG_PRINT
#include "Private.h"
#include "Globals.h"
#include "EditSession.h"
#include "DIME.h"
//////////////////////////////////////////////////////////////////////
//
// ITfEditSession
// CEditSessionBase
// CEndCompositionEditSession class
//
//////////////////////////////////////////////////////////////////////+---------------------------------------------------------------------------
//
// CEndCompositionEditSession
//
//----------------------------------------------------------------------------
class CEndCompositionEditSession : public CEditSessionBase
{
public:
CEndCompositionEditSession(_In_ CDIME *pTextService, _In_ ITfContext *pContext) : CEditSessionBase(pTextService, pContext)
{
}
// ITfEditSession
STDMETHODIMP DoEditSession(TfEditCookie ec)
{
if(_pTextService)
_pTextService->_TerminateComposition(ec, _pContext, TRUE);
return S_OK;
}
};
//////////////////////////////////////////////////////////////////////
//
// CDIME class
//
//////////////////////////////////////////////////////////////////////+---------------------------------------------------------------------------
//
// _TerminateComposition
//
//----------------------------------------------------------------------------
void CDIME::_TerminateComposition(TfEditCookie ec, _In_ ITfContext *pContext, BOOL isCalledFromDeactivate)
{
debugPrint(L"CDIME::_TerminateComposition()\n");
if (_pComposition)
{
if(isCalledFromDeactivate)
_RemoveDummyCompositionForComposing(ec, _pComposition);
else // remove the display attribute from the composition range.
_ClearCompositionDisplayAttributes(ec, pContext);
if (FAILED(_pComposition->EndComposition(ec)))
{
_DeleteCandidateList(TRUE, pContext);
}
_pComposition->Release();
_pComposition = nullptr;
if (_pContext)
{
_pContext->Release();
_pContext = nullptr;
}
}
}
//+---------------------------------------------------------------------------
//
// _EndComposition
//
//----------------------------------------------------------------------------
void CDIME::_EndComposition(_In_opt_ ITfContext *pContext)
{
debugPrint(L"CDIME::_EndComposition()\n");
if (pContext == nullptr) return;
CEndCompositionEditSession *pEditSession = new (std::nothrow) CEndCompositionEditSession(this, pContext);
HRESULT hr = S_OK;
if (pEditSession)
{
pContext->RequestEditSession(_tfClientId, pEditSession, TF_ES_ASYNCDONTCARE | TF_ES_READWRITE, &hr);
pEditSession->Release();
}
}