audrey/src/ui/play_queue_song.blp

132 lines
2.5 KiB
Text
Raw Normal View History

2024-10-19 11:07:22 +00:00
using Gtk 4.0;
2024-10-20 15:46:59 +00:00
template $UiPlayQueueSong: Box {
2024-10-27 21:01:49 +00:00
height-request: 48;
spacing: 12;
margin-start: 6;
margin-end: 6;
2024-10-19 11:07:22 +00:00
Box {
2024-10-27 21:01:49 +00:00
width-request: 36;
2024-10-19 11:07:22 +00:00
focusable: false;
homogeneous: true;
2024-10-19 11:07:22 +00:00
Image {
visible: bind template.current;
2024-10-19 11:07:22 +00:00
focusable: false;
halign: end;
icon-size: normal;
icon-name: "media-playback-start";
2024-10-19 11:07:22 +00:00
}
Label {
visible: bind template.current inverted;
2024-10-19 11:07:22 +00:00
focusable: false;
halign: end;
justify: right;
styles [ "dim-label", "numeric" ]
2024-10-19 11:07:22 +00:00
label: bind template.displayed_position;
2024-10-19 11:07:22 +00:00
}
}
2024-10-19 11:07:22 +00:00
2024-10-27 21:01:49 +00:00
Image {
visible: bind template.show_cover;
margin-top: 1;
margin-bottom: 1;
pixel-size: 50;
paintable: bind template.cover;
}
Box title_box {
styles [ "header"]
focusable: false;
hexpand: true;
2024-10-27 21:01:49 +00:00
valign: center;
Box {
styles [ "title" ]
orientation: vertical;
2024-10-19 11:07:22 +00:00
Label {
styles [ "title" ]
2024-10-19 11:07:22 +00:00
focusable: false;
xalign: 0;
halign: start;
hexpand: true;
ellipsize: end;
max-width-chars: 90;
justify: fill;
label: bind template.song as <$SubsonicSong>.title;
2024-10-19 11:07:22 +00:00
}
Label {
styles [ "subtitle" ]
2024-10-19 11:07:22 +00:00
focusable: false;
xalign: 0;
halign: start;
2024-10-19 11:07:22 +00:00
hexpand: true;
ellipsize: end;
max-width-chars: 90;
justify: fill;
2024-10-19 11:07:22 +00:00
label: bind template.song as <$SubsonicSong>.artist;
2024-10-19 11:07:22 +00:00
}
}
}
2024-10-19 11:07:22 +00:00
Label {
focusable: false;
halign: end;
hexpand: true;
single-line-mode: true;
styles [ "numeric", "dim-label" ]
2024-10-19 11:07:22 +00:00
label: bind $format_duration (template.song as <$SubsonicSong>.duration) as <string>;
}
2024-10-19 12:39:44 +00:00
Button {
focusable: true;
icon-name: bind $star_button_icon_name (template.song as <$SubsonicSong>.starred) as <string>;
styles [ "flat" ]
2024-10-27 21:01:49 +00:00
valign: center;
}
MenuButton {
//visible: false;
focusable: true;
icon-name: "view-more";
styles [ "flat" ]
2024-10-27 21:01:49 +00:00
valign: center;
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 ();
2024-10-20 12:24:04 +00:00
drag-begin => $on_drag_begin ();
2024-10-19 11:55:25 +00:00
}
DropTarget {
actions: move;
2024-10-20 09:52:51 +00:00
formats: "UiPlayQueueSong";
2024-10-19 11:55:25 +00:00
preload: true;
drop => $on_drop ();
}
2024-10-19 11:07:22 +00:00
}
2024-10-19 12:39:44 +00:00
menu song-menu {
item ("View song", "song.view")
item ("View artist", "song.view-artist")
item ("View album", "song.view-album")
item ("Share", "song.share")
2024-10-19 12:39:44 +00:00
item ("Remove", "song.remove")
}