new play queue style
This commit is contained in:
parent
f240424774
commit
6a2b157c7d
1 changed files with 33 additions and 23 deletions
|
@ -37,18 +37,36 @@ template $UiPlayQueueSong: Box {
|
||||||
focusable: false;
|
focusable: false;
|
||||||
hexpand: true;
|
hexpand: true;
|
||||||
|
|
||||||
Label {
|
Box {
|
||||||
focusable: false;
|
orientation: vertical;
|
||||||
xalign: 0;
|
|
||||||
halign: start;
|
|
||||||
hexpand: true;
|
|
||||||
ellipsize: end;
|
|
||||||
max-width-chars: 90;
|
|
||||||
justify: fill;
|
|
||||||
margin-start: 9;
|
|
||||||
|
|
||||||
label: bind template.song as <$SubsonicSong>.title;
|
Label {
|
||||||
styles [ "title-label" ]
|
focusable: false;
|
||||||
|
xalign: 0;
|
||||||
|
halign: start;
|
||||||
|
hexpand: true;
|
||||||
|
ellipsize: end;
|
||||||
|
max-width-chars: 90;
|
||||||
|
justify: fill;
|
||||||
|
margin-start: 9;
|
||||||
|
|
||||||
|
label: bind template.song as <$SubsonicSong>.title;
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
focusable: false;
|
||||||
|
xalign: 0;
|
||||||
|
halign: start;
|
||||||
|
hexpand: true;
|
||||||
|
ellipsize: end;
|
||||||
|
max-width-chars: 90;
|
||||||
|
justify: fill;
|
||||||
|
margin-start: 9;
|
||||||
|
|
||||||
|
label: bind template.song as <$SubsonicSong>.artist;
|
||||||
|
|
||||||
|
styles [ "dim-label" ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,18 +75,6 @@ template $UiPlayQueueSong: Box {
|
||||||
focusable: false;
|
focusable: false;
|
||||||
hexpand: true;
|
hexpand: true;
|
||||||
|
|
||||||
Label {
|
|
||||||
focusable: false;
|
|
||||||
xalign: 0;
|
|
||||||
halign: start;
|
|
||||||
hexpand: true;
|
|
||||||
ellipsize: end;
|
|
||||||
max-width-chars: 90;
|
|
||||||
justify: fill;
|
|
||||||
margin-start: 9;
|
|
||||||
|
|
||||||
label: bind template.song as <$SubsonicSong>.artist;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Box album_duration_box {
|
Box album_duration_box {
|
||||||
|
@ -76,6 +82,7 @@ template $UiPlayQueueSong: Box {
|
||||||
hexpand: true;
|
hexpand: true;
|
||||||
spacing: 6;
|
spacing: 6;
|
||||||
|
|
||||||
|
/*
|
||||||
Label {
|
Label {
|
||||||
visible: bind template.show_album;
|
visible: bind template.show_album;
|
||||||
focusable: false;
|
focusable: false;
|
||||||
|
@ -88,6 +95,7 @@ template $UiPlayQueueSong: Box {
|
||||||
|
|
||||||
label: bind template.song as <$SubsonicSong>.album;
|
label: bind template.song as <$SubsonicSong>.album;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
focusable: false;
|
focusable: false;
|
||||||
|
@ -135,10 +143,12 @@ template $UiPlayQueueSong: Box {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
SizeGroup {
|
SizeGroup {
|
||||||
mode: horizontal;
|
mode: horizontal;
|
||||||
widgets [title_box, artist_box, album_duration_box]
|
widgets [title_box, artist_box, album_duration_box]
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
menu song-menu {
|
menu song-menu {
|
||||||
item ("View song", "song.view")
|
item ("View song", "song.view")
|
||||||
|
|
Loading…
Reference in a new issue