dde-dock/plugins/pluginmanager/largerquickitem.h
2023-02-16 15:08:28 +08:00

68 lines
1.6 KiB
C++

// Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef LARGERQUICKITEM_H
#define LARGERQUICKITEM_H
#include <quicksettingitem.h>
class QuickIconWidget;
class QWidget;
class QLabel;
// 插件在快捷面板中的展示样式,这个为大图标,展示为两列的那种,例如网络和蓝牙
class LargerQuickItem : public QuickSettingItem
{
Q_OBJECT
public:
LargerQuickItem(PluginsItemInterface *const pluginInter, const QString &itemKey, QWidget *parent = nullptr);
~LargerQuickItem() override;
void doUpdate() override;
void detachPlugin() override;
QuickItemStyle type() const override;
protected:
bool eventFilter(QObject *obj, QEvent *event) override;
void showEvent(QShowEvent *event) override;
void resizeEvent(QResizeEvent *event) override;
private:
void initUi();
QString expandFileName() const;
private:
QuickIconWidget *m_iconWidget;
QLabel *m_nameLabel;
QLabel *m_stateLabel;
QWidget *m_itemWidgetParent;
};
/**
* @brief The QuickIconWidget class
* 图标的Widget
*/
class QuickIconWidget : public QWidget
{
Q_OBJECT
public:
explicit QuickIconWidget(PluginsItemInterface *pluginInter, const QString &itemKey, QWidget *parent = Q_NULLPTR);
protected:
void paintEvent(QPaintEvent *event) override;
private:
QColor foregroundColor() const;
QPixmap pluginIcon(bool contailGrab = false) const;
private:
PluginsItemInterface *m_pluginInter;
QString m_itemKey;
};
#endif // MULTIQUICKITEM_H