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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gtk/input_method_context_impl_gtk.h"
#include <cstddef>
#include "base/strings/utf_string_conversions.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/ime/composition_text.h"
#include "ui/base/ime/linux/composition_text_util_pango.h"
#include "ui/base/ime/text_input_client.h"
#include "ui/base/ime/text_input_flags.h"
#include "ui/events/event.h"
#include "ui/events/event_utils.h"
#include "ui/gfx/geometry/dip_util.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gtk/gtk_compat.h"
#include "ui/gtk/gtk_ui.h"
#include "ui/gtk/gtk_ui_platform.h"
#include "ui/gtk/gtk_util.h"
#include "ui/linux/linux_ui.h"
namespace gtk {
namespace {
// Get IME KeyEvent's target window. Assumes root aura::Window is set to
// Event::target(), otherwise returns null.
GdkWindow* GetTargetWindow(const ui::KeyEvent& key_event) {
if (!key_event.target()) {
return nullptr;
}
aura::Window* window = static_cast<aura::Window*>(key_event.target());
DCHECK(window) << "KeyEvent target window not set.";
auto window_id = window->GetHost()->GetAcceleratedWidget();
return GtkUi::GetPlatform()->GetGdkWindow(window_id);
}
int GetKeyEventProperty(const ui::KeyEvent& key_event,
const char* property_key) {
auto* properties = key_event.properties();
if (!properties) {
return 0;
}
auto it = properties->find(property_key);
DCHECK(it == properties->end() || it->second.size() == 1);
return (it != properties->end()) ? it->second[0] : 0;
}
GdkModifierType GetGdkKeyEventState(const ui::KeyEvent& key_event) {
// ui::KeyEvent uses a normalized modifier state which is not respected by
// Gtk, so instead we obtain the original value from annotated properties.
// See also x11_event_translation.cc where it is annotated.
// cf) https://crbug.com/1086946#c11.
const ui::Event::Properties* properties = key_event.properties();
if (!properties) {
return static_cast<GdkModifierType>(0);
}
auto it = properties->find(ui::kPropertyKeyboardState);
if (it == properties->end()) {
return static_cast<GdkModifierType>(0);
}
DCHECK_EQ(it->second.size(), 4u);
// Stored in little endian.
int result = 0;
int bitshift = 0;
for (uint8_t value : it->second) {
result |= value << bitshift;
bitshift += 8;
}
return static_cast<GdkModifierType>(result);
}
// Xkb Events store group attribute into XKeyEvent::state bit field, along with
// other state-related info, while GdkEventKey objects have separate fields for
// that purpose, they are ::state and ::group. This function is responsible for
// recomposing them into a single bit field value when translating GdkEventKey
// into XKeyEvent. This is similar to XkbBuildCoreState(), but assumes state is
// an uint rather than an uchar.
//
// More details:
// https://gitlab.freedesktop.org/xorg/proto/xorgproto/blob/master/include/X11/extensions/XKB.h#L372
int BuildXkbStateFromGdkEvent(unsigned int state, unsigned char group) {
return state | ((group & 0x3) << 13);
}
// Translate IME ui::KeyEvent to a GdkEventKey.
GdkEventKey* GdkEventFromImeKeyEvent(const ui::KeyEvent& key_event) {
DCHECK(!GtkCheckVersion(4));
GdkEventType event_type = key_event.type() == ui::EventType::kKeyPressed
? GdkKeyPress()
: GdkKeyRelease();
auto event_time = key_event.time_stamp() - base::TimeTicks();
int hw_code = GetKeyEventProperty(key_event, ui::kPropertyKeyboardHwKeyCode);
int group = GetKeyEventProperty(key_event, ui::kPropertyKeyboardGroup);
GdkKeymap* keymap = gdk_keymap_get_for_display(gdk_display_get_default());
// Get keyval and state
GdkModifierType state = GetGdkKeyEventState(key_event);
guint keyval = GDK_KEY_VoidSymbol;
GdkModifierType consumed;
gdk_keymap_translate_keyboard_state(keymap, hw_code, state, group, &keyval,
nullptr, nullptr, &consumed);
gdk_keymap_add_virtual_modifiers(keymap, &state);
DCHECK_NE(keyval, static_cast<guint>(GDK_KEY_VoidSymbol));
// Build GdkEvent
GdkEvent* gdk_event = gdk_event_new(event_type);
GdkEventKey* gdk_event_key = reinterpret_cast<GdkEventKey*>(gdk_event);
gdk_event_key->type = event_type;
gdk_event_key->time = event_time.InMilliseconds();
gdk_event_key->hardware_keycode = hw_code;
gdk_event_key->keyval = keyval;
gdk_event_key->state = BuildXkbStateFromGdkEvent(state, group);
gdk_event_key->group = group;
gdk_event_key->send_event = key_event.flags() & ui::EF_FINAL;
gdk_event_key->is_modifier = state & GDK_MODIFIER_MASK;
gdk_event_key->length = 0;
gdk_event_key->string = nullptr;
return gdk_event_key;
}
} // namespace
InputMethodContextImplGtk::InputMethodContextImplGtk(
ui::LinuxInputMethodContextDelegate* delegate)
: delegate_(delegate) {
CHECK(delegate_);
gtk_context_ = TakeGObject(gtk_im_multicontext_new());
static const char kAllowGtkWaylandIm[] = "allow-gtk-wayland-im";
static const gchar* const kContextIdWayland = "wayland";
static const gchar* kContextIdIbus = "ibus";
const gchar* context_id = gtk_im_multicontext_get_context_id(
GTK_IM_MULTICONTEXT(gtk_context_.get()));
// switch to allow wayland IM module if it is picked.
if (context_id) {
if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
kAllowGtkWaylandIm) &&
(std::string(context_id) == kContextIdWayland)) {
// The wayland IM module doesn't work at all because of our usage of dummy
// window. So try using ibus module instead. Direct Wayland IM integration
// is being tracked under crbug.com/40113488.
// TODO(crbug.com/40801194) Remove this if dummy window is no longer used.
VLOG(1) << "Overriding wayland IM context to ibus";
gtk_im_multicontext_set_context_id(
GTK_IM_MULTICONTEXT(gtk_context_.get()), kContextIdIbus);
} else {
// This is the case where a non-wayland IM module is picked as per the
// user's configuration.
VLOG(1) << "Using GTK IM context: " << context_id;
}
}
gtk_simple_context_ = TakeGObject(gtk_im_context_simple_new());
auto connect = [&](const char* detailed_signal, auto receiver) {
for (auto context : {gtk_context_, gtk_simple_context_}) {
// Unretained() is safe since InputMethodContextImplGtk will own the
// ScopedGSignal.
signals_.emplace_back(
context, detailed_signal,
base::BindRepeating(receiver, base::Unretained(this)));
}
};
connect("commit", &InputMethodContextImplGtk::OnCommit);
connect("preedit-changed", &InputMethodContextImplGtk::OnPreeditChanged);
connect("preedit-end", &InputMethodContextImplGtk::OnPreeditEnd);
connect("preedit-start", &InputMethodContextImplGtk::OnPreeditStart);
// TODO(shuchen): Handle operations on surrounding text.
// "delete-surrounding" and "retrieve-surrounding" signals should be
// handled.
if (GtkCheckVersion(4)) {
auto* dummy_window = GetDummyWindow();
gtk_im_context_set_client_widget(gtk_context_, dummy_window);
gtk_im_context_set_client_widget(gtk_simple_context_, dummy_window);
}
}
InputMethodContextImplGtk::~InputMethodContextImplGtk() = default;
// Overridden from ui::LinuxInputMethodContext
bool InputMethodContextImplGtk::DispatchKeyEvent(
const ui::KeyEvent& key_event) {
auto* gtk_context = GetIMContext();
if (!gtk_context) {
return false;
}
GdkEventKey* event = nullptr;
if (!GtkCheckVersion(4)) {
event = GdkEventFromImeKeyEvent(key_event);
DCHECK(event);
auto* window = GetTargetWindow(key_event);
event->window = window;
auto& last_set_client_window =
gtk_context == gtk_context_
? last_set_client_window_for_gtk_context_
: last_set_client_window_for_gtk_simple_comtext_;
if (last_set_client_window != window) {
gtk_im_context_set_client_window(gtk_context, window);
last_set_client_window = window;
}
}
// Convert the last known caret bounds relative to the screen coordinates
// to a GdkRectangle relative to the client window.
aura::Window* window = static_cast<aura::Window*>(key_event.target());
gfx::Rect caret_bounds;
if (gtk_context == gtk_context_) {
caret_bounds = last_caret_bounds_;
}
// Use absolute coordinates on GTK4 since a dummy context window is provided
// to GTK at position (0, 0).
if (!GtkCheckVersion(4)) {
caret_bounds -= window->GetBoundsInScreen().OffsetFromOrigin();
}
// Chrome's DIPs may be different from GTK's DIPs if
// --force-device-scale-factor is used.
caret_bounds = ScaleToRoundedRect(
caret_bounds,
GetDeviceScaleFactor() / gtk_widget_get_scale_factor(GetDummyWindow()));
GdkRectangle gdk_rect = {caret_bounds.x(), caret_bounds.y(),
caret_bounds.width(), caret_bounds.height()};
gtk_im_context_set_cursor_location(gtk_context, &gdk_rect);
if (!GtkCheckVersion(4)) {
const bool handled = GtkImContextFilterKeypress(gtk_context, event);
gdk_event_free(reinterpret_cast<GdkEvent*>(event));
return handled;
}
// In GTK4, clients can no longer create or modify events. This makes using
// the gtk_im_context_filter_keypress() API impossible. Fortunately, an
// alternative API called gtk_im_context_filter_key() was added for clients
// that would have needed to construct their own event. The parameters to
// the new API are just a deconstructed version of a KeyEvent.
bool press = key_event.type() == ui::EventType::kKeyPressed;
auto* surface =
gtk_native_get_surface(gtk_widget_get_native(GetDummyWindow()));
auto* device = gdk_seat_get_keyboard(
gdk_display_get_default_seat(gdk_display_get_default()));
auto time = (key_event.time_stamp() - base::TimeTicks()).InMilliseconds();
auto keycode = GetKeyEventProperty(key_event, ui::kPropertyKeyboardHwKeyCode);
auto group = GetKeyEventProperty(key_event, ui::kPropertyKeyboardGroup);
auto state = GetGdkKeyEventState(key_event);
return gtk_im_context_filter_key(gtk_context, press, surface, device, time,
keycode, state, group);
}
bool InputMethodContextImplGtk::IsPeekKeyEvent(const ui::KeyEvent& key_event) {
// Peek events are only sent to make Lacros work with Wayland. Gtk does not
// send peek events.
return false;
}
void InputMethodContextImplGtk::Reset() {
gtk_im_context_reset(gtk_context_);
gtk_im_context_reset(gtk_simple_context_);
// Some input methods may not honour the reset call.
// Focusing out/in the to make sure it gets reset correctly.
if (type_ != ui::TEXT_INPUT_TYPE_NONE) {
gtk_im_context_focus_out(gtk_context_);
gtk_im_context_focus_in(gtk_context_);
}
}
void InputMethodContextImplGtk::UpdateFocus(
bool has_client,
ui::TextInputType old_type,
const TextInputClientAttributes& new_client_attributes,
ui::TextInputClient::FocusReason reason) {
type_ = new_client_attributes.input_type;
// We only focus when the focus is in a textfield.
if (old_type != ui::TEXT_INPUT_TYPE_NONE) {
gtk_im_context_focus_out(gtk_context_);
}
if (new_client_attributes.input_type != ui::TEXT_INPUT_TYPE_NONE) {
gtk_im_context_focus_in(gtk_context_);
}
// simple context can be used in any textfield, including password box, and
// even if the focused text input client's text input type is
// ui::TEXT_INPUT_TYPE_NONE.
if (has_client) {
gtk_im_context_focus_in(gtk_simple_context_);
} else {
gtk_im_context_focus_out(gtk_simple_context_);
}
if (new_client_attributes.flags & ui::TEXT_INPUT_FLAG_VERTICAL) {
g_object_set(gtk_context_, "input-hints", GTK_INPUT_HINT_VERTICAL_WRITING,
nullptr);
g_object_set(gtk_simple_context_, "input-hints",
GTK_INPUT_HINT_VERTICAL_WRITING, nullptr);
}
}
void InputMethodContextImplGtk::SetCursorLocation(const gfx::Rect& rect) {
// Remember the caret bounds so that we can set the cursor location later.
// gtk_im_context_set_cursor_location() takes the location relative to the
// client window, which is unknown at this point. So we'll call
// gtk_im_context_set_cursor_location() later in DispatchKeyEvent() where
// (and only where) we know the client window.
last_caret_bounds_ = rect;
}
void InputMethodContextImplGtk::SetSurroundingText(
const std::u16string& text,
const gfx::Range& text_range,
const gfx::Range& composition_range,
const gfx::Range& selection_range) {}
// private:
// GtkIMContext event handlers.
void InputMethodContextImplGtk::OnCommit(GtkIMContext* context, gchar* text) {
if (context != GetIMContext()) {
return;
}
delegate_->OnCommit(base::UTF8ToUTF16(text));
}
void InputMethodContextImplGtk::OnPreeditChanged(GtkIMContext* context) {
if (context != GetIMContext()) {
return;
}
gchar* str = nullptr;
PangoAttrList* attrs = nullptr;
gint cursor_pos = 0;
gtk_im_context_get_preedit_string(context, &str, &attrs, &cursor_pos);
ui::CompositionText composition_text;
ui::ExtractCompositionTextFromGtkPreedit(str, attrs, cursor_pos,
&composition_text);
g_free(str);
pango_attr_list_unref(attrs);
delegate_->OnPreeditChanged(composition_text);
}
void InputMethodContextImplGtk::OnPreeditEnd(GtkIMContext* context) {
if (context != GetIMContext()) {
return;
}
delegate_->OnPreeditEnd();
}
void InputMethodContextImplGtk::OnPreeditStart(GtkIMContext* context) {
if (context != GetIMContext()) {
return;
}
delegate_->OnPreeditStart();
}
ui::VirtualKeyboardController*
InputMethodContextImplGtk::GetVirtualKeyboardController() {
return nullptr;
}
GtkIMContext* InputMethodContextImplGtk::GetIMContext() {
switch (type_) {
case ui::TEXT_INPUT_TYPE_NONE:
case ui::TEXT_INPUT_TYPE_PASSWORD:
return gtk_simple_context_;
default:
return gtk_context_;
}
}
} // namespace gtk
|