blob: 054801dfec427a89482aba6897ed18087faff863 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<requires lib="libadwaita" version="1.0"/>
<template class="ReorderPagesItem" parent="GtkButton">
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkLabel" id="title">
<property name="label"></property>
</object>
</child>
<child>
<object class="GtkBox">
<property name="orientation">horizontal</property>
<property name="spacing">12</property>
<property name="halign">center</property>
<child>
<object class="GtkImage" id="before_image">
<property name="pixel-size">140</property>
</object>
</child>
<child>
<object class="GtkImage">
<property name="icon-name">right-large-symbolic</property>
</object>
</child>
<child>
<object class="GtkImage" id="after_image">
<property name="pixel-size">140</property>
</object>
</child>
</object>
</child>
</object>
</child>
<style>
<class name="flat"/>
</style>
</template>
</interface>
|