~mterry/indicator-sound/snap-root

« back to all changes in this revision

Viewing changes to tests/service-mocks/accounts-mock/AccountsServiceSoundMock.cpp

  • Committer: CI Train Bot
  • Author(s): Xavi Garcia Mena
  • Date: 2016-01-05 15:08:02 UTC
  • mfrom: (513.1.2 restore-osd-notifications)
  • Revision ID: ci-train-bot@canonical.com-20160105150802-9n0tg5ipbbq2qbab
This branch just readds the OSD notifications code, that was reverted in trunk as the corresponding silo was also rolled back after landing.
Approved by: PS Jenkins bot, Xavi Garcia

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Xavi Garcia <xavi.garcia.mena@canonical.com>
 
17
 */
 
18
#include <QDebug>
 
19
#include <QDBusMessage>
 
20
#include <QDBusConnection>
 
21
 
 
22
#include "AccountsServiceSoundMock.h"
 
23
#include "AccountsDefs.h"
 
24
 
 
25
using namespace ubuntu::indicators::testing;
 
26
 
 
27
AccountsServiceSoundMock::AccountsServiceSoundMock(QObject* parent)
 
28
    : QObject(parent)
 
29
    , volume_(0.0)
 
30
{
 
31
}
 
32
 
 
33
AccountsServiceSoundMock::~AccountsServiceSoundMock() = default;
 
34
 
 
35
double AccountsServiceSoundMock::volume() const
 
36
{
 
37
    return volume_;
 
38
}
 
39
 
 
40
void AccountsServiceSoundMock::setVolume(double volume)
 
41
{
 
42
    volume_ = volume;
 
43
    notifier_.notifyPropertyChanged(QDBusConnection::systemBus(),
 
44
                                    ACCOUNTS_SOUND_INTERFACE,
 
45
                                    USER_PATH,
 
46
                                    "Volume",
 
47
                                    property("Volume"));
 
48
}