1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
using Gtk 4.0;
template $PpsSidebarAttachments: $PpsSidebarPage {
child: Box {
name: "pps-sidebar-attachments";
orientation: vertical;
[start]
ScrolledWindow swindow {
valign: fill;
vexpand: true;
hscrollbar-policy: never;
vscrollbar-policy: automatic;
GestureClick {
button: 0;
pressed => $button_clicked() swapped;
}
child: ListView list_view {
factory: SignalListItemFactory factory {
setup => $list_view_factory_setup() swapped;
bind => $list_view_factory_bind() swapped;
};
enable-rubberband: true;
model: MultiSelection selection_model {};
tab-behavior: item;
activate => $list_view_item_activated() swapped;
styles [
"navigation-sidebar",
]
};
}
};
}
|