blob: 6b5b1a7532514173f372b24b3bebca409682b803 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.10 -->
<template class="GsCategoryTile" parent="GtkButton">
<style>
<class name="card"/>
<class name="category-tile"/>
</style>
<child>
<object class="GtkBox" id="box">
<property name="halign">center</property>
<property name="orientation">horizontal</property>
<property name="spacing">10</property>
<child>
<object class="GtkImage" id="image">
<!-- Placeholder; the actual icon is set in code -->
<property name="icon_name">folder-music-symbolic</property>
<property name="icon_size">large</property><!-- GTK_ICON_SIZE_LARGE -->
<style>
<class name="icon-dropshadow"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel" id="label">
<property name="xalign">0</property>
<property name="ellipsize">end</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|