diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-07-21 23:04:53 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-07-21 23:04:53 (GMT) |
commit | d1874bdcaf52717ebf6f808010d275ca1f1693f3 (patch) | |
tree | c47941b305f6d4867e91edbb0b90e69f63778072 /src/gui/window.ui | |
parent | e4ccb9e56e822628e299527fee0b7325f0d25662 (diff) |
Separate the GTK application and the GTK main window.
Diffstat (limited to 'src/gui/window.ui')
-rw-r--r-- | src/gui/window.ui | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gui/window.ui b/src/gui/window.ui new file mode 100644 index 0000000..d9ca32c --- /dev/null +++ b/src/gui/window.ui @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="GtkFrameworkWindow" parent="GtkApplicationWindow"> + <property name="title" translatable="no">Chrysalide</property> + <property name="default-width">800</property> + <property name="default-height">600</property> + <property name="icon-name">chrysalide-logo</property> + <child> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <child> + <object class="GtkStack" id="grid"> + <property name="vexpand">TRUE</property> + </object> + </child> + </object> + </child> + </template> +</interface> |