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
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef PLUGINSITEM_H
|
|
#define PLUGINSITEM_H
|
|
|
|
#include "dockitem.h"
|
|
#include "pluginsiteminterface.h"
|
|
|
|
class QGSettings;
|
|
class PluginsItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginsItem(PluginsItemInterface *const pluginInter, const QString &itemKey, const QString &plginApi, QWidget *parent = nullptr);
|
|
~PluginsItem() override;
|
|
|
|
int itemSortKey() const;
|
|
void setItemSortKey(const int order) const;
|
|
void detachPluginWidget();
|
|
|
|
QString pluginName() const;
|
|
PluginsItemInterface::PluginSizePolicy pluginSizePolicy() const;
|
|
|
|
using DockItem::showContextMenu;
|
|
using DockItem::hidePopup;
|
|
|
|
ItemType itemType() const override;
|
|
QSize sizeHint() const override;
|
|
|
|
QWidget *centralWidget() const;
|
|
|
|
virtual void setDraging(bool bDrag) override;
|
|
|
|
public slots:
|
|
void refreshIcon() override;
|
|
|
|
private slots:
|
|
void onGSettingsChanged(const QString &key);
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
void enterEvent(QEvent *event) override;
|
|
void leaveEvent(QEvent *event) override;
|
|
bool eventFilter(QObject *watched, QEvent *event) override;
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
void invokedMenuItem(const QString &itemId, const bool checked) override;
|
|
void showPopupWindow(QWidget *const content, const bool model = false) override;
|
|
const QString contextMenu() const override;
|
|
QWidget *popupTips() override;
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
private:
|
|
void startDrag();
|
|
void mouseClicked();
|
|
bool checkGSettingsControl() const;
|
|
|
|
private:
|
|
PluginsItemInterface *const m_pluginInter;
|
|
QWidget *m_centralWidget;
|
|
|
|
const QString m_pluginApi;
|
|
const QString m_itemKey;
|
|
bool m_dragging;
|
|
|
|
static QPoint MousePressPoint;
|
|
const QGSettings *m_gsettings;
|
|
};
|
|
|
|
#endif // PLUGINSITEM_H
|