dde-dock/plugins/tray/system-trays/systemtrayitem.h
listenerri 091b52bccd fix: dock hide problem and remove old imp
efficient dock still hide in auto/smart hide mode while applet of
plugins is showing and mouse leaved

https://github.com/linuxdeepin/developer-center/issues/707

Change-Id: I373ce94e802f79e1430a636d5019b24fdbaa650b
2018-12-04 09:28:12 +08:00

104 lines
3.0 KiB
C++

/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: listenerri <listenerri@gmail.com>
*
* Maintainer: listenerri <listenerri@gmail.com>
*
* 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 SYSTEMTRAYITEM_H
#define SYSTEMTRAYITEM_H
#include "constants.h"
#include "abstracttraywidget.h"
#include "util/dockpopupwindow.h"
#include "dbus/dbusmenumanager.h"
#include "pluginsiteminterface.h"
class SystemTrayItem : public AbstractTrayWidget
{
Q_OBJECT
public:
SystemTrayItem(PluginsItemInterface* const pluginInter, const QString &itemKey, QWidget *parent = nullptr);
virtual ~SystemTrayItem();
public:
void setActive(const bool active) Q_DECL_OVERRIDE;
void updateIcon() Q_DECL_OVERRIDE;
const QImage trayImage() Q_DECL_OVERRIDE;
void sendClick(uint8_t mouseButton, int x, int y) Q_DECL_OVERRIDE;
inline TrayType trayTyep() const Q_DECL_OVERRIDE { return TrayType::SystemTray; }
QWidget *trayTipsWidget();
QWidget *trayPopupApplet();
const QString trayClickCommand();
const QString contextMenu() const;
void invokedMenuItem(const QString &menuId, const bool checked);
static void setDockPostion(const Dock::Position pos) { DockPosition = pos; }
QWidget *centralWidget() const;
void detachPluginWidget();
//Q_SIGNALS:
// void requestWindowAutoHide(const bool autoHide) const;
// void requestRefershWindowVisible() const;
protected:
bool event(QEvent *event) Q_DECL_OVERRIDE;
void enterEvent(QEvent *event) Q_DECL_OVERRIDE;
void leaveEvent(QEvent *event) Q_DECL_OVERRIDE;
void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
protected:
const QPoint popupMarkPoint() const;
const QPoint topleftPoint() const;
void hidePopup();
void hideNonModel();
void popupWindowAccept();
void showPopupApplet(QWidget * const applet);
virtual void showPopupWindow(QWidget * const content, const bool model = false);
virtual void showHoverTips();
protected Q_SLOTS:
void showContextMenu();
void onContextMenuAccepted();
private:
void updatePopupPosition();
private:
bool m_popupShown;
PluginsItemInterface* m_pluginInter;
DBusMenuManager *m_menuManagerInter;
QWidget *m_centralWidget;
QTimer *m_popupTipsDelayTimer;
QTimer *m_popupAdjustDelayTimer;
QPointer<QWidget> m_lastPopupWidget;
QString m_itemKey;
static Dock::Position DockPosition;
static QPointer<DockPopupWindow> PopupWindow;
};
#endif // SYSTEMTRAYITEM_H