aboutsummaryrefslogtreecommitdiff
path: root/src/options-gsettings.vala
blob: 7c83afec7fb8b78fe9575a79a689f40b978ca895 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * -*- Mode:Vala; indent-tabs-mode:t; tab-width:4; encoding:utf8 -*-
 * Copyright 2015 Canonical Ltd.
 * Copyright 2021-2022 Robert Tari
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Charles Kerr <charles.kerr@canonical.com>
 *      Robert Tari <robert@tari.in>
 */

using PulseAudio;

public class IndicatorSound.OptionsGSettings : Options
{
    public OptionsGSettings() {
            init_max_volume();
            init_loud_volume();
    }

    ~OptionsGSettings() {
    }

        private Settings _settings = new Settings ("org.ayatana.indicator.sound");
#if LOMIRI_FEATURES_ENABLED
        private Settings _shared_settings = null;
#endif
        /** MAX VOLUME PROPERTY **/

    private const string AMP_dB_KEY = "amplified-volume-decibels";
    private const string NORMAL_dB_KEY = "normal-volume-decibels";
    private const string ALLOW_AMP_KEY = "allow-amplified-volume";

        private void init_max_volume() {
                _settings.changed[NORMAL_dB_KEY].connect(() => update_max_volume());
                _settings.changed[AMP_dB_KEY].connect(() => update_max_volume());
#if LOMIRI_FEATURES_ENABLED
                if (AyatanaCommon.utils_is_lomiri())
                {
                    _shared_settings = new Settings ("com.lomiri.sound");
                    _shared_settings.changed[ALLOW_AMP_KEY].connect(() => update_max_volume());
                }
#endif
                update_max_volume();
        }
        private void update_max_volume () {
                set_max_volume_(calculate_max_volume());
        }
        protected void set_max_volume_ (double vol) {
                if (max_volume != vol) {
                        debug("changing max_volume from %f to %f", this.max_volume, vol);
                        max_volume = vol;
                }
        }
        private double calculate_max_volume () {

                unowned string decibel_key = NORMAL_dB_KEY;
#if LOMIRI_FEATURES_ENABLED
                if (AyatanaCommon.utils_is_lomiri())
                {
                    decibel_key = _shared_settings.get_boolean(ALLOW_AMP_KEY)
                        ? AMP_dB_KEY
                        : NORMAL_dB_KEY;
                }
#endif
                var volume_dB = _settings.get_double(decibel_key);
                var volume_sw = PulseAudio.Volume.sw_from_dB (volume_dB);
                return VolumeControlPulse.volume_to_double (volume_sw);
        }

    /** LOUD VOLUME **/

    private const string LOUD_ENABLED_KEY = "warning-volume-enabled";
    private const string LOUD_DECIBEL_KEY = "warning-volume-decibels";

        private void init_loud_volume() {
                _settings.changed[LOUD_ENABLED_KEY].connect(() => update_loud_volume());
                _settings.changed[LOUD_DECIBEL_KEY].connect(() => update_loud_volume());
        update_loud_volume();
    }
    private void update_loud_volume() {

        var vol = PulseAudio.Volume.sw_from_dB (_settings.get_double (LOUD_DECIBEL_KEY));
        if (loud_volume != vol)
            loud_volume = vol;

        var enabled = _settings.get_boolean(LOUD_ENABLED_KEY);
        if (loud_warning_enabled != enabled)
            loud_warning_enabled = enabled;
        }
}