dolphin/src/dbusinterface.cpp
Marco Martin dbabe22249 Add SortOrderForUrl method to DBus interface
adds a method to ask what's the sorting strategy (column and order) for a particular Url, as Dolphin can have directory-specific sorting strategies

This makes possible for other apps that have lists of files, like Gwenview to use the same sorting when invoked from dolphin, ie opening an image

CCBUG:236059
2021-06-04 12:04:14 +00:00

83 lines
2.5 KiB
C++

/*
* SPDX-FileCopyrightText: 2015 Ashish Bansal <bansal.ashish096@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "dbusinterface.h"
#include "global.h"
#include "dolphin_generalsettings.h"
#include <KPropertiesDialog>
#include <QApplication>
#include <QDBusConnection>
#include <QDBusInterface>
#include <QDBusConnectionInterface>
DBusInterface::DBusInterface() :
QObject()
{
QDBusConnection::sessionBus().registerObject(QStringLiteral("/org/freedesktop/FileManager1"), this,
QDBusConnection::ExportScriptableContents | QDBusConnection::ExportAdaptors);
QDBusConnection::sessionBus().interface()->registerService(QStringLiteral("org.freedesktop.FileManager1"),
QDBusConnectionInterface::QueueService);
}
void DBusInterface::ShowFolders(const QStringList& uriList, const QString& startUpId)
{
Q_UNUSED(startUpId)
const QList<QUrl> urls = Dolphin::validateUris(uriList);
if (urls.isEmpty()) {
return;
}
const auto serviceName = isDaemon() ? QString() : QStringLiteral("org.kde.dolphin-%1").arg(QCoreApplication::applicationPid());
if(!Dolphin::attachToExistingInstance(urls, false, GeneralSettings::splitView(), serviceName)) {
Dolphin::openNewWindow(urls);
}
}
void DBusInterface::ShowItems(const QStringList& uriList, const QString& startUpId)
{
Q_UNUSED(startUpId)
const QList<QUrl> urls = Dolphin::validateUris(uriList);
if (urls.isEmpty()) {
return;
}
const auto serviceName = isDaemon() ? QString() : QStringLiteral("org.kde.dolphin-%1").arg(QCoreApplication::applicationPid());
if(!Dolphin::attachToExistingInstance(urls, true, GeneralSettings::splitView(), serviceName)) {
Dolphin::openNewWindow(urls, nullptr, Dolphin::OpenNewWindowFlag::Select);
};
}
void DBusInterface::ShowItemProperties(const QStringList& uriList, const QString& startUpId)
{
Q_UNUSED(startUpId)
const QList<QUrl> urls = Dolphin::validateUris(uriList);
if (!urls.isEmpty()) {
KPropertiesDialog::showDialog(urls);
}
}
void DBusInterface::SortOrderForUrl(const QString &url, QString &role, QString &order)
{
QUrl qurl(url);
auto sort = Dolphin::sortOrderForUrl(qurl);
role = sort.first;
if (sort.second == Qt::AscendingOrder) {
order = QStringLiteral("ascending");
} else {
order = QStringLiteral("descending");
}
}
void DBusInterface::setAsDaemon()
{
m_isDaemon = true;
}
bool DBusInterface::isDaemon() const
{
return m_isDaemon;
}