File: ConfigFolderGroup.blp

package info (click to toggle)
deja-dup 49.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,464 kB
  • sloc: python: 1,215; sh: 164; xml: 49; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 512 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- Mode: Blueprint; indent-tabs-mode: nil; tab-width: 2 -*-
 *
 * SPDX-License-Identifier: CC-BY-SA-4.0
 * SPDX-FileCopyrightText: Michael Terry
 */

using Gtk 4.0;
using Adw 1;

template $ConfigFolderGroup: Adw.PreferencesGroup {
  notify::key => $on_key_changed();
  notify::check-access => $on_check_access_changed();

  Adw.ButtonRow add_row {
    start-icon-name: "list-add-symbolic";
    title: bind template.add-label no-sync-create;
    use-underline: true;
    activated => $on_add_clicked();
  }
}