1<?xml version="1.0" encoding="UTF-8"?>
2<interface>
3  <!-- interface-requires gtk+ 3.11 -->
4<menu id="selectmenu">
5	<section>
6		<item>
7			<attribute name="label" translatable="yes">Select All</attribute>
8			<attribute name="action">app.select-all</attribute>
9			<attribute name="accel">&lt;Ctrl&gt;A</attribute>
10		</item>
11		<item>
12			<attribute name="label" translatable="yes">Select None</attribute>
13			<attribute name="action">app.select-none</attribute>
14		</item>
15	</section>
16</menu>
17
18  <object class="GtkAdjustment" id="gw_adj_max_items">
19    <property name="lower">1</property>
20    <property name="upper">10000</property>
21    <property name="value">300</property>
22    <property name="step_increment">5</property>
23  </object>
24  <object class="GtkTreeStore" id="recent_model">
25    <columns>
26      <!-- column-name id -->
27      <column type="gchararray"/>
28      <!-- column-name uri -->
29      <column type="gchararray"/>
30      <!-- column-name primary_text -->
31      <column type="gchararray"/>
32      <!-- column-name secondary_text -->
33      <column type="gchararray"/>
34      <!-- column-name icon -->
35      <column type="GdkPixbuf"/>
36      <!-- column-name mtime -->
37      <column type="gint64"/>
38      <!-- column-name selected -->
39      <column type="gboolean"/>
40      <!-- column-name pulse -->
41      <column type="guint"/>
42
43      <!-- column-name source -->
44      <column type="GObject"/>
45      <!-- column-name content -->
46      <column type="GObject"/>
47      <!-- column-name is_prethumbnail -->
48      <column type="gboolean"/>
49      <!-- column-name page -->
50      <column type="gint"/>
51      <!-- column-name remaining -->
52      <column type="guint"/>
53      <!-- column-name priority -->
54      <column type="gint"/>
55      <!-- column-name can-remove -->
56      <column type="gint"/>
57    </columns>
58  </object>
59  <object class="GtkTreeStore" id="browser_model">
60    <columns>
61      <!-- column-name id -->
62      <column type="gchararray"/>
63      <!-- column-name uri -->
64      <column type="gchararray"/>
65      <!-- column-name primary_text -->
66      <column type="gchararray"/>
67      <!-- column-name secondary_text -->
68      <column type="gchararray"/>
69      <!-- column-name icon -->
70      <column type="GdkPixbuf"/>
71      <!-- column-name mtime -->
72      <column type="gint64"/>
73      <!-- column-name selected -->
74      <column type="gboolean"/>
75      <!-- column-name pulse -->
76      <column type="guint"/>
77
78      <!-- column-name source -->
79      <column type="GObject"/>
80      <!-- column-name content -->
81      <column type="GObject"/>
82      <!-- column-name is_prethumbnail -->
83      <column type="gboolean"/>
84      <!-- column-name page -->
85      <column type="gint"/>
86      <!-- column-name remaining -->
87      <column type="guint"/>
88      <!-- column-name priority -->
89      <column type="gint"/>
90      <!-- column-name can-remove -->
91      <column type="gint"/>
92    </columns>
93  </object>
94  <template class="TotemGrilo" parent="GtkBox">
95    <property name="visible">True</property>
96    <property name="can_focus">False</property>
97    <property name="border_width">0</property>
98    <property name="spacing">0</property>
99    <property name="orientation">vertical</property>
100    <child>
101      <object class="GtkSearchBar" id="search_bar">
102        <property name="visible">True</property>
103        <property name="can_focus">False</property>
104        <child>
105          <object class="GtkHBox" id="gw_box">
106            <property name="visible">True</property>
107            <property name="can_focus">False</property>
108            <property name="spacing">6</property>
109            <property name="width_request">500</property>
110            <property name="halign">center</property>
111            <child>
112              <object class="TotemSearchEntry" id="search_entry">
113                <property name="visible">True</property>
114                <property name="can_focus">True</property>
115              </object>
116              <packing>
117                <property name="expand">True</property>
118                <property name="fill">True</property>
119                <property name="position">1</property>
120              </packing>
121            </child>
122          </object>
123        </child>
124      </object>
125      <packing>
126        <property name="expand">False</property>
127        <property name="fill">True</property>
128        <property name="position">1</property>
129      </packing>
130    </child>
131    <child>
132      <object class="GdMainView" id="browser">
133        <property name="visible">True</property>
134        <property name="can_focus">True</property>
135        <property name="model">browser_model</property>
136        <style>
137          <class name="content-view"/>
138        </style>
139      </object>
140      <packing>
141        <property name="expand">True</property>
142        <property name="fill">True</property>
143        <property name="position">2</property>
144      </packing>
145    </child>
146    <child>
147      <object class="GtkRevealer" id="selection_revealer">
148        <property name="visible">True</property>
149        <property name="can_focus">False</property>
150        <child>
151          <placeholder/>
152        </child>
153      </object>
154      <packing>
155        <property name="expand">False</property>
156        <property name="fill">False</property>
157        <property name="position">3</property>
158      </packing>
159    </child>
160  </template>
161  <object class="GtkTreeStore" id="search_results_model">
162    <columns>
163      <!-- column-name id -->
164      <column type="gchararray"/>
165      <!-- column-name uri -->
166      <column type="gchararray"/>
167      <!-- column-name primary_text -->
168      <column type="gchararray"/>
169      <!-- column-name secondary_text -->
170      <column type="gchararray"/>
171      <!-- column-name icon -->
172      <column type="GdkPixbuf"/>
173      <!-- column-name mtime -->
174      <column type="gint64"/>
175      <!-- column-name selected -->
176      <column type="gboolean"/>
177      <!-- column-name pulse -->
178      <column type="guint"/>
179
180      <!-- column-name source -->
181      <column type="GObject"/>
182      <!-- column-name content -->
183      <column type="GObject"/>
184      <!-- column-name is_prethumbnail -->
185      <column type="gboolean"/>
186      <!-- column-name page -->
187      <column type="gint"/>
188      <!-- column-name remaining -->
189      <column type="guint"/>
190      <!-- column-name priority -->
191      <column type="gint"/>
192      <!-- column-name can-remove -->
193      <column type="gint"/>
194    </columns>
195  </object>
196  <object class="GtkListStore" id="gw_search_store_sources">
197    <columns>
198      <!-- column-name source -->
199      <column type="GObject"/>
200      <!-- column-name name -->
201      <column type="gchararray"/>
202    </columns>
203  </object>
204</interface>
205