-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTfConvArea.h
More file actions
49 lines (33 loc) · 1.08 KB
/
Copy pathTfConvArea.h
File metadata and controls
49 lines (33 loc) · 1.08 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
/*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
Module Name:
TfConvArea.h
Abstract:
This file defines the CConversionAreaJapanese Interface Class.
Author:
Revision History:
Notes:
--*/
#pragma once
//+---------------------------------------------------------------------------
//
// CConversionArea::Pure virtual class
//
//----------------------------------------------------------------------------
class CConversionArea
{
public:
[[nodiscard]]
HRESULT DrawComposition(const CComBSTR& CompStr,
const std::vector<TF_DISPLAYATTRIBUTE>& DisplayAttributes,
const DWORD CompCursorPos = -1);
[[nodiscard]]
HRESULT ClearComposition();
[[nodiscard]]
HRESULT DrawResult(const CComBSTR& ResultStr);
private:
[[nodiscard]]
std::vector<BYTE> _DisplayAttributesToEncodedAttributes(const std::vector<TF_DISPLAYATTRIBUTE>& DisplayAttributes,
const DWORD CompCursorPos);
};