Unity 8
 All Classes Functions
dashconnection.cpp
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 
17 #include "dashconnection.h"
18 
19 #include <QDBusInterface>
20 #include <QDBusPendingCall>
21 
22 DashConnection::DashConnection(const QString &service, const QString &path, const QString &interface, QObject *parent):
23  AbstractDBusServiceMonitor(service, path, interface, SessionBus, parent)
24 {
25 
26 }
27 
28 void DashConnection::setCurrentScope(const QString &scopeId, bool animate, bool isSwipe)
29 {
30  if (dbusInterface()) {
31  dbusInterface()->asyncCall("SetCurrentScope", scopeId, animate, isSwipe);
32  }
33 }