* @p preferredService needs to support the org.kde.dolphin.MainWindow dbus interface with the /dolphin/Dolphin_1 path.
* Returns true if the URLs were successfully attached.
*/
- bool attachToExistingInstance(const QList<QUrl>& inputUrls, bool openFiles, bool splitView, const QString& preferredService = QString());
+ bool attachToExistingInstance(const QList<QUrl>& inputUrls, bool openFiles, bool splitView, const QString& preferredService, const QString &activationToken);
/**
* Returns a QVector with all GUI-capable Dolphin instances
*/
QVector<QPair<QSharedPointer<OrgKdeDolphinMainWindowInterface>, QStringList>> dolphinGuiInstances(const QString& preferredService);
+ QPair<QString, Qt::SortOrder> sortOrderForUrl(QUrl &url);
+
/**
* TODO: Move this somewhere global to all KDE apps, not just Dolphin
*/
const int LAYOUT_SPACING_SMALL = 2;
}
+enum Animated {
+ WithAnimation,
+ WithoutAnimation
+};
+
class GlobalConfig : public QObject
{
Q_OBJECT