-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEndComposition.cpp
97 lines (82 loc) · 2.89 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
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
#include "Private.h"
#include "Globals.h"
#include "EditSession.h"
#include "SampleIME.h"
//////////////////////////////////////////////////////////////////////
//
// ITfEditSession
// CEditSessionBase
// CEndCompositionEditSession class
//
//////////////////////////////////////////////////////////////////////
//+---------------------------------------------------------------------------
//
// CEndCompositionEditSession
//
//----------------------------------------------------------------------------
class CEndCompositionEditSession : public CEditSessionBase
{
public:
CEndCompositionEditSession(_In_ CSampleIME *pTextService, _In_ ITfContext *pContext)
: CEditSessionBase(pTextService, pContext)
{
}
// ITfEditSession
STDMETHODIMP DoEditSession(TfEditCookie ec)
{
_pTextService->_TerminateComposition(ec, _pContext, TRUE);
return S_OK;
}
};
//////////////////////////////////////////////////////////////////////
//
// CSampleIME class
//
//////////////////////////////////////////////////////////////////////
//+---------------------------------------------------------------------------
//
// _TerminateComposition
//
//----------------------------------------------------------------------------
void CSampleIME::_TerminateComposition(TfEditCookie ec, _In_ ITfContext *pContext, BOOL isCalledFromDeactivate)
{
isCalledFromDeactivate;
if (_pComposition != nullptr)
{
// remove the display attribute from the composition range.
_ClearCompositionDisplayAttributes(ec, pContext);
if (FAILED(_pComposition->EndComposition(ec)))
{
// if we fail to EndComposition, then we need to close the reverse reading window.
_DeleteCandidateList(TRUE, pContext);
}
_pComposition->Release();
_pComposition = nullptr;
if (_pContext)
{
_pContext->Release();
_pContext = nullptr;
}
}
}
//+---------------------------------------------------------------------------
//
// _EndComposition
//
//----------------------------------------------------------------------------
void CSampleIME::_EndComposition(_In_opt_ ITfContext *pContext)
{
CEndCompositionEditSession *pEditSession = new (std::nothrow) CEndCompositionEditSession(this, pContext);
HRESULT hr = S_OK;
if (nullptr != pEditSession)
{
pContext->RequestEditSession(_tfClientId, pEditSession, TF_ES_ASYNCDONTCARE | TF_ES_READWRITE, &hr);
pEditSession->Release();
}
}