blob: 7c329f7207d06f7766a8c5fd9d1ee7ab65724e72 (
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<interface>
<template class="SchistBalancesView" parent="GtkBox">
<child type="sidebar">
<object class="GtkStackSidebar">
<child>
<object class="GtkStackSwitcher">
<property name="stack">balances_stack</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkStack" id="balances_stack">
<child>
<object class="GtkStackPage">
<property name="name">overview</property>
<property name="title">Overview</property>
<property name="child">
<object class="GtkLabel">
<property name="label">
Hello, balances overview!
</property>
</object>
</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|