blob: 4ef49c98482fd5aeacf88f9b21e81959d642412b (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="2.20"/>
<!-- interface-naming-policy project-wide -->
<object class="GtkWindow" id="_publish_frame_window">
<property name="title">You should never see this</property>
<child>
<object class="GtkScrolledWindow" id="_publish_frame_scrolled_window">
<property name="height_request">100</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hscrollbar_policy">automatic</property>
<property name="vscrollbar_policy">automatic</property>
<child>
<object class="GtkTreeView" id="_publish_frame">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="model">_publish_frame_tree_store</property>
<property name="reorderable">True</property>
<property name="enable_tree_lines">True</property>
<child>
<object class="GtkTreeViewColumn" id="filename">
<property name="sizing">autosize</property>
<property name="title" translatable="yes">Filename</property>
<property name="expand">True</property>
<child>
<object class="GtkCellRendererProgress" id="filename_renderer"/>
<attributes>
<attribute name="cell-background">2</attribute>
<attribute name="text">0</attribute>
<attribute name="value">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn" id="filesize">
<property name="sizing">autosize</property>
<property name="title" translatable="yes">Size</property>
<child>
<object class="GtkCellRendererText" id="size_renderer"/>
<attributes>
<attribute name="background">2</attribute>
<attribute name="text">1</attribute>
</attributes>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
<object class="GtkWindow" id="_publish_label_window">
<child>
<object class="GtkHBox" id="_publish_label_hbox">
<property name="visible">True</property>
<property name="border_width">5</property>
<child>
<object class="GtkLabel" id="_publish_label_window_label">
<property name="height_request">30</property>
<property name="visible">True</property>
<property name="label" translatable="yes">Publishing</property>
</object>
<packing>
<property name="fill">False</property>
<property name="padding">5</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkButton" id="_publish_label_close_button">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_action_appearance">False</property>
<property name="relief">half</property>
<child>
<object class="GtkImage" id="close_icon_stock_image">
<property name="visible">True</property>
<property name="stock">gtk-close</property>
<property name="icon-size">2</property>
</object>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
<object class="GtkTreeStore" id="_publish_frame_tree_store">
<columns>
<!-- column-name filename -->
<column type="gchararray"/>
<!-- column-name filesize -->
<column type="gchararray"/>
<!-- column-name bgcolour -->
<column type="gchararray"/>
<!-- column-name progress -->
<column type="guint"/>
<!-- column-name ent -->
<column type="gpointer"/>
</columns>
</object>
</interface>
|