1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="EvSidebar" parent="GtkBox">
<property name="orientation">vertical</property>
<property name="visible">True</property>
<child>
<object class="GtkStack" id="stack">
<property name="expand">True</property>
<property name="visible">True</property>
<signal name="notify::visible-child" handler="ev_sidebar_child_change_cb" />
</object>
</child>
<child>
<object class="GtkStackSwitcher" id="switcher">
<property name="stack">stack</property>
<property name="halign">fill</property>
<property name="hexpand">True</property>
<property name="homogeneous">True</property>
<property name="margin">6</property>
<property name="visible">True</property>
</object>
</child>
</template>
</interface>
|