Compare commits
2 commits
af4da894fc
...
41bfab9ab8
Author | SHA1 | Date | |
---|---|---|---|
41bfab9ab8 | |||
a556fe7e29 |
2 changed files with 27 additions and 9 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue