blob: e4b8f13df7144324366243b05c24cc88902f5527 (
plain)
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
name="emojipicker"
title="CHOOSE EMOJI"
help_topic="emojipicker"
single_instance="true"
can_minimize="false"
can_tear_off="false"
can_resize="true"
auto_close="true"
layout="topleft"
min_width="250"
chrome="true"
height="350"
width="304">
<floater.string name="title_for_recently_used" value="Recently used"/>
<floater.string name="title_for_frequently_used" value="Frequently used"/>
<floater.string name="text_no_emoji_for_filter" value="No emoji found for '[FILTER]'"/>
<scroll_container
name="EmojiGridContainer"
layout="topleft"
follows="all"
ignore_arrow_keys="true"
top="25"
left="0"
height="275">
<scrolling_panel_list
name="EmojiGrid"
layout="topleft"
follows="top|left|right"
padding="4"
spacing="0"
top="0"
left="0"/>
</scroll_container>
<panel
name="Groups"
layout="topleft"
follows="top|left|right"
top="0"
left="0"
height="25">
<panel
name="Badge"
layout="bottomleft"
follows="bottom|left"
background_visible="true"
background_opaque="true"
bg_opaque_color="FrogGreen"
tab_stop="false"
bottom="0"
height="2"
width="20"
/>
</panel>
<text
name="Dummy"
type="string"
layout="bottomleft"
follows="bottom|left|right"
halign="center"
valign="center"
bottom="14"
left="10"
height="25">No emoji selected</text>
</floater>
|