1<?xml version="1.0" encoding="UTF-8"?>
2<interface domain="gtk30">
3  <object class="GtkListStore" id="model">
4    <columns>
5      <column type="gchararray"/>
6      <column type="gchararray"/>
7      <column type="gboolean"/>
8      <column type="gchararray"/>
9      <column type="gchararray"/>
10      <column type="gpointer"/>
11    </columns>
12  </object>
13  <template class="GtkInspectorActions" parent="GtkBox">
14    <property name="orientation">vertical</property>
15    <child>
16      <object class="GtkScrolledWindow">
17        <property name="visible">True</property>
18        <property name="expand">True</property>
19        <property name="hscrollbar-policy">never</property>
20        <property name="vscrollbar-policy">automatic</property>
21        <child>
22          <object class= "GtkTreeView">
23            <property name="visible">True</property>
24            <property name="model">model</property>
25            <property name="enable-search">False</property>
26            <property name="activate-on-single-click">True</property>
27            <signal name="row-activated" handler="row_activated"/>
28            <child>
29              <object class="GtkTreeViewColumn">
30                <property name="title" translatable="yes">Prefix</property>
31                <child>
32                  <object class="GtkCellRendererText">
33                    <property name="scale">0.8</property>
34                  </object>
35                  <attributes>
36                    <attribute name="text">0</attribute>
37                  </attributes>
38                </child>
39              </object>
40            </child>
41            <child>
42              <object class="GtkTreeViewColumn">
43                <property name="title" translatable="yes">Name</property>
44                <child>
45                  <object class="GtkCellRendererText">
46                    <property name="scale">0.8</property>
47                  </object>
48                  <attributes>
49                    <attribute name="text">1</attribute>
50                  </attributes>
51                </child>
52              </object>
53            </child>
54            <child>
55              <object class="GtkTreeViewColumn">
56                <property name="title" translatable="yes">Enabled</property>
57                <child>
58                  <object class="GtkCellRendererText">
59                    <property name="scale">0.8</property>
60                  </object>
61                  <attributes>
62                    <attribute name="text">2</attribute>
63                  </attributes>
64                </child>
65              </object>
66            </child>
67            <child>
68              <object class="GtkTreeViewColumn">
69                <property name="title" translatable="yes">Parameter Type</property>
70                <child>
71                  <object class="GtkCellRendererText">
72                    <property name="scale">0.8</property>
73                  </object>
74                  <attributes>
75                    <attribute name="text">3</attribute>
76                  </attributes>
77                </child>
78              </object>
79            </child>
80            <child>
81              <object class="GtkTreeViewColumn">
82                <property name="title" translatable="yes">State</property>
83                <child>
84                  <object class="GtkCellRendererText">
85                    <property name="scale">0.8</property>
86                  </object>
87                  <attributes>
88                    <attribute name="text">4</attribute>
89                  </attributes>
90                </child>
91              </object>
92            </child>
93          </object>
94        </child>
95      </object>
96    </child>
97  </template>
98</interface>
99