Gradience/data/ui/explore_preset_row.blp

43 lines
874 B
Text
Raw Normal View History

using Gtk 4.0;
using Adw 1;
template GradienceExplorePresetRow : Adw.ActionRow {
2022-09-16 06:09:46 +00:00
Box {
spacing: 6;
2022-09-28 13:26:12 +00:00
//Label badge {
// valign: center;
// label: _("Unknown");
// styles [
// "tag",
// "caption",
// ]
//}
2022-09-16 06:09:46 +00:00
Button apply_button {
valign: center;
icon-name: "checkmark-large-symbolic";
2022-09-16 06:09:46 +00:00
tooltip-text: _("Download and apply");
clicked => on_apply_button_clicked();
styles [
"flat",
]
}
Button download_button {
valign: center;
icon-name: "download-symbolic";
tooltip-text: _("Download only");
clicked => on_download_button_clicked();
styles [
"flat",
]
}
}
}