18#ifndef DFILESERVICES_H
19#define DFILESERVICES_H
21#include <dtkcore_global.h>
30 static bool showFolder(QString localFilePath,
const QString &startupId = QString());
31 static bool showFolders(
const QList<QString> localFilePaths,
const QString &startupId = QString());
32 static bool showFolder(QUrl url,
const QString &startupId = QString());
33 static bool showFolders(
const QList<QUrl> urls,
const QString &startupId = QString());
35 static bool showFileItemPropertie(QString localFilePath,
const QString &startupId = QString());
36 static bool showFileItemProperties(
const QList<QString> localFilePaths,
const QString &startupId = QString());
37 static bool showFileItemPropertie(QUrl url,
const QString &startupId = QString());
38 static bool showFileItemProperties(
const QList<QUrl> urls,
const QString &startupId = QString());
40 static bool showFileItem(QString localFilePath,
const QString &startupId = QString());
41 static bool showFileItems(
const QList<QString> localFilePaths,
const QString &startupId = QString());
42 static bool showFileItem(QUrl url,
const QString &startupId = QString());
43 static bool showFileItems(
const QList<QUrl> urls,
const QString &startupId = QString());
45 static bool trash(QString localFilePath);
46 static bool trash(
const QList<QString> localFilePaths);
47 static bool trash(QUrl urlstartupId);
48 static bool trash(
const QList<QUrl> urls);
50 static QString errorMessage();
Definition: dfileservices.h:28