Skip to content

Commit

Permalink
feat: move ddesktopservices to dtkgui
Browse files Browse the repository at this point in the history
move ddesktopservices from dtkwidget to dtkgui

Issue: linuxdeepin/dtk#134
  • Loading branch information
kegechen committed Nov 10, 2023
1 parent b15940d commit 3bccace
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 300 deletions.
1 change: 0 additions & 1 deletion include/DWidget/DDesktopServices

This file was deleted.

4 changes: 3 additions & 1 deletion include/util/ddesktopservices.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

DWIDGET_BEGIN_NAMESPACE

class DDesktopServices
class
D_DECL_DEPRECATED_X("Use Dtk::Gui::DDesktopServices")
DDesktopServices
{
public:

Expand Down
176 changes: 26 additions & 150 deletions src/util/ddesktopservices_linux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,245 +6,121 @@
#include <QtDBus/QtDBus>
#include <QDebug>
#include <QFile>
#if QT_VERSION < QT_VERSION_CHECK(6,0,0)
#include <QGSettings/QGSettings>
#endif

DWIDGET_BEGIN_NAMESPACE

#define EASY_CALL_DBUS(name) \
QDBusInterface *interface = fileManager1DBusInterface(); \
return interface && \
interface->call(#name, urls2uris(urls), startupId).type() != \
QDBusMessage::ErrorMessage;

static const QStringList SOUND_EFFECT_LIST {
"message",
"camera-shutter",
"trash-empty",
"x-deepin-app-sent-to-desktop",
"desktop-login",
"system-shutdown",
"desktop-logout",
"suspend-resume",
"audio-volume-change",
"power-unplug-battery-low",
"power-plug",
"power-unplug",
"device-added",
"device-removed",
"dialog-error",
};

static QDBusInterface *fileManager1DBusInterface()
{
static QDBusInterface interface(QStringLiteral("org.freedesktop.FileManager1"),
QStringLiteral("/org/freedesktop/FileManager1"),
QStringLiteral("org.freedesktop.FileManager1"));
return &interface;
}

static QStringList urls2uris(const QList<QUrl> &urls)
{
QStringList list;

list.reserve(urls.size());

for (const QUrl &url : urls) {
list << url.toString();
}

return list;
}

static QList<QUrl> path2urls(const QList<QString> &paths)
{
QList<QUrl> list;

list.reserve(paths.size());

for (const QString &path : paths) {
list << QUrl::fromLocalFile(path);
}

return list;
}

/*!
\brief Converts \a name from 'key-name' notation
to camel case 'keyName' or 'KeyName'.
This function converts GSettings key names to names
suitable for Qt getters and setters.
Well fsck this.
\a name key name
\return key name converted to camel case
\internal
*/
#if QT_VERSION < QT_VERSION_CHECK(6,0,0)
static QString GSettingsKeyToCamelCase(const QString name)
{
QStringList parts = name.split('-',Qt::SkipEmptyParts);
for (int i=1; i<parts.size(); ++i)
parts[i][0] = parts[i][0].toUpper();

return parts.join("");
}
#endif

static bool systemSoundEffectEnabled(const QString &name)
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QGSettings settings("com.deepin.dde.sound-effect");
#include <DDesktopServices>
using DGuiDesktopServices = DTK_GUI_NAMESPACE::DDesktopServices;
using DGuiSystemSoundEffect = DGuiDesktopServices::SystemSoundEffect;

const bool effEnabled = settings.get("enabled").toBool();
QString newName = GSettingsKeyToCamelCase(name);

if (effEnabled) {
const QStringList list = settings.keys();
if (!list.contains(newName)) {
return false;
}

return settings.get(newName).toBool();
}

return effEnabled;
#else
return false;
#endif
}
DWIDGET_BEGIN_NAMESPACE

bool DDesktopServices::showFolder(QString localFilePath, const QString &startupId)
{
return showFolder(QUrl::fromLocalFile(localFilePath), startupId);
return DGuiDesktopServices::showFolder(localFilePath, startupId);
}

bool DDesktopServices::showFolders(const QList<QString> localFilePaths, const QString &startupId)
{
return showFolders(path2urls(localFilePaths), startupId);
return DGuiDesktopServices::showFolders(localFilePaths, startupId);
}

bool DDesktopServices::showFolder(QUrl url, const QString &startupId)
{
return showFolders(QList<QUrl>() << url, startupId);
return DGuiDesktopServices::showFolder(url, startupId);
}

bool DDesktopServices::showFolders(const QList<QUrl> urls, const QString &startupId)
{
EASY_CALL_DBUS(ShowFolders)
return DGuiDesktopServices::showFolders(urls, startupId);
}

bool DDesktopServices::showFileItemPropertie(QString localFilePath, const QString &startupId)
{
return showFileItemPropertie(QUrl::fromLocalFile(localFilePath), startupId);
return DGuiDesktopServices::showFileItemProperty(localFilePath , startupId);
}

bool DDesktopServices::showFileItemProperties(const QList<QString> localFilePaths, const QString &startupId)
{
return showFileItemProperties(path2urls(localFilePaths), startupId);
return DGuiDesktopServices::showFileItemProperties(localFilePaths, startupId);
}

bool DDesktopServices::showFileItemPropertie(QUrl url, const QString &startupId)
{
return showFileItemProperties(QList<QUrl>() << url, startupId);
return DGuiDesktopServices::showFileItemProperty(url, startupId);
}

bool DDesktopServices::showFileItemProperties(const QList<QUrl> urls, const QString &startupId)
{
EASY_CALL_DBUS(ShowItemProperties)
return DGuiDesktopServices::showFileItemProperties(urls, startupId);
}

bool DDesktopServices::showFileItem(QString localFilePath, const QString &startupId)
{
return showFileItem(QUrl::fromLocalFile(localFilePath), startupId);
return DGuiDesktopServices::showFileItem(localFilePath, startupId);
}

bool DDesktopServices::showFileItems(const QList<QString> localFilePaths, const QString &startupId)
{
return showFileItems(path2urls(localFilePaths), startupId);
return DGuiDesktopServices::showFileItems(localFilePaths, startupId);
}

bool DDesktopServices::showFileItem(QUrl url, const QString &startupId)
{
return showFileItems(QList<QUrl>() << url, startupId);
return DGuiDesktopServices::showFileItem(url, startupId);
}

bool DDesktopServices::showFileItems(const QList<QUrl> urls, const QString &startupId)
{
EASY_CALL_DBUS(ShowItems)
return DGuiDesktopServices::showFileItems(urls, startupId);
}

bool DDesktopServices::trash(QString localFilePath)
{
return trash(QUrl::fromLocalFile(localFilePath));
return DGuiDesktopServices::trash(localFilePath);
}

bool DDesktopServices::trash(const QList<QString> localFilePaths)
{
return trash(path2urls(localFilePaths));
return DGuiDesktopServices::trash(localFilePaths);
}

bool DDesktopServices::trash(QUrl url)
{
return trash(QList<QUrl>() << url);
return DGuiDesktopServices::trash(url);
}

bool DDesktopServices::trash(const QList<QUrl> urls)
{
QDBusInterface *interface = fileManager1DBusInterface();
return interface && interface->call("Trash", urls2uris(urls)).type() != QDBusMessage::ErrorMessage;
return DGuiDesktopServices::trash(urls);
}

bool DDesktopServices::playSystemSoundEffect(const DDesktopServices::SystemSoundEffect &effect)
{
return playSystemSoundEffect(SOUND_EFFECT_LIST.at(static_cast<int>(effect)));
return DGuiDesktopServices::playSystemSoundEffect(DGuiSystemSoundEffect(effect));
}

bool DDesktopServices::playSystemSoundEffect(const QString &name)
{
if (!systemSoundEffectEnabled(name)) {
return false;
}

return previewSystemSoundEffect(name);
return DGuiDesktopServices::playSystemSoundEffect(name);
}

bool DDesktopServices::previewSystemSoundEffect(const DDesktopServices::SystemSoundEffect &effect)
{
return previewSystemSoundEffect(SOUND_EFFECT_LIST.at(static_cast<int>(effect)));
return DGuiDesktopServices::previewSystemSoundEffect(DGuiSystemSoundEffect(effect));
}

bool DDesktopServices::previewSystemSoundEffect(const QString &name)
{
if (name.isEmpty()) {
return false;
}

#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
const auto& infc = QDBusConnection::sessionBus().interface();
QStringList activatableServiceNames = infc->activatableServiceNames();
bool isNewInterface = activatableServiceNames.contains(QLatin1String("org.deepin.dde.SoundEffect1"));
#else
bool isNewInterface = false; // Qt 5.14 以下就直接用旧的接口
#endif
const QLatin1String service(isNewInterface ? "org.deepin.dde.SoundEffect1" :"com.deepin.daemon.SoundEffect");
const QLatin1String path(isNewInterface ? "/org/deepin/dde/SoundEffect1" : "/com/deepin/daemon/SoundEffect");
const QLatin1String interface(isNewInterface ? "org.deepin.dde.SoundEffect1" :"com.deepin.daemon.SoundEffect");

// 使用后端 dbus 接口播放系统音频,音频存放目录: /usr/share/sounds/deepin/stereo/
return QDBusInterface(service, path, interface).call("PlaySound", name).type() != QDBusMessage::ErrorMessage;
return DGuiDesktopServices::previewSystemSoundEffect(name);
}

QString DDesktopServices::getNameByEffectType(const DDesktopServices::SystemSoundEffect &effect)
{
return SOUND_EFFECT_LIST.at(static_cast<int>(effect));
return DGuiDesktopServices::getNameByEffectType(DGuiSystemSoundEffect(effect));
}

QString DDesktopServices::errorMessage()
{
return fileManager1DBusInterface()->lastError().message();
return DGuiDesktopServices::errorMessage();
}

DWIDGET_END_NAMESPACE
Loading

0 comments on commit 3bccace

Please sign in to comment.