dde-dock/frame/item/launcheritem.h
范朋程 147fed9107 feat: 修改拼写错误
拼写错误,已纠正

Log:
Change-Id: Ieb8c831196be5d3bb1ca87eb10ec13497525248c
2021-03-06 18:43:29 +08:00

69 lines
1.8 KiB
C++

/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <sbw@sbw.so>
*
* Maintainer: sbw <sbw@sbw.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 <http://www.gnu.org/licenses/>.
*/
#ifndef LAUNCHERITEM_H
#define LAUNCHERITEM_H
#include "dockitem.h"
#include "../widgets/tipswidget.h"
#include "qgsettingsinterface.h"
#include <com_deepin_dde_launcher.h>
using LauncherInter = com::deepin::dde::Launcher;
class QGSettingsInterface;
class LauncherItem : public DockItem
{
Q_OBJECT
public:
explicit LauncherItem(QGSettingsInterface *interface, QWidget *parent = nullptr);
~ LauncherItem() override;
inline ItemType itemType() const override {return Launcher;}
void refreshIcon() override;
protected:
void showEvent(QShowEvent* event) override;
private:
void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
void mousePressEvent(QMouseEvent *e) override;
void mouseReleaseEvent(QMouseEvent *e) override;
QWidget *popupTips() override;
void onGSettingsChanged(const QString& key);
bool checkGSettingsControl() const;
private:
QPixmap m_icon;
LauncherInter *m_launcherInter;
TipsWidget *m_tips;
QGSettingsInterface* m_gsettings;
};
#endif // LAUNCHERITEM_H