musicus/data/ui/tile.blp

36 lines
564 B
Text
Raw Normal View History

2023-09-20 13:49:02 +02:00
using Gtk 4.0;
using Adw 1;
template $MusicusTile : Gtk.FlowBoxChild {
2023-10-07 20:52:15 +02:00
styles ["card", "activatable", "tile"]
2023-09-20 13:49:02 +02:00
Gtk.Box {
orientation: vertical;
2023-10-07 20:52:15 +02:00
valign: center;
2023-09-20 13:49:02 +02:00
Gtk.Label title_label {
2023-10-07 20:52:15 +02:00
styles ["title"]
2023-09-20 13:49:02 +02:00
halign: start;
label: _("Title");
}
Gtk.Label subtitle_label {
2023-10-07 20:52:15 +02:00
visible: false;
styles ["subtitle", "dim-label"]
2023-09-20 13:49:02 +02:00
halign: start;
label: _("Subtitle");
}
}
}
menu item_menu {
item {
label: _("_Play");
}
item {
label: _("_Edit");
}
item {
label: _("_Delete");
}
}