mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Merge branch 'wip/carlosg/imwayland-3-22' into 'gtk-3-22'
modules: Add wayland IM implementation See merge request GNOME/gtk!5
This commit is contained in:
commit
9f142161e4
@ -459,6 +459,7 @@ if test "$enable_wayland_backend" = "yes"; then
|
||||
GDK_BACKENDS="$GDK_BACKENDS wayland"
|
||||
GDK_WINDOWING="$GDK_WINDOWING
|
||||
#define GDK_WINDOWING_WAYLAND"
|
||||
backend_immodules="$backend_immodules,wayland"
|
||||
WAYLAND_PACKAGES="$WAYLAND_DEPENDENCIES"
|
||||
AC_PATH_PROG([WAYLAND_SCANNER],[wayland-scanner],[no])
|
||||
AS_IF([test "x$WAYLAND_SCANNER" = "xno"],
|
||||
@ -990,6 +991,7 @@ AM_CONDITIONAL(INCLUDE_IM_TI_ER, [test x"$INCLUDE_ti_er" = xyes])
|
||||
AM_CONDITIONAL(INCLUDE_IM_TI_ET, [test x"$INCLUDE_ti_et" = xyes])
|
||||
AM_CONDITIONAL(INCLUDE_IM_VIQR, [test x"$INCLUDE_viqr" = xyes])
|
||||
AM_CONDITIONAL(INCLUDE_IM_XIM, [test x"$INCLUDE_xim" = xyes])
|
||||
AM_CONDITIONAL(INCLUDE_IM_WAYLAND, [test x"$INCLUDE_wayland" = xyes])
|
||||
|
||||
# Checks to see whether we should include mediaLib
|
||||
# support.
|
||||
|
@ -1270,6 +1270,7 @@ gdk_wayland_device_get_wl_seat
|
||||
gdk_wayland_display_get_wl_compositor
|
||||
gdk_wayland_display_get_wl_display
|
||||
gdk_wayland_display_get_xdg_shell
|
||||
gdk_wayland_display_query_registry
|
||||
gdk_wayland_window_get_wl_surface
|
||||
gdk_wayland_window_set_use_custom_surface
|
||||
GdkWaylandWindowExported
|
||||
|
@ -372,7 +372,6 @@ gdk_registry_handle_global (void *data,
|
||||
{
|
||||
GdkWaylandDisplay *display_wayland = data;
|
||||
struct wl_output *output;
|
||||
gboolean handled = TRUE;
|
||||
|
||||
GDK_NOTE (MISC,
|
||||
g_message ("add global %u, interface %s, version %u", id, interface, version));
|
||||
@ -495,12 +494,9 @@ gdk_registry_handle_global (void *data,
|
||||
&server_decoration_listener,
|
||||
display_wayland);
|
||||
}
|
||||
else
|
||||
handled = FALSE;
|
||||
|
||||
if (handled)
|
||||
g_hash_table_insert (display_wayland->known_globals,
|
||||
GUINT_TO_POINTER (id), g_strdup (interface));
|
||||
g_hash_table_insert (display_wayland->known_globals,
|
||||
GUINT_TO_POINTER (id), g_strdup (interface));
|
||||
|
||||
process_on_globals_closures (display_wayland);
|
||||
}
|
||||
@ -1386,3 +1382,37 @@ gdk_wayland_display_get_selection (GdkDisplay *display)
|
||||
|
||||
return display_wayland->selection;
|
||||
}
|
||||
|
||||
/**
|
||||
* gdk_wayland_display_query_registry:
|
||||
* @display: a wayland #GdkDisplay
|
||||
* @interface: global interface to query in the registry
|
||||
*
|
||||
* Returns %TRUE if the the interface was found in the display
|
||||
* wl_registry.global handler.
|
||||
*
|
||||
* Returns: %TRUE if the global is offered by the compositor
|
||||
*
|
||||
* Since: 3.22.27
|
||||
**/
|
||||
gboolean
|
||||
gdk_wayland_display_query_registry (GdkDisplay *display,
|
||||
const gchar *global)
|
||||
{
|
||||
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (display);
|
||||
GHashTableIter iter;
|
||||
gchar *value;
|
||||
|
||||
g_return_val_if_fail (GDK_IS_WAYLAND_DISPLAY (display), FALSE);
|
||||
g_return_val_if_fail (global != NULL, FALSE);
|
||||
|
||||
g_hash_table_iter_init (&iter, display_wayland->known_globals);
|
||||
|
||||
while (g_hash_table_iter_next (&iter, NULL, (gpointer*) &value))
|
||||
{
|
||||
if (strcmp (value, global) == 0)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -60,6 +60,10 @@ void gdk_wayland_display_set_startup_notification_id (GdkDisp
|
||||
GDK_AVAILABLE_IN_3_22
|
||||
gboolean gdk_wayland_display_prefers_ssd (GdkDisplay *display);
|
||||
|
||||
GDK_AVAILABLE_IN_3_22
|
||||
gboolean gdk_wayland_display_query_registry (GdkDisplay *display,
|
||||
const gchar *global);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GDK_WAYLAND_DISPLAY_H__ */
|
||||
|
@ -403,6 +403,9 @@ gtk_im_module_initialize (void)
|
||||
#ifdef INCLUDE_IM_broadway
|
||||
do_builtin (broadway);
|
||||
#endif
|
||||
#ifdef INCLUDE_IM_wayland
|
||||
do_builtin (wayland);
|
||||
#endif
|
||||
|
||||
#undef do_builtin
|
||||
|
||||
|
@ -1902,6 +1902,31 @@ gtk_settings_create_for_display (GdkDisplay *display)
|
||||
"gtk-im-module", "broadway",
|
||||
NULL);
|
||||
else
|
||||
#endif
|
||||
#ifdef GDK_WINDOWING_WAYLAND
|
||||
if (GDK_IS_WAYLAND_DISPLAY (display))
|
||||
{
|
||||
const gchar *immodule = NULL;
|
||||
|
||||
if (gdk_wayland_display_query_registry (display,
|
||||
"gtk_text_input_manager"))
|
||||
{
|
||||
settings = g_object_new (GTK_TYPE_SETTINGS,
|
||||
"gtk-im-module", "wayland",
|
||||
NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Fallback to other IM methods if the compositor does not
|
||||
* implement the interface(s).
|
||||
*/
|
||||
settings = g_object_new (GTK_TYPE_SETTINGS, NULL);
|
||||
}
|
||||
|
||||
immodule = "wayland";
|
||||
|
||||
}
|
||||
else
|
||||
#endif
|
||||
settings = g_object_new (GTK_TYPE_SETTINGS, NULL);
|
||||
|
||||
|
@ -174,6 +174,23 @@ BROADWAY_MODULE = im-broadway.la
|
||||
endif
|
||||
endif
|
||||
|
||||
protocol_built_sources = \
|
||||
gtk-text-input-protocol.c \
|
||||
gtk-text-input-client-protocol.h
|
||||
|
||||
im_wayland_la_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
im_wayland_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined)
|
||||
im_wayland_la_SOURCES = imwayland.c $(protocol_built_sources)
|
||||
libstatic_im_wayland_la_SOURCES = $(im_wayland_la_SOURCES)
|
||||
im_wayland_la_LIBADD = $(LDADDS)
|
||||
if INCLUDE_IM_WAYLAND
|
||||
STATIC_WAYLAND_MODULE = libstatic-im-wayland.la
|
||||
else
|
||||
if USE_WAYLAND
|
||||
WAYLAND_MODULE = im-wayland.la
|
||||
endif
|
||||
endif
|
||||
|
||||
multipress_defs = -DMULTIPRESS_LOCALEDIR=\""$(mplocaledir)"\" -DMULTIPRESS_CONFDIR=\""$(sysconfdir)/gtk-2.0"\"
|
||||
im_multipress_la_CPPFLAGS = $(AM_CPPFLAGS) $(multipress_defs)
|
||||
libstatic_im_multipress_la_CPPFLAGS = $(im_multipress_la_CPPFLAGS)
|
||||
@ -235,6 +252,7 @@ module_LTLIBRARIES = \
|
||||
$(MULTIPRESS_MODULE) \
|
||||
$(QUARTZ_MODULE) \
|
||||
$(BROADWAY_MODULE) \
|
||||
$(WAYLAND_MODULE) \
|
||||
$(THAI_MODULE) \
|
||||
$(TI_ER_MODULE) \
|
||||
$(TI_ET_MODULE) \
|
||||
@ -253,6 +271,7 @@ noinst_LTLIBRARIES = \
|
||||
$(STATIC_MULTIPRESS_MODULE) \
|
||||
$(STATIC_QUARTZ_MODULE) \
|
||||
$(STATIC_BROADWAY_MODULE) \
|
||||
$(STATIC_WAYLAND_MODULE) \
|
||||
$(STATIC_THAI_MODULE) \
|
||||
$(STATIC_TI_ER_MODULE) \
|
||||
$(STATIC_TI_ET_MODULE) \
|
||||
@ -264,6 +283,11 @@ included-modules: $(noinst_LTLIBRARIES)
|
||||
immodules.cache: Makefile.am $(module_LTLIBRARIES)
|
||||
$(AM_V_GEN) $(top_builddir)/gtk/gtk-query-immodules-3.0$(EXEEXT) $(module_LTLIBRARIES) > immodules.cache
|
||||
|
||||
if USE_WAYLAND
|
||||
BUILT_SOURCES = $(protocol_built_sources)
|
||||
EXTRA_DIST += $(protocol_built_sources)
|
||||
endif
|
||||
|
||||
EXTRA_DIST += README.multipress
|
||||
|
||||
CLEANFILES = immodules.cache
|
||||
@ -273,4 +297,26 @@ else
|
||||
all-local: immodules.cache
|
||||
endif
|
||||
|
||||
.SECONDEXPANSION:
|
||||
|
||||
define protostability
|
||||
$(shell echo $1 | sed 's/.*\(\<unstable\>\|\<stable\>\).*/\1/')
|
||||
endef
|
||||
|
||||
define protoname
|
||||
$(shell echo $1 | sed 's/\([a-z\-]\+\)-[a-z]\+-v[0-9]\+/\1/')
|
||||
endef
|
||||
|
||||
%-protocol.c : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
||||
$(AM_V_GEN)$(SED) -i -e 's/WL_EXPORT //' $@
|
||||
%-client-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
|
||||
|
||||
%-protocol.c : $(srcdir)/%.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
||||
$(AM_V_GEN)$(SED) -i -e 's/WL_EXPORT //' $@
|
||||
%-client-protocol.h : $(srcdir)/%.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
|
||||
|
||||
-include $(top_srcdir)/git.mk
|
||||
|
302
modules/input/gtk-text-input.xml
Normal file
302
modules/input/gtk-text-input.xml
Normal file
@ -0,0 +1,302 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<protocol name="gtk_text_input">
|
||||
<copyright>
|
||||
Copyright © 2012, 2013 Intel Corporation
|
||||
Copyright © 2015, 2016 Jan Arne Petersen
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this
|
||||
software and its documentation for any purpose is hereby granted
|
||||
without fee, provided that the above copyright notice appear in
|
||||
all copies and that both that copyright notice and this permission
|
||||
notice appear in supporting documentation, and that the name of
|
||||
the copyright holders not be used in advertising or publicity
|
||||
pertaining to distribution of the software without specific,
|
||||
written prior permission. The copyright holders make no
|
||||
representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied
|
||||
warranty.
|
||||
|
||||
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
||||
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
||||
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
</copyright>
|
||||
|
||||
<interface name="gtk_text_input" version="1">
|
||||
<description summary="text input">
|
||||
The gtk_text_input interface represents text input and input methods
|
||||
associated with a seat. It provides enter/leave events to follow the
|
||||
text input focus for a seat.
|
||||
|
||||
Requests are used to enable/disable the text-input object and set
|
||||
state information like surrounding and selected text or the content type.
|
||||
The information about the entered text is sent to the text-input object
|
||||
via the pre-edit and commit_string events. Using this interface removes
|
||||
the need for applications to directly process hardware key events and
|
||||
compose text out of them.
|
||||
|
||||
Text is valid UTF-8 encoded, indices and lengths are in bytes. Indices
|
||||
have to always point to the first byte of an UTF-8 encoded code point.
|
||||
Lengths are not allowed to contain just a part of an UTF-8 encoded code
|
||||
point.
|
||||
|
||||
Focus moving throughout surfaces will result in the emission of
|
||||
gtk_text_input.enter and gtk_text_input.leave events. The focused
|
||||
surface must perform gtk_text_input.enable and
|
||||
gtk_text_input.disable requests as the keyboard focus moves across
|
||||
editable and non-editable elements of the UI. Those two requests are not
|
||||
expected to be paired with each other, the compositor must be able to
|
||||
handle consecutive series of the same request.
|
||||
|
||||
State is sent by the state requests (set_surrounding_text,
|
||||
set_content_type and set_cursor_rectangle) and a commit request.
|
||||
After an enter event or disable request all state information is
|
||||
invalidated and needs to be resent by the client.
|
||||
|
||||
This protocol defines requests and events necessary for regular clients
|
||||
to communicate with an input method. The gtk_input_method protocol
|
||||
defines the interfaces necessary to implement standalone input methods.
|
||||
If a compositor implements both interfaces, it will be the arbiter of the
|
||||
communication between both.
|
||||
|
||||
Warning! The protocol described in this file is experimental and
|
||||
backward incompatible changes may be made. Backward compatible changes
|
||||
may be added together with the corresponding interface version bump.
|
||||
Backward incompatible changes are done by bumping the version number in
|
||||
the protocol and interface names and resetting the interface version.
|
||||
Once the protocol is to be declared stable, the 'z' prefix and the
|
||||
version number in the protocol and interface names are removed and the
|
||||
interface version number is reset.
|
||||
</description>
|
||||
|
||||
<request name="destroy" type="destructor">
|
||||
<description summary="Destroy the wp_text_input">
|
||||
Destroy the wp_text_input object. Also disables all surfaces enabled
|
||||
through this wp_text_input object
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<enum name="enable_flags" bitfield="true">
|
||||
<description summary="enable flags">
|
||||
Content hint is a bitmask to allow to modify the behavior of the text
|
||||
input.
|
||||
</description>
|
||||
<entry name="none" value="0x0" summary="no special behaviour"/>
|
||||
<entry name="can_show_preedit" value="0x1" summary="hints that the UI is capable of showing pre-edit text"/>
|
||||
<entry name="toggle_input_panel" value="0x2" summary="requests toggling input panel (eg. on-screen keyboard)"/>
|
||||
</enum>
|
||||
|
||||
<request name="enable">
|
||||
<description summary="Request text input to be enabled">
|
||||
Requests text input on a surface. The serial provided must be the one
|
||||
received on gtk_text_input.enter.
|
||||
</description>
|
||||
<arg name="serial" type="uint" summary="serial of enter event"/>
|
||||
<arg name="show_input_panel" type="uint" summary="details of the enable request"/>
|
||||
</request>
|
||||
|
||||
<request name="disable">
|
||||
<description summary="Disable text input on a surface">
|
||||
Explicitly disable text input in a surface (typically when there is no
|
||||
focus on any text entry inside the surface).
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<request name="set_surrounding_text">
|
||||
<description summary="sets the surrounding text">
|
||||
Sets the plain surrounding text around the input position. Text is
|
||||
UTF-8 encoded. Cursor is the byte offset within the surrounding text.
|
||||
Anchor is the byte offset of the selection anchor within the
|
||||
surrounding text. If there is no selected text, anchor is the same as
|
||||
cursor.
|
||||
|
||||
Make sure to always send some text before and after the cursor
|
||||
except when the cursor is at the beginning or end of text.
|
||||
|
||||
When there was a configure_surrounding_text event take the
|
||||
before_cursor and after_cursor arguments into account for picking how
|
||||
much surrounding text to send.
|
||||
|
||||
There is a maximum length of wayland messages so text can not be
|
||||
longer than 4000 bytes.
|
||||
</description>
|
||||
<arg name="text" type="string"/>
|
||||
<arg name="cursor" type="int"/>
|
||||
<arg name="anchor" type="int"/>
|
||||
</request>
|
||||
|
||||
<enum name="content_hint" bitfield="true">
|
||||
<description summary="content hint">
|
||||
Content hint is a bitmask to allow to modify the behavior of the text
|
||||
input.
|
||||
</description>
|
||||
<entry name="none" value="0x0" summary="no special behaviour"/>
|
||||
<entry name="completion" value="0x1" summary="suggest word completions"/>
|
||||
<entry name="spellcheck" value="0x2" summary="suggest word corrections"/>
|
||||
<entry name="auto_capitalization" value="0x4" summary="switch to uppercase letters at the start of a sentence"/>
|
||||
<entry name="lowercase" value="0x8" summary="prefer lowercase letters"/>
|
||||
<entry name="uppercase" value="0x10" summary="prefer uppercase letters"/>
|
||||
<entry name="titlecase" value="0x20" summary="prefer casing for titles and headings (can be language dependent)"/>
|
||||
<entry name="hidden_text" value="0x40" summary="characters should be hidden"/>
|
||||
<entry name="sensitive_data" value="0x80" summary="typed text should not be stored"/>
|
||||
<entry name="latin" value="0x100" summary="just latin characters should be entered"/>
|
||||
<entry name="multiline" value="0x200" summary="the text input is multiline"/>
|
||||
</enum>
|
||||
|
||||
<enum name="content_purpose">
|
||||
<description summary="content purpose">
|
||||
The content purpose allows to specify the primary purpose of a text
|
||||
input.
|
||||
|
||||
This allows an input method to show special purpose input panels with
|
||||
extra characters or to disallow some characters.
|
||||
</description>
|
||||
<entry name="normal" value="0" summary="default input, allowing all characters"/>
|
||||
<entry name="alpha" value="1" summary="allow only alphabetic characters"/>
|
||||
<entry name="digits" value="2" summary="allow only digits"/>
|
||||
<entry name="number" value="3" summary="input a number (including decimal separator and sign)"/>
|
||||
<entry name="phone" value="4" summary="input a phone number"/>
|
||||
<entry name="url" value="5" summary="input an URL"/>
|
||||
<entry name="email" value="6" summary="input an email address"/>
|
||||
<entry name="name" value="7" summary="input a name of a person"/>
|
||||
<entry name="password" value="8" summary="input a password (combine with password or sensitive_data hint)"/>
|
||||
<entry name="pin" value="9" summary="input is a numeric password (combine with password or sensitive_data hint)"/>
|
||||
<entry name="date" value="10" summary="input a date"/>
|
||||
<entry name="time" value="11" summary="input a time"/>
|
||||
<entry name="datetime" value="12" summary="input a date and time"/>
|
||||
<entry name="terminal" value="13" summary="input for a terminal"/>
|
||||
</enum>
|
||||
|
||||
<request name="set_content_type">
|
||||
<description summary="set content purpose and hint">
|
||||
Sets the content purpose and content hint. While the purpose is the
|
||||
basic purpose of an input field, the hint flags allow to modify some
|
||||
of the behavior.
|
||||
|
||||
When no content type is explicitly set, a normal content purpose with
|
||||
none hint should be assumed.
|
||||
</description>
|
||||
<arg name="hint" type="uint" enum="content_hint"/>
|
||||
<arg name="purpose" type="uint" enum="content_purpose"/>
|
||||
</request>
|
||||
|
||||
<request name="set_cursor_rectangle">
|
||||
<description summary="set cursor position">
|
||||
Sets the cursor outline as a x, y, width, height rectangle in surface
|
||||
local coordinates.
|
||||
|
||||
Allows the compositor to put a window with word suggestions near the
|
||||
cursor.
|
||||
</description>
|
||||
<arg name="x" type="int"/>
|
||||
<arg name="y" type="int"/>
|
||||
<arg name="width" type="int"/>
|
||||
<arg name="height" type="int"/>
|
||||
</request>
|
||||
|
||||
<request name="commit">
|
||||
<description summary="commit state">
|
||||
Allows to atomically send state updates from client. The previous
|
||||
set_surrounding_text, set_content_type and set_cursor_rectangle
|
||||
become effective after this call.
|
||||
|
||||
Serial should be set to the serial from the last wp_text_input.enter
|
||||
event.
|
||||
|
||||
To make sure to not receive outdated input method events after a
|
||||
state update, wl_display_sync() should be called after making this
|
||||
request.
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<event name="enter">
|
||||
<description summary="enter event">
|
||||
Notification that this seat's text-input focus is on a certain surface.
|
||||
|
||||
When the seat has the keyboard capability the text-input focus follows
|
||||
the keyboard focus.
|
||||
</description>
|
||||
<arg name="serial" type="uint" summary="serial"/>
|
||||
<arg name="surface" type="object" interface="wl_surface"/>
|
||||
</event>
|
||||
|
||||
<event name="leave">
|
||||
<description summary="leave event">
|
||||
Notification that this seat's text-input focus is no longer on
|
||||
a certain surface. The client should reset any preedit string previously
|
||||
set.
|
||||
|
||||
The leave notification is sent before the enter notification
|
||||
for the new focus.
|
||||
|
||||
When the seat has the keyboard capability the text-input focus follows
|
||||
the keyboard focus.
|
||||
</description>
|
||||
<arg name="serial" type="uint"/>
|
||||
<arg name="surface" type="object" interface="wl_surface"/>
|
||||
</event>
|
||||
|
||||
<event name="preedit_string">
|
||||
<description summary="pre-edit">
|
||||
Notify when a new composing text (pre-edit) should be set around the
|
||||
current cursor position. Any previously set composing text should
|
||||
be removed.
|
||||
</description>
|
||||
<arg name="text" type="string" allow-null="true"/>
|
||||
<arg name="cursor" type="uint"/>
|
||||
</event>
|
||||
|
||||
<event name="commit_string">
|
||||
<description summary="text commit">
|
||||
Notify when text should be inserted into the editor widget. The text to
|
||||
commit could be either just a single character after a key press or the
|
||||
result of some composing (pre-edit).
|
||||
|
||||
The text argument could be also null if some text is removed (see
|
||||
gtk_text_input.delete_surrounding_text).
|
||||
|
||||
Any previously set composing text should be removed.
|
||||
</description>
|
||||
<arg name="text" type="string" allow-null="true"/>
|
||||
</event>
|
||||
|
||||
<event name="delete_surrounding_text">
|
||||
<description summary="delete surrounding text">
|
||||
Notify when the text around the current cursor position should be
|
||||
deleted. Before_length and after_length is the length (in bytes) of text
|
||||
before and after the current cursor position (excluding the selection)
|
||||
to delete.
|
||||
|
||||
This event should be handled as part of a following commit_string or
|
||||
preedit_string event.
|
||||
</description>
|
||||
<arg name="before_length" type="uint" summary="length of text before current cursor position"/>
|
||||
<arg name="after_length" type="uint" summary="length of text after current cursor position"/>
|
||||
</event>
|
||||
</interface>
|
||||
|
||||
<interface name="gtk_text_input_manager" version="1">
|
||||
<description summary="text input manager">
|
||||
A factory for text-input objects. This object is a global singleton.
|
||||
</description>
|
||||
|
||||
<request name="destroy" type="destructor">
|
||||
<description summary="Destroy the wp_text_input_manager">
|
||||
Destroy the wp_text_input_manager object.
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<request name="get_text_input">
|
||||
<description summary="create a new text input object">
|
||||
Creates a new text-input object for a given seat.
|
||||
</description>
|
||||
<arg name="id" type="new_id" interface="gtk_text_input"/>
|
||||
<arg name="seat" type="object" interface="wl_seat"/>
|
||||
</request>
|
||||
</interface>
|
||||
</protocol>
|
686
modules/input/imwayland.c
Normal file
686
modules/input/imwayland.c
Normal file
@ -0,0 +1,686 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* Copyright (C) 2017 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <wayland-client-protocol.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include "gtk/gtkintl.h"
|
||||
#include "gtk/gtkimmodule.h"
|
||||
|
||||
#include "gdk/wayland/gdkwayland.h"
|
||||
#include "gtk-text-input-client-protocol.h"
|
||||
|
||||
typedef struct _GtkIMContextWaylandGlobal GtkIMContextWaylandGlobal;
|
||||
typedef struct _GtkIMContextWayland GtkIMContextWayland;
|
||||
typedef struct _GtkIMContextWaylandClass GtkIMContextWaylandClass;
|
||||
|
||||
struct _GtkIMContextWaylandGlobal
|
||||
{
|
||||
struct wl_display *display;
|
||||
struct wl_registry *registry;
|
||||
struct gtk_text_input_manager *text_input_manager;
|
||||
struct gtk_text_input *text_input;
|
||||
uint32_t enter_serial;
|
||||
|
||||
GtkIMContext *current;
|
||||
};
|
||||
|
||||
struct _GtkIMContextWaylandClass
|
||||
{
|
||||
GtkIMContextSimpleClass parent_class;
|
||||
};
|
||||
|
||||
struct _GtkIMContextWayland
|
||||
{
|
||||
GtkIMContextSimple parent_instance;
|
||||
GdkWindow *window;
|
||||
GtkWidget *widget;
|
||||
|
||||
GtkGesture *gesture;
|
||||
gdouble press_x;
|
||||
gdouble press_y;
|
||||
|
||||
struct {
|
||||
gchar *text;
|
||||
gint cursor_idx;
|
||||
} surrounding;
|
||||
|
||||
struct {
|
||||
gchar *text;
|
||||
gint cursor_idx;
|
||||
} preedit;
|
||||
|
||||
cairo_rectangle_int_t cursor_rect;
|
||||
guint use_preedit : 1;
|
||||
};
|
||||
|
||||
GType type_wayland = 0;
|
||||
static GObjectClass *parent_class;
|
||||
static GtkIMContextWaylandGlobal *global = NULL;
|
||||
|
||||
static const GtkIMContextInfo imwayland_info =
|
||||
{
|
||||
"wayland", /* ID */
|
||||
NC_("input method menu", "Wayland"), /* Human readable name */
|
||||
GETTEXT_PACKAGE, /* Translation domain */
|
||||
GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */
|
||||
"", /* Languages for which this module is the default */
|
||||
};
|
||||
|
||||
static const GtkIMContextInfo *info_list[] =
|
||||
{
|
||||
&imwayland_info,
|
||||
};
|
||||
|
||||
#define GTK_IM_CONTEXT_WAYLAND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), type_wayland, GtkIMContextWayland))
|
||||
|
||||
#ifndef INCLUDE_IM_wayland
|
||||
#define MODULE_ENTRY(type,function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_wayland_ ## function
|
||||
#endif
|
||||
|
||||
static void
|
||||
reset_preedit (GtkIMContextWayland *context)
|
||||
{
|
||||
g_clear_pointer (&context->preedit.text, g_free);
|
||||
context->preedit.cursor_idx = 0;
|
||||
g_signal_emit_by_name (context, "preedit-changed");
|
||||
}
|
||||
|
||||
static void
|
||||
text_input_enter (void *data,
|
||||
struct gtk_text_input *text_input,
|
||||
uint32_t serial,
|
||||
struct wl_surface *surface)
|
||||
{
|
||||
GtkIMContextWaylandGlobal *global = data;
|
||||
|
||||
global->enter_serial = serial;
|
||||
}
|
||||
|
||||
static void
|
||||
text_input_leave (void *data,
|
||||
struct gtk_text_input *text_input,
|
||||
uint32_t serial,
|
||||
struct wl_surface *surface)
|
||||
{
|
||||
GtkIMContextWayland *context;
|
||||
|
||||
if (!global->current)
|
||||
return;
|
||||
|
||||
context = GTK_IM_CONTEXT_WAYLAND (global->current);
|
||||
reset_preedit (context);
|
||||
}
|
||||
|
||||
static void
|
||||
text_input_preedit (void *data,
|
||||
struct gtk_text_input *text_input,
|
||||
const char *text,
|
||||
guint cursor)
|
||||
{
|
||||
GtkIMContextWayland *context;
|
||||
gboolean state_change;
|
||||
|
||||
if (!global->current)
|
||||
return;
|
||||
|
||||
context = GTK_IM_CONTEXT_WAYLAND (global->current);
|
||||
if (!text && !context->preedit.text)
|
||||
return;
|
||||
|
||||
state_change = ((text == NULL) != (context->preedit.text == NULL));
|
||||
|
||||
if (state_change && !context->preedit.text)
|
||||
g_signal_emit_by_name (context, "preedit-start");
|
||||
|
||||
g_free (context->preedit.text);
|
||||
context->preedit.text = g_strdup (text);
|
||||
context->preedit.cursor_idx = cursor;
|
||||
|
||||
g_signal_emit_by_name (context, "preedit-changed");
|
||||
|
||||
if (state_change && !context->preedit.text)
|
||||
g_signal_emit_by_name (context, "preedit-end");
|
||||
}
|
||||
|
||||
static void
|
||||
text_input_commit (void *data,
|
||||
struct gtk_text_input *text_input,
|
||||
const char *text)
|
||||
{
|
||||
GtkIMContextWaylandGlobal *global = data;
|
||||
|
||||
if (global->current && text)
|
||||
g_signal_emit_by_name (global->current, "commit", text);
|
||||
}
|
||||
|
||||
static void
|
||||
text_input_delete_surrounding_text (void *data,
|
||||
struct gtk_text_input *text_input,
|
||||
uint32_t offset,
|
||||
uint32_t len)
|
||||
{
|
||||
GtkIMContextWaylandGlobal *global = data;
|
||||
|
||||
if (global->current)
|
||||
g_signal_emit_by_name (global->current, "delete-surrounding", offset, len);
|
||||
}
|
||||
|
||||
static const struct gtk_text_input_listener text_input_listener = {
|
||||
text_input_enter,
|
||||
text_input_leave,
|
||||
text_input_preedit,
|
||||
text_input_commit,
|
||||
text_input_delete_surrounding_text
|
||||
};
|
||||
|
||||
static void
|
||||
registry_handle_global (void *data,
|
||||
struct wl_registry *registry,
|
||||
uint32_t id,
|
||||
const char *interface,
|
||||
uint32_t version)
|
||||
{
|
||||
GtkIMContextWaylandGlobal *global = data;
|
||||
GdkSeat *seat = gdk_display_get_default_seat (gdk_display_get_default ());
|
||||
|
||||
if (strcmp (interface, "gtk_text_input_manager") == 0)
|
||||
{
|
||||
global->text_input_manager =
|
||||
wl_registry_bind (global->registry, id,
|
||||
>k_text_input_manager_interface, 1);
|
||||
global->text_input =
|
||||
gtk_text_input_manager_get_text_input (global->text_input_manager,
|
||||
gdk_wayland_seat_get_wl_seat (seat));
|
||||
gtk_text_input_add_listener (global->text_input,
|
||||
&text_input_listener, global);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
registry_handle_global_remove (void *data,
|
||||
struct wl_registry *registry,
|
||||
uint32_t id)
|
||||
{
|
||||
GtkIMContextWaylandGlobal *global = data;
|
||||
|
||||
gtk_text_input_destroy (global->text_input);
|
||||
global->text_input = NULL;
|
||||
|
||||
gtk_text_input_manager_destroy (global->text_input_manager);
|
||||
global->text_input_manager = NULL;
|
||||
}
|
||||
|
||||
static const struct wl_registry_listener registry_listener = {
|
||||
registry_handle_global,
|
||||
registry_handle_global_remove
|
||||
};
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_global_init (GdkDisplay *display)
|
||||
{
|
||||
g_return_if_fail (global == NULL);
|
||||
|
||||
global = g_new0 (GtkIMContextWaylandGlobal, 1);
|
||||
global->display = gdk_wayland_display_get_wl_display (display);
|
||||
global->registry = wl_display_get_registry (global->display);
|
||||
|
||||
wl_registry_add_listener (global->registry, ®istry_listener, global);
|
||||
}
|
||||
|
||||
static void
|
||||
notify_surrounding_text (GtkIMContextWayland *context)
|
||||
{
|
||||
if (!global || !global->text_input)
|
||||
return;
|
||||
if (global->current != GTK_IM_CONTEXT (context))
|
||||
return;
|
||||
if (!context->surrounding.text)
|
||||
return;
|
||||
|
||||
gtk_text_input_set_surrounding_text (global->text_input,
|
||||
context->surrounding.text,
|
||||
context->surrounding.cursor_idx,
|
||||
context->surrounding.cursor_idx);
|
||||
}
|
||||
|
||||
static void
|
||||
notify_cursor_location (GtkIMContextWayland *context)
|
||||
{
|
||||
cairo_rectangle_int_t rect;
|
||||
|
||||
if (!global || !global->text_input)
|
||||
return;
|
||||
if (global->current != GTK_IM_CONTEXT (context))
|
||||
return;
|
||||
if (!context->window)
|
||||
return;
|
||||
|
||||
rect = context->cursor_rect;
|
||||
gdk_window_get_root_coords (context->window, rect.x, rect.y,
|
||||
&rect.x, &rect.y);
|
||||
|
||||
gtk_text_input_set_cursor_rectangle (global->text_input,
|
||||
rect.x, rect.y,
|
||||
rect.width, rect.height);
|
||||
}
|
||||
|
||||
static uint32_t
|
||||
translate_hints (GtkInputHints input_hints,
|
||||
GtkInputPurpose purpose)
|
||||
{
|
||||
uint32_t hints = 0;
|
||||
|
||||
if (input_hints & GTK_INPUT_HINT_SPELLCHECK)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_SPELLCHECK;
|
||||
if (input_hints & GTK_INPUT_HINT_WORD_COMPLETION)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_COMPLETION;
|
||||
if (input_hints & GTK_INPUT_HINT_LOWERCASE)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_LOWERCASE;
|
||||
if (input_hints & GTK_INPUT_HINT_UPPERCASE_CHARS)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_UPPERCASE;
|
||||
if (input_hints & GTK_INPUT_HINT_UPPERCASE_WORDS)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_TITLECASE;
|
||||
if (input_hints & GTK_INPUT_HINT_UPPERCASE_SENTENCES)
|
||||
hints |= GTK_TEXT_INPUT_CONTENT_HINT_AUTO_CAPITALIZATION;
|
||||
|
||||
if (purpose == GTK_INPUT_PURPOSE_PIN ||
|
||||
purpose == GTK_INPUT_PURPOSE_PASSWORD)
|
||||
{
|
||||
hints |= (GTK_TEXT_INPUT_CONTENT_HINT_HIDDEN_TEXT |
|
||||
GTK_TEXT_INPUT_CONTENT_HINT_SENSITIVE_DATA);
|
||||
}
|
||||
|
||||
return hints;
|
||||
}
|
||||
|
||||
static uint32_t
|
||||
translate_purpose (GtkInputPurpose purpose)
|
||||
{
|
||||
switch (purpose)
|
||||
{
|
||||
case GTK_INPUT_PURPOSE_FREE_FORM:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_NORMAL;
|
||||
case GTK_INPUT_PURPOSE_ALPHA:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_ALPHA;
|
||||
case GTK_INPUT_PURPOSE_DIGITS:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_DIGITS;
|
||||
case GTK_INPUT_PURPOSE_NUMBER:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_NUMBER;
|
||||
case GTK_INPUT_PURPOSE_PHONE:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_PHONE;
|
||||
case GTK_INPUT_PURPOSE_URL:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_URL;
|
||||
case GTK_INPUT_PURPOSE_EMAIL:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_EMAIL;
|
||||
case GTK_INPUT_PURPOSE_NAME:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_NAME;
|
||||
case GTK_INPUT_PURPOSE_PASSWORD:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_PASSWORD;
|
||||
case GTK_INPUT_PURPOSE_PIN:
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_PIN;
|
||||
}
|
||||
|
||||
return GTK_TEXT_INPUT_CONTENT_PURPOSE_NORMAL;
|
||||
}
|
||||
|
||||
static void
|
||||
notify_content_type (GtkIMContextWayland *context)
|
||||
{
|
||||
GtkInputHints hints;
|
||||
GtkInputPurpose purpose;
|
||||
|
||||
if (global->current != GTK_IM_CONTEXT (context))
|
||||
return;
|
||||
|
||||
g_object_get (context,
|
||||
"input-hints", &hints,
|
||||
"input-purpose", &purpose,
|
||||
NULL);
|
||||
|
||||
gtk_text_input_set_content_type (global->text_input,
|
||||
translate_hints (hints, purpose),
|
||||
translate_purpose (purpose));
|
||||
}
|
||||
|
||||
static void
|
||||
commit_state (GtkIMContextWayland *context)
|
||||
{
|
||||
if (global->current != GTK_IM_CONTEXT (context))
|
||||
return;
|
||||
gtk_text_input_commit (global->text_input);
|
||||
}
|
||||
|
||||
static void
|
||||
enable_text_input (GtkIMContextWayland *context,
|
||||
gboolean toggle_panel)
|
||||
{
|
||||
guint flags = 0;
|
||||
|
||||
if (context->use_preedit)
|
||||
flags |= GTK_TEXT_INPUT_ENABLE_FLAGS_CAN_SHOW_PREEDIT;
|
||||
if (toggle_panel)
|
||||
flags |= GTK_TEXT_INPUT_ENABLE_FLAGS_TOGGLE_INPUT_PANEL;
|
||||
|
||||
gtk_text_input_enable (global->text_input,
|
||||
global->enter_serial,
|
||||
flags);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_finalize (GObject *object)
|
||||
{
|
||||
GtkIMContextWayland *context = GTK_IM_CONTEXT_WAYLAND (object);
|
||||
|
||||
g_clear_object (&context->window);
|
||||
g_clear_object (&context->gesture);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
pressed_cb (GtkGestureMultiPress *gesture,
|
||||
gint n_press,
|
||||
gdouble x,
|
||||
gdouble y,
|
||||
GtkIMContextWayland *context)
|
||||
{
|
||||
if (n_press == 1)
|
||||
{
|
||||
context->press_x = x;
|
||||
context->press_y = y;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
released_cb (GtkGestureMultiPress *gesture,
|
||||
gint n_press,
|
||||
gdouble x,
|
||||
gdouble y,
|
||||
GtkIMContextWayland *context)
|
||||
{
|
||||
GtkInputHints hints;
|
||||
|
||||
g_object_get (context, "input-hints", &hints, NULL);
|
||||
|
||||
if (n_press == 1 &&
|
||||
(hints & GTK_INPUT_HINT_INHIBIT_OSK) == 0 &&
|
||||
!gtk_drag_check_threshold (context->widget,
|
||||
context->press_x,
|
||||
context->press_y,
|
||||
x, y))
|
||||
{
|
||||
enable_text_input (GTK_IM_CONTEXT_WAYLAND (context), TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_set_client_window (GtkIMContext *context,
|
||||
GdkWindow *window)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
GtkWidget *widget = NULL;
|
||||
|
||||
if (window == context_wayland->window)
|
||||
return;
|
||||
|
||||
if (window)
|
||||
gdk_window_get_user_data (window, (gpointer*) &widget);
|
||||
|
||||
if (context_wayland->widget && context_wayland->widget != widget)
|
||||
g_clear_object (&context_wayland->gesture);
|
||||
|
||||
g_set_object (&context_wayland->window, window);
|
||||
|
||||
if (context_wayland->widget != widget)
|
||||
{
|
||||
context_wayland->widget = widget;
|
||||
|
||||
if (widget)
|
||||
{
|
||||
GtkGesture *gesture;
|
||||
|
||||
gesture = gtk_gesture_multi_press_new (widget);
|
||||
gtk_event_controller_set_propagation_phase (GTK_EVENT_CONTROLLER (gesture),
|
||||
GTK_PHASE_CAPTURE);
|
||||
g_signal_connect (gesture, "pressed",
|
||||
G_CALLBACK (pressed_cb), context);
|
||||
g_signal_connect (gesture, "released",
|
||||
G_CALLBACK (released_cb), context);
|
||||
context_wayland->gesture = gesture;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_get_preedit_string (GtkIMContext *context,
|
||||
gchar **str,
|
||||
PangoAttrList **attrs,
|
||||
gint *cursor_pos)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
gchar *preedit_str;
|
||||
|
||||
GTK_IM_CONTEXT_CLASS (parent_class)->get_preedit_string (context, str, attrs, cursor_pos);
|
||||
|
||||
/* If the parent implementation returns a len>0 string, go with it */
|
||||
if (str && *str && **str)
|
||||
return;
|
||||
|
||||
preedit_str =
|
||||
context_wayland->preedit.text ? context_wayland->preedit.text : "";
|
||||
|
||||
if (str)
|
||||
*str = g_strdup (preedit_str);
|
||||
if (cursor_pos)
|
||||
*cursor_pos = context_wayland->preedit.cursor_idx;
|
||||
|
||||
if (attrs)
|
||||
{
|
||||
*attrs = pango_attr_list_new ();
|
||||
pango_attr_list_insert (*attrs,
|
||||
pango_attr_underline_new (PANGO_UNDERLINE_SINGLE));
|
||||
}
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_im_context_wayland_filter_keypress (GtkIMContext *context,
|
||||
GdkEventKey *key)
|
||||
{
|
||||
/* This is done by the compositor */
|
||||
return GTK_IM_CONTEXT_CLASS (parent_class)->filter_keypress (context, key);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_focus_in (GtkIMContext *context)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
|
||||
if (global->current == context)
|
||||
return;
|
||||
if (!global->text_input)
|
||||
return;
|
||||
|
||||
global->current = context;
|
||||
enable_text_input (context_wayland, FALSE);
|
||||
notify_content_type (context_wayland);
|
||||
notify_surrounding_text (context_wayland);
|
||||
notify_cursor_location (context_wayland);
|
||||
commit_state (context_wayland);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_focus_out (GtkIMContext *context)
|
||||
{
|
||||
if (global->current != context)
|
||||
return;
|
||||
|
||||
gtk_text_input_disable (global->text_input);
|
||||
global->current = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_reset (GtkIMContext *context)
|
||||
{
|
||||
reset_preedit (GTK_IM_CONTEXT_WAYLAND (context));
|
||||
|
||||
GTK_IM_CONTEXT_CLASS (parent_class)->reset (context);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_set_cursor_location (GtkIMContext *context,
|
||||
GdkRectangle *rect)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland;
|
||||
|
||||
context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
|
||||
context_wayland->cursor_rect = *rect;
|
||||
notify_cursor_location (context_wayland);
|
||||
commit_state (context_wayland);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_set_use_preedit (GtkIMContext *context,
|
||||
gboolean use_preedit)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
|
||||
context_wayland->use_preedit = !!use_preedit;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_set_surrounding (GtkIMContext *context,
|
||||
const gchar *text,
|
||||
gint len,
|
||||
gint cursor_index)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland;
|
||||
|
||||
context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
|
||||
g_free (context_wayland->surrounding.text);
|
||||
context_wayland->surrounding.text = g_strdup (text);
|
||||
context_wayland->surrounding.cursor_idx = cursor_index;
|
||||
|
||||
notify_surrounding_text (context_wayland);
|
||||
commit_state (context_wayland);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_im_context_wayland_get_surrounding (GtkIMContext *context,
|
||||
gchar **text,
|
||||
gint *cursor_index)
|
||||
{
|
||||
GtkIMContextWayland *context_wayland;
|
||||
|
||||
context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
|
||||
|
||||
if (!context_wayland->surrounding.text)
|
||||
return FALSE;
|
||||
|
||||
*text = context_wayland->surrounding.text;
|
||||
*cursor_index = context_wayland->surrounding.cursor_idx;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_class_init (GtkIMContextWaylandClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
GtkIMContextClass *im_context_class = GTK_IM_CONTEXT_CLASS (klass);
|
||||
|
||||
object_class->finalize = gtk_im_context_wayland_finalize;
|
||||
|
||||
im_context_class->set_client_window = gtk_im_context_wayland_set_client_window;
|
||||
im_context_class->get_preedit_string = gtk_im_context_wayland_get_preedit_string;
|
||||
im_context_class->filter_keypress = gtk_im_context_wayland_filter_keypress;
|
||||
im_context_class->focus_in = gtk_im_context_wayland_focus_in;
|
||||
im_context_class->focus_out = gtk_im_context_wayland_focus_out;
|
||||
im_context_class->reset = gtk_im_context_wayland_reset;
|
||||
im_context_class->set_cursor_location = gtk_im_context_wayland_set_cursor_location;
|
||||
im_context_class->set_use_preedit = gtk_im_context_wayland_set_use_preedit;
|
||||
im_context_class->set_surrounding = gtk_im_context_wayland_set_surrounding;
|
||||
im_context_class->get_surrounding = gtk_im_context_wayland_get_surrounding;
|
||||
|
||||
parent_class = g_type_class_peek_parent (klass);
|
||||
}
|
||||
|
||||
static void
|
||||
on_content_type_changed (GtkIMContextWayland *context)
|
||||
{
|
||||
notify_content_type (context);
|
||||
commit_state (context);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_init (GtkIMContextWayland *context)
|
||||
{
|
||||
context->use_preedit = TRUE;
|
||||
g_signal_connect_swapped (context, "notify::input-purpose",
|
||||
G_CALLBACK (on_content_type_changed), context);
|
||||
g_signal_connect_swapped (context, "notify::input-hints",
|
||||
G_CALLBACK (on_content_type_changed), context);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_im_context_wayland_register_type (GTypeModule *module)
|
||||
{
|
||||
const GTypeInfo object_info = {
|
||||
sizeof (GtkIMContextWaylandClass),
|
||||
NULL, NULL,
|
||||
(GClassInitFunc) gtk_im_context_wayland_class_init,
|
||||
NULL, NULL,
|
||||
sizeof (GtkIMContextWayland),
|
||||
0,
|
||||
(GInstanceInitFunc) gtk_im_context_wayland_init,
|
||||
};
|
||||
|
||||
type_wayland = g_type_module_register_type (module,
|
||||
GTK_TYPE_IM_CONTEXT_SIMPLE,
|
||||
"GtkIMContextWayland",
|
||||
&object_info, 0);
|
||||
}
|
||||
|
||||
MODULE_ENTRY (void, init) (GTypeModule * module)
|
||||
{
|
||||
gtk_im_context_wayland_register_type (module);
|
||||
gtk_im_context_wayland_global_init (gdk_display_get_default ());
|
||||
}
|
||||
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo *** contexts, int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar * context_id)
|
||||
{
|
||||
if (strcmp (context_id, "wayland") == 0)
|
||||
return g_object_new (type_wayland, NULL);
|
||||
else
|
||||
return NULL;
|
||||
}
|
Loading…
Reference in New Issue
Block a user