blob: 50674871eb9f6347afd4f6fc1e73e75d5df2e574 (
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
67
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="PpJobRow" parent="GtkListBoxRow">
<property name="visible">True</property>
<child>
<object class="GtkBox">
<property name="visible">True</property>
<property name="border-width">2</property>
<property name="margin">6</property>
<child>
<object class="GtkLabel" id="title_label">
<property name="visible">True</property>
<property name="ellipsize">end</property>
<property name="max-width-chars">40</property>
<property name="halign">start</property>
<property name="hexpand">True</property>
<property name="margin-start">10</property>
<property name="margin-end">10</property>
</object>
</child>
<child>
<object class="GtkLabel" id="state_label">
<property name="visible">True</property>
<property name="halign">end</property>
<property name="margin-start">74</property>
<property name="margin-end">74</property>
</object>
</child>
<child>
<object class="GtkButton" id="pause_button">
<property name="visible">True</property>
<property name="margin-left">4</property>
<property name="margin-right">4</property>
<signal name="clicked" handler="pause_cb" object="PpJobRow" swapped="yes" />
<style>
<class name="image-button"/>
</style>
<child>
<object class="GtkImage" id="pause_image">
<property name="visible">True</property>
<property name="icon-size">2</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkButton">
<property name="visible">True</property>
<property name="margin-left">4</property>
<property name="margin-right">4</property>
<signal name="clicked" handler="stop_cb" object="PpJobRow" swapped="yes" />
<style>
<class name="image-button"/>
</style>
<child>
<object class="GtkImage">
<property name="visible">True</property>
<property name="icon-name">edit-delete-symbolic</property>
<property name="icon-size">2</property>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|