blob: 380d1ed43611f6881d9fe19984abdf50446b0c29 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.20"/>
<template class="GtdSidebarListRow" parent="GtkListBoxRow">
<property name="can_focus">1</property>
<child>
<object class="GtkBox">
<property name="margin-top">12</property>
<property name="margin-bottom">12</property>
<property name="margin-start">6</property>
<property name="margin-end">6</property>
<property name="spacing">6</property>
<child>
<object class="GtkImage" id="color_icon">
<property name="width-request">12</property>
<property name="height-request">12</property>
<property name="halign">center</property>
<property name="valign">center</property>
<style>
<class name="color-circle-icon"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel" id="name_label">
<property name="hexpand">1</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel" id="tasks_counter_label">
<style>
<class name="caption"/>
<class name="dim-label"/>
</style>
</object>
</child>
</object>
</child>
</template>
</interface>
|