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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
#include "cru/win/native/input_method.hpp"
#include "cru/common/logger.hpp"
#include "cru/platform/check.hpp"
#include "cru/win/exception.hpp"
#include "cru/win/native/window.hpp"
#include "cru/win/string.hpp"
#include "dpi_util.hpp"
#include <vector>
namespace cru::platform::native::win {
AutoHIMC::AutoHIMC(HWND hwnd) : hwnd_(hwnd) {
Expects(hwnd);
handle_ = ::ImmGetContext(hwnd);
}
AutoHIMC::AutoHIMC(AutoHIMC&& other)
: hwnd_(other.hwnd_), handle_(other.handle_) {
other.hwnd_ = nullptr;
other.handle_ = nullptr;
}
AutoHIMC& AutoHIMC::operator=(AutoHIMC&& other) {
if (this != &other) {
Object::operator=(std::move(other));
this->hwnd_ = other.hwnd_;
this->handle_ = other.handle_;
other.hwnd_ = nullptr;
other.handle_ = nullptr;
}
return *this;
}
AutoHIMC::~AutoHIMC() {
if (handle_) {
if (!::ImmReleaseContext(hwnd_, handle_))
log::Warn("AutoHIMC: Failed to release HIMC.");
}
}
// copied from chromium
namespace {
// Determines whether or not the given attribute represents a target
// (a.k.a. a selection).
bool IsTargetAttribute(char attribute) {
return (attribute == ATTR_TARGET_CONVERTED ||
attribute == ATTR_TARGET_NOTCONVERTED);
}
// Helper function for ImeInput::GetCompositionInfo() method, to get the target
// range that's selected by the user in the current composition string.
void GetCompositionTargetRange(HIMC imm_context, int* target_start,
int* target_end) {
int attribute_size =
::ImmGetCompositionString(imm_context, GCS_COMPATTR, NULL, 0);
if (attribute_size > 0) {
int start = 0;
int end = 0;
std::vector<char> attribute_data(attribute_size);
::ImmGetCompositionString(imm_context, GCS_COMPATTR, attribute_data.data(),
attribute_size);
for (start = 0; start < attribute_size; ++start) {
if (IsTargetAttribute(attribute_data[start])) break;
}
for (end = start; end < attribute_size; ++end) {
if (!IsTargetAttribute(attribute_data[end])) break;
}
if (start == attribute_size) {
// This composition clause does not contain any target clauses,
// i.e. this clauses is an input clause.
// We treat the whole composition as a target clause.
start = 0;
end = attribute_size;
}
*target_start = start;
*target_end = end;
}
}
// Helper function for ImeInput::GetCompositionInfo() method, to get underlines
// information of the current composition string.
CompositionClauses GetCompositionClauses(HIMC imm_context, int target_start,
int target_end) {
CompositionClauses result;
int clause_size =
::ImmGetCompositionString(imm_context, GCS_COMPCLAUSE, NULL, 0);
int clause_length = clause_size / sizeof(std::uint32_t);
result.reserve(clause_length - 1);
if (clause_length) {
std::vector<std::uint32_t> clause_data(clause_length);
::ImmGetCompositionString(imm_context, GCS_COMPCLAUSE, clause_data.data(),
clause_size);
for (int i = 0; i < clause_length - 1; ++i) {
CompositionClause clause;
clause.start = clause_data[i];
clause.end = clause_data[i + 1];
clause.target = false;
// Use thick underline for the target clause.
if (clause.start >= target_start && clause.end <= target_end) {
clause.target = true;
}
result.push_back(clause);
}
}
return result;
}
std::wstring GetString(HIMC imm_context) {
LONG string_size =
::ImmGetCompositionString(imm_context, GCS_COMPSTR, NULL, 0);
std::wstring result((string_size / sizeof(wchar_t)) + 1, 0);
::ImmGetCompositionString(imm_context, GCS_COMPSTR, result.data(),
string_size);
return result;
}
CompositionText GetCompositionInfo(HIMC imm_context) {
// We only care about GCS_COMPATTR, GCS_COMPCLAUSE and GCS_CURSORPOS, and
// convert them into underlines and selection range respectively.
auto w_text = GetString(imm_context);
int w_length = static_cast<int>(w_text.length());
// Find out the range selected by the user.
int w_target_start = w_length;
int w_target_end = w_length;
GetCompositionTargetRange(imm_context, &w_target_start, &w_target_end);
auto clauses =
GetCompositionClauses(imm_context, w_target_start, w_target_end);
int cursor = ::ImmGetCompositionString(imm_context, GCS_CURSORPOS, NULL, 0);
// TODO: Finish this.
}
} // namespace
WinInputMethodContext::WinInputMethodContext(
gsl::not_null<WinNativeWindow*> window)
: native_window_resolver_(window->GetResolver()) {
event_revoker_guards_.push_back(
EventRevokerGuard(window->NativeMessageEvent()->AddHandler(
std::bind(&WinInputMethodContext::OnWindowNativeMessage, this,
std::placeholders::_1))));
}
WinInputMethodContext::~WinInputMethodContext() {}
void WinInputMethodContext::EnableIME() {
const auto native_window = Resolve(native_window_resolver_.get());
if (native_window == nullptr) return;
const auto hwnd = native_window->GetWindowHandle();
if (::ImmAssociateContextEx(hwnd, nullptr, IACE_DEFAULT) == FALSE) {
log::Warn("WinInputMethodContext: Failed to enable ime.");
}
}
void WinInputMethodContext::DisableIME() {
const auto native_window = Resolve(native_window_resolver_.get());
if (native_window == nullptr) return;
const auto hwnd = native_window->GetWindowHandle();
if (::ImmAssociateContextEx(hwnd, nullptr, 0) == FALSE) {
log::Warn("WinInputMethodContext: Failed to disable ime.");
}
}
void WinInputMethodContext::CompleteComposition() {
// TODO: Not implemented.
}
void WinInputMethodContext::CancelComposition() {
// TODO: Not implemented.
}
const CompositionText& WinInputMethodContext::GetCompositionText() {
// TODO: Not implemented.
}
void WinInputMethodContext::SetCandidateWindowPosition(const Point& point) {
auto optional_himc = TryGetHIMC();
if (!optional_himc.has_value()) return;
auto himc = *std::move(optional_himc);
::CANDIDATEFORM form;
form.dwIndex = 1;
form.dwStyle = CFS_CANDIDATEPOS;
form.ptCurrentPos = DipToPi(point);
if (!::ImmSetCandidateWindow(himc.Get(), &form))
log::Debug(
"WinInputMethodContext: Failed to set input method candidate window "
"position.");
}
IEvent<std::nullptr_t>* WinInputMethodContext::CompositionStartEvent() {
return &composition_start_event_;
}
IEvent<std::nullptr_t>* WinInputMethodContext::CompositionEndEvent() {
return &composition_end_event_;
};
IEvent<std::nullptr_t>* WinInputMethodContext::CompositionEvent() {
return &composition_event_;
}
void WinInputMethodContext::OnWindowNativeMessage(
WindowNativeMessageEventArgs& args) {
const auto message = args.GetWindowMessage();
switch (message.msg) {
case WM_IME_COMPOSITION: {
composition_event_.Raise(nullptr);
break;
}
case WM_IME_STARTCOMPOSITION: {
composition_start_event_.Raise(nullptr);
break;
}
case WM_IME_ENDCOMPOSITION: {
composition_end_event_.Raise(nullptr);
break;
}
}
}
std::optional<AutoHIMC> WinInputMethodContext::TryGetHIMC() {
const auto native_window = Resolve(native_window_resolver_.get());
if (native_window == nullptr) return std::nullopt;
const auto hwnd = native_window->GetWindowHandle();
return AutoHIMC{hwnd};
}
WinInputMethodManager::WinInputMethodManager(WinUiApplication*) {}
WinInputMethodManager::~WinInputMethodManager() {}
std::unique_ptr<IInputMethodContext> WinInputMethodManager::GetContext(
INativeWindow* window) {
Expects(window);
const auto w = CheckPlatform<WinNativeWindow>(window, GetPlatformId());
return std::make_unique<WinInputMethodContext>(w);
}
} // namespace cru::platform::native::win
|