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

修复文本裁切问题 Log: 调整标题栏高度解决显示不全的问题 Influence: 文本显示 Resolve: https://github.com/linuxdeepin/developer-center/issues/4759
100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
// Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "pluginchildpage.h"
|
|
|
|
#include <DStyle>
|
|
#include <DGuiApplicationHelper>
|
|
|
|
#include <QLabel>
|
|
#include <QVBoxLayout>
|
|
#include <QEvent>
|
|
#include <QPainterPath>
|
|
#include <QPushButton>
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
DGUI_USE_NAMESPACE
|
|
|
|
PluginChildPage::PluginChildPage(QWidget *parent)
|
|
: QWidget(parent)
|
|
, m_headerWidget(new QWidget(this))
|
|
, m_back(new DIconButton(QStyle::SP_ArrowBack, this))
|
|
, m_title(new QLabel(m_headerWidget))
|
|
, m_container(new QWidget(this))
|
|
, m_topWidget(nullptr)
|
|
, m_containerLayout(new QVBoxLayout(m_container))
|
|
{
|
|
initUi();
|
|
initConnection();
|
|
}
|
|
|
|
PluginChildPage::~PluginChildPage()
|
|
{
|
|
}
|
|
|
|
void PluginChildPage::pushWidget(QWidget *widget)
|
|
{
|
|
// 首先将界面其他的窗体移除
|
|
for (int i = m_containerLayout->count() - 1; i >= 0; i--) {
|
|
QLayoutItem *item = m_containerLayout->itemAt(i);
|
|
item->widget()->removeEventFilter(this);
|
|
item->widget()->hide();
|
|
m_containerLayout->removeItem(item);
|
|
}
|
|
m_topWidget = widget;
|
|
if (widget) {
|
|
widget->installEventFilter(this);
|
|
m_containerLayout->addWidget(widget);
|
|
widget->show();
|
|
}
|
|
QMetaObject::invokeMethod(this, &PluginChildPage::resetHeight, Qt::QueuedConnection);
|
|
}
|
|
|
|
void PluginChildPage::setTitle(const QString &text)
|
|
{
|
|
m_title->setText(text);
|
|
}
|
|
|
|
void PluginChildPage::initUi()
|
|
{
|
|
m_back->setFlat(true);
|
|
m_title->setAlignment(Qt::AlignCenter);
|
|
QHBoxLayout *headerLayout = new QHBoxLayout(m_headerWidget);
|
|
headerLayout->setContentsMargins(11, 12, 24 + 11, 12);
|
|
headerLayout->setSpacing(0);
|
|
headerLayout->addWidget(m_back);
|
|
headerLayout->addWidget(m_title);
|
|
m_headerWidget->setFixedHeight(52);
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
|
mainLayout->setContentsMargins(0, 0, 0, 0);
|
|
mainLayout->setSpacing(0);
|
|
|
|
mainLayout->addWidget(m_headerWidget);
|
|
mainLayout->addWidget(m_container);
|
|
m_containerLayout->setContentsMargins(11, 0, 11, 0);
|
|
m_containerLayout->setSpacing(0);
|
|
}
|
|
|
|
void PluginChildPage::initConnection()
|
|
{
|
|
connect(m_back, &QPushButton::clicked, this, &PluginChildPage::back);
|
|
}
|
|
|
|
bool PluginChildPage::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (watched == m_topWidget && event->type() == QEvent::Resize) {
|
|
resetHeight();
|
|
}
|
|
return QWidget::eventFilter(watched, event);
|
|
}
|
|
|
|
void PluginChildPage::resetHeight()
|
|
{
|
|
QMargins m = m_containerLayout->contentsMargins();
|
|
m_container->setFixedHeight(m.top() + m.bottom() + (m_topWidget ? m_topWidget->height() : 0));
|
|
setFixedHeight(m_headerWidget->height() + m_container->height());
|
|
}
|