/* * Copyright (C) 2011 ~ 2017 Deepin Technology Co., Ltd. * * Author: sbw * * Maintainer: sbw * * 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 . */ #ifndef DOCKPOPUPWINDOW_H #define DOCKPOPUPWINDOW_H #include "dbus/dbusxmousearea.h" #include "dbus/dbusdisplay.h" #include #include DWIDGET_USE_NAMESPACE 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; protected: void showEvent(QShowEvent *e); void enterEvent(QEvent *e); void mousePressEvent(QMouseEvent *e); bool eventFilter(QObject *o, QEvent *e); private slots: void globalMouseRelease(int button, int x, int y, const QString &id); void registerMouseEvent(); void unRegisterMouseEvent(); void compositeChanged(); private: bool m_model; QPoint m_lastPoint; QString m_mouseAreaKey; QTimer *m_acceptDelayTimer; DBusXMouseArea *m_mouseInter; DBusDisplay *m_displayInter; DWindowManagerHelper *m_wmHelper; }; #endif // DOCKPOPUPWINDOW_H