~mterry/unity8/power-button-on-lock

« back to all changes in this revision

Viewing changes to plugins/Unity/DashCommunicator/dbusdashcommunicatorservice.h

  • Committer: Michael Terry
  • Date: 2014-11-24 15:25:42 UTC
  • mfrom: (1368.1.82 unity8)
  • Revision ID: michael.terry@canonical.com-20141124152542-5cysva8ds3qfula6
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifndef DBUSDASHCOMMUNICATORSERVICE_H
18
18
#define DBUSDASHCOMMUNICATORSERVICE_H
19
19
 
20
 
#include <QObject>
 
20
#include "unitydbusobject.h"
21
21
 
22
 
class DBusDashCommunicatorService: public QObject
 
22
class DBusDashCommunicatorService: public UnityDBusObject
23
23
{
24
24
    Q_OBJECT
25
25
    Q_CLASSINFO("D-Bus Interface", "com.canonical.Unity.DashCommunicator")
29
29
    ~DBusDashCommunicatorService();
30
30
 
31
31
Q_SIGNALS:
32
 
    void setCurrentScopeRequested(const QString &scopeId, bool animate, bool isSwipe);
 
32
    void setCurrentScopeRequested(int index, bool animate, bool isSwipe);
33
33
 
34
34
public Q_SLOTS:
35
 
    Q_SCRIPTABLE void SetCurrentScope(const QString &scopeId, bool animate, bool isSwipe);
 
35
    Q_SCRIPTABLE void SetCurrentScope(int index, bool animate, bool isSwipe);
36
36
 
37
37
};
38
38