/* * Copyright (C) 2019 ~ 2019 Deepin Technology Co., Ltd. * * Author: xuwenw * * Maintainer: <@xuwenw.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 . */ #ifndef MAINPANELCONTROL_H #define MAINPANELCONTROL_H #include "constants.h" #include #include #include #include using namespace Dock; using Gesture = com::deepin::daemon::Gesture; class TrayPluginItem; class PluginsItem; class DesktopWidget : public QWidget { Q_OBJECT public: explicit DesktopWidget(QWidget *parent) : QWidget(parent) { } }; class DockItem; class PlaceholderItem; class AppDragWidget; class MainPanelControl : public QWidget { Q_OBJECT public: explicit MainPanelControl(QWidget *parent = nullptr); ~MainPanelControl() override; void setPositonValue(Position position); void setDisplayMode(DisplayMode dislayMode); void getTrayVisableItemCount(); void updatePluginsLayout(); public slots: void insertItem(const int index, DockItem *item); void removeItem(DockItem *item); void itemUpdated(DockItem *item); signals: void itemMoved(DockItem *sourceItem, DockItem *targetItem); void itemAdded(const QString &appDesktop, int idx); protected: void dragMoveEvent(QDragMoveEvent *e) override; void dragEnterEvent(QDragEnterEvent *e) override; void dragLeaveEvent(QDragLeaveEvent *e) override; void dropEvent(QDropEvent *) override; bool eventFilter(QObject *watched, QEvent *event) override; void mousePressEvent(QMouseEvent *e) override; void resizeEvent(QResizeEvent *event) override; private: void initUi(); void updateAppAreaSonWidgetSize(); void updateMainPanelLayout(); void updateDisplayMode(); void moveAppSonWidget(); void addFixedAreaItem(int index, QWidget *wdg); void removeFixedAreaItem(QWidget *wdg); void addAppAreaItem(int index, QWidget *wdg); void removeAppAreaItem(QWidget *wdg); void addTrayAreaItem(int index, QWidget *wdg); void removeTrayAreaItem(QWidget *wdg); void addPluginAreaItem(int index, QWidget *wdg); void removePluginAreaItem(QWidget *wdg); void startDrag(DockItem *); DockItem *dropTargetItem(DockItem *sourceItem, QPoint point); void moveItem(DockItem *sourceItem, DockItem *targetItem); void handleDragMove(QDragMoveEvent *e, bool isFilter); void paintEvent(QPaintEvent *event) override; void resizeDockIcon(); void calcuDockIconSize(int w, int h, PluginsItem *trashPlugin, PluginsItem *shutdownPlugin, PluginsItem *keyboardPlugin, PluginsItem *notificationPlugin); void resizeDesktopWidget(); bool checkNeedShowDesktop(); bool appIsOnDock(const QString &appDesktop); private: QBoxLayout *m_mainPanelLayout; QWidget *m_fixedAreaWidget; // 固定区域 QBoxLayout *m_fixedAreaLayout; // QLabel *m_fixedSpliter; // 固定区域与应用区域间的分割线 QWidget *m_appAreaWidget; // 应用区域 QWidget *m_appAreaSonWidget; // 子应用区域 QBoxLayout *m_appAreaSonLayout; // QLabel *m_appSpliter; // 应用区域与托盘区域间的分割线 QWidget *m_trayAreaWidget; // 托盘区域 QBoxLayout *m_trayAreaLayout; // QLabel *m_traySpliter; // 托盘区域与插件区域间的分割线 QWidget *m_pluginAreaWidget; // 插件区域 QBoxLayout *m_pluginLayout; // DesktopWidget *m_desktopWidget; // 桌面预览区域 Position m_position; QPointer m_placeholderItem; QString m_draggingMimeKey; AppDragWidget *m_appDragWidget; DisplayMode m_dislayMode; QPoint m_mousePressPos; int m_trayIconCount; TrayPluginItem *m_tray = nullptr; bool m_isHover; // 判断鼠标是否移到desktop区域 bool m_needRecoveryWin; // 判断鼠标移出desktop区域是否恢复之前窗口 int m_dragIndex = -1; // 记录应用区域被拖拽图标的位置 PluginsItem *m_trashItem; // 垃圾箱插件(需要特殊处理一下) }; #endif // MAINPANELCONTROL_H