2023-02-16 13:51:55 +08:00
|
|
|
// Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2022-06-22 10:06:16 +08:00
|
|
|
#ifndef DBUSUTIL_H
|
|
|
|
#define DBUSUTIL_H
|
|
|
|
|
|
|
|
#include "dockinterface.h"
|
|
|
|
#include "entryinterface.h"
|
|
|
|
|
|
|
|
using DockInter = org::deepin::dde::daemon::DdeDock;
|
|
|
|
using DockEntryInter = org::deepin::dde::daemon::dock::DockEntry;
|
2022-08-19 11:59:01 +00:00
|
|
|
|
2022-11-18 17:08:32 +08:00
|
|
|
const QString xEventMonitorService = "org.deepin.dde.XEventMonitor1";
|
|
|
|
const QString xEventMonitorPath = "/org/deepin/dde/XEventMonitor1";
|
2022-08-19 11:59:01 +00:00
|
|
|
|
|
|
|
const QString launcherService = "org.deepin.dde.Launcher1";
|
|
|
|
const QString launcherPath = "/org/deepin/dde/Launcher1";
|
|
|
|
const QString launcherInterface = "org.deepin.dde.Launcher1";
|
|
|
|
|
|
|
|
const QString controllCenterService = "org.deepin.dde.ControlCenter1";
|
|
|
|
const QString controllCenterPath = "/org/deepin/dde/ControlCenter1";
|
|
|
|
const QString controllCenterInterface = "org.deepin.dde.ControlCenter1";
|
|
|
|
|
2022-11-18 17:08:32 +08:00
|
|
|
const QString notificationService = "org.deepin.dde.Notification1";
|
|
|
|
const QString notificationPath = "/org/deepin/dde/Notification1";
|
|
|
|
const QString notificationInterface = "org.deepin.dde.Notification1";
|
2022-08-19 11:59:01 +00:00
|
|
|
|
2022-11-18 17:08:32 +08:00
|
|
|
const QString sessionManagerService = "org.deepin.dde.SessionManager1";
|
|
|
|
const QString sessionManagerPath = "/org/deepin/dde/SessionManager1";
|
|
|
|
const QString sessionManagerInterface = "org.deepin.dde.SessionManager1";
|
2022-06-22 10:06:16 +08:00
|
|
|
|
|
|
|
inline const QString dockServiceName()
|
|
|
|
{
|
|
|
|
return QString("org.deepin.dde.daemon.Dock1");
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const QString dockServicePath()
|
|
|
|
{
|
|
|
|
return QString("/org/deepin/dde/daemon/Dock1");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DBUSUTIL_H
|