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
|
<interface domain="gtk40">
<template class="GtkInspectorCssNodeTree" parent="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkPaned" id="paned">
<property name="wide-handle">1</property>
<property name="position">400</property>
<child>
<object class="GtkScrolledWindow">
<property name="hexpand">1</property>
<property name="vexpand">1</property>
<property name="min-content-height">100</property>
<child>
<object class="GtkColumnView" id="node_tree">
<style>
<class name="data-table"/>
<class name="list"/>
</style>
<child>
<object class="GtkColumnViewColumn">
<property name="resizable">1</property>
<property name="title" translatable="yes">Name</property>
</object>
</child>
<child>
<object class="GtkColumnViewColumn">
<property name="resizable">1</property>
<property name="title" translatable="yes">ID</property>
</object>
</child>
<child>
<object class="GtkColumnViewColumn">
<property name="resizable">1</property>
<property name="title" translatable="yes">Style Classes</property>
</object>
</child>
<child>
<object class="GtkColumnViewColumn">
<property name="resizable">1</property>
<property name="expand">1</property>
<property name="title" translatable="yes">State</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkScrolledWindow">
<property name="hexpand">1</property>
<property name="vexpand">1</property>
<property name="min-content-height">100</property>
<child>
<object class="GtkColumnView" id="prop_tree">
<style>
<class name="data-table"/>
<class name="list"/>
</style>
<child>
<object class="GtkColumnViewColumn">
<property name="title" translatable="yes">CSS Property</property>
<property name="resizable">1</property>
</object>
</child>
<child>
<object class="GtkColumnViewColumn">
<property name="title" translatable="yes">Value</property>
<property name="resizable">1</property>
</object>
</child>
<child>
<object class="GtkColumnViewColumn">
<property name="title" translatable="yes">Location</property>
<property name="resizable">1</property>
<property name="expand">1</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>
|