~bfiller/telepathy-ofono/no-change-rebuild

« back to all changes in this revision

Viewing changes to powerdaudiomodemediator.cpp

  • Committer: Gustavo Pichorim Boiko
  • Date: 2014-10-28 21:06:42 UTC
  • mfrom: (99.1.19 telepathy-ofono)
  • Revision ID: gustavo.boiko@canonical.com-20141028210642-lacsg4e6yqv2f8bz
Sync with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright (C) 2014 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors: Andreas Pokorny <andreas.pokorny@canonical.com>
 
17
 */
 
18
 
 
19
#include "powerdaudiomodemediator.h"
 
20
 
 
21
PowerDAudioModeMediator::PowerDAudioModeMediator(PowerD &powerd)
 
22
    : powerd(powerd)
 
23
{
 
24
}
 
25
 
 
26
void PowerDAudioModeMediator::audioModeChanged(const QString &mode)
 
27
{
 
28
    bool enableProximity = !(mode == "speaker" || mode == "bluetooth");
 
29
 
 
30
    if (mProximityEnabled != enableProximity)
 
31
    {
 
32
        mProximityEnabled = enableProximity;
 
33
        apply();
 
34
    }
 
35
}
 
36
 
 
37
void PowerDAudioModeMediator::apply() const
 
38
{
 
39
    if (mProximityEnabled)
 
40
        powerd.enableProximityHandling();
 
41
    else
 
42
        powerd.disableProximityHandling();
 
43
}
 
44
 
 
45
void PowerDAudioModeMediator::audioOutputClosed()
 
46
{
 
47
    if (mProximityEnabled)
 
48
    {
 
49
        mProximityEnabled = false;
 
50
        apply();
 
51
    }
 
52
}