summaryrefslogtreecommitdiff
path: root/schist_gtk4_gui/resources/ui
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-22 18:28:32 +0000
committerJoe Carstairs <me@joeac.net>2024-12-22 18:28:32 +0000
commitab3e0439e12dee592a8f6fe2a968e4bb429a60f8 (patch)
treeaff750c6f2eac8a2d6b703a3a75a45cfa52ec0b3 /schist_gtk4_gui/resources/ui
parent4b3821e8bffb6a8e98525ee0a0bc860e5de7da05 (diff)
Adds other views
Diffstat (limited to 'schist_gtk4_gui/resources/ui')
-rw-r--r--schist_gtk4_gui/resources/ui/balances_view.ui10
-rw-r--r--schist_gtk4_gui/resources/ui/category_transfers_view.ui10
-rw-r--r--schist_gtk4_gui/resources/ui/transactions_view.ui10
-rw-r--r--schist_gtk4_gui/resources/ui/window.ui39
4 files changed, 69 insertions, 0 deletions
diff --git a/schist_gtk4_gui/resources/ui/balances_view.ui b/schist_gtk4_gui/resources/ui/balances_view.ui
new file mode 100644
index 0000000..1645119
--- /dev/null
+++ b/schist_gtk4_gui/resources/ui/balances_view.ui
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+ <template class="SchistBalancesView" parent="GtkBox">
+ <child>
+ <object class="GtkLabel">
+ <property name="label">Hello, balances!</property>
+ </object>
+ </child>
+ </template>
+</interface>
diff --git a/schist_gtk4_gui/resources/ui/category_transfers_view.ui b/schist_gtk4_gui/resources/ui/category_transfers_view.ui
new file mode 100644
index 0000000..5a31335
--- /dev/null
+++ b/schist_gtk4_gui/resources/ui/category_transfers_view.ui
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+ <template class="SchistCategoryTransfersView" parent="GtkBox">
+ <child>
+ <object class="GtkLabel">
+ <property name="label">Hello, category transfers!</property>
+ </object>
+ </child>
+ </template>
+</interface>
diff --git a/schist_gtk4_gui/resources/ui/transactions_view.ui b/schist_gtk4_gui/resources/ui/transactions_view.ui
new file mode 100644
index 0000000..ca864f2
--- /dev/null
+++ b/schist_gtk4_gui/resources/ui/transactions_view.ui
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+ <template class="SchistTransactionsView" parent="GtkBox">
+ <child>
+ <object class="GtkLabel">
+ <property name="label">Hello, transactions!</property>
+ </object>
+ </child>
+ </template>
+</interface>
diff --git a/schist_gtk4_gui/resources/ui/window.ui b/schist_gtk4_gui/resources/ui/window.ui
index 2dcf4c8..54ce2a5 100644
--- a/schist_gtk4_gui/resources/ui/window.ui
+++ b/schist_gtk4_gui/resources/ui/window.ui
@@ -28,6 +28,45 @@
</property>
</object>
</child>
+
+ <child>
+ <object class="GtkStackPage">
+ <property name="name">balances</property>
+ <property name="title">Balances</property>
+ <property name="child">
+ <object
+ class="SchistBalancesView"
+ id="balances_view"
+ />
+ </property>
+ </object>
+ </child>
+
+ <child>
+ <object class="GtkStackPage">
+ <property name="name">transactions</property>
+ <property name="title">Transactions</property>
+ <property name="child">
+ <object
+ class="SchistTransactionsView"
+ id="transactions_view"
+ />
+ </property>
+ </object>
+ </child>
+
+ <child>
+ <object class="GtkStackPage">
+ <property name="name">category_transfers</property>
+ <property name="title">Category Transfers</property>
+ <property name="child">
+ <object
+ class="SchistCategoryTransfersView"
+ id="category_transfers_view"
+ />
+ </property>
+ </object>
+ </child>
</object>
</child>
</template>