19 lines
523 B
C++
19 lines
523 B
C++
#ifndef DBUSINTERFACE_H
|
|
#define DBUSINTERFACE_H
|
|
|
|
#include <QObject>
|
|
|
|
class DBusInterface : QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.freedesktop.FileManager1")
|
|
|
|
public:
|
|
explicit 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);
|
|
};
|
|
|
|
#endif // DBUSINTERFACE_H
|