blob: 0db47d77d0dc4f40472cb17dc027a30ef1c1f363 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="PpJobRow" parent="GtkListBoxRow">
<child>
<object class="GtkBox">
<property name="margin-top">6</property>
<property name="margin-bottom">6</property>
<property name="margin-start">6</property>
<property name="margin-end">6</property>
<child>
<object class="GtkLabel" id="title_label">
<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="halign">end</property>
<property name="margin-start">74</property>
<property name="margin-end">74</property>
</object>
</child>
<child>
<object class="GtkButton" id="priority_button">
<property name="margin-start">4</property>
<property name="margin-end">4</property>
<property name="icon-name">go-top-symbolic</property>
<signal name="clicked" handler="priority_cb" object="PpJobRow" swapped="yes" />
<style>
<class name="image-button"/>
</style>
</object>
</child>
<child>
<object class="GtkButton" id="pause_button">
<property name="margin-start">4</property>
<property name="margin-end">4</property>
<signal name="clicked" handler="pause_cb" object="PpJobRow" swapped="yes" />
<style>
<class name="image-button"/>
</style>
</object>
</child>
<child>
<object class="GtkButton">
<property name="margin-start">4</property>
<property name="margin-end">4</property>
<property name="icon-name">edit-delete-symbolic</property>
<signal name="clicked" handler="stop_cb" object="PpJobRow" swapped="yes" />
<style>
<class name="image-button"/>
</style>
</object>
</child>
</object>
</child>
</template>
</interface>
|