blob: 147054be0f78516d9bf7a1302b804bec94217239 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.16"/>
<template class="GtdWindow" parent="AdwApplicationWindow">
<property name="default_width">800</property>
<property name="default_height">600</property>
<child>
<object class="GtkShortcutController">
<property name="name">Main Window Shortcuts</property>
<property name="scope">global</property>
</object>
</child>
<style>
<class name="org-gnome-Todo"/>
</style>
<child>
<object class="GtkStack" id="stack">
<property name="hexpand">true</property>
<property name="vexpand">true</property>
<property name="transition_duration">250</property>
<property name="transition_type">crossfade</property>
<signal name="notify::visible-child" handler="on_stack_visible_child_cb" object="GtdWindow" swapped="no"/>
<style>
<class name="background"/>
</style>
</object>
</child>
</template>
</interface>
|