mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

原因:在切换模式的时候,需要重新计算任务栏的大小,但是由于时尚模式和高效模式下的尺寸不一样,所以在计算图标的时候会以切换之前的尺寸为参考来进行计算,导致计算的结果错误 修复:在切换模式的时候,提前设置任务栏的尺寸(上下为高度,左右为宽度),这样在下次计算图标的时候获取到的尺寸始终是以正确的尺寸进行计算,任务栏显示正常 Log: 修复智能隐藏下切换模式显示错乱 Influence: 任务栏设置为智能隐藏,从高效模式切换到时尚模式,观察任务栏显示是否正常 Bug: https://pms.uniontech.com/bug-view-176321.html Change-Id: Ia66cb3e96d4f42c42acc921315e9457d582a82c1
118 lines
3.5 KiB
C++
118 lines
3.5 KiB
C++
/*
|
|
* Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: donghualin <donghualin@uniontech.com>
|
|
*
|
|
* Maintainer: donghualin <donghualin@uniontech.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 SYSTEMPLUGINWINDOW_H
|
|
#define SYSTEMPLUGINWINDOW_H
|
|
|
|
#include "constants.h"
|
|
#include "dockitem.h"
|
|
#include "dbusutil.h"
|
|
|
|
#include <QWidget>
|
|
|
|
class StretchPluginsItem;
|
|
class QBoxLayout;
|
|
class PluginsItemInterface;
|
|
|
|
namespace Dtk { namespace Widget { class DListView; } }
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
|
|
class SystemPluginWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SystemPluginWindow(DockInter *dockInter, QWidget *parent = nullptr);
|
|
~SystemPluginWindow() override;
|
|
void setDisplayMode(const Dock::DisplayMode &displayMode);
|
|
void setPositon(Dock::Position position);
|
|
QSize suitableSize() const;
|
|
QSize suitableSize(const Dock::Position &position) const;
|
|
|
|
Q_SIGNALS:
|
|
void itemChanged();
|
|
void requestDrop(QDropEvent *dropEvent);
|
|
|
|
protected:
|
|
bool eventFilter(QObject *watched, QEvent *event) override;
|
|
|
|
private:
|
|
void initUi();
|
|
void initConnection();
|
|
StretchPluginsItem *findPluginItemWidget(PluginsItemInterface *pluginItem);
|
|
void pluginAdded(PluginsItemInterface *plugin);
|
|
QList<StretchPluginsItem *> stretchItems() const;
|
|
|
|
private Q_SLOTS:
|
|
void onPluginItemRemoved(PluginsItemInterface *pluginItem);
|
|
void onPluginItemUpdated(PluginsItemInterface *pluginItem);
|
|
|
|
private:
|
|
DListView *m_listView;
|
|
Dock::DisplayMode m_displayMode;
|
|
Dock::Position m_position;
|
|
QBoxLayout *m_mainLayout;
|
|
DockInter *m_dockInter;
|
|
};
|
|
|
|
class StretchPluginsItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StretchPluginsItem(DockInter *dockInter, PluginsItemInterface *const pluginInter, const QString &itemKey, QWidget *parent = nullptr);
|
|
~StretchPluginsItem() override;
|
|
void setDisplayMode(const Dock::DisplayMode &displayMode);
|
|
static void setPosition(Dock::Position position);
|
|
PluginsItemInterface *pluginInter() const;
|
|
QString itemKey() const;
|
|
QSize suitableSize() const;
|
|
QSize suitableSize(const Dock::Position &position) const;
|
|
|
|
inline ItemType itemType() const override { return DockItem::StretchPlugin; }
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
|
|
const QString contextMenu() const override;
|
|
void invokedMenuItem(const QString &itemId, const bool checked) override;
|
|
|
|
QWidget *popupTips() override;
|
|
|
|
private:
|
|
void mouseClick();
|
|
QFont textFont() const;
|
|
QFont textFont(const Dock::Position &position) const;
|
|
bool needShowText() const;
|
|
|
|
private:
|
|
PluginsItemInterface *m_pluginInter;
|
|
QString m_itemKey;
|
|
Dock::DisplayMode m_displayMode;
|
|
static Dock::Position m_position;
|
|
QPoint m_mousePressPoint;
|
|
DockInter *m_dockInter;
|
|
};
|
|
|
|
#endif // SYSTEMPLUGINWINDOW_H
|