Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/model/devices/speaker.py
blob: 73e4f6e3422262b1758e313a3db4a59ce521406c (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
# Copyright (C) 2008 Martin Dengler
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import gobject

from jarabe.hardware import hardwaremanager
from jarabe.model.devices import device

class Device(device.Device):
    __gproperties__ = {
        'level'   : (int, None, None, 0, 100, 0, gobject.PARAM_READWRITE),
        'muted'   : (bool, None, None, False, gobject.PARAM_READWRITE),
    }

    def __init__(self):
        device.Device.__init__(self)
        self._manager = hardwaremanager.get_manager()
        self._manager.connect('muted-changed', self.__muted_changed_cb)
        self._manager.connect('volume-changed', self.__volume_changed_cb)

    def __muted_changed_cb(self, sender_, old_state_, new_state_):
        self.notify('muted')

    def __volume_changed_cb(self, sender_, old_volume_, new_volume_):
        self.notify('level')

    def _get_level(self):
        return self._manager.get_volume()

    def _set_level(self, new_volume):
        self._manager.set_volume(new_volume)

    def _get_muted(self):
        return self._manager.get_muted()

    def _set_muted(self, mute):
        self._manager.set_muted(mute)

    def get_type(self):
        return 'speaker'

    def do_get_property(self, pspec):
        if pspec.name == "level":
            return self._get_level()
        elif pspec.name == "muted":
            return self._get_muted()

    def do_set_property(self, pspec, value):
        if pspec.name == "level":
            self._set_level(value)
        elif pspec.name == "muted":
            self._set_muted(value)