~mterry/+junk/u8.2

« back to all changes in this revision

Viewing changes to plugins/Unity/Launcher/dbusinterface.h

  • Committer: Michael Terry
  • Date: 2014-11-17 14:56:04 UTC
  • mfrom: (1317.1.118 unity8)
  • Revision ID: michael.terry@canonical.com-20141117145604-96dn9p5nwkifq2f4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
#include "launcheritem.h"
21
 
 
22
 
#include <QDBusVirtualObject>
 
21
#include "unitydbusvirtualobject.h"
23
22
 
24
23
class LauncherModel;
25
24
 
26
 
class DBusInterface: public QDBusVirtualObject
 
25
class DBusInterface: public UnityDBusVirtualObject
27
26
{
28
27
    Q_OBJECT
29
28
public:
43
42
    static QString decodeAppId(const QString& path);
44
43
    static QString encodeAppId(const QString& appId);
45
44
 
46
 
    void emitPropChangedDbus(const QString& appId, const QString& property, const QVariant &value);
47
 
 
48
45
    LauncherModel *m_launcherModel;
49
46
 
50
47
};