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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="TubaDialogsMainWindow" parent="AdwApplicationWindow">
<property name="width_request">360</property>
<property name="height_request">294</property>
<child>
<object class="AdwBreakpoint" id="breakpoint">
<condition>max-width: 700sp</condition>
<setter object="split_view" property="collapsed">true</setter>
</object>
</child>
<child>
<object class="AdwToastOverlay" id="toast_overlay">
<property name="child">
<object class="GtkOverlay">
<child type="overlay">
<object class="TubaViewsMediaViewer" id="media_viewer">
<property name="visible">0</property>
</object>
</child>
<property name="child">
<object class="AdwOverlaySplitView" id="split_view">
<property name="enable-show-gesture" bind-source="split_view" bind-property="collapsed" bind-flags="sync-create" />
<property name="enable-hide-gesture" bind-source="split_view" bind-property="collapsed" bind-flags="sync-create" />
<property name="sidebar">
<object class="TubaViewsSidebar" id="sidebar" />
</property>
<property name="content">
<object class="AdwNavigationView" id="navigation_view">
<signal name="notify::visible-page" handler="on_visible_page_changed" />
</object>
</property>
</object>
</property>
</object>
</property>
</object>
</child>
</template>
</interface>
|