audrey/resources/play_queue_song.blp

133 lines
2.6 KiB
Text
Raw Normal View History

2024-10-19 11:07:22 +00:00
using Gtk 4.0;
2024-10-29 14:46:33 +00:00
template $AudreyUiPlayQueueSong: 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;
2024-10-29 14:46:33 +00:00
paintable: bind template.song as <$AudreyPlaybinSong>.thumbnail;
2024-10-27 21:01:49 +00:00
}
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;
2024-10-29 14:46:33 +00:00
label: bind template.song as <$AudreyPlaybinSong>.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
2024-10-29 14:46:33 +00:00
label: bind template.song as <$AudreyPlaybinSong>.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
2024-10-29 14:46:33 +00:00
label: bind $format_duration (template.song as <$AudreyPlaybinSong>.duration) as <string>;
}
2024-10-19 12:39:44 +00:00
Button {
focusable: true;
2024-10-29 14:46:33 +00:00
// TODO icon-name: bind $star_button_icon_name (template.song as <$AudreyPlaybinSong>.starred) as <string>;
2024-10-28 10:02:13 +00:00
icon-name: bind $star_button_icon_name () 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 () swapped;
drag-begin => $on_drag_begin () swapped;
2024-10-19 11:55:25 +00:00
}
DropTarget {
actions: move;
2024-10-29 14:46:33 +00:00
formats: "AudreyUiPlayQueueSong";
2024-10-19 11:55:25 +00:00
preload: true;
drop => $on_drop () swapped;
2024-10-19 11:55:25 +00:00
}
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")
}