blob: 9b183384d903f987ac2b8c22a2272edb348e9eae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* SPDX-FileCopyrightText: 2015 Ashish Bansal <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DBUSINTERFACE_H
#define DBUSINTERFACE_H
#include <QObject>
class DBusInterface : QObject
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.freedesktop.FileManager1")
public:
DBusInterface();
Q_SCRIPTABLE void ShowFolders(const QStringList& uriList, const QString& startUpId);
Q_SCRIPTABLE void ShowItems(const QStringList& uriList, const QString& startUpId);
Q_SCRIPTABLE void ShowItemProperties(const QStringList& uriList, const QString& startUpId);
/**
* Set whether this interface has been created by dolphin --daemon.
*/
void setAsDaemon();
/**
* @return Whether this interface has been created by dolphin --daemon.
*/
bool isDaemon() const;
private:
bool m_isDaemon = false;
};
#endif // DBUSINTERFACE_H
|