blob: 0c80df23c9f71dfc049160a22929c61490417a18 (
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
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
112
113
|
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk30">
<!-- interface-requires gtk+ 3.10 -->
<template class="GtkFileChooserButton" parent="GtkBox">
<child>
<object class="GtkButton" id="button">
<property name="visible">1</property>
<property name="can-focus">1</property>
<property name="receives-default">1</property>
<signal name="clicked" handler="button_clicked_cb" swapped="no"/>
<style>
<class name="file"/>
</style>
<child>
<object class="GtkBox" id="box2">
<property name="visible">1</property>
<property name="spacing">4</property>
<child>
<object class="GtkImage" id="image">
<property name="visible">1</property>
<property name="icon-name">image-missing</property>
</object>
<packing>
<property name="fill">0</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="label">
<property name="visible">1</property>
<property name="halign">start</property>
<property name="valign">baseline</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">(None)</property>
<property name="ellipsize">end</property>
</object>
<packing>
<property name="expand">1</property>
<property name="position">1</property>
</packing>
</child>
<child>
<object class="GtkSeparator" id="separator1">
<property name="visible">1</property>
<property name="orientation">vertical</property>
</object>
<packing>
<property name="fill">0</property>
<property name="position">2</property>
</packing>
</child>
<child>
<object class="GtkImage" id="open_file_icon">
<property name="visible">1</property>
<property name="icon-name">document-open-symbolic</property>
<property name="icon-size">1</property>
<property name="use-fallback">1</property>
<property name="valign">baseline</property>
</object>
<packing>
<property name="fill">0</property>
<property name="position">3</property>
</packing>
</child>
</object>
</child>
</object>
<packing>
<property name="expand">1</property>
</packing>
</child>
<child>
<object class="GtkComboBox" id="combo_box">
<property name="visible">1</property>
<signal name="changed" handler="combo_box_changed_cb" swapped="no"/>
<signal name="notify::popup-shown" handler="combo_box_notify_popup_shown_cb" swapped="no"/>
<child>
<object class="GtkCellRendererPixbuf" id="icon_cell"/>
<attributes>
<attribute name="surface">0</attribute>
</attributes>
</child>
<child>
<object class="GtkCellRendererText" id="name_cell">
<property name="xpad">6</property>
</object>
<attributes>
<attribute name="text">1</attribute>
</attributes>
</child>
</object>
<packing>
<property name="expand">1</property>
<property name="position">1</property>
</packing>
</child>
</template>
<object class="GtkListStore" id="model">
<columns>
<!-- column-name icon -->
<column type="CairoSurface"/>
<!-- column-name display-name -->
<column type="gchararray"/>
<!-- column-name type -->
<column type="gchar"/>
<!-- column-name data -->
<column type="gpointer"/>
<!-- column-name is-folder -->
<column type="gboolean"/>
<!-- column-name cancelable -->
<column type="gpointer"/>
</columns>
</object>
</interface>
|