blob: f5de3a5dc2a0576c3aa5ef783e215b311cc96e1f (
plain) (
blame)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="FurTaskRow" parent="GtkListBoxRow">
<child>
<object class="GtkBox" id="row_box">
<property name="orientation">horizontal</property>
<property name="margin_top">10</property>
<property name="margin_bottom">10</property>
<property name="margin_end">12</property>
<property name="margin_start">12</property>
<property name="hexpand">True</property>
<property name="spacing">3</property>
<property name="valign">center</property>
<property name="homogeneous">True</property>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="spacing">3</property>
<child>
<object class="GtkLabel" id="task_name_label">
<property name="halign">start</property>
<property name="label" translatable="yes">Task</property>
<property name="ellipsize">end</property>
<property name="single_line_mode">True</property>
<style>
<class name="heading"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel" id="task_tags_label">
<property name="halign">start</property>
<property name="ellipsize">end</property>
<property name="single_line_mode">True</property>
<style>
<class name="subtitle"/>
</style>
</object>
</child>
</object>
</child>
<child>
<object class="GtkLabel" id="total_time_label">
<property name="halign">end</property>
<property name="label" translatable="yes">Time</property>
<property name="single_line_mode">True</property>
<style>
<class name="numeric"/>
</style>
</object>
</child>
</object>
</child>
</template>
</interface>
|