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

高效模式和时尚模式的插件是两个对象,在设置模式的时候用的是静态变量,导致两边识别到的模式始终为时尚模式,引起是否显示文字的判断错误 Log: 修复高效模式下关机按钮的显示问题 Influence: 高效模式下,调整任务栏到最高,观察关机按钮的显示 Task: https://pms.uniontech.com/task-view-112073.html Change-Id: I6161fbdf0a5d052ce6e422b2490f1281922f9510
114 lines
3.3 KiB
C++
114 lines
3.3 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 <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(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);
|
|
|
|
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;
|
|
};
|
|
|
|
class StretchPluginsItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StretchPluginsItem(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;
|
|
};
|
|
|
|
#endif // SYSTEMPLUGINWINDOW_H
|