Add an emoji completion popup

This widget provides entry completion-like functionality
for Emoji codes like 😁 or 💋.
This commit is contained in:
Matthias Clasen
2017-08-19 14:06:47 -04:00
parent 7e9ae85dd4
commit 65bb238a3f
6 changed files with 776 additions and 1 deletions

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk40">
<template class="GtkEmojiCompletion" parent="GtkPopover">
<property name="modal">0</property>
<style>
<class name="emoji-completion"/>
</style>
<child>
<object class="GtkListBox" id="list">
<property name="visible">1</property>
<property name="selection-mode">none</property>
<property name="activate-on-single-click">1</property>
<signal name="row-activated" handler="row_activated"/>
</object>
</child>
</template>
</interface>