dde-dock/plugins/onboard/onboarditem.h
donghualin 60e5e1b749 fix: 优化插件图标样式
鼠标进入的时候,图标显示底色

Log: 优化图标样式
Influence: 图标样式
Task: https://pms.uniontech.com/bug-view-181945.html
Change-Id: I9eb594119f0dbef36aee64ae4fd7a99fa12389c7
2023-01-12 13:55:48 +08:00

61 lines
1.7 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 <DGuiApplicationHelper>
#include <QWidget>
#include <QIcon>
DGUI_USE_NAMESPACE
class OnboardItem : public QWidget
{
Q_OBJECT
public:
explicit OnboardItem(QWidget *parent = nullptr);
QPixmap iconPixmap(QSize size, DGuiApplicationHelper::ColorType themeType) 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