mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00

适配v23并完善接口内容 Log: 完善onboard插件接口 Influence: 快捷面板观察onboard插件是否正常显示 Task: https://pms.uniontech.com/task-view-212611.html Change-Id: Ic3db0b0b880b20327a210ac103f116e58d7ffd6d
57 lines
1.6 KiB
C++
57 lines
1.6 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 ONBOARDITEM_H
|
|
#define ONBOARDITEM_H
|
|
|
|
#include "constants.h"
|
|
|
|
#include <QWidget>
|
|
#include <QIcon>
|
|
|
|
class OnboardItem : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OnboardItem(QWidget *parent = nullptr);
|
|
QPixmap iconPixmap(int iconSize) const;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
private:
|
|
const QPixmap loadSvg(const QString &fileName, const QSize &size) const;
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
void leaveEvent(QEvent *event) override;
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
private:
|
|
Dock::DisplayMode m_displayMode;
|
|
bool m_hover;
|
|
bool m_pressed;
|
|
QIcon m_icon;
|
|
};
|
|
|
|
#endif // ONBOARDITEM_H
|