blob: 68ba9b169b1cbd63458a4806b4215c8b3d6ae645 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.10 -->
<template class="GsThirdPartyRepoRow" parent="GtkListBoxRow">
<child>
<object class="GtkBox">
<property name="visible">True</property>
<property name="margin-top">18</property>
<property name="margin-bottom">18</property>
<property name="margin-start">18</property>
<property name="margin-end">18</property>
<property name="orientation">horizontal</property>
<property name="spacing">16</property>
<child>
<object class="GtkBox" id="vbox">
<property name="visible">True</property>
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<property name="hexpand">True</property>
<child>
<object class="GtkBox" id="hbox">
<property name="visible">True</property>
<property name="orientation">horizontal</property>
<property name="spacing">4</property>
<child>
<object class="GtkLabel" id="name_label">
<property name="visible">True</property>
<property name="halign">start</property>
<property name="ellipsize">end</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkLabel" id="comment_label">
<property name="visible">True</property>
<property name="halign">start</property>
<property name="xalign">0</property>
<property name="wrap">True</property>
<style>
<class name="dim-label"/>
</style>
</object>
</child>
</object>
</child>
<child>
<object class="GsProgressButton" id="button">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="use_underline">True</property>
<property name="width_request">105</property>
<property name="receives_default">True</property>
<property name="halign">end</property>
<property name="valign">center</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|