mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00

1. taskmanager used to identify which entry should map to window in x11 environmrnt, listen to xevent in anohter thread, and handle those event when window create, destory, changed. use some way to identify which entry(desktopfile) should mapped to changed window. in wayland, connected plsamawindow signal(window created destoried. 2. use taskmanager instead of dbus in old dock code log: as title
30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
// 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
|
|
|
|
#ifndef DBUSUTIL_H
|
|
#define DBUSUTIL_H
|
|
#include <QString>
|
|
|
|
const QString xEventMonitorService = "org.deepin.dde.XEventMonitor1";
|
|
const QString xEventMonitorPath = "/org/deepin/dde/XEventMonitor1";
|
|
|
|
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";
|
|
|
|
const QString notificationService = "org.deepin.dde.Notification1";
|
|
const QString notificationPath = "/org/deepin/dde/Notification1";
|
|
const QString notificationInterface = "org.deepin.dde.Notification1";
|
|
|
|
const QString sessionManagerService = "org.deepin.dde.SessionManager1";
|
|
const QString sessionManagerPath = "/org/deepin/dde/SessionManager1";
|
|
const QString sessionManagerInterface = "org.deepin.dde.SessionManager1";
|
|
|
|
#endif // DBUSUTIL_H
|