finished wishlist
This commit is contained in:
33
data/resources/ui/framepicker.blp
Normal file
33
data/resources/ui/framepicker.blp
Normal 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();
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user