[gtk+] Add input hints for Emoji input
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Add input hints for Emoji input
- Date: Sat, 2 Sep 2017 12:47:33 +0000 (UTC)
commit 774499e10e090852f24b76c34d2b8957e2ec860b
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Sep 2 08:42:18 2017 -0400
Add input hints for Emoji input
Allow hinting input methods about whether Emoji support is
useful or not.
gtk/gtkenums.h | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h
index bf3da9f..025fe61 100644
--- a/gtk/gtkenums.h
+++ b/gtk/gtkenums.h
@@ -918,6 +918,8 @@ typedef enum
* @GTK_INPUT_HINT_INHIBIT_OSK: Suggest to not show an onscreen keyboard
* (e.g for a calculator that already has all the keys).
* @GTK_INPUT_HINT_VERTICAL_WRITING: The text is vertical. Since 3.18
+ * @GTK_INPUT_HINT_EMOJI: Suggest offering Emoji support. Since 3.22.20
+ * @GTK_INPUT_HINT_NO_EMOJI: Suggest not offering Emoji support. Since 3.22.20
*
* Describes hints that might be taken into account by input methods
* or applications. Note that input methods may already tailor their
@@ -942,7 +944,9 @@ typedef enum
GTK_INPUT_HINT_UPPERCASE_WORDS = 1 << 5,
GTK_INPUT_HINT_UPPERCASE_SENTENCES = 1 << 6,
GTK_INPUT_HINT_INHIBIT_OSK = 1 << 7,
- GTK_INPUT_HINT_VERTICAL_WRITING = 1 << 8
+ GTK_INPUT_HINT_VERTICAL_WRITING = 1 << 8,
+ GTK_INPUT_HINT_EMOJI = 1 << 9,
+ GTK_INPUT_HINT_NO_EMOJI = 1 << 10
} GtkInputHints;
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]