Skip to content
Snippets Groups Projects
prefs.blp 922 B
Newer Older
// SPDX-FileCopyrightText: 2022-2024 Bruce Cowan <bruce@bcowan.me.uk>
Bruce Cowan's avatar
Bruce Cowan committed
//
// SPDX-License-Identifier: GPL-3.0-or-later

using Gtk 4.0;
using Adw 1;

template $RugbyPrefDialog : Adw.PreferencesDialog {
Bruce Cowan's avatar
Bruce Cowan committed
  title: "Preferences";
  search-enabled: false;
Bruce Cowan's avatar
Bruce Cowan committed

  Adw.PreferencesPage {
    Adw.PreferencesGroup {
      title: "Scoring";

      Adw.SpinRow try_spin {
        title: "Points for a converted try";
        adjustment: Adjustment {
          lower: 1;
          upper: 7;
          step-increment: 1;
        };
Bruce Cowan's avatar
Bruce Cowan committed
      }

      Adw.SpinRow utry_spin {
Bruce Cowan's avatar
Bruce Cowan committed
        title: "Points for an unconverted try";
        adjustment: Adjustment {
          lower: 1;
          upper: 5;
          step-increment: 1;
        };
Bruce Cowan's avatar
Bruce Cowan committed
      }

      Adw.SpinRow kick_spin {
Bruce Cowan's avatar
Bruce Cowan committed
        title: "Points for a kick";
        adjustment: Adjustment {
          lower: 1;
          upper: 3;
          step-increment: 1;
        };