-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEndComposition.cpp
More file actions
89 lines (74 loc) · 2.39 KB
/
EndComposition.cpp
File metadata and controls
89 lines (74 loc) · 2.39 KB
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
//////////////////////////////////////////////////////////////////////
//
// 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) 2003 Microsoft Corporation. All rights reserved.
//
// EndComposition.cpp
//
// terminate the compositon object
//
//////////////////////////////////////////////////////////////////////
#include "Globals.h"
#include "EditSession.h"
#include "TextService.h"
//+---------------------------------------------------------------------------
//
// CEndCompositionEditSession
//
//----------------------------------------------------------------------------
class CEndCompositionEditSession : public CEditSessionBase
{
public:
CEndCompositionEditSession(CTextService *pTextService, ITfContext *pContext) : CEditSessionBase(pTextService, pContext)
{
}
// ITfEditSession
STDMETHODIMP DoEditSession(TfEditCookie ec)
{
_pTextService->_TerminateComposition(ec, _pContext);
return S_OK;
}
};
//+---------------------------------------------------------------------------
//
// _TerminateComposition
//
//----------------------------------------------------------------------------
void CTextService::_TerminateComposition(TfEditCookie ec, ITfContext *pContext)
{
if (_pComposition != NULL)
{
if (_compositionState.Empty())
{
_ClearCompositionText(ec, pContext);
}
//
// remove the display attribute from the composition range.
//
_ClearCompositionDisplayAttributes(ec, pContext);
_MarkInternalEdit();
_pComposition->EndComposition(ec);
_pComposition->Release();
_pComposition = NULL;
}
_ResetCompositionState();
}
//+---------------------------------------------------------------------------
//
// _EndComposition
//
//----------------------------------------------------------------------------
void CTextService::_EndComposition(ITfContext *pContext)
{
CEndCompositionEditSession *pEditSession;
HRESULT hr;
if (pEditSession = new CEndCompositionEditSession(this, pContext))
{
pContext->RequestEditSession(_tfClientId, pEditSession, TF_ES_ASYNCDONTCARE | TF_ES_READWRITE, &hr);
pEditSession->Release();
}
}