#ifndef DBUSINTERFACE_H #define DBUSINTERFACE_H #include 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