File: pps-sidebar-attachments.blp

package info (click to toggle)
papers 49.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,332 kB
  • sloc: ansic: 37,722; sh: 197; xml: 127; makefile: 112
file content (39 lines) | stat: -rw-r--r-- 848 bytes parent folder | download
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",
        ]
      };
    }
  };
}