musicus/data/ui/window.blp

31 lines
615 B
Text
Raw Normal View History

2023-06-18 14:33:53 +02:00
using Gtk 4.0;
using Adw 1;
2025-03-09 14:27:50 +01:00
template $MusicusWindow: Adw.ApplicationWindow {
title: _("Musicus");
2023-06-18 14:33:53 +02:00
2025-03-09 14:27:50 +01:00
Adw.ToastOverlay toast_overlay {
Adw.ToolbarView {
Gtk.Stack stack {
transition-type: over_up_down;
2023-09-24 11:57:16 +02:00
2025-03-09 14:27:50 +01:00
Gtk.StackPage {
name: "navigation";
child: Adw.NavigationView navigation_view {
$MusicusWelcomePage {
folder-selected => $set_library_folder() swapped;
}
};
}
2023-09-24 11:57:16 +02:00
}
2023-09-20 13:49:02 +02:00
2025-03-09 14:27:50 +01:00
[bottom]
Gtk.Revealer player_bar_revealer {
reveal-child: true;
transition-type: slide_up;
}
2023-09-21 17:19:31 +02:00
}
2023-09-15 10:12:36 +02:00
}
2025-03-09 14:27:50 +01:00
}