finished wishlist

This commit is contained in:
2025-12-08 23:35:12 +01:00
parent 16523c2915
commit 59367bac5f
22 changed files with 356 additions and 27 deletions

View File

@@ -0,0 +1,33 @@
using Gtk 4.0;
using Adw 1;
template $FramePickerDialog: Adw.Dialog {
content-width: 400;
content-height: 300;
child: Adw.ToolbarView {
content: Box {
orientation: vertical;
spacing: 12;
margin-top: 12;
margin-bottom: 12;
margin-start: 12;
margin-end: 12;
SearchEntry search_entry {
placeholder-text: _("Search missing warframes…");
search-changed => $on_search_changed();
}
ScrolledWindow {
vexpand: true;
ListBox frame_list {
selection-mode: single;
styles [ "boxed-list" ]
row-activated => $on_row_activated();
}
}
};
};
}