diff options
Diffstat (limited to 'schist_gtk4_gui/resources')
| -rw-r--r-- | schist_gtk4_gui/resources/resources.gresource.xml | 3 | ||||
| -rw-r--r-- | schist_gtk4_gui/resources/ui/balances_view.ui | 10 | ||||
| -rw-r--r-- | schist_gtk4_gui/resources/ui/category_transfers_view.ui | 10 | ||||
| -rw-r--r-- | schist_gtk4_gui/resources/ui/transactions_view.ui | 10 | ||||
| -rw-r--r-- | schist_gtk4_gui/resources/ui/window.ui | 39 |
5 files changed, 72 insertions, 0 deletions
diff --git a/schist_gtk4_gui/resources/resources.gresource.xml b/schist_gtk4_gui/resources/resources.gresource.xml index 4b1b90d..350a77d 100644 --- a/schist_gtk4_gui/resources/resources.gresource.xml +++ b/schist_gtk4_gui/resources/resources.gresource.xml @@ -1,7 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <gresources> <gresource prefix="/net/joeac/schist/"> + <file compressed="true" preprocess="xml-stripblanks">ui/balances_view.ui</file> <file compressed="true" preprocess="xml-stripblanks">ui/categories_view.ui</file> + <file compressed="true" preprocess="xml-stripblanks">ui/category_transfers_view.ui</file> + <file compressed="true" preprocess="xml-stripblanks">ui/transactions_view.ui</file> <file compressed="true" preprocess="xml-stripblanks">ui/window.ui</file> <file compressed="true">css/styles.css</file> <file compressed="true">css/window.css</file> 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> |
