33 lines
678 B
Plaintext
33 lines
678 B
Plaintext
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();
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} |