2022-06-29 00:59:20 +03:00
|
|
|
using Gtk 4.0;
|
|
|
|
using Adw 1;
|
|
|
|
|
|
|
|
Gtk.Box preferences {
|
|
|
|
orientation: vertical;
|
|
|
|
|
|
|
|
Adw.HeaderBar {
|
|
|
|
title-widget: Adw.WindowTitle {
|
|
|
|
title: "Preferences";
|
|
|
|
};
|
|
|
|
|
|
|
|
Gtk.Button preferences_go_back {
|
|
|
|
icon-name: "go-previous-symbolic";
|
|
|
|
halign: start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-02 13:18:44 +03:00
|
|
|
Adw.StatusPage status_page {
|
|
|
|
icon-name: "image-loading-symbolic";
|
|
|
|
title: "Loading data";
|
|
|
|
|
|
|
|
vexpand: true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Adw.Flap flap {
|
2022-06-29 00:59:20 +03:00
|
|
|
vexpand: true;
|
2022-07-02 13:18:44 +03:00
|
|
|
visible: false;
|
2022-06-29 00:59:20 +03:00
|
|
|
|
|
|
|
flap: Gtk.StackSidebar {
|
|
|
|
width-request: 200;
|
|
|
|
stack: stack;
|
|
|
|
};
|
|
|
|
|
2022-06-29 18:58:48 +03:00
|
|
|
content: Gtk.Stack stack {};
|
2022-06-29 00:59:20 +03:00
|
|
|
}
|
|
|
|
}
|