dde-dock/frame/item/components/floatingpreview.h
shaojun c33693ad6e feat: 窗口预览标题增加可配置项
根据gsetting配置窗口标题的显示模式

Log: 窗口预览图的标题在特效模式下可配置显示模式
Task: https://pms.uniontech.com/zentao/task-view-85600.html
Change-Id: I3fa043b6485c6d92d2f77bcb0b9fe43a00bfb70b
2021-09-14 17:10:51 +08:00

65 lines
1.6 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 FLOATINGPREVIEW_H
#define FLOATINGPREVIEW_H
#include <QWidget>
#include <QPointer>
#include <DIconButton>
#include <DPushButton>
DWIDGET_USE_NAMESPACE
class AppSnapshot;
class FloatingPreview : public QWidget
{
Q_OBJECT
public:
explicit FloatingPreview(QWidget *parent = 0);
WId trackedWid() const;
AppSnapshot *trackedWindow();
void setFloatingTitleVisible(bool bVisible);
public slots:
void trackWindow(AppSnapshot *const snap);
private:
void paintEvent(QPaintEvent *e) override;
void mouseReleaseEvent(QMouseEvent *e) override;
bool eventFilter(QObject *watched, QEvent *event) override;
void hideEvent(QHideEvent *event) override;
private slots:
void onCloseBtnClicked();
private:
QPointer<AppSnapshot> m_tracked;
DIconButton *m_closeBtn3D;
DPushButton *m_titleBtn;
};
#endif // FLOATINGPREVIEW_H