Compare commits

...

2 commits

Author SHA1 Message Date
41bfab9ab8 bring back position in play queue 2024-10-20 17:44:16 +02:00
a556fe7e29 placeholder albums nav page 2024-10-20 17:43:06 +02:00
2 changed files with 27 additions and 9 deletions

View file

@ -136,7 +136,7 @@ public class Ui.PlayQueue : Gtk.Box {
var child = new PlayQueueSong (this.playbin); var child = new PlayQueueSong (this.playbin);
child.draggable = true; child.draggable = true;
child.show_position = false; child.show_position = true;
child.show_artist = true; child.show_artist = true;
child.show_album = true; child.show_album = true;

View file

@ -35,18 +35,36 @@ template $UiWindow: Adw.ApplicationWindow {
} }
content: Adw.ViewStack stack { content: Adw.ViewStack stack {
Adw.ViewStackPage {
icon-name: "audio-input-microphone";
title: _("Artists");
child: Box {};
}
Adw.ViewStackPage { Adw.ViewStackPage {
icon-name: "media-optical-cd"; icon-name: "media-optical-cd";
title: _("Albums"); title: _("Albums");
child: Box {}; child: Adw.NavigationView {
Adw.NavigationPage {
title: _("Albums");
child: Adw.ToolbarView {
[top]
CenterBox {
styles [ "toolbar" ]
[center]
SearchEntry {
placeholder-text: _("Search...");
}
[end]
Box {
Button {
icon-name: "view-refresh";
}
}
}
GridView {}
};
}
};
} }
Adw.ViewStackPage { Adw.ViewStackPage {