mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-05-30 22:01:41 +00:00

V23接口改造适配 Log: V23接口改造适配 Influence: 无 Task: https://pms.uniontech.com/task-view-207483.html Change-Id: Ide530c023ea41f86fad2e8001ec67f1afaa897ab
83 lines
2.3 KiB
C++
83 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DOCKPOPUPWINDOW_H
|
|
#define DOCKPOPUPWINDOW_H
|
|
|
|
#include "org_deepin_dde_xeventmonitor1.h"
|
|
|
|
#include <darrowrectangle.h>
|
|
#include <dregionmonitor.h>
|
|
#include <DWindowManagerHelper>
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
DGUI_USE_NAMESPACE
|
|
|
|
using XEventMonitor = org::deepin::dde::XEventMonitor1;
|
|
|
|
class DockPopupWindow : public Dtk::Widget::DArrowRectangle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DockPopupWindow(QWidget *parent = 0);
|
|
~DockPopupWindow();
|
|
|
|
bool model() const;
|
|
|
|
void setContent(QWidget *content);
|
|
|
|
public slots:
|
|
void show(const QPoint &pos, const bool model = false);
|
|
void show(const int x, const int y);
|
|
void hide();
|
|
|
|
signals:
|
|
void accept() const;
|
|
// 在把专业版的仓库降级到debian的stable时, dock出现了一个奇怪的问题:
|
|
// 在plugins/tray/system-trays/systemtrayitem.cpp中的showPopupWindow函数中
|
|
// 无法连接到上面这个信号: "accept", qt给出一个运行时警告提示找不到信号
|
|
// 目前的解决方案就是在下面增加了这个信号
|
|
void unusedSignal();
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *e);
|
|
void enterEvent(QEvent *e);
|
|
bool eventFilter(QObject *o, QEvent *e);
|
|
void blockButtonRelease();
|
|
|
|
private slots:
|
|
void compositeChanged();
|
|
void ensureRaised();
|
|
void onButtonPress(int type, int x, int y, const QString &key);
|
|
|
|
private:
|
|
bool m_model;
|
|
QPoint m_lastPoint;
|
|
|
|
XEventMonitor *m_eventMonitor;
|
|
QString m_eventKey;
|
|
DWindowManagerHelper *m_wmHelper;
|
|
bool m_enableMouseRelease;
|
|
};
|
|
|
|
#endif // DOCKPOPUPWINDOW_H
|