mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00

Modify project to pass the REUSE check Log: Modify project to pass the REUSE check Task: https://pms.uniontech.com/task-view-185215.html Change-Id: Ie954cf985f16c1a243bfc912aa7458c6e85ce9de
30 lines
671 B
C++
30 lines
671 B
C++
// SPDX-FileCopyrightText: 2018 - 2022 UnionTech Software Technology Co., Ltd.
|
||
//
|
||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
||
#ifndef DOCKAPPLICATION_H
|
||
#define DOCKAPPLICATION_H
|
||
|
||
#include <DApplication>
|
||
|
||
DWIDGET_USE_NAMESPACE
|
||
#ifdef DCORE_NAMESPACE
|
||
DCORE_USE_NAMESPACE
|
||
#else
|
||
DUTIL_USE_NAMESPACE
|
||
#endif
|
||
|
||
/**
|
||
* @brief The DockApplication class
|
||
* 本类通过重写application的notify函数监控应用的鼠标事件,判断是否为触屏状态
|
||
*/
|
||
class DockApplication : public DApplication
|
||
{
|
||
Q_OBJECT
|
||
public:
|
||
explicit DockApplication(int &argc, char **argv);
|
||
virtual bool notify(QObject *obj, QEvent *event) override;
|
||
};
|
||
|
||
#endif // DOCKAPPLICATION_H
|