1<?xml version="1.0" encoding="UTF-8"?>
2<interface domain="gtk30">
3  <object class="GtkTreeStore" id="model">
4    <columns>
5      <column type="gchararray"/> <!-- type -->
6      <column type="gchararray"/> <!-- label -->
7      <column type="gchararray"/> <!-- action -->
8      <column type="gchararray"/> <!-- target -->
9      <column type="gchararray"/> <!-- icon -->
10    </columns>
11  </object>
12  <template class="GtkInspectorMenu" parent="GtkBox">
13    <property name="orientation">vertical</property>
14    <child>
15      <object class="GtkScrolledWindow">
16        <property name="visible">True</property>
17        <property name="expand">True</property>
18        <property name="hscrollbar-policy">automatic</property>
19        <property name="vscrollbar-policy">always</property>
20        <child>
21          <object class= "GtkTreeView">
22            <property name="visible">True</property>
23            <property name="model">model</property>
24            <child>
25              <object class="GtkTreeViewColumn">
26                <property name="title" translatable="yes">Label</property>
27                <child>
28                  <object class="GtkCellRendererText">
29                    <property name="scale">0.8</property>
30                  </object>
31                  <attributes>
32                    <attribute name="text">1</attribute>
33                  </attributes>
34                </child>
35              </object>
36            </child>
37            <child>
38              <object class="GtkTreeViewColumn">
39                <property name="title" translatable="yes">Action</property>
40                <child>
41                  <object class="GtkCellRendererText">
42                    <property name="scale">0.8</property>
43                  </object>
44                  <attributes>
45                    <attribute name="text">2</attribute>
46                  </attributes>
47                </child>
48              </object>
49            </child>
50            <child>
51              <object class="GtkTreeViewColumn">
52                <property name="title" translatable="yes">Target</property>
53                <child>
54                  <object class="GtkCellRendererText">
55                    <property name="scale">0.8</property>
56                  </object>
57                  <attributes>
58                    <attribute name="text">3</attribute>
59                  </attributes>
60                </child>
61              </object>
62            </child>
63            <child>
64              <object class="GtkTreeViewColumn">
65                <property name="title" translatable="yes">Icon</property>
66                <child>
67                  <object class="GtkCellRendererText">
68                    <property name="scale">0.8</property>
69                  </object>
70                  <attributes>
71                    <attribute name="text">4</attribute>
72                  </attributes>
73                </child>
74              </object>
75            </child>
76          </object>
77        </child>
78      </object>
79    </child>
80  </template>
81</interface>
82