dde-dock/frame/window/traymanagerwindow.h
donghualin b1143e91ce fix: 修复托盘和快捷设置区域行数变化的时候边框显示问题
1.在单行和多行的时候分别获取圆角区域并显示
2.在任务栏调整大小的时候,圆角大小根据实际情况动态计算生成

Log: 优化界面显示
Influence: 任务栏拖动改变大小,查看单行和多行的显示效果
Task: https://pms.uniontech.com/task-view-112073.html
Change-Id: I2f595bb8304c23e95672d953bd53d6d74072ed7b
2022-05-25 10:59:16 +08:00

99 lines
2.7 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 TRAYMANAGERWINDOW_H
#define TRAYMANAGERWINDOW_H
#include "constants.h"
#include <QWidget>
#include <com_deepin_daemon_timedate.h>
namespace Dtk { namespace Gui { class DRegionMonitor; };
namespace Widget { class DBlurEffectWidget; } }
using namespace Dtk::Widget;
using Timedate = com::deepin::daemon::Timedate;
class QuickPluginWindow;
class QBoxLayout;
class TrayGridView;
class TrayModel;
class TrayDelegate;
class SystemPluginWindow;
class QLabel;
class QDropEvent;
class DateTimeDisplayer;
class TrayManagerWindow : public QWidget
{
Q_OBJECT
public:
explicit TrayManagerWindow(QWidget *parent = nullptr);
~TrayManagerWindow() override;
void setPositon(Dock::Position position);
QSize suitableSize();
Q_SIGNALS:
void sizeChanged();
protected:
void resizeEvent(QResizeEvent *event) override;
void dragEnterEvent(QDragEnterEvent *e) override;
void dragMoveEvent(QDragMoveEvent *e) override;
void dropEvent(QDropEvent *e) override;
void dragLeaveEvent(QDragLeaveEvent *event) override;
void paintEvent(QPaintEvent *event) override;
private:
void initUi();
void initConnection();
void resetDirection();
void resetChildWidgetSize();
void resetMultiDirection();
void resetSingleDirection();
QColor maskColor(uint8_t alpha) const;
bool showSingleRow();
int appDatetimeSize();
QPainterPath roundedPaths();
private:
QWidget *m_appPluginDatetimeWidget;
SystemPluginWindow *m_systemPluginWidget;
QWidget *m_appPluginWidget;
QuickPluginWindow *m_quickIconWidget;
DateTimeDisplayer *m_dateTimeWidget;
QBoxLayout *m_appPluginLayout;
QBoxLayout *m_appDatetimeLayout;
QBoxLayout *m_mainLayout;
TrayGridView *m_trayView;
TrayModel *m_model;
TrayDelegate *m_delegate;
Dock::Position m_postion;
QLabel *m_splitLine;
};
#endif // PLUGINWINDOW_H