2024-10-19 11:07:22 +00:00
|
|
|
using Gtk 4.0;
|
|
|
|
|
|
|
|
template $UiPlayQueueSong: ListBoxRow {
|
|
|
|
selectable: false;
|
|
|
|
|
|
|
|
Box {
|
|
|
|
focusable: false;
|
|
|
|
spacing: 6;
|
|
|
|
|
|
|
|
Image {
|
2024-10-19 11:55:25 +00:00
|
|
|
//visible: false;
|
2024-10-19 11:07:22 +00:00
|
|
|
icon-name: "list-drag-handle";
|
|
|
|
styles [ "drag-handle" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
Box {
|
|
|
|
width-request: 48;
|
|
|
|
focusable: false;
|
|
|
|
homogeneous: true;
|
|
|
|
|
|
|
|
Image {
|
|
|
|
focusable: false;
|
|
|
|
icon-size: normal;
|
2024-10-19 12:04:52 +00:00
|
|
|
icon-name: bind template.play-icon-name;
|
2024-10-19 11:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
focusable: false;
|
|
|
|
halign: end;
|
|
|
|
justify: right;
|
|
|
|
styles [ "dim-label", "numeric" ]
|
|
|
|
|
2024-10-19 12:04:52 +00:00
|
|
|
label: bind template.displayed_position;
|
2024-10-19 11:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Box title_box {
|
|
|
|
focusable: false;
|
|
|
|
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>.title;
|
2024-10-19 12:04:52 +00:00
|
|
|
styles [ "title-label" ]
|
2024-10-19 11:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Box artist_box {
|
|
|
|
//visible: false;
|
|
|
|
focusable: false;
|
|
|
|
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 {
|
|
|
|
focusable: false;
|
|
|
|
hexpand: true;
|
|
|
|
spacing: 6;
|
|
|
|
|
|
|
|
Label {
|
|
|
|
//visible: false;
|
|
|
|
focusable: false;
|
|
|
|
xalign: 0;
|
|
|
|
halign: start;
|
|
|
|
hexpand: true;
|
|
|
|
ellipsize: end;
|
|
|
|
max-width-chars: 90;
|
|
|
|
justify: fill;
|
|
|
|
|
|
|
|
label: bind template.song as <$SubsonicSong>.album;
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
focusable: false;
|
|
|
|
halign: end;
|
|
|
|
hexpand: true;
|
|
|
|
single-line-mode: true;
|
|
|
|
styles [ "numeric" ]
|
|
|
|
|
|
|
|
label: bind $format_duration (template.song as <$SubsonicSong>.duration) as <string>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
focusable: true;
|
|
|
|
icon-name: bind $star_button_icon_name (template.song as <$SubsonicSong>.starred) as <string>;
|
|
|
|
styles [ "flat" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuButton {
|
|
|
|
//visible: false;
|
|
|
|
focusable: true;
|
|
|
|
icon-name: "view-more";
|
|
|
|
styles [ "flat" ]
|
2024-10-19 12:39:44 +00:00
|
|
|
|
|
|
|
popover: PopoverMenu {
|
|
|
|
menu-model: song-menu;
|
|
|
|
};
|
2024-10-19 11:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
2024-10-19 11:55:25 +00:00
|
|
|
|
|
|
|
DragSource {
|
|
|
|
actions: move;
|
|
|
|
propagation-phase: capture;
|
|
|
|
|
|
|
|
prepare => $on_drag_prepare ();
|
|
|
|
}
|
|
|
|
|
|
|
|
DropTarget {
|
|
|
|
actions: move;
|
|
|
|
formats: UiPlayQueueSong;
|
|
|
|
preload: true;
|
|
|
|
|
|
|
|
drop => $on_drop ();
|
|
|
|
}
|
2024-10-19 11:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SizeGroup {
|
|
|
|
mode: horizontal;
|
|
|
|
widgets [title_box, artist_box, album_duration_box]
|
|
|
|
}
|
2024-10-19 12:39:44 +00:00
|
|
|
|
|
|
|
menu song-menu {
|
|
|
|
item ("Remove", "song.remove")
|
|
|
|
}
|