1<?xml version="1.0" encoding="UTF-8"?>
2<interface domain="gtk30">
3  <object class="GtkTreeStore" id="model">
4    <columns>
5      <column type="gpointer"/>
6      <column type="gchararray"/>
7      <column type="gchararray"/>
8      <column type="gchararray"/>
9      <column type="gchararray"/>
10      <column type="gboolean"/>
11    </columns>
12  </object>
13  <template class="GtkInspectorObjectTree" parent="GtkBox">
14    <property name="visible">True</property>
15    <property name="orientation">vertical</property>
16    <signal name="hierarchy-changed" handler="on_hierarchy_changed"/>
17    <child>
18      <object class="GtkSearchBar" id="search_bar">
19        <property name="visible">True</property>
20        <property name="show-close-button">True</property>
21        <child>
22          <object class="GtkBox">
23            <property name="visible">True</property>
24            <property name="orientation">horizontal</property>
25            <style>
26              <class name="linked"/>
27            </style>
28            <child>
29              <object class="GtkSearchEntry" id="search_entry">
30                <property name="visible">True</property>
31                <property name="max-width-chars">40</property>
32                <signal name="search-changed" handler="on_search_changed"/>
33                <signal name="next-match" handler="next_match"/>
34                <signal name="previous-match" handler="previous_match"/>
35                <signal name="stop-search" handler="stop_search"/>
36              </object>
37            </child>
38            <child>
39              <object class="GtkButton">
40                <property name="visible">True</property>
41                <signal name="clicked" handler="next_match"/>
42                <style>
43                  <class name="image-button"/>
44                </style>
45                <child>
46                  <object class="GtkImage">
47                    <property name="visible">True</property>
48                    <property name="icon-name">go-down-symbolic</property>
49                    <property name="icon-size">1</property>
50                  </object>
51                </child>
52              </object>
53            </child>
54            <child>
55              <object class="GtkButton">
56                <property name="visible">True</property>
57                <signal name="clicked" handler="previous_match"/>
58                <style>
59                  <class name="image-button"/>
60                </style>
61                <child>
62                  <object class="GtkImage">
63                    <property name="visible">True</property>
64                    <property name="icon-name">go-up-symbolic</property>
65                    <property name="icon-size">1</property>
66                  </object>
67                </child>
68              </object>
69            </child>
70          </object>
71        </child>
72      </object>
73    </child>
74    <child>
75      <object class="GtkScrolledWindow">
76        <property name="visible">True</property>
77        <property name="hscrollbar-policy">never</property>
78        <property name="vscrollbar-policy">automatic</property>
79        <property name="expand">True</property>
80        <child>
81          <object class="GtkTreeView" id="tree">
82            <property name="visible">True</property>
83            <property name="model">model</property>
84            <property name="enable-search">False</property>
85            <property name="enable-grid-lines">vertical</property>
86            <signal name="row-activated" handler="on_row_activated"/>
87            <child internal-child="selection">
88              <object class="GtkTreeSelection">
89                <property name="mode">single</property>
90                <signal name="changed" handler="on_selection_changed"/>
91              </object>
92            </child>
93            <child>
94              <object class="GtkTreeViewColumn" id="object_column">
95                <property name="title" translatable="yes">Object</property>
96                <property name="resizable">True</property>
97                <child>
98                  <object class="GtkCellRendererText">
99                    <property name="scale">0.8</property>
100                  </object>
101                  <attributes>
102                    <attribute name="text">1</attribute>
103                    <attribute name="sensitive">5</attribute>
104                  </attributes>
105                </child>
106              </object>
107            </child>
108            <child>
109              <object class="GtkTreeViewColumn">
110                <property name="title" translatable="yes">Name</property>
111                <property name="resizable">True</property>
112                <child>
113                  <object class="GtkCellRendererText">
114                    <property name="scale">0.8</property>
115                  </object>
116                  <attributes>
117                    <attribute name="text">2</attribute>
118                    <attribute name="sensitive">5</attribute>
119                  </attributes>
120                </child>
121              </object>
122            </child>
123            <child>
124              <object class="GtkTreeViewColumn">
125                <property name="title" translatable="yes">Label</property>
126                <property name="resizable">True</property>
127                <child>
128                  <object class="GtkCellRendererText">
129                    <property name="scale">0.8</property>
130                    <property name="ellipsize">end</property>
131                    <property name="max-width-chars">30</property>
132                  </object>
133                  <attributes>
134                    <attribute name="text">3</attribute>
135                    <attribute name="sensitive">5</attribute>
136                  </attributes>
137                </child>
138              </object>
139            </child>
140            <child>
141              <object class="GtkTreeViewColumn">
142                <property name="title" translatable="yes">Style Classes</property>
143                <property name="resizable">True</property>
144                <child>
145                  <object class="GtkCellRendererText">
146                    <property name="scale">0.8</property>
147                  </object>
148                  <attributes>
149                    <attribute name="text">4</attribute>
150                    <attribute name="sensitive">5</attribute>
151                  </attributes>
152                </child>
153              </object>
154            </child>
155          </object>
156        </child>
157      </object>
158    </child>
159  </template>
160</interface>
161